diff --git a/.babelrc b/.babelrc deleted file mode 100644 index a9ce1369e..000000000 --- a/.babelrc +++ /dev/null @@ -1,3 +0,0 @@ -{ - "presets": ["react-native"] -} diff --git a/.gitignore b/.gitignore index 10be19751..1ab270441 100644 --- a/.gitignore +++ b/.gitignore @@ -35,6 +35,7 @@ local.properties node_modules/ npm-debug.log yarn-error.log +.yarn/ # BUCK buck-out/ @@ -51,3 +52,9 @@ buck-out/ fastlane/report.xml fastlane/Preview.html fastlane/screenshots + +/dist +/data/audio/*/*.mp3 +/data/audio/index.json +/data/torah/labels/*.json +/data/torah/json/*.json diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..bedfd47ef --- /dev/null +++ b/.gitmodules @@ -0,0 +1,3 @@ +[submodule "MAM-parsed"] + path = MAM-parsed + url = git@github.com:bdenckla/MAM-parsed.git diff --git a/.prettierrc.json b/.prettierrc.json new file mode 100644 index 000000000..c4b43364b --- /dev/null +++ b/.prettierrc.json @@ -0,0 +1,4 @@ +{ + "printWidth": 100, + "trailingComma": "all" +} diff --git a/.yarnrc.yml b/.yarnrc.yml new file mode 100644 index 000000000..91b1101f5 --- /dev/null +++ b/.yarnrc.yml @@ -0,0 +1,5 @@ +compressionLevel: mixed + +enableGlobalCache: false + +nodeLinker: node-modules diff --git a/App.js b/App.js deleted file mode 100644 index d20d6d281..000000000 --- a/App.js +++ /dev/null @@ -1,800 +0,0 @@ -/** - * Sample React Native App - * https://github.com/facebook/react-native - * - * @format - * @flow strict-local - */ - -import React from 'react'; -import type {Node} from 'react'; -import { - AppRegistry, - StyleSheet, - Text, - View, - TouchableOpacity, - ScrollView, - ActivityIndicator, - Button, - Modal, - Slider, - SafeAreaView, -} from 'react-native'; - -const RNFS = require('react-native-fs'); - -import { createAppContainer } from 'react-navigation'; -import { createStackNavigator } from 'react-navigation-stack'; - -let timeChecker = ""; - -var reactMixin = require('react-mixin'); -var TimerMixin = require('react-timer-mixin'); - - - -import calendar from './data/calendar.json'; -import aliyahData from './data/aliyah.json'; - - - -// Import Texts -import Amos from './data/torah/json/Amos.json'; -import Deuteronomy from './data/torah/json/Deuteronomy.json'; -import Exodus from './data/torah/json/Exodus.json'; -import Ezekiel from './data/torah/json/Ezekiel.json'; -import Genesis from './data/torah/json/Genesis.json'; -import Hosea from './data/torah/json/Hosea.json'; -import Isaiah from './data/torah/json/Isaiah.json'; -import Jeremiah from './data/torah/json/Jeremiah.json'; -import Joel from './data/torah/json/Joel.json'; -import Joshua from './data/torah/json/Joshua.json'; -import Judges from './data/torah/json/Judges.json'; -import Kings_1 from './data/torah/json/Kings_1.json'; -import Kings_2 from './data/torah/json/Kings_2.json'; -import Leviticus from './data/torah/json/Leviticus.json'; -import Malachi from './data/torah/json/Malachi.json'; -import Micah from './data/torah/json/Micah.json'; -import Numbers from './data/torah/json/Numbers.json'; -import Obadiah from './data/torah/json/Obadiah.json'; -import Samuel_1 from './data/torah/json/Samuel_1.json'; -import Samuel_2 from './data/torah/json/Samuel_2.json'; -import Zechariah from './data/torah/json/Zechariah.json'; - -// Import Translations -import GenesisTrans from './data/torah/translation/Genesis.json'; -import ExodusTrans from './data/torah/translation/Exodus.json'; -import DeuteronomyTrans from './data/torah/translation/Deuteronomy.json'; -import LeviticusTrans from './data/torah/translation/Leviticus.json'; -import NumbersTrans from './data/torah/translation/Numbers.json'; -import IsaiahTrans from './data/torah/translation/Isaiah.json'; -import JoshuaTrans from './data/torah/translation/Joshua.json'; -import JudgesTrans from './data/torah/translation/Judges.json'; -import MalachiTrans from './data/torah/translation/Malachi.json'; -import ObadiahTrans from './data/torah/translation/Obadiah.json'; -import Samuel_1Trans from './data/torah/translation/Samuel_1.json'; -import Samuel_2Trans from './data/torah/translation/Samuel_2.json'; -import ZechariahTrans from './data/torah/translation/Zechariah.json'; -import JoelTrans from './data/torah/translation/Joel.json'; -import JeremiahTrans from './data/torah/translation/Jeremiah.json'; -import HoseaTrans from './data/torah/translation/Hosea.json'; -import EzekielTrans from './data/torah/translation/Ezekiel.json'; -import AmosTrans from './data/torah/translation/Amos.json'; -import Kings_2Trans from './data/torah/translation/Kings_2.json'; -import Kings_1Trans from './data/torah/translation/Kings_1.json'; - -// Import the react-native-sound module -var Sound = require('react-native-sound'); - -// Enable playback in silence mode (iOS only) -Sound.setCategory('Playback'); - - - -class CustomButton extends React.Component { - render() { - return ( - - - {this.props.buttonTitle} - - - ); - } -} - -class FooterButton extends React.Component { - render() { - return ( - - - {this.props.buttonTitle} - - - ); - } -} - - - -class HomeScreen extends React.Component { - static navigationOptions = { - title: "Home", - }; - render() { - const { navigate } = this.props.navigation; - - //figure out current parshah - let parashah; - let weekOffset = 1; - - - while (!parashah) { - let date = new Date(); - date.setDate(date.getDate() + (6 - 1 - date.getDay() + 7) % 7 + weekOffset); - var day = date.getDate(); - var month = date.getMonth()+1; //January is 0! - var year = date.getFullYear(); - dateString = month + '/' + day + '/' + year; - console.log(dateString) - parashah = calendar[dateString]; - console.log(parashah) - weekOffset += 1; - } - - let parshahLookup; - - for (q = 0; q < aliyahData.parshiot.parsha.length; q++) { - - if (aliyahData.parshiot.parsha[q]._id.replace(/[ ’]/g, '\'') == parashah.name ) { - parshahLookup = aliyahData.parshiot.parsha[q]; - break; - } - - } - // - - return ( - - navigate('TorahReadingsScreen')} buttonTitle="List of Torah Readings" /> - navigate('AliyahSelectScreen',{ parshah: parshahLookup._id, haftara: parshahLookup._haftara, haftaraLength: parshahLookup._haftaraLength, haftaraLength2: parshahLookup._haftaraLength2, maftirOffset: parshahLookup.maftirOffset, aliyot: parshahLookup.fullkriyah.aliyah, originatingBook: parshahLookup._verse.split(" ")[0] })} buttonTitle="This Week's Torah Readings" /> - navigate('About')} buttonTitle="About this App" /> - - ); - } -} - -class AboutScreen extends React.Component { - static navigationOptions = { - title: 'About', - }; - render() { - return ( - - PocketTorah is a labor of love maintained by Russel Neiss & Charlie Schwartz. - Initially funded by the Jewish New Media Innovation Fund, PocketTorah is designed to help you learn the weekly Torah and Haftarah portions anywhere, at any time, for free. - If you like it, or find it useful, please consider making a donation to the Jewish charity of your choice. - Torah Readers: - - Etta Abramson - Joshua Foster - Eitan Konigsberg - Eytan Kurshan - Ari Lucas - Rabbi Ita Paskind - Rebecca Russo - Joshua Schwartz - Abigail Teller - - - ); - } -} - -class TorahReadingsScreen extends React.Component { - static navigationOptions = { - title: 'Torah Readings', - }; - render() { - //convert parshah json to array - var parshahArray = aliyahData.parshiot.parsha.map(x => x); - - //create button for each parsha - var content = parshahArray.map((obj) => ( navigate('AliyahSelectScreen', { parshah: obj._id, haftara: obj._haftara, haftaraLength: obj._haftaraLength, haftaraLength2: obj._haftaraLength2, maftirOffset: obj.maftirOffset, aliyot: obj.fullkriyah.aliyah, originatingBook: obj._verse.split(" ")[0] })} buttonTitle={obj._id} />) ); - - const { params } = this.props.navigation.state; - const { navigate } = this.props.navigation; - return ( - - - {content} - - - ); - } -} - -class AliyahSelectScreen extends React.Component { - static navigationOptions = ({ navigation }) => ({ - title: `${navigation.state.params.parshah}`, - }); - render() { - const { params } = this.props.navigation.state; - const { navigate } = this.props.navigation; - var content = params.aliyot.map((obj) => ( navigate('PlayViewScreen', { parshah: obj._id, aliyotStart: obj._begin, aliyotEnd: obj._end, length: obj._numverses, maftirOffset: params.maftirOffset, title: params.parshah, originatingBook: params.originatingBook, aliyahNum: obj._num })} buttonTitle={obj._num !="M" ? "Aliyah "+obj._num+": "+obj._begin+"-"+obj._end : "Maftir Aliyah"+": "+obj._begin+"-"+obj._end} />) ); - if (params.haftara) { - var hafTitle = params.haftara.split(' ')[0]; - var hafStart = params.haftara.split(' ')[1]; - var hafEnd = params.haftara.split(' ')[3]; - if (params.haftaraLength2) { - var hafStart2 = params.haftara.split(';')[1].split(' ')[1]; - var hafEnd2 = params.haftara.split(';')[1].split(' ')[3]; - } - - content.push( - navigate('PlayViewScreen', {parshah: hafTitle, hafStart2: hafStart2, hafEnd2: hafEnd2, aliyotStart: hafStart, aliyotEnd: hafEnd, length: params.haftaraLength, length2: params.haftaraLength2, title: params.parshah, originatingBook: hafTitle, aliyahNum: "H" })} buttonTitle={"Haftarah"+": "+hafTitle.replace(/_/g, ' ')+" "+hafStart+"-"+hafEnd} /> - ); - } - return ( - - {content} - - ); - } -} - - -class PlayViewScreen extends React.Component { - static navigationOptions = ({ navigation }) => { - const { state } = navigation; - const { renderHeaderRight } = state.params; - return { - title: `${navigation.state.params.title}`, - headerRight: renderHeaderRight && renderHeaderRight() - } - }; - - componentWillMount() { - this.props.navigation.setParams({ - renderHeaderRight: () => this.toggleSettingsModal('open')} /> - }); - } - - constructor(props) { - super(props); - this.state = { - audio: null, - labels: null, - activeWordIndex:0, - audioPlaying: false, - translationOn: false, - tikkunOn: false, - modalVisible: false, - textSizeMultiplier: 1, - maftirWordOffset: 0, - currentAudioTime: 0, - }; - this.changeAudioTime = this.changeAudioTime.bind(this); - - } - - - - checkTime() { - this.clearInterval(timeChecker); - - var wordIndex = this.state.activeWordIndex; - if (!this.state.audio || !this.state.labels ) { return } - - this.state.audio.getCurrentTime((curTime) => { - var changeTime = parseFloat(this.state.labels[wordIndex+1]); - if (curTime > changeTime) { - this.setState({ - activeWordIndex: wordIndex+1 - }); - } - }); - timeChecker = this.setTimeout(() => {this.checkTime()}); - - } - - toggleAudio(action) { - if (action == 'play') { - console.log(this.state.audio) - if (this.state.maftirWordOffset > 0) { - this.state.audio.getCurrentTime((seconds) => { - if (seconds == 0) { - this.changeAudioTime(parseInt(this.state.maftirWordOffset)); - } - }); - } - - this.state.audio.play((success) => { - if (success) { - console.log('successfully finished playing'); - } else { - console.log('playback failed due to audio decoding errors'); - } - }); - this.setState({audioPlaying: true}); - - this.setInterval( () => { - this.state.audio.getCurrentTime((curTime) => { - this.setState({ - currentAudioTime: curTime - }); - }); - }, 50); - - } - else { - this.state.audio.pause(); - this.setState({audioPlaying: false}); - } - } - - changeAudioTime(wordIndex){ - if (!this.state.audio || !this.state.labels ) { return } - this.toggleAudio('pause'); - var newTime = parseFloat(this.state.labels[wordIndex]); - this.state.audio.setCurrentTime(newTime); - this.setState({activeWordIndex: wordIndex}); - this.toggleAudio('play'); - } - - toggleTranslation(action) { - if (action == 'on') { - this.setState({translationOn: true}); - } - else { - this.setState({translationOn: false}); - } - } - - toggleSettingsModal(action) { - if (action == 'open') { - this.setState({modalVisible: true}); - } - else { - this.setState({modalVisible: false}); - } - } - - toggleTikkun(action) { - if (action == 'on') { - this.setState({tikkunOn: true}); - } - else { - this.setState({tikkunOn: false}); - } - } - - - componentDidMount() { - var { params } = this.props.navigation.state; - if (params.aliyahNum == "M") { - params.aliyahNum = "7"; - this.setState({ - maftirWordOffset: params.maftirOffset, - activeWordIndex: params.maftirOffset - }); - } - var audioFileName = "audio/" + params.title.replace(/[ ’]/g, '') + "-" + params.aliyahNum + ".mp3"; - var aliyahAudio = new Sound(audioFileName, Sound.MAIN_BUNDLE, (error) => { - if (error) { - console.log('failed to load the sound', error); - return; - } - this.setState({audio: aliyahAudio}); - }); - - - RNFS.readFile(RNFS.MainBundlePath+'/labels/'+params.title+'-'+ params.aliyahNum+'.txt') // On Android, use "RNFS.DocumentDirectoryPath" (MainBundlePath is not defined) - .then((contents) => { - // log the file contents - this.setState({ - labels: contents.split(','), - }); - - }) - .catch((err) => { - console.log(err.message, err.code); - }); - } - - componentWillUnmount() { - this.state.audio.release(); - } - render() { - - if (!this.state.audio || !this.state.labels ) { - return ( - - - Loading.... - - ); - - } - - else { - const {params} = this.props.navigation.state; - var chapterStart = params.aliyotStart.split(':')[0]; - var verseStart = params.aliyotStart.split(':')[1]; - var chapterStartIndex = chapterStart - 1; - var verseStartIndex = verseStart - 1; - var wordFontSize = 24*parseFloat(this.state.textSizeMultiplier); - var stamFontSize = 20*parseFloat(this.state.textSizeMultiplier); - - - - return ( - - {console.log("Modal has been closed.")}} - > - - - Settings - - Font Size: - this.setState({textSizeMultiplier: value})} /> - בְּרֵאשִׁ֖ית - בראשית - - - Set Audio Speed: - this.state.audio.setSpeed(value)} /> - - - - this.toggleSettingsModal('close')} buttonTitle="Save Settings" /> - - - - - - - - - - {this.state.audioPlaying ? this.toggleAudio('pause')} buttonTitle="Pause" /> : this.toggleAudio('play')} buttonTitle="Play" /> } - {this.state.translationOn ? this.toggleTranslation('off')} buttonTitle="Translation Off" /> : this.toggleTranslation('on')} buttonTitle="Translation On" /> } - {this.state.tikkunOn ? this.toggleTikkun('off')} buttonTitle="Tikkun Off" /> : this.toggleTikkun('on')} buttonTitle="Tikkun On" /> } - - - ); - } - } -} -reactMixin(PlayViewScreen.prototype, TimerMixin); - - -class TextFile extends React.Component { -render() { - var bookText = (function(book) { - switch (book) { - case 'Amos': - return Amos.Tanach.tanach.book; - case 'Deuteronomy': - return Deuteronomy.Tanach.tanach.book; - case 'Exodus': - return Exodus.Tanach.tanach.book; - case 'Ezekiel': - return Ezekiel.Tanach.tanach.book; - case 'Genesis': - return Genesis.Tanach.tanach.book; - case 'GenesisTrans': - return GenesisTrans; - case 'IsaiahTrans': - return IsaiahTrans; - case 'ExodusTrans': - return ExodusTrans; - case 'DeuteronomyTrans': - return DeuteronomyTrans; - case 'LeviticusTrans': - return LeviticusTrans; - case 'NumbersTrans': - return NumbersTrans; - case 'JoshuaTrans': - return JoshuaTrans; - case 'JudgesTrans': - return JudgesTrans; - case 'MalachiTrans': - return MalachiTrans; - case 'ObadiahTrans': - return ObadiahTrans; - case 'Samuel_1Trans': - return Samuel_1Trans; - case 'Samuel_2Trans': - return Samuel_2Trans; - case 'ZechariahTrans': - return ZechariahTrans; - case 'JoelTrans': - return JoelTrans; - case 'JeremiahTrans': - return JeremiahTrans; - case 'HoseaTrans': - return HoseaTrans; - case 'EzekielTrans': - return EzekielTrans; - case 'AmosTrans': - return AmosTrans; - case 'Kings_2Trans': - return Kings_2Trans; - case 'Kings_1Trans': - return Kings_1Trans; - case 'Hosea': - return Hosea.Tanach.tanach.book; - case 'Isaiah': - return Isaiah.Tanach.tanach.book; - case 'Jeremiah': - return Jeremiah.Tanach.tanach.book; - case 'Joel': - return Joel.Tanach.tanach.book; - case 'Joshua': - return Joshua.Tanach.tanach.book; - case 'Judges': - return Judges.Tanach.tanach.book; - case 'Kings_1': - return Kings_1.Tanach.tanach.book; - case 'Kings_2': - return Kings_2.Tanach.tanach.book; - case 'Leviticus': - return Leviticus.Tanach.tanach.book; - case 'Malachi': - return Malachi.Tanach.tanach.book; - case 'Micah': - return Micah.Tanach.tanach.book; - case 'Numbers': - return Numbers.Tanach.tanach.book; - case 'Obadiah': - return Obadiah.Tanach.tanach.book; - case 'Samuel_1': - return Samuel_1.Tanach.tanach.book; - case 'Samuel_2': - return Samuel_2.Tanach.tanach.book; - case 'Zechariah': - return Zechariah.Tanach.tanach.book; - } - }); - var selectedBook = bookText(this.props.originatingBook); - var selectedTrans = bookText(this.props.originatingBook + "Trans"); - return ( - - ) -} -} - - -class Verses extends React.Component { - - getVerseWords(verse, labels, curWordIndex, curChapterIndex, curVerseIndex,) { - var maftirWordOffset = parseInt(this.props.maftirWordOffset); - if (this.props.tikkunFlag) { - - var words = verse.w.map((word, i) => - - {i == 0 ? {curChapterIndex + 1}:{curVerseIndex + 1} : null} - { - this.props.changeAudioTime(curWordIndex + i + maftirWordOffset) - }}> - this.props.currentAudioTime ? [styles.stam, styles.active, {fontSize: 30*this.props.textSizeMultiplier}] : [styles.stam,{fontSize: 30*this.props.textSizeMultiplier}]}> - {verse.w[i].replace(/\//g, '').replace(/[\u0591-\u05C7]/g,"")} - - - - ); - - return words; - } - - else { - var words = verse.w.map((word, i) => - - {i == 0 ? {curChapterIndex + 1}:{curVerseIndex + 1} : null} - { - this.props.changeAudioTime(curWordIndex + i + maftirWordOffset) - }}> - this.props.currentAudioTime ? [styles.word, styles.active,{fontSize: 36*this.props.textSizeMultiplier}] : [styles.word,{fontSize: 36*this.props.textSizeMultiplier}]}> - {verse.w[i].replace(/\//g, '')} - - - - ); - - return words; - - } - } - - - render() { - - var verseText = []; - var curChapter = this.props.chapterStart; - var curVerse = this.props.verseStart; - var book = this.props.book; - var transBook = this.props.transBook; - var lastWordIndex = 0; - for (q = 0; q < this.props.length; q++) { - if (!book.c[curChapter].v[curVerse]) { - curChapter = curChapter + 1; - curVerse = 0; - } - verseText.push( - this.getVerseWords(book.c[curChapter].v[curVerse],this.props.activeWordIndex,lastWordIndex,curChapter,curVerse) - ); - if (this.props.translationFlag) { - verseText.push( - {transBook.text[curChapter][curVerse]} - ); - } - - lastWordIndex = lastWordIndex + book.c[curChapter].v[curVerse].w.length; - curVerse = curVerse + 1; - } - - if (this.props.length2) { - var curChapter = parseInt(this.props.hafStart2.split(':')[0])-1; - var curVerse = parseInt(this.props.hafStart2.split(':')[1])-1; - for (z = 0; z < this.props.length2; z++) { - if (!book.c[curChapter].v[curVerse]) { - curChapter = curChapter + 1; - curVerse = 0; - } - verseText.push( - this.getVerseWords(book.c[curChapter].v[curVerse],this.props.activeWordIndex,lastWordIndex,curChapter,curVerse) - ); - if (this.props.translationFlag) { - verseText.push( - {transBook.text[curChapter][curVerse]} - ); - } - - lastWordIndex = lastWordIndex + book.c[curChapter].v[curVerse].w.length; - curVerse = curVerse + 1; - } - - } - - return ({verseText}); - -} -} - -// const PocketTorah = StackNavigator({ -// Home: { screen: HomeScreen }, -// About: { screen: AboutScreen }, -// TorahReadingsScreen: { screen: TorahReadingsScreen }, -// AliyahSelectScreen: { screen: AliyahSelectScreen }, -// PlayViewScreen: { screen: PlayViewScreen }, -// }); - - -const AppNavigator = createStackNavigator({ - Home: { screen: HomeScreen }, - About: { screen: AboutScreen }, - TorahReadingsScreen: { screen: TorahReadingsScreen }, - AliyahSelectScreen: { screen: AliyahSelectScreen }, - PlayViewScreen: { screen: PlayViewScreen }, -}); - -const AppContainer = createAppContainer(AppNavigator); - -const App: () => Node = () => { - - - return ( - - ); -}; - -const styles = StyleSheet.create({ - container: { - flex: 1, - justifyContent: 'center', - alignItems: 'center', - backgroundColor: '#fff', - top: 30, - }, - header: { - fontSize: 20, - textAlign: 'center', - marginTop: 20, - marginRight: 10, - marginLeft: 10, - marginBottom: 10, - }, - instructions: { - textAlign: 'center', - color: '#333333', - marginBottom: 5, - }, - button: { - margin: 10, - padding: 10, - backgroundColor: '#ccc', - textAlign: 'center', - }, - - text: { - flexDirection:'row-reverse', - flexWrap:'wrap', - alignItems:'flex-start', - }, - - word: { - flex:0, - padding: 4, - fontFamily: "Taamey Frank Taamim Fix", - }, - stam: { - flex:0, - padding: 4, - fontFamily: "Stam Ashkenaz CLM", - }, - active: { - backgroundColor: '#ffff9d', - }, - footer: { - flexDirection:'row', - alignItems: 'stretch', - alignContent: 'stretch', - }, - footerButton: { - flexGrow: 1, - width: 10, - padding: 10, - alignItems: 'center', - backgroundColor: '#efeff2', - borderWidth: 1, - borderRightWidth: 0, - borderColor: '#d9d9de', - - }, - footerButtonInner: { - fontSize: 12, - textAlign: 'center', - }, - verseNum: { - paddingTop: 10, - fontSize: 10, - }, - modalHeader: { - fontSize: 17, - fontWeight: '600', - textAlign: 'center', - }, - modalSection: { - borderColor: '#d9d9de', - borderTopWidth: 1, - marginTop: 10, - padding: 10, - }, - modalFooter: { - marginTop: 50, - }, - aboutPage: { - margin: 10, - }, - aboutPageText: { - marginTop: 10, - }, - aboutPageHeader: { - fontWeight: "bold", - marginTop: 10, - }, - aboutPageListItem: { - marginLeft: 10, - marginTop: 5, - }, -}); - -export default App; diff --git a/MAM-parsed b/MAM-parsed new file mode 160000 index 000000000..993360fa6 --- /dev/null +++ b/MAM-parsed @@ -0,0 +1 @@ +Subproject commit 993360fa609f9f7f103732349d6d84f41d18befb diff --git a/android/app/build.gradle b/android/app/build.gradle index 39f1fab8f..a6c6ac2ed 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -1,130 +1,81 @@ apply plugin: "com.android.application" - -import com.android.build.OutputFile +apply plugin: "org.jetbrains.kotlin.android" +apply plugin: "com.facebook.react" /** - * The react.gradle file registers a task for each build variant (e.g. bundleDebugJsAndAssets - * and bundleReleaseJsAndAssets). - * These basically call `react-native bundle` with the correct arguments during the Android build - * cycle. By default, bundleDebugJsAndAssets is skipped, as in debug/dev mode we prefer to load the - * bundle directly from the development server. Below you can see all the possible configurations - * and their defaults. If you decide to add a configuration block, make sure to add it before the - * `apply from: "../../node_modules/react-native/react.gradle"` line. - * - * project.ext.react = [ - * // the name of the generated asset file containing your JS bundle - * bundleAssetName: "index.android.bundle", - * - * // the entry file for bundle generation. If none specified and - * // "index.android.js" exists, it will be used. Otherwise "index.js" is - * // default. Can be overridden with ENTRY_FILE environment variable. - * entryFile: "index.android.js", - * - * // https://reactnative.dev/docs/performance#enable-the-ram-format - * bundleCommand: "ram-bundle", - * - * // whether to bundle JS and assets in debug mode - * bundleInDebug: false, - * - * // whether to bundle JS and assets in release mode - * bundleInRelease: true, - * - * // whether to bundle JS and assets in another build variant (if configured). - * // See http://tools.android.com/tech-docs/new-build-system/user-guide#TOC-Build-Variants - * // The configuration property can be in the following formats - * // 'bundleIn${productFlavor}${buildType}' - * // 'bundleIn${buildType}' - * // bundleInFreeDebug: true, - * // bundleInPaidRelease: true, - * // bundleInBeta: true, - * - * // whether to disable dev mode in custom build variants (by default only disabled in release) - * // for example: to disable dev mode in the staging build type (if configured) - * devDisabledInStaging: true, - * // The configuration property can be in the following formats - * // 'devDisabledIn${productFlavor}${buildType}' - * // 'devDisabledIn${buildType}' - * - * // the root of your project, i.e. where "package.json" lives - * root: "../../", - * - * // where to put the JS bundle asset in debug mode - * jsBundleDirDebug: "$buildDir/intermediates/assets/debug", - * - * // where to put the JS bundle asset in release mode - * jsBundleDirRelease: "$buildDir/intermediates/assets/release", - * - * // where to put drawable resources / React Native assets, e.g. the ones you use via - * // require('./image.png')), in debug mode - * resourcesDirDebug: "$buildDir/intermediates/res/merged/debug", - * - * // where to put drawable resources / React Native assets, e.g. the ones you use via - * // require('./image.png')), in release mode - * resourcesDirRelease: "$buildDir/intermediates/res/merged/release", - * - * // by default the gradle tasks are skipped if none of the JS files or assets change; this means - * // that we don't look at files in android/ or ios/ to determine whether the tasks are up to - * // date; if you have any other folders that you want to ignore for performance reasons (gradle - * // indexes the entire tree), add them here. Alternatively, if you have JS files in android/ - * // for example, you might want to remove it from here. - * inputExcludes: ["android/**", "ios/**"], - * - * // override which node gets called and with what additional arguments - * nodeExecutableAndArgs: ["node"], - * - * // supply additional arguments to the packager - * extraPackagerArgs: [] - * ] + * This is the configuration block to customize your React Native Android app. + * By default you don't need to apply any configuration, just uncomment the lines you need. */ - -project.ext.react = [ - enableHermes: false, // clean and rebuild if changing -] - -apply from: "../../node_modules/react-native/react.gradle" - -/** - * Set this to true to create two separate APKs instead of one: - * - An APK that only works on ARM devices - * - An APK that only works on x86 devices - * The advantage is the size of the APK is reduced by about 4MB. - * Upload all the APKs to the Play Store and people will download - * the correct one based on the CPU architecture of their device. - */ -def enableSeparateBuildPerCPUArchitecture = false +react { + /* Folders */ + // The root of your project, i.e. where "package.json" lives. Default is '..' + // root = file("../") + // The folder where the react-native NPM package is. Default is ../node_modules/react-native + // reactNativeDir = file("../node_modules/react-native") + // The folder where the react-native Codegen package is. Default is ../node_modules/@react-native/codegen + // codegenDir = file("../node_modules/@react-native/codegen") + // The cli.js file which is the React Native CLI entrypoint. Default is ../node_modules/react-native/cli.js + // cliFile = file("../node_modules/react-native/cli.js") + + /* Variants */ + // The list of variants to that are debuggable. For those we're going to + // skip the bundling of the JS bundle and the assets. By default is just 'debug'. + // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. + // debuggableVariants = ["liteDebug", "prodDebug"] + + /* Bundling */ + // A list containing the node command and its flags. Default is just 'node'. + // nodeExecutableAndArgs = ["node"] + // + // The command to run when bundling. By default is 'bundle' + bundleCommand = "webpack-bundle" + // + // The path to the CLI configuration file. Default is empty. + // bundleConfig = file(../rn-cli.config.js) + // + // The name of the generated asset file containing your JS bundle + // bundleAssetName = "MyApplication.android.bundle" + // + // The entry file for bundle generation. Default is 'index.android.js' or 'index.js' + entryFile = file("../../index.ts") + // + // A list of extra flags to pass to the 'bundle' commands. + // See https://github.com/react-native-community/cli/blob/main/docs/commands.md#bundle + // extraPackagerArgs = [] + + /* Hermes Commands */ + // The hermes compiler command to run. By default it is 'hermesc' + // hermesCommand = "$rootDir/my-custom-hermesc/bin/hermesc" + // + // The list of flags to pass to the Hermes compiler. By default is "-O", "-output-source-map" + // hermesFlags = ["-O", "-output-source-map"] +} /** - * Run Proguard to shrink the Java bytecode in release builds. + * Set this to true to Run Proguard on Release builds to minify the Java bytecode. */ def enableProguardInReleaseBuilds = false /** - * The preferred build flavor of JavaScriptCore. + * The preferred build flavor of JavaScriptCore (JSC) * * For example, to use the international variant, you can use: * `def jscFlavor = 'org.webkit:android-jsc-intl:+'` * * The international variant includes ICU i18n library and necessary data * allowing to use e.g. `Date.toLocaleString` and `String.localeCompare` that - * give correct results when using with locales other than en-US. Note that + * give correct results when using with locales other than en-US. Note that * this variant is about 6MiB larger per architecture than default. */ def jscFlavor = 'org.webkit:android-jsc:+' -/** - * Whether to enable the Hermes VM. - * - * This should be set on project.ext.react and mirrored here. If it is not set - * on project.ext.react, JavaScript will not be compiled to Hermes Bytecode - * and the benefits of using Hermes will therefore be sharply reduced. - */ -def enableHermes = project.ext.react.get("enableHermes", false); - android { ndkVersion rootProject.ext.ndkVersion - compileSdkVersion rootProject.ext.compileSdkVersion + buildToolsVersion rootProject.ext.buildToolsVersion + compileSdk rootProject.ext.compileSdkVersion + namespace "com.pockettorah" defaultConfig { applicationId "com.pockettorah" minSdkVersion rootProject.ext.minSdkVersion @@ -132,14 +83,6 @@ android { versionCode 1 versionName "1.0" } - splits { - abi { - reset() - enable enableSeparateBuildPerCPUArchitecture - universalApk false // If true, also generate a universal APK - include "armeabi-v7a", "x86", "arm64-v8a", "x86_64" - } - } signingConfigs { debug { storeFile file('debug.keystore') @@ -160,48 +103,15 @@ android { 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: - // https://developer.android.com/studio/build/configure-apk-splits.html - // Example: versionCode 1 will generate 1001 for armeabi-v7a, 1002 for x86, etc. - def versionCodes = ["armeabi-v7a": 1, "x86": 2, "arm64-v8a": 3, "x86_64": 4] - def abi = output.getFilter(OutputFile.ABI) - if (abi != null) { // null for the universal-debug, universal-release variants - output.versionCodeOverride = - defaultConfig.versionCode * 1000 + versionCodes.get(abi) - } - - } - } } dependencies { - implementation fileTree(dir: "libs", include: ["*.jar"]) - //noinspection GradleDynamicVersion - implementation "com.facebook.react:react-native:+" // From node_modules - - implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0" - - debugImplementation("com.facebook.flipper:flipper:${FLIPPER_VERSION}") { - exclude group:'com.facebook.fbjni' - } - - debugImplementation("com.facebook.flipper:flipper-network-plugin:${FLIPPER_VERSION}") { - exclude group:'com.facebook.flipper' - exclude group:'com.squareup.okhttp3', module:'okhttp' - } - - debugImplementation("com.facebook.flipper:flipper-fresco-plugin:${FLIPPER_VERSION}") { - exclude group:'com.facebook.flipper' - } + // The version of react-native is set by the React Native Gradle Plugin + implementation("com.facebook.react:react-android") + implementation("com.facebook.react:flipper-integration") - if (enableHermes) { - def hermesPath = "../../node_modules/hermes-engine/android/"; - debugImplementation files(hermesPath + "hermes-debug.aar") - releaseImplementation files(hermesPath + "hermes-release.aar") + if (hermesEnabled.toBoolean()) { + implementation("com.facebook.react:hermes-android") } else { implementation jscFlavor } diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml index b2f3ad9fc..eb98c01af 100644 --- a/android/app/src/debug/AndroidManifest.xml +++ b/android/app/src/debug/AndroidManifest.xml @@ -2,12 +2,8 @@ - - - - + tools:ignore="GoogleAppIndexingWarning"/> diff --git a/android/app/src/debug/java/com/pockettorah/ReactNativeFlipper.java b/android/app/src/debug/java/com/pockettorah/ReactNativeFlipper.java deleted file mode 100644 index b1030df14..000000000 --- a/android/app/src/debug/java/com/pockettorah/ReactNativeFlipper.java +++ /dev/null @@ -1,72 +0,0 @@ -/** - * Copyright (c) Facebook, Inc. and its affiliates. - * - * This source code is licensed under the MIT license found in the LICENSE file in the root - * directory of this source tree. - */ -package com.pockettorah; - -import android.content.Context; -import com.facebook.flipper.android.AndroidFlipperClient; -import com.facebook.flipper.android.utils.FlipperUtils; -import com.facebook.flipper.core.FlipperClient; -import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; -import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; -import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; -import com.facebook.flipper.plugins.inspector.DescriptorMapping; -import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; -import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; -import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; -import com.facebook.flipper.plugins.react.ReactFlipperPlugin; -import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; -import com.facebook.react.ReactInstanceManager; -import com.facebook.react.bridge.ReactContext; -import com.facebook.react.modules.network.NetworkingModule; -import okhttp3.OkHttpClient; - -public class ReactNativeFlipper { - public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { - if (FlipperUtils.shouldEnableFlipper(context)) { - final FlipperClient client = AndroidFlipperClient.getInstance(context); - - client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); - client.addPlugin(new ReactFlipperPlugin()); - client.addPlugin(new DatabasesFlipperPlugin(context)); - client.addPlugin(new SharedPreferencesFlipperPlugin(context)); - client.addPlugin(CrashReporterPlugin.getInstance()); - - NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); - NetworkingModule.setCustomClientBuilder( - new NetworkingModule.CustomClientBuilder() { - @Override - public void apply(OkHttpClient.Builder builder) { - builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); - } - }); - client.addPlugin(networkFlipperPlugin); - client.start(); - - // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized - // Hence we run if after all native modules have been initialized - ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); - if (reactContext == null) { - reactInstanceManager.addReactInstanceEventListener( - new ReactInstanceManager.ReactInstanceEventListener() { - @Override - public void onReactContextInitialized(ReactContext reactContext) { - reactInstanceManager.removeReactInstanceEventListener(this); - reactContext.runOnNativeModulesQueueThread( - new Runnable() { - @Override - public void run() { - client.addPlugin(new FrescoFlipperPlugin()); - } - }); - } - }); - } else { - client.addPlugin(new FrescoFlipperPlugin()); - } - } - } -} diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 089aee8cd..b83b4eb65 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -6,6 +6,7 @@ diff --git a/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf b/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf new file mode 100644 index 000000000..453eacc8a Binary files /dev/null and b/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf differ diff --git a/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf b/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf deleted file mode 100644 index bb7594ffb..000000000 Binary files a/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Taamey_D.ttf b/android/app/src/main/assets/fonts/Taamey_D.ttf new file mode 100644 index 000000000..6cfc91a77 Binary files /dev/null and b/android/app/src/main/assets/fonts/Taamey_D.ttf differ diff --git a/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf b/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf deleted file mode 100644 index e09c55d49..000000000 Binary files a/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf and /dev/null differ diff --git a/android/app/src/main/java/com/pockettorah/MainActivity.java b/android/app/src/main/java/com/pockettorah/MainActivity.java index 06b8123e5..c5960be71 100644 --- a/android/app/src/main/java/com/pockettorah/MainActivity.java +++ b/android/app/src/main/java/com/pockettorah/MainActivity.java @@ -1,4 +1,6 @@ package com.pockettorah; +import expo.modules.ReactActivityDelegateWrapper; +import com.facebook.react.ReactActivityDelegate; import com.facebook.react.ReactActivity; @@ -12,4 +14,11 @@ public class MainActivity extends ReactActivity { protected String getMainComponentName() { return "PocketTorah"; } + + @Override + protected ReactActivityDelegate createReactActivityDelegate() { + return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, + new ReactActivityDelegate(this, getMainComponentName()) + ); + } } diff --git a/android/app/src/main/java/com/pockettorah/MainApplication.java b/android/app/src/main/java/com/pockettorah/MainApplication.java index 38d110d0e..99c69f210 100644 --- a/android/app/src/main/java/com/pockettorah/MainApplication.java +++ b/android/app/src/main/java/com/pockettorah/MainApplication.java @@ -1,4 +1,7 @@ package com.pockettorah; +import android.content.res.Configuration; +import expo.modules.ApplicationLifecycleDispatcher; +import expo.modules.ReactNativeHostWrapper; import android.app.Application; import android.content.Context; @@ -7,14 +10,19 @@ import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; +import com.facebook.react.flipper.ReactNativeFlipper; +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint; +import com.facebook.react.defaults.DefaultReactNativeHost; import com.facebook.soloader.SoLoader; import java.lang.reflect.InvocationTargetException; import java.util.List; +import com.facebook.react.modules.i18nmanager.I18nUtil; + public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = - new ReactNativeHost(this) { + new DefaultReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; @@ -43,38 +51,22 @@ public ReactNativeHost getReactNativeHost() { @Override public void onCreate() { super.onCreate(); + + I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance(); + sharedI18nUtilInstance.allowRTL(this, true); + SoLoader.init(this, /* native exopackage */ false); - initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { + // If you opted-in for the New Architecture, we load the native entry point for this app. + DefaultNewArchitectureEntryPoint.load(); + } + ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + ApplicationLifecycleDispatcher.onApplicationCreate(this); } - /** - * Loads Flipper in React Native templates. Call this in the onCreate method with something like - * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); - * - * @param context - * @param reactInstanceManager - */ - private static void initializeFlipper( - Context context, ReactInstanceManager reactInstanceManager) { - if (BuildConfig.DEBUG) { - try { - /* - We use reflection here to pick up the class that initializes Flipper, - since Flipper library is not available in release mode - */ - Class> aClass = Class.forName("com.pockettorah.ReactNativeFlipper"); - aClass - .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) - .invoke(null, context, reactInstanceManager); - } catch (ClassNotFoundException e) { - e.printStackTrace(); - } catch (NoSuchMethodException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.printStackTrace(); - } - } + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig); } } diff --git a/android/build.gradle b/android/build.gradle index e64d31e5f..cc4e4f6eb 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,37 +2,22 @@ buildscript { ext { - buildToolsVersion = "30.0.2" + buildToolsVersion = "34.0.0" minSdkVersion = 21 - compileSdkVersion = 30 - targetSdkVersion = 30 - ndkVersion = "20.1.5948944" + compileSdkVersion = 34 + targetSdkVersion = 34 + ndkVersion = "25.1.8937393" + kotlinVersion = "1.8.0" } repositories { google() mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:4.2.1") - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath("com.android.tools.build:gradle:8.2.2") + classpath("com.facebook.react:react-native-gradle-plugin") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") } } -allprojects { - repositories { - mavenCentral() - mavenLocal() - maven { - // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm - url("$rootDir/../node_modules/react-native/android") - } - maven { - // Android JSC is installed from npm - url("$rootDir/../node_modules/jsc-android/dist") - } - - google() - maven { url 'https://www.jitpack.io' } - } -} +apply plugin: "com.facebook.react.rootproject" diff --git a/android/gradle.properties b/android/gradle.properties index dbcbe6f20..a46a5b90f 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -9,8 +9,8 @@ # 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 +# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit @@ -24,5 +24,18 @@ android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true -# Version of flipper SDK to use with React Native -FLIPPER_VERSION=0.93.0 +# Use this property to specify which architecture you want to build. +# You can also override it from the CLI using +# ./gradlew -PreactNativeArchitectures=x86_64 +reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 + +# Use this property to enable support to the new architecture. +# This will allow you to use TurboModules and the Fabric render in +# your application. You should enable this flag either if you want +# to write custom TurboModules/Fabric components OR use libraries that +# are providing them. +newArchEnabled=false + +# Use this property to enable or disable the Hermes JS engine. +# If set to false, you will be using JSC instead. +hermesEnabled=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index 7665b0fa9..e6aba2515 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/android/gradlew b/android/gradlew index 4f906e0c8..0adc8e1a5 100755 --- a/android/gradlew +++ b/android/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,67 +17,99 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# ############################################################################## # 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 +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" +MAX_FD=maximum warn () { echo "$*" -} +} >&2 die () { echo echo "$*" echo exit 1 -} +} >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar @@ -87,9 +119,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 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" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -98,88 +130,120 @@ 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. + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + 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 fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac 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 +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. # For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + # 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\"" + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) fi - i=`expr $i + 1` + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac fi -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" diff --git a/android/link-assets-manifest.json b/android/link-assets-manifest.json new file mode 100644 index 000000000..de62d15d5 --- /dev/null +++ b/android/link-assets-manifest.json @@ -0,0 +1,13 @@ +{ + "migIndex": 1, + "data": [ + { + "path": "fonts/Taamey_D.ttf", + "sha1": "9c06290612af28435aed3c67475c17375a0c7670" + }, + { + "path": "fonts/StamAshkenazCLM.ttf", + "sha1": "e7921e30f92c274525ffa6c8beec2a8d8f449c91" + } + ] +} diff --git a/android/settings.gradle b/android/settings.gradle index 1f767d86d..781bc935b 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,3 +1,7 @@ rootProject.name = 'PocketTorah' apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' +includeBuild('../node_modules/@react-native/gradle-plugin') + +apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle") +useExpoModules() \ No newline at end of file diff --git a/babel.config.js b/babel.config.js index f842b77fc..d4461aec7 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,4 @@ module.exports = { - presets: ['module:metro-react-native-babel-preset'], + presets: ['module:@react-native/babel-preset'], + comments: true, }; diff --git a/data/aliyah.json b/data/aliyah.json deleted file mode 100644 index d580fe33a..000000000 --- a/data/aliyah.json +++ /dev/null @@ -1,10838 +0,0 @@ -{ - "parshiot": { - "parsha": [ - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "2:3", - "_numverses": "34" - }, - { - "_num": "2", - "_begin": "2:4", - "_end": "2:19", - "_numverses": "16" - }, - { - "_num": "3", - "_begin": "2:20", - "_end": "3:21", - "_numverses": "27" - }, - { - "_num": "4", - "_begin": "3:22", - "_end": "4:18", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "4:19", - "_end": "4:22", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "4:23", - "_end": "5:24", - "_numverses": "28" - }, - { - "_num": "7", - "_begin": "5:25", - "_end": "6:8", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "6:5", - "_end": "6:8", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:5" - }, - { - "_num": "2", - "_begin": "1:6", - "_end": "1:8" - }, - { - "_num": "3", - "_begin": "1:9", - "_end": "1:13" - }, - { - "_num": "4", - "_begin": "1:14", - "_end": "1:19" - }, - { - "_num": "5", - "_begin": "1:20", - "_end": "1:23" - }, - { - "_num": "6", - "_begin": "1:24", - "_end": "1:31" - }, - { - "_num": "7", - "_begin": "2:1", - "_end": "2:3" - }, - { - "_num": "M", - "_begin": "2:1", - "_end": "2:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:4", - "_end": "2:9" - }, - { - "_num": "2", - "_begin": "2:10", - "_end": "2:19" - }, - { - "_num": "3", - "_begin": "2:20", - "_end": "2:25" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:21" - }, - { - "_num": "5", - "_begin": "3:22", - "_end": "3:24" - }, - { - "_num": "6", - "_begin": "4:1", - "_end": "4:18" - }, - { - "_num": "7", - "_begin": "4:19", - "_end": "4:26" - }, - { - "_num": "M", - "_begin": "4:23", - "_end": "4:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:5" - }, - { - "_num": "2", - "_begin": "5:6", - "_end": "5:8" - }, - { - "_num": "3", - "_begin": "5:9", - "_end": "5:14" - }, - { - "_num": "4", - "_begin": "5:15", - "_end": "5:20" - }, - { - "_num": "5", - "_begin": "5:21", - "_end": "5:24" - }, - { - "_num": "6", - "_begin": "5:25", - "_end": "5:31" - }, - { - "_num": "7", - "_begin": "5:32", - "_end": "6:8" - }, - { - "_num": "M", - "_begin": "6:5", - "_end": "6:8" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bereshit", - "_num": "1", - "_hebrew": "בְּרֵאשִׁית", - "_verse": "Genesis 1:1 - 6:8", - "_haftara": "Isaiah 42:5 - 43:10", - "_haftaraLength": "31", - "_sephardic": "Isaiah 42:5 - 42:21", - "maftirOffset": "164" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:9", - "_end": "6:22", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "7:1", - "_end": "7:16", - "_numverses": "16" - }, - { - "_num": "3", - "_begin": "7:17", - "_end": "8:14", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "8:15", - "_end": "9:7", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "9:8", - "_end": "9:17", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "9:18", - "_end": "10:32", - "_numverses": "44" - }, - { - "_num": "7", - "_begin": "11:1", - "_end": "11:32", - "_numverses": "32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:9", - "_end": "6:16" - }, - { - "_num": "2", - "_begin": "6:17", - "_end": "6:19" - }, - { - "_num": "3", - "_begin": "6:20", - "_end": "6:22" - }, - { - "_num": "4", - "_begin": "7:1", - "_end": "7:9" - }, - { - "_num": "5", - "_begin": "7:10", - "_end": "7:16" - }, - { - "_num": "6", - "_begin": "7:17", - "_end": "7:24" - }, - { - "_num": "7", - "_begin": "8:1", - "_end": "8:14" - }, - { - "_num": "M", - "_begin": "8:12", - "_end": "8:14" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:15", - "_end": "8:22" - }, - { - "_num": "2", - "_begin": "9:1", - "_end": "9:7" - }, - { - "_num": "3", - "_begin": "9:8", - "_end": "9:17" - }, - { - "_num": "4", - "_begin": "9:18", - "_end": "9:29" - }, - { - "_num": "5", - "_begin": "10:1", - "_end": "10:14" - }, - { - "_num": "6", - "_begin": "10:15", - "_end": "10:20" - }, - { - "_num": "7", - "_begin": "10:21", - "_end": "10:32" - }, - { - "_num": "M", - "_begin": "10:26", - "_end": "10:32" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:1", - "_end": "11:4" - }, - { - "_num": "2", - "_begin": "11:5", - "_end": "11:9" - }, - { - "_num": "3", - "_begin": "11:10", - "_end": "11:13" - }, - { - "_num": "4", - "_begin": "11:14", - "_end": "11:17" - }, - { - "_num": "5", - "_begin": "11:18", - "_end": "11:21" - }, - { - "_num": "6", - "_begin": "11:22", - "_end": "11:25" - }, - { - "_num": "7", - "_begin": "11:26", - "_end": "11:32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32" - } - ], - "_num": "3" - } - ] - }, - "_id": "Noach", - "_num": "2", - "_hebrew": "נֹחַ", - "_verse": "Genesis 6:9 - 11:32", - "_haftara": "Isaiah 54:1 - 55:5", - "_haftaraLength": "22", - "_sephardic": "Isaiah 54:1 - 54:10", - "maftirOffset": "328" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "12:14", - "_end": "13:4", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "13:5", - "_end": "13:18", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "14:1", - "_end": "14:20", - "_numverses": "20" - }, - { - "_num": "5", - "_begin": "14:21", - "_end": "15:6", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "15:7", - "_end": "17:6", - "_numverses": "37" - }, - { - "_num": "7", - "_begin": "17:7", - "_end": "17:27", - "_numverses": "21" - }, - { - "_num": "M", - "_begin": "17:24", - "_end": "17:27", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:3" - }, - { - "_num": "2", - "_begin": "12:4", - "_end": "12:9" - }, - { - "_num": "3", - "_begin": "12:10", - "_end": "12:13" - }, - { - "_num": "4", - "_begin": "12:14", - "_end": "12:20" - }, - { - "_num": "5", - "_begin": "13:1", - "_end": "13:4" - }, - { - "_num": "6", - "_begin": "13:5", - "_end": "13:11" - }, - { - "_num": "7", - "_begin": "13:12", - "_end": "13:18" - }, - { - "_num": "M", - "_begin": "13:16", - "_end": "13:18" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:9" - }, - { - "_num": "2", - "_begin": "14:10", - "_end": "14:16" - }, - { - "_num": "3", - "_begin": "14:17", - "_end": "14:20" - }, - { - "_num": "4", - "_begin": "14:21", - "_end": "14:24" - }, - { - "_num": "5", - "_begin": "15:1", - "_end": "15:6" - }, - { - "_num": "6", - "_begin": "15:7", - "_end": "15:16" - }, - { - "_num": "7", - "_begin": "15:17", - "_end": "15:21" - }, - { - "_num": "M", - "_begin": "15:17", - "_end": "15:21" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:6" - }, - { - "_num": "2", - "_begin": "16:7", - "_end": "16:9" - }, - { - "_num": "3", - "_begin": "16:10", - "_end": "16:16" - }, - { - "_num": "4", - "_begin": "17:1", - "_end": "17:6" - }, - { - "_num": "5", - "_begin": "17:7", - "_end": "17:17" - }, - { - "_num": "6", - "_begin": "17:18", - "_end": "17:23" - }, - { - "_num": "7", - "_begin": "17:24", - "_end": "17:27" - }, - { - "_num": "M", - "_begin": "17:24", - "_end": "17:27" - } - ], - "_num": "3" - } - ] - }, - "_id": "Lech-Lecha", - "_num": "3", - "maftirOffset": "251", - "_hebrew": "לֶךְ־לְךָ", - "_verse": "Genesis 12:1 - 17:27", - "_haftaraLength": "21", - "_haftara": "Isaiah 40:27 - 41:16" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "18:15", - "_end": "18:33", - "_numverses": "19" - }, - { - "_num": "3", - "_begin": "19:1", - "_end": "19:20", - "_numverses": "20" - }, - { - "_num": "4", - "_begin": "19:21", - "_end": "21:4", - "_numverses": "40" - }, - { - "_num": "5", - "_begin": "21:5", - "_end": "21:21", - "_numverses": "17" - }, - { - "_num": "6", - "_begin": "21:22", - "_end": "21:34", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "22:1", - "_end": "22:24", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "22:20", - "_end": "22:24", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "2", - "_begin": "18:6", - "_end": "18:8" - }, - { - "_num": "3", - "_begin": "18:9", - "_end": "18:14" - }, - { - "_num": "4", - "_begin": "18:15", - "_end": "18:21" - }, - { - "_num": "5", - "_begin": "18:22", - "_end": "18:26" - }, - { - "_num": "6", - "_begin": "18:27", - "_end": "18:30" - }, - { - "_num": "7", - "_begin": "18:31", - "_end": "18:33" - }, - { - "_num": "M", - "_begin": "18:31", - "_end": "18:33" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:11" - }, - { - "_num": "2", - "_begin": "19:12", - "_end": "19:20" - }, - { - "_num": "3", - "_begin": "19:21", - "_end": "19:29" - }, - { - "_num": "4", - "_begin": "19:30", - "_end": "19:38" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:8" - }, - { - "_num": "6", - "_begin": "20:9", - "_end": "20:14" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:18" - }, - { - "_num": "M", - "_begin": "20:15", - "_end": "20:18" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:4" - }, - { - "_num": "2", - "_begin": "21:5", - "_end": "21:13" - }, - { - "_num": "3", - "_begin": "21:14", - "_end": "21:21" - }, - { - "_num": "4", - "_begin": "21:22", - "_end": "21:34" - }, - { - "_num": "5", - "_begin": "22:1", - "_end": "22:8" - }, - { - "_num": "6", - "_begin": "22:9", - "_end": "22:19" - }, - { - "_num": "7", - "_begin": "22:20", - "_end": "22:24" - }, - { - "_num": "M", - "_begin": "22:20", - "_end": "22:24" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayera", - "maftirOffset": "307", - "_num": "4", - "_hebrew": "וַיֵּרָא", - "_verse": "Genesis 18:1 - 22:24", - "_haftara": "Kings_1 4:1 - 4:37", - "_haftaraLength": "21", - "_sephardic": "Kings_1 4:1 - 4:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "23:1", - "_end": "23:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "23:17", - "_end": "24:9", - "_numverses": "13" - }, - { - "_num": "3", - "_begin": "24:10", - "_end": "24:26", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "24:27", - "_end": "24:52", - "_numverses": "26" - }, - { - "_num": "5", - "_begin": "24:53", - "_end": "24:67", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "25:1", - "_end": "25:11", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "25:12", - "_end": "25:18", - "_numverses": "7" - }, - { - "_num": "M", - "_begin": "25:16", - "_end": "25:18", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:1", - "_end": "23:4" - }, - { - "_num": "2", - "_begin": "23:5", - "_end": "23:7" - }, - { - "_num": "3", - "_begin": "23:8", - "_end": "23:12" - }, - { - "_num": "4", - "_begin": "23:13", - "_end": "23:16" - }, - { - "_num": "5", - "_begin": "23:17", - "_end": "23:20" - }, - { - "_num": "6", - "_begin": "24:1", - "_end": "24:4" - }, - { - "_num": "7", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "M", - "_begin": "24:5", - "_end": "24:9" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:10", - "_end": "24:14" - }, - { - "_num": "2", - "_begin": "24:15", - "_end": "24:20" - }, - { - "_num": "3", - "_begin": "24:21", - "_end": "24:26" - }, - { - "_num": "4", - "_begin": "24:27", - "_end": "24:33" - }, - { - "_num": "5", - "_begin": "24:34", - "_end": "24:41" - }, - { - "_num": "6", - "_begin": "24:42", - "_end": "24:49" - }, - { - "_num": "7", - "_begin": "24:50", - "_end": "24:52" - }, - { - "_num": "M", - "_begin": "24:50", - "_end": "24:52" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:53", - "_end": "24:58" - }, - { - "_num": "2", - "_begin": "24:59", - "_end": "24:61" - }, - { - "_num": "3", - "_begin": "24:62", - "_end": "24:67" - }, - { - "_num": "4", - "_begin": "25:1", - "_end": "25:6" - }, - { - "_num": "5", - "_begin": "25:7", - "_end": "25:11" - }, - { - "_num": "6", - "_begin": "25:12", - "_end": "25:15" - }, - { - "_num": "7", - "_begin": "25:16", - "_end": "25:18" - }, - { - "_num": "M", - "_begin": "25:16", - "_end": "25:18" - } - ], - "_num": "3" - } - ] - }, - "_id": "Chayei Sara", - "maftirOffset": "32", - "_num": "5", - "_hebrew": "חַיֵּי שָֹרָה", - "_verse": "Genesis 23:1 - 25:18", - "_haftara": "Kings_1 1:1 - 1:31", - "_haftaraLength": "31" - - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:19", - "_end": "26:5", - "_numverses": "21" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:12", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "26:13", - "_end": "26:22", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "26:23", - "_end": "26:29", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "26:30", - "_end": "27:27", - "_numverses": "33" - }, - { - "_num": "6", - "_begin": "27:28", - "_end": "28:4", - "_numverses": "23" - }, - { - "_num": "7", - "_begin": "28:5", - "_end": "28:9", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "28:7", - "_end": "28:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:19", - "_end": "25:22" - }, - { - "_num": "2", - "_begin": "25:23", - "_end": "25:26" - }, - { - "_num": "3", - "_begin": "25:27", - "_end": "25:34" - }, - { - "_num": "4", - "_begin": "26:1", - "_end": "26:5" - }, - { - "_num": "5", - "_begin": "26:6", - "_end": "26:12" - }, - { - "_num": "6", - "_begin": "26:13", - "_end": "26:16" - }, - { - "_num": "7", - "_begin": "26:17", - "_end": "26:22" - }, - { - "_num": "M", - "_begin": "26:19", - "_end": "26:22" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:23", - "_end": "26:29" - }, - { - "_num": "2", - "_begin": "26:30", - "_end": "26:33" - }, - { - "_num": "3", - "_begin": "26:34", - "_end": "27:4" - }, - { - "_num": "4", - "_begin": "27:5", - "_end": "27:13" - }, - { - "_num": "5", - "_begin": "27:14", - "_end": "27:17" - }, - { - "_num": "6", - "_begin": "27:18", - "_end": "27:23" - }, - { - "_num": "7", - "_begin": "27:24", - "_end": "27:27" - }, - { - "_num": "M", - "_begin": "27:24", - "_end": "27:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:28", - "_end": "27:30" - }, - { - "_num": "2", - "_begin": "27:31", - "_end": "27:33" - }, - { - "_num": "3", - "_begin": "27:34", - "_end": "27:37" - }, - { - "_num": "4", - "_begin": "27:38", - "_end": "27:40" - }, - { - "_num": "5", - "_begin": "27:41", - "_end": "27:46" - }, - { - "_num": "6", - "_begin": "28:1", - "_end": "28:4" - }, - { - "_num": "7", - "_begin": "28:5", - "_end": "28:9" - }, - { - "_num": "M", - "_begin": "28:7", - "_end": "28:9" - } - ], - "_num": "3" - } - ] - }, - "_id": "Toldot", - "_num": "6", - "maftirOffset": "42", - "_hebrew": "תּוֹלְדוֹת", - "_verse": "Genesis 25:19 - 28:9", - "_haftaraLength": "21", - "_haftara": "Malachi 1:1 - 2:7" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "28:10", - "_end": "28:22", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "29:1", - "_end": "29:17", - "_numverses": "17" - }, - { - "_num": "3", - "_begin": "29:18", - "_end": "30:13", - "_numverses": "31" - }, - { - "_num": "4", - "_begin": "30:14", - "_end": "30:27", - "_numverses": "14" - }, - { - "_num": "5", - "_begin": "30:28", - "_end": "31:16", - "_numverses": "32" - }, - { - "_num": "6", - "_begin": "31:17", - "_end": "31:42", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "31:43", - "_end": "32:3", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "32:1", - "_end": "32:3", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:10", - "_end": "28:12" - }, - { - "_num": "2", - "_begin": "28:13", - "_end": "28:17" - }, - { - "_num": "3", - "_begin": "28:18", - "_end": "28:22" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:8" - }, - { - "_num": "5", - "_begin": "29:9", - "_end": "29:17" - }, - { - "_num": "6", - "_begin": "29:18", - "_end": "29:33" - }, - { - "_num": "7", - "_begin": "29:34", - "_end": "30:13" - }, - { - "_num": "M", - "_begin": "30:9", - "_end": "30:13" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:14", - "_end": "30:16" - }, - { - "_num": "2", - "_begin": "30:17", - "_end": "30:21" - }, - { - "_num": "3", - "_begin": "30:22", - "_end": "30:27" - }, - { - "_num": "4", - "_begin": "30:28", - "_end": "30:36" - }, - { - "_num": "5", - "_begin": "30:37", - "_end": "30:43" - }, - { - "_num": "6", - "_begin": "31:1", - "_end": "31:9" - }, - { - "_num": "7", - "_begin": "31:10", - "_end": "31:16" - }, - { - "_num": "M", - "_begin": "31:14", - "_end": "31:16" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:17", - "_end": "31:21" - }, - { - "_num": "2", - "_begin": "31:22", - "_end": "31:24" - }, - { - "_num": "3", - "_begin": "31:25", - "_end": "31:35" - }, - { - "_num": "4", - "_begin": "31:36", - "_end": "31:42" - }, - { - "_num": "5", - "_begin": "31:43", - "_end": "31:45" - }, - { - "_num": "6", - "_begin": "31:46", - "_end": "31:50" - }, - { - "_num": "7", - "_begin": "31:51", - "_end": "32:3" - }, - { - "_num": "M", - "_begin": "32:1", - "_end": "32:3" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayetzei", - "maftirOffset": "166", - "_num": "7", - "_hebrew": "וַיֵּצֵא", - "_verse": "Genesis 28:10 - 32:3", - "_haftara": "Hosea 12:13 - 14:10", - "_haftaraLength": "28", - "_sephardic": "Hosea 11:7 - 12:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "32:4", - "_end": "32:13", - "_numverses": "10" - }, - { - "_num": "2", - "_begin": "32:14", - "_end": "32:30", - "_numverses": "17" - }, - { - "_num": "3", - "_begin": "32:31", - "_end": "33:5", - "_numverses": "8" - }, - { - "_num": "4", - "_begin": "33:6", - "_end": "33:20", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "34:1", - "_end": "35:11", - "_numverses": "42" - }, - { - "_num": "6", - "_begin": "35:12", - "_end": "36:19", - "_numverses": "37" - }, - { - "_num": "7", - "_begin": "36:20", - "_end": "36:43", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "36:40", - "_end": "36:43", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "32:4", - "_end": "32:6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:9" - }, - { - "_num": "3", - "_begin": "32:10", - "_end": "32:13" - }, - { - "_num": "4", - "_begin": "32:14", - "_end": "32:22" - }, - { - "_num": "5", - "_begin": "32:23", - "_end": "32:30" - }, - { - "_num": "6", - "_begin": "32:31", - "_end": "33:5" - }, - { - "_num": "7", - "_begin": "33:6", - "_end": "33:20" - }, - { - "_num": "M", - "_begin": "33:18", - "_end": "33:20" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "34:1", - "_end": "34:4" - }, - { - "_num": "2", - "_begin": "34:5", - "_end": "34:12" - }, - { - "_num": "3", - "_begin": "34:13", - "_end": "34:17" - }, - { - "_num": "4", - "_begin": "34:18", - "_end": "34:23" - }, - { - "_num": "5", - "_begin": "34:24", - "_end": "34:31" - }, - { - "_num": "6", - "_begin": "35:1", - "_end": "35:11" - }, - { - "_num": "7", - "_begin": "35:12", - "_end": "35:15" - }, - { - "_num": "M", - "_begin": "35:12", - "_end": "35:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:16", - "_end": "35:26" - }, - { - "_num": "2", - "_begin": "35:27", - "_end": "35:29" - }, - { - "_num": "3", - "_begin": "36:1", - "_end": "36:8" - }, - { - "_num": "4", - "_begin": "36:9", - "_end": "36:19" - }, - { - "_num": "5", - "_begin": "36:20", - "_end": "36:30" - }, - { - "_num": "6", - "_begin": "36:31", - "_end": "36:39" - }, - { - "_num": "7", - "_begin": "36:40", - "_end": "36:43" - }, - { - "_num": "M", - "_begin": "36:40", - "_end": "36:43" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayishlach", - "maftirOffset": "190", - "_num": "8", - "_hebrew": "וַיִּשְׁלַח", - "_verse": "Genesis 32:4 - 36:43", - "_haftaraLength": "21", - "_haftara": "Obadiah 1:1 - 1:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "37:1", - "_end": "37:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "37:12", - "_end": "37:22", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "37:23", - "_end": "37:36", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "38:1", - "_end": "38:30", - "_numverses": "30" - }, - { - "_num": "5", - "_begin": "39:1", - "_end": "39:6", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "39:7", - "_end": "39:23", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "40:1", - "_end": "40:23", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "40:20", - "_end": "40:23", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "37:1", - "_end": "37:3" - }, - { - "_num": "2", - "_begin": "37:4", - "_end": "37:7" - }, - { - "_num": "3", - "_begin": "37:8", - "_end": "37:11" - }, - { - "_num": "4", - "_begin": "37:12", - "_end": "37:17" - }, - { - "_num": "5", - "_begin": "37:18", - "_end": "37:22" - }, - { - "_num": "6", - "_begin": "37:23", - "_end": "37:28" - }, - { - "_num": "7", - "_begin": "37:29", - "_end": "37:36" - }, - { - "_num": "M", - "_begin": "37:34", - "_end": "37:36" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "38:1", - "_end": "38:5" - }, - { - "_num": "2", - "_begin": "38:6", - "_end": "38:11" - }, - { - "_num": "3", - "_begin": "38:12", - "_end": "38:14" - }, - { - "_num": "4", - "_begin": "38:15", - "_end": "38:19" - }, - { - "_num": "5", - "_begin": "38:20", - "_end": "38:23" - }, - { - "_num": "6", - "_begin": "38:24", - "_end": "38:26" - }, - { - "_num": "7", - "_begin": "38:27", - "_end": "38:30" - }, - { - "_num": "M", - "_begin": "38:27", - "_end": "38:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "39:1", - "_end": "39:6" - }, - { - "_num": "2", - "_begin": "39:7", - "_end": "39:10" - }, - { - "_num": "3", - "_begin": "39:11", - "_end": "39:18" - }, - { - "_num": "4", - "_begin": "39:19", - "_end": "39:23" - }, - { - "_num": "5", - "_begin": "40:1", - "_end": "40:8" - }, - { - "_num": "6", - "_begin": "40:9", - "_end": "40:15" - }, - { - "_num": "7", - "_begin": "40:16", - "_end": "40:23" - }, - { - "_num": "M", - "_begin": "40:20", - "_end": "40:23" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayeshev", - "maftirOffset": "264", - "_num": "9", - "_hebrew": "וַיֵּשֶׁב", - "_verse": "Genesis 37:1 - 40:23", - "_haftaraLength": "19", - "_haftara": "Amos 2:6 - 3:8" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "41:1", - "_end": "41:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "41:15", - "_end": "41:38", - "_numverses": "24" - }, - { - "_num": "3", - "_begin": "41:39", - "_end": "41:52", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "41:53", - "_end": "42:18", - "_numverses": "23" - }, - { - "_num": "5", - "_begin": "42:19", - "_end": "43:15", - "_numverses": "35" - }, - { - "_num": "6", - "_begin": "43:16", - "_end": "43:29", - "_numverses": "14" - }, - { - "_num": "7", - "_begin": "43:30", - "_end": "44:17", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "44:14", - "_end": "44:17", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "41:1", - "_end": "41:4" - }, - { - "_num": "2", - "_begin": "41:5", - "_end": "41:7" - }, - { - "_num": "3", - "_begin": "41:8", - "_end": "41:14" - }, - { - "_num": "4", - "_begin": "41:15", - "_end": "41:24" - }, - { - "_num": "5", - "_begin": "41:25", - "_end": "41:38" - }, - { - "_num": "6", - "_begin": "41:39", - "_end": "41:43" - }, - { - "_num": "7", - "_begin": "41:44", - "_end": "41:52" - }, - { - "_num": "M", - "_begin": "41:50", - "_end": "41:52" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "41:53", - "_end": "41:57" - }, - { - "_num": "2", - "_begin": "42:1", - "_end": "42:5" - }, - { - "_num": "3", - "_begin": "42:6", - "_end": "42:18" - }, - { - "_num": "4", - "_begin": "42:19", - "_end": "42:28" - }, - { - "_num": "5", - "_begin": "42:29", - "_end": "42:38" - }, - { - "_num": "6", - "_begin": "43:1", - "_end": "43:7" - }, - { - "_num": "7", - "_begin": "43:8", - "_end": "43:15" - }, - { - "_num": "M", - "_begin": "43:11", - "_end": "43:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "43:16", - "_end": "43:18" - }, - { - "_num": "2", - "_begin": "43:19", - "_end": "43:25" - }, - { - "_num": "3", - "_begin": "43:26", - "_end": "43:29" - }, - { - "_num": "4", - "_begin": "43:30", - "_end": "43:34" - }, - { - "_num": "5", - "_begin": "44:1", - "_end": "44:6" - }, - { - "_num": "6", - "_begin": "44:7", - "_end": "44:10" - }, - { - "_num": "7", - "_begin": "44:11", - "_end": "44:17" - }, - { - "_num": "M", - "_begin": "44:15", - "_end": "44:17" - } - ], - "_num": "3" - } - ] - }, - "_id": "Miketz", - "maftirOffset": "230", - "_num": "10", - "_hebrew": "מִקֵּץ", - "_verse": "Genesis 41:1 - 44:17", - "_haftaraLength": "15", - "_haftara": "Kings_1 3:15 - 4:1" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "44:18", - "_end": "44:30", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "44:31", - "_end": "45:7", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "45:8", - "_end": "45:18", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "45:19", - "_end": "45:27", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "45:28", - "_end": "46:27", - "_numverses": "28" - }, - { - "_num": "6", - "_begin": "46:28", - "_end": "47:10", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "47:11", - "_end": "47:27", - "_numverses": "17" - }, - { - "_num": "M", - "_begin": "47:25", - "_end": "47:27", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "44:18", - "_end": "44:20" - }, - { - "_num": "2", - "_begin": "44:21", - "_end": "44:24" - }, - { - "_num": "3", - "_begin": "44:25", - "_end": "44:30" - }, - { - "_num": "4", - "_begin": "44:31", - "_end": "44:34" - }, - { - "_num": "5", - "_begin": "45:1", - "_end": "45:7" - }, - { - "_num": "6", - "_begin": "45:8", - "_end": "45:18" - }, - { - "_num": "7", - "_begin": "45:19", - "_end": "45:27" - }, - { - "_num": "M", - "_begin": "45:25", - "_end": "45:27" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "45:28", - "_end": "46:4" - }, - { - "_num": "2", - "_begin": "46:5", - "_end": "46:7" - }, - { - "_num": "3", - "_begin": "46:8", - "_end": "46:11" - }, - { - "_num": "4", - "_begin": "46:12", - "_end": "46:15" - }, - { - "_num": "5", - "_begin": "46:16", - "_end": "46:18" - }, - { - "_num": "6", - "_begin": "46:19", - "_end": "46:22" - }, - { - "_num": "7", - "_begin": "46:23", - "_end": "46:27" - }, - { - "_num": "M", - "_begin": "46:23", - "_end": "46:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "46:28", - "_end": "46:30" - }, - { - "_num": "2", - "_begin": "46:31", - "_end": "46:34" - }, - { - "_num": "3", - "_begin": "47:1", - "_end": "47:6" - }, - { - "_num": "4", - "_begin": "47:7", - "_end": "47:10" - }, - { - "_num": "5", - "_begin": "47:11", - "_end": "47:19" - }, - { - "_num": "6", - "_begin": "47:20", - "_end": "47:22" - }, - { - "_num": "7", - "_begin": "47:23", - "_end": "47:27" - }, - { - "_num": "M", - "_begin": "47:25", - "_end": "47:27" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayigash", - "maftirOffset": "256", - "_num": "11", - "_hebrew": "וַיִּגַּשׁ", - "_verse": "Genesis 44:18 - 47:27", - "_haftaraLength": "14", - "_haftara": "Ezekiel 37:15 - 37:28" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "47:28", - "_end": "48:9", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "48:10", - "_end": "48:16", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "48:17", - "_end": "48:22", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "49:1", - "_end": "49:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "49:19", - "_end": "49:26", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "49:27", - "_end": "50:20", - "_numverses": "27" - }, - { - "_num": "7", - "_begin": "50:21", - "_end": "50:26", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "50:23", - "_end": "50:26", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "47:28", - "_end": "47:31" - }, - { - "_num": "2", - "_begin": "48:1", - "_end": "48:3" - }, - { - "_num": "3", - "_begin": "48:4", - "_end": "48:9" - }, - { - "_num": "4", - "_begin": "48:10", - "_end": "48:13" - }, - { - "_num": "5", - "_begin": "48:14", - "_end": "48:16" - }, - { - "_num": "6", - "_begin": "48:17", - "_end": "48:19" - }, - { - "_num": "7", - "_begin": "48:20", - "_end": "48:22" - }, - { - "_num": "M", - "_begin": "48:20", - "_end": "48:22" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "49:1", - "_end": "49:4" - }, - { - "_num": "2", - "_begin": "49:5", - "_end": "49:7" - }, - { - "_num": "3", - "_begin": "49:8", - "_end": "49:12" - }, - { - "_num": "4", - "_begin": "49:13", - "_end": "49:15" - }, - { - "_num": "5", - "_begin": "49:16", - "_end": "49:18" - }, - { - "_num": "6", - "_begin": "49:19", - "_end": "49:21" - }, - { - "_num": "7", - "_begin": "49:22", - "_end": "49:26" - }, - { - "_num": "M", - "_begin": "49:22", - "_end": "49:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "49:27", - "_end": "49:30" - }, - { - "_num": "2", - "_begin": "49:31", - "_end": "49:33" - }, - { - "_num": "3", - "_begin": "50:1", - "_end": "50:6" - }, - { - "_num": "4", - "_begin": "50:7", - "_end": "50:9" - }, - { - "_num": "5", - "_begin": "50:10", - "_end": "50:14" - }, - { - "_num": "6", - "_begin": "50:15", - "_end": "50:20" - }, - { - "_num": "7", - "_begin": "50:21", - "_end": "50:26" - }, - { - "_num": "M", - "_begin": "50:23", - "_end": "50:26" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayechi", - "maftirOffset": "24", - "_num": "12", - "_hebrew": "וַיְחִי", - "_verse": "Genesis 47:28 - 50:26", - "_haftaraLength": "12", - "_haftara": "Kings_1 2:1 - 2:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "1:18", - "_end": "2:10", - "_numverses": "15" - }, - { - "_num": "3", - "_begin": "2:11", - "_end": "2:25", - "_numverses": "15" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:15", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "3:16", - "_end": "4:17", - "_numverses": "24" - }, - { - "_num": "6", - "_begin": "4:18", - "_end": "4:31", - "_numverses": "14" - }, - { - "_num": "7", - "_begin": "5:1", - "_end": "6:1", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "5:22", - "_end": "6:1", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:7" - }, - { - "_num": "2", - "_begin": "1:8", - "_end": "1:12" - }, - { - "_num": "3", - "_begin": "1:13", - "_end": "1:17" - }, - { - "_num": "4", - "_begin": "1:18", - "_end": "1:22" - }, - { - "_num": "5", - "_begin": "2:1", - "_end": "2:10" - }, - { - "_num": "6", - "_begin": "2:11", - "_end": "2:15" - }, - { - "_num": "7", - "_begin": "2:16", - "_end": "2:25" - }, - { - "_num": "M", - "_begin": "2:23", - "_end": "2:25" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:1", - "_end": "3:6" - }, - { - "_num": "2", - "_begin": "3:7", - "_end": "3:10" - }, - { - "_num": "3", - "_begin": "3:11", - "_end": "3:15" - }, - { - "_num": "4", - "_begin": "3:16", - "_end": "3:22" - }, - { - "_num": "5", - "_begin": "4:1", - "_end": "4:5" - }, - { - "_num": "6", - "_begin": "4:6", - "_end": "4:9" - }, - { - "_num": "7", - "_begin": "4:10", - "_end": "4:17" - }, - { - "_num": "M", - "_begin": "4:14", - "_end": "4:17" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:18", - "_end": "4:20" - }, - { - "_num": "2", - "_begin": "4:21", - "_end": "4:26" - }, - { - "_num": "3", - "_begin": "4:27", - "_end": "4:31" - }, - { - "_num": "4", - "_begin": "5:1", - "_end": "5:5" - }, - { - "_num": "5", - "_begin": "5:6", - "_end": "5:9" - }, - { - "_num": "6", - "_begin": "5:10", - "_end": "5:14" - }, - { - "_num": "7", - "_begin": "5:15", - "_end": "6:1" - }, - { - "_num": "M", - "_begin": "5:22", - "_end": "6:1" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shemot", - "_num": "13", - "maftirOffset": "291", - "_hebrew": "שְׁמוֹת", - "_verse": "Exodus 1:1 - 6:1", - "_haftaraLength": "21", - "_haftaraLength2": "2", - "_haftara": "Isaiah 27:6 - 28:13; 29:22 - 29:23", - "_sephardic": "Jeremiah 1:1 - 2:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:2", - "_end": "6:13", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "6:14", - "_end": "6:28", - "_numverses": "15" - }, - { - "_num": "3", - "_begin": "6:29", - "_end": "7:7", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "7:8", - "_end": "8:6", - "_numverses": "28" - }, - { - "_num": "5", - "_begin": "8:7", - "_end": "8:18", - "_numverses": "12" - }, - { - "_num": "6", - "_begin": "8:19", - "_end": "9:16", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "9:17", - "_end": "9:35", - "_numverses": "19" - }, - { - "_num": "M", - "_begin": "9:33", - "_end": "9:35", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:2", - "_end": "6:5" - }, - { - "_num": "2", - "_begin": "6:6", - "_end": "6:9" - }, - { - "_num": "3", - "_begin": "6:10", - "_end": "6:13" - }, - { - "_num": "4", - "_begin": "6:14", - "_end": "6:19" - }, - { - "_num": "5", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "6", - "_begin": "6:26", - "_end": "6:28" - }, - { - "_num": "7", - "_begin": "6:29", - "_end": "7:7" - }, - { - "_num": "M", - "_begin": "7:5", - "_end": "7:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:8", - "_end": "7:13" - }, - { - "_num": "2", - "_begin": "7:14", - "_end": "7:18" - }, - { - "_num": "3", - "_begin": "7:19", - "_end": "7:25" - }, - { - "_num": "4", - "_begin": "7:26", - "_end": "7:29" - }, - { - "_num": "5", - "_begin": "8:1", - "_end": "8:6" - }, - { - "_num": "6", - "_begin": "8:7", - "_end": "8:11" - }, - { - "_num": "7", - "_begin": "8:12", - "_end": "8:15" - }, - { - "_num": "M", - "_begin": "8:12", - "_end": "8:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:16", - "_end": "8:23" - }, - { - "_num": "2", - "_begin": "8:24", - "_end": "8:28" - }, - { - "_num": "3", - "_begin": "9:1", - "_end": "9:7" - }, - { - "_num": "4", - "_begin": "9:8", - "_end": "9:16" - }, - { - "_num": "5", - "_begin": "9:17", - "_end": "9:21" - }, - { - "_num": "6", - "_begin": "9:22", - "_end": "9:26" - }, - { - "_num": "7", - "_begin": "9:27", - "_end": "9:35" - }, - { - "_num": "M", - "_begin": "9:33", - "_end": "9:35" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vaera", - "maftirOffset": "238", - "_num": "14", - "_hebrew": "וָאֵרָא", - "_verse": "Exodus 6:2 - 9:35", - "_haftaraLength": "23", - "_haftara": "Ezekiel 28:25 - 29:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "10:1", - "_end": "10:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "10:12", - "_end": "10:23", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "10:24", - "_end": "11:3", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "11:4", - "_end": "12:20", - "_numverses": "27" - }, - { - "_num": "5", - "_begin": "12:21", - "_end": "12:28", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "12:29", - "_end": "12:51", - "_numverses": "23" - }, - { - "_num": "7", - "_begin": "13:1", - "_end": "13:16", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "13:14", - "_end": "13:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:1", - "_end": "10:3" - }, - { - "_num": "2", - "_begin": "10:4", - "_end": "10:6" - }, - { - "_num": "3", - "_begin": "10:7", - "_end": "10:11" - }, - { - "_num": "4", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "5", - "_begin": "10:16", - "_end": "10:23" - }, - { - "_num": "6", - "_begin": "10:24", - "_end": "10:29" - }, - { - "_num": "7", - "_begin": "11:1", - "_end": "11:3" - }, - { - "_num": "M", - "_begin": "11:1", - "_end": "11:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:4", - "_end": "11:10" - }, - { - "_num": "2", - "_begin": "12:1", - "_end": "12:10" - }, - { - "_num": "3", - "_begin": "12:11", - "_end": "12:13" - }, - { - "_num": "4", - "_begin": "12:14", - "_end": "12:16" - }, - { - "_num": "5", - "_begin": "12:17", - "_end": "12:20" - }, - { - "_num": "6", - "_begin": "12:21", - "_end": "12:24" - }, - { - "_num": "7", - "_begin": "12:25", - "_end": "12:28" - }, - { - "_num": "M", - "_begin": "12:25", - "_end": "12:28" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:29", - "_end": "12:32" - }, - { - "_num": "2", - "_begin": "12:33", - "_end": "12:36" - }, - { - "_num": "3", - "_begin": "12:37", - "_end": "12:42" - }, - { - "_num": "4", - "_begin": "12:43", - "_end": "12:51" - }, - { - "_num": "5", - "_begin": "13:1", - "_end": "13:4" - }, - { - "_num": "6", - "_begin": "13:5", - "_end": "13:10" - }, - { - "_num": "7", - "_begin": "13:11", - "_end": "13:16" - }, - { - "_num": "M", - "_begin": "13:14", - "_end": "13:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bo", - "maftirOffset": "174", - "_num": "15", - "_hebrew": "בֹּא", - "_verse": "Exodus 10:1 - 13:16", - "_haftaraLength": "16", - "_haftara": "Jeremiah 46:13 - 46:28" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "13:17", - "_end": "14:8", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "14:9", - "_end": "14:14", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "14:15", - "_end": "14:25", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "15:26", - "_numverses": "32" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "16:10", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "16:11", - "_end": "16:36", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "17:1", - "_end": "17:16", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "17:14", - "_end": "17:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:17", - "_end": "13:22" - }, - { - "_num": "2", - "_begin": "14:1", - "_end": "14:4" - }, - { - "_num": "3", - "_begin": "14:5", - "_end": "14:8" - }, - { - "_num": "4", - "_begin": "14:9", - "_end": "14:14" - }, - { - "_num": "5", - "_begin": "14:15", - "_end": "14:20" - }, - { - "_num": "6", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "7", - "_begin": "14:26", - "_end": "15:26" - }, - { - "_num": "M", - "_begin": "15:22", - "_end": "15:26" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:15", - "_end": "14:20" - }, - { - "_num": "2", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "3", - "_begin": "14:26", - "_end": "15:21" - }, - { - "_num": "4", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "16:3" - }, - { - "_num": "6", - "_begin": "16:4", - "_end": "16:7" - }, - { - "_num": "7", - "_begin": "16:8", - "_end": "16:10" - }, - { - "_num": "M", - "_begin": "16:8", - "_end": "16:10" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:26", - "_end": "15:21" - }, - { - "_num": "2", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "3", - "_begin": "15:27", - "_end": "16:10" - }, - { - "_num": "4", - "_begin": "16:11", - "_end": "16:27" - }, - { - "_num": "5", - "_begin": "16:28", - "_end": "16:36" - }, - { - "_num": "6", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "7", - "_begin": "17:8", - "_end": "17:16" - }, - { - "_num": "M", - "_begin": "17:14", - "_end": "17:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Beshalach", - "maftirOffset": "209", - "_num": "16", - "_hebrew": "בְּשַׁלַּח", - "_verse": "Exodus 13:17 - 17:16", - "_haftaraLength": "52", - "_haftara": "Judges 4:4 - 5:31", - "_sephardic": "Judges 5:1 - 5:31" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "18:13", - "_end": "18:23", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "18:24", - "_end": "18:27", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "19:1", - "_end": "19:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "19:7", - "_end": "19:19", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "19:20", - "_end": "20:14", - "_numverses": "20" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:23", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "20:19", - "_end": "20:23", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "18:13", - "_end": "18:23", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "18:24", - "_end": "18:27", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "19:1", - "_end": "19:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "19:7", - "_end": "19:19", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "19:20", - "_end": "20:14", - "_numverses": "20" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:23", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "20:19", - "_end": "20:23", - "_numverses": "5" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "full parashah with Ten Commandments every year" - }, - "triennial-alt": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:4" - }, - { - "_num": "2", - "_begin": "18:5", - "_end": "18:8" - }, - { - "_num": "3", - "_begin": "18:9", - "_end": "18:12" - }, - { - "_num": "4", - "_begin": "18:13", - "_end": "18:16" - }, - { - "_num": "5", - "_begin": "18:17", - "_end": "18:19" - }, - { - "_num": "6", - "_begin": "18:20", - "_end": "18:23" - }, - { - "_num": "7", - "_begin": "18:24", - "_end": "18:27" - }, - { - "_num": "M", - "_begin": "18:24", - "_end": "18:27" - } - ], - "_variation": "Y.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:13" - }, - { - "_num": "4", - "_begin": "19:14", - "_end": "19:19" - }, - { - "_num": "5", - "_begin": "19:20", - "_end": "20:14" - }, - { - "_num": "6", - "_begin": "20:15", - "_end": "20:18" - }, - { - "_num": "7", - "_begin": "20:19", - "_end": "20:23" - }, - { - "_num": "M", - "_begin": "20:21", - "_end": "20:23" - } - ], - "_variation": "Y.2" - }, - { - "_variation": "Y.3", - "_sameas": "Y.2" - } - ], - "_descr": "triennial divisions with Ten Commandments in years two and three" - }, - "_id": "Yitro", - "maftirOffset": "60", - "_num": "17", - "_hebrew": "יִתְרוֹ", - "_verse": "Exodus 18:1 - 20:23", - "_haftaraLength": "19", - "_haftaraLength2": "2", - "_haftara": "Isaiah 6:1 - 7:6; 9:5 - 9:6", - "_sephardic": "Isaiah 6:1 - 6:13" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:19", - "_numverses": "19" - }, - { - "_num": "2", - "_begin": "21:20", - "_end": "22:3", - "_numverses": "21" - }, - { - "_num": "3", - "_begin": "22:4", - "_end": "22:26", - "_numverses": "23" - }, - { - "_num": "4", - "_begin": "22:27", - "_end": "23:5", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "23:6", - "_end": "23:19", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "23:20", - "_end": "23:25", - "_numverses": "6" - }, - { - "_num": "7", - "_begin": "23:26", - "_end": "24:18", - "_numverses": "26" - }, - { - "_num": "M", - "_begin": "24:15", - "_end": "24:18", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "2", - "_begin": "21:7", - "_end": "21:11" - }, - { - "_num": "3", - "_begin": "21:12", - "_end": "21:19" - }, - { - "_num": "4", - "_begin": "21:20", - "_end": "21:27" - }, - { - "_num": "5", - "_begin": "21:28", - "_end": "21:32" - }, - { - "_num": "6", - "_begin": "21:33", - "_end": "21:36" - }, - { - "_num": "7", - "_begin": "21:37", - "_end": "22:3" - }, - { - "_num": "M", - "_begin": "21:37", - "_end": "22:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:4", - "_end": "22:8" - }, - { - "_num": "2", - "_begin": "22:9", - "_end": "22:12" - }, - { - "_num": "3", - "_begin": "22:13", - "_end": "22:18" - }, - { - "_num": "4", - "_begin": "22:19", - "_end": "22:26" - }, - { - "_num": "5", - "_begin": "22:27", - "_end": "23:5" - }, - { - "_num": "6", - "_begin": "23:6", - "_end": "23:13" - }, - { - "_num": "7", - "_begin": "23:14", - "_end": "23:19" - }, - { - "_num": "M", - "_begin": "23:14", - "_end": "23:19" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:20", - "_end": "23:25" - }, - { - "_num": "2", - "_begin": "23:26", - "_end": "23:30" - }, - { - "_num": "3", - "_begin": "23:31", - "_end": "23:33" - }, - { - "_num": "4", - "_begin": "24:1", - "_end": "24:6" - }, - { - "_num": "5", - "_begin": "24:7", - "_end": "24:11" - }, - { - "_num": "6", - "_begin": "24:12", - "_end": "24:14" - }, - { - "_num": "7", - "_begin": "24:15", - "_end": "24:18" - }, - { - "_num": "M", - "_begin": "24:15", - "_end": "24:18" - } - ], - "_num": "3" - } - ] - }, - "_id": "Mishpatim", - "_num": "18", - "maftirOffset": "303", - "_hebrew": "מִּשְׁפָּטִים", - "_verse": "Exodus 21:1 - 24:18", - "_haftaraLength": "15", - "_haftaraLength2": "2", - "_haftara": "Jeremiah 34:8 - 34:22; 33:25 - 33:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "25:17", - "_end": "25:30", - "_numverses": "14" - }, - { - "_num": "3", - "_begin": "25:31", - "_end": "26:14", - "_numverses": "24" - }, - { - "_num": "4", - "_begin": "26:15", - "_end": "26:30", - "_numverses": "16" - }, - { - "_num": "5", - "_begin": "26:31", - "_end": "26:37", - "_numverses": "7" - }, - { - "_num": "6", - "_begin": "27:1", - "_end": "27:8", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "27:9", - "_end": "27:19", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "27:17", - "_end": "27:19", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:5" - }, - { - "_num": "2", - "_begin": "25:6", - "_end": "25:9" - }, - { - "_num": "3", - "_begin": "25:10", - "_end": "25:16" - }, - { - "_num": "4", - "_begin": "25:17", - "_end": "25:22" - }, - { - "_num": "5", - "_begin": "25:23", - "_end": "25:30" - }, - { - "_num": "6", - "_begin": "25:31", - "_end": "25:33" - }, - { - "_num": "7", - "_begin": "25:34", - "_end": "25:40" - }, - { - "_num": "M", - "_begin": "25:37", - "_end": "25:40" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:3" - }, - { - "_num": "2", - "_begin": "26:4", - "_end": "26:6" - }, - { - "_num": "3", - "_begin": "26:7", - "_end": "26:11" - }, - { - "_num": "4", - "_begin": "26:12", - "_end": "26:14" - }, - { - "_num": "5", - "_begin": "26:15", - "_end": "26:21" - }, - { - "_num": "6", - "_begin": "26:22", - "_end": "26:25" - }, - { - "_num": "7", - "_begin": "26:26", - "_end": "26:30" - }, - { - "_num": "M", - "_begin": "26:26", - "_end": "26:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:31", - "_end": "26:33" - }, - { - "_num": "2", - "_begin": "26:34", - "_end": "26:37" - }, - { - "_num": "3", - "_begin": "27:1", - "_end": "27:3" - }, - { - "_num": "4", - "_begin": "27:4", - "_end": "27:8" - }, - { - "_num": "5", - "_begin": "27:9", - "_end": "27:12" - }, - { - "_num": "6", - "_begin": "27:13", - "_end": "27:16" - }, - { - "_num": "7", - "_begin": "27:17", - "_end": "27:19" - }, - { - "_num": "M", - "_begin": "27:17", - "_end": "27:19" - } - ], - "_num": "3" - } - ] - }, - "_id": "Terumah", - "maftirOffset": "94", - "_num": "19", - "_hebrew": "תְּרוּמָה", - "_verse": "Exodus 25:1 - 27:19", - "_haftaraLength": "20", - "_haftara": "Kings_1 5:26 - 6:13" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "27:20", - "_end": "28:12", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "28:13", - "_end": "28:30", - "_numverses": "18" - }, - { - "_num": "3", - "_begin": "28:31", - "_end": "28:43", - "_numverses": "13" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "29:19", - "_end": "29:37", - "_numverses": "19" - }, - { - "_num": "6", - "_begin": "29:38", - "_end": "29:46", - "_numverses": "9" - }, - { - "_num": "7", - "_begin": "30:1", - "_end": "30:10", - "_numverses": "10" - }, - { - "_num": "M", - "_begin": "30:8", - "_end": "30:10", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:20", - "_end": "28:5" - }, - { - "_num": "2", - "_begin": "28:6", - "_end": "28:9" - }, - { - "_num": "3", - "_begin": "28:10", - "_end": "28:12" - }, - { - "_num": "4", - "_begin": "28:13", - "_end": "28:17" - }, - { - "_num": "5", - "_begin": "28:18", - "_end": "28:21" - }, - { - "_num": "6", - "_begin": "28:22", - "_end": "28:25" - }, - { - "_num": "7", - "_begin": "28:26", - "_end": "28:30" - }, - { - "_num": "M", - "_begin": "28:28", - "_end": "28:30" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:31", - "_end": "28:35" - }, - { - "_num": "2", - "_begin": "28:36", - "_end": "28:38" - }, - { - "_num": "3", - "_begin": "28:39", - "_end": "28:43" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:4" - }, - { - "_num": "5", - "_begin": "29:5", - "_end": "29:9" - }, - { - "_num": "6", - "_begin": "29:10", - "_end": "29:14" - }, - { - "_num": "7", - "_begin": "29:15", - "_end": "29:18" - }, - { - "_num": "M", - "_begin": "29:15", - "_end": "29:18" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "29:19", - "_end": "29:21" - }, - { - "_num": "2", - "_begin": "29:22", - "_end": "29:25" - }, - { - "_num": "3", - "_begin": "29:26", - "_end": "29:30" - }, - { - "_num": "4", - "_begin": "29:31", - "_end": "29:34" - }, - { - "_num": "5", - "_begin": "29:35", - "_end": "29:37" - }, - { - "_num": "6", - "_begin": "29:38", - "_end": "29:46" - }, - { - "_num": "7", - "_begin": "30:1", - "_end": "30:10" - }, - { - "_num": "M", - "_begin": "30:8", - "_end": "30:10" - } - ], - "_num": "3" - } - ] - }, - "_id": "Tetzaveh", - "maftirOffset": "90", - "_num": "20", - "_hebrew": "תְּצַוֶּה", - "_verse": "Exodus 27:20 - 30:10", - "_haftaraLength": "18", - "_haftara": "Ezekiel 43:10 - 43:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "30:11", - "_end": "31:17", - "_numverses": "45" - }, - { - "_num": "2", - "_begin": "31:18", - "_end": "33:11", - "_numverses": "47" - }, - { - "_num": "3", - "_begin": "33:12", - "_end": "33:16", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "33:17", - "_end": "33:23", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "34:1", - "_end": "34:9", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "34:10", - "_end": "34:26", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "34:27", - "_end": "34:35", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "34:33", - "_end": "34:35", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:11", - "_end": "30:13" - }, - { - "_num": "2", - "_begin": "30:14", - "_end": "30:16" - }, - { - "_num": "3", - "_begin": "30:17", - "_end": "30:21" - }, - { - "_num": "4", - "_begin": "30:22", - "_end": "30:33" - }, - { - "_num": "5", - "_begin": "30:34", - "_end": "30:38" - }, - { - "_num": "6", - "_begin": "31:1", - "_end": "31:11" - }, - { - "_num": "7", - "_begin": "31:12", - "_end": "31:17" - }, - { - "_num": "M", - "_begin": "31:15", - "_end": "31:17" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:18", - "_end": "32:6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:11" - }, - { - "_num": "3", - "_begin": "32:12", - "_end": "32:14" - }, - { - "_num": "4", - "_begin": "32:15", - "_end": "32:24" - }, - { - "_num": "5", - "_begin": "32:25", - "_end": "32:29" - }, - { - "_num": "6", - "_begin": "32:30", - "_end": "33:6" - }, - { - "_num": "7", - "_begin": "33:7", - "_end": "33:11" - }, - { - "_num": "M", - "_begin": "33:9", - "_end": "33:11" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:12", - "_end": "33:16" - }, - { - "_num": "2", - "_begin": "33:17", - "_end": "33:23" - }, - { - "_num": "3", - "_begin": "34:1", - "_end": "34:9" - }, - { - "_num": "4", - "_begin": "34:10", - "_end": "34:17" - }, - { - "_num": "5", - "_begin": "34:18", - "_end": "34:21" - }, - { - "_num": "6", - "_begin": "34:22", - "_end": "34:26" - }, - { - "_num": "7", - "_begin": "34:27", - "_end": "34:35" - }, - { - "_num": "M", - "_begin": "34:33", - "_end": "34:35" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Tisa", - "maftirOffset": "104", - "_num": "21", - "_hebrew": "כִּי תִשָּׂא", - "_verse": "Exodus 30:11 - 34:35", - "_haftaraLength": "39", - "_haftara": "Kings_1 18:1 - 18:39", - "_sephardic": "Kings_1 18:20 - 18:39" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:20", - "_numverses": "20" - }, - { - "_num": "2", - "_begin": "35:21", - "_end": "35:29", - "_numverses": "9" - }, - { - "_num": "3", - "_begin": "35:30", - "_end": "36:7", - "_numverses": "13" - }, - { - "_num": "4", - "_begin": "36:8", - "_end": "36:19", - "_numverses": "12" - }, - { - "_num": "5", - "_begin": "36:20", - "_end": "37:16", - "_numverses": "35" - }, - { - "_num": "6", - "_begin": "37:17", - "_end": "37:29", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "38:1", - "_end": "38:20", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:3" - }, - { - "_num": "2", - "_begin": "35:4", - "_end": "35:10" - }, - { - "_num": "3", - "_begin": "35:11", - "_end": "35:20" - }, - { - "_num": "4", - "_begin": "35:21", - "_end": "35:29" - }, - { - "_num": "5", - "_begin": "35:30", - "_end": "35:35" - }, - { - "_num": "6", - "_begin": "36:1", - "_end": "36:7" - }, - { - "_num": "7", - "_begin": "36:8", - "_end": "36:19" - }, - { - "_num": "M", - "_begin": "36:17", - "_end": "36:19" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "37:17", - "_end": "37:19" - }, - { - "_num": "2", - "_begin": "37:20", - "_end": "37:24" - }, - { - "_num": "3", - "_begin": "37:25", - "_end": "37:29" - }, - { - "_num": "4", - "_begin": "38:1", - "_end": "38:3" - }, - { - "_num": "5", - "_begin": "38:4", - "_end": "38:8" - }, - { - "_num": "6", - "_begin": "38:9", - "_end": "38:15" - }, - { - "_num": "7", - "_begin": "38:16", - "_end": "38:20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "36:20", - "_end": "36:30" - }, - { - "_num": "2", - "_begin": "36:31", - "_end": "36:38" - }, - { - "_num": "3", - "_begin": "37:1", - "_end": "37:16" - }, - { - "_num": "4", - "_begin": "37:17", - "_end": "37:24" - }, - { - "_num": "5", - "_begin": "37:25", - "_end": "37:29" - }, - { - "_num": "6", - "_begin": "38:1", - "_end": "38:8" - }, - { - "_num": "7", - "_begin": "38:9", - "_end": "38:20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20" - } - ], - "_variation": "C.3" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.2", - "_sameas": "C.3" - }, - { - "_variation": "E.1", - "_sameas": "A.3" - }, - { - "_variation": "E.3", - "_sameas": "C.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:10" - }, - { - "_num": "2", - "_begin": "35:11", - "_end": "35:20" - }, - { - "_num": "3", - "_begin": "35:21", - "_end": "35:29" - }, - { - "_num": "4", - "_begin": "35:30", - "_end": "36:7" - }, - { - "_num": "5", - "_begin": "36:8", - "_end": "36:19" - }, - { - "_num": "6", - "_begin": "36:20", - "_end": "36:38" - }, - { - "_num": "7", - "_begin": "37:1", - "_end": "37:16" - }, - { - "_num": "M", - "_begin": "37:10", - "_end": "37:16" - } - ], - "_variation": "F.1" - } - ] - }, - "_id": "Vayakhel", - "maftirOffset": "200", - "_num": "22", - "_hebrew": "וַיַּקְהֵל", - "_verse": "Exodus 35:1 - 38:20", - "_haftaraLength": "11", - "_haftara": "Kings_1 7:40 - 7:50", - "_sephardic": "Kings_1 7:13 - 7:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "38:21", - "_end": "39:1", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "39:2", - "_end": "39:21", - "_numverses": "20" - }, - { - "_num": "3", - "_begin": "39:22", - "_end": "39:32", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "39:33", - "_end": "39:43", - "_numverses": "11" - }, - { - "_num": "5", - "_begin": "40:1", - "_end": "40:16", - "_numverses": "16" - }, - { - "_num": "6", - "_begin": "40:17", - "_end": "40:27", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "40:28", - "_end": "40:38", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "40:34", - "_end": "40:38", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "39:22", - "_end": "39:26" - }, - { - "_num": "2", - "_begin": "39:27", - "_end": "39:32" - }, - { - "_num": "3", - "_begin": "39:33", - "_end": "39:43" - }, - { - "_num": "4", - "_begin": "40:1", - "_end": "40:8" - }, - { - "_num": "5", - "_begin": "40:9", - "_end": "40:16" - }, - { - "_num": "6", - "_begin": "40:17", - "_end": "40:27" - }, - { - "_num": "7", - "_begin": "40:28", - "_end": "40:38" - }, - { - "_num": "M", - "_begin": "40:34", - "_end": "40:38" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "38:21", - "_end": "38:23" - }, - { - "_num": "2", - "_begin": "38:24", - "_end": "38:27" - }, - { - "_num": "3", - "_begin": "38:28", - "_end": "39:1" - }, - { - "_num": "4", - "_begin": "39:2", - "_end": "39:7" - }, - { - "_num": "5", - "_begin": "39:8", - "_end": "39:14" - }, - { - "_num": "6", - "_begin": "39:15", - "_end": "39:18" - }, - { - "_num": "7", - "_begin": "39:19", - "_end": "39:21" - }, - { - "_num": "M", - "_begin": "39:19", - "_end": "39:21" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "B.2" - }, - { - "_variation": "C.3", - "_sameas": "A.3" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.2", - "_sameas": "A.3" - }, - { - "_variation": "E.1", - "_sameas": "B.2" - }, - { - "_variation": "E.3", - "_sameas": "A.3" - }, - { - "_variation": "F.1", - "_sameas": "B.2" - } - ] - }, - "_id": "Pekudei", - "maftirOffset": "73", - "_num": "23", - "_hebrew": "פְקוּדֵי", - "_verse": "Exodus 38:21 - 40:38", - "_haftaraLength": "22", - "_haftara": "Kings_1 7:51 - 8:21", - "_sephardic": "Kings_1 7:40 - 7:50" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "1:14", - "_end": "2:6", - "_numverses": "10" - }, - { - "_num": "3", - "_begin": "2:7", - "_end": "2:16", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:17", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "4:1", - "_end": "4:26", - "_numverses": "26" - }, - { - "_num": "6", - "_begin": "4:27", - "_end": "5:10", - "_numverses": "19" - }, - { - "_num": "7", - "_begin": "5:11", - "_end": "5:26", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "5:24", - "_end": "5:26", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:4" - }, - { - "_num": "2", - "_begin": "1:5", - "_end": "1:9" - }, - { - "_num": "3", - "_begin": "1:10", - "_end": "1:13" - }, - { - "_num": "4", - "_begin": "1:14", - "_end": "1:17" - }, - { - "_num": "5", - "_begin": "2:1", - "_end": "2:6" - }, - { - "_num": "6", - "_begin": "2:7", - "_end": "2:13" - }, - { - "_num": "7", - "_begin": "2:14", - "_end": "2:16" - }, - { - "_num": "M", - "_begin": "2:14", - "_end": "2:16" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:1", - "_end": "3:5" - }, - { - "_num": "2", - "_begin": "3:6", - "_end": "3:11" - }, - { - "_num": "3", - "_begin": "3:12", - "_end": "3:17" - }, - { - "_num": "4", - "_begin": "4:1", - "_end": "4:7" - }, - { - "_num": "5", - "_begin": "4:8", - "_end": "4:12" - }, - { - "_num": "6", - "_begin": "4:13", - "_end": "4:21" - }, - { - "_num": "7", - "_begin": "4:22", - "_end": "4:26" - }, - { - "_num": "M", - "_begin": "4:24", - "_end": "4:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:27", - "_end": "4:31" - }, - { - "_num": "2", - "_begin": "4:32", - "_end": "4:35" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:10" - }, - { - "_num": "4", - "_begin": "5:11", - "_end": "5:13" - }, - { - "_num": "5", - "_begin": "5:14", - "_end": "5:16" - }, - { - "_num": "6", - "_begin": "5:17", - "_end": "5:19" - }, - { - "_num": "7", - "_begin": "5:20", - "_end": "5:26" - }, - { - "_num": "M", - "_begin": "5:24", - "_end": "5:26" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayikra", - "maftirOffset": "215", - "_num": "24", - "_hebrew": "וַיִּקְרָא", - "_verse": "Leviticus 1:1 - 5:26", - "_haftaraLength": "31", - "_haftara": "Isaiah 43:21 - 44:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:1", - "_end": "6:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "6:12", - "_end": "7:10", - "_numverses": "22" - }, - { - "_num": "3", - "_begin": "7:11", - "_end": "7:38", - "_numverses": "28" - }, - { - "_num": "4", - "_begin": "8:1", - "_end": "8:13", - "_numverses": "13" - }, - { - "_num": "5", - "_begin": "8:14", - "_end": "8:21", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "8:22", - "_end": "8:29", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "8:30", - "_end": "8:36", - "_numverses": "7" - }, - { - "_num": "M", - "_begin": "8:33", - "_end": "8:36", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "2", - "_begin": "6:4", - "_end": "6:6" - }, - { - "_num": "3", - "_begin": "6:7", - "_end": "6:11" - }, - { - "_num": "4", - "_begin": "6:12", - "_end": "6:16" - }, - { - "_num": "5", - "_begin": "6:17", - "_end": "6:23" - }, - { - "_num": "6", - "_begin": "7:1", - "_end": "7:6" - }, - { - "_num": "7", - "_begin": "7:7", - "_end": "7:10" - }, - { - "_num": "M", - "_begin": "7:7", - "_end": "7:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:11", - "_end": "7:15" - }, - { - "_num": "2", - "_begin": "7:16", - "_end": "7:18" - }, - { - "_num": "3", - "_begin": "7:19", - "_end": "7:21" - }, - { - "_num": "4", - "_begin": "7:22", - "_end": "7:27" - }, - { - "_num": "5", - "_begin": "7:28", - "_end": "7:31" - }, - { - "_num": "6", - "_begin": "7:32", - "_end": "7:34" - }, - { - "_num": "7", - "_begin": "7:35", - "_end": "7:38" - }, - { - "_num": "M", - "_begin": "7:35", - "_end": "7:38" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:5" - }, - { - "_num": "2", - "_begin": "8:6", - "_end": "8:9" - }, - { - "_num": "3", - "_begin": "8:10", - "_end": "8:13" - }, - { - "_num": "4", - "_begin": "8:14", - "_end": "8:17" - }, - { - "_num": "5", - "_begin": "8:18", - "_end": "8:21" - }, - { - "_num": "6", - "_begin": "8:22", - "_end": "8:29" - }, - { - "_num": "7", - "_begin": "8:30", - "_end": "8:36" - }, - { - "_num": "M", - "_begin": "8:33", - "_end": "8:36" - } - ], - "_num": "3" - } - ] - }, - "_id": "Tzav", - "maftirOffset": "62", - "_num": "25", - "_hebrew": "צַו", - "_verse": "Leviticus 6:1 - 8:36", - "_haftaraLength": "17", - "_haftaraLength2": "2", - "_haftara": "Jeremiah 7:21 - 8:3; 9:22 - 9:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "9:1", - "_end": "9:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "9:17", - "_end": "9:23", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "9:24", - "_end": "10:11", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "10:12", - "_end": "10:15", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "10:16", - "_end": "10:20", - "_numverses": "5" - }, - { - "_num": "6", - "_begin": "11:1", - "_end": "11:32", - "_numverses": "32" - }, - { - "_num": "7", - "_begin": "11:33", - "_end": "11:47", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "11:45", - "_end": "11:47", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:1", - "_end": "9:6" - }, - { - "_num": "2", - "_begin": "9:7", - "_end": "9:10" - }, - { - "_num": "3", - "_begin": "9:11", - "_end": "9:16" - }, - { - "_num": "4", - "_begin": "9:17", - "_end": "9:23" - }, - { - "_num": "5", - "_begin": "9:24", - "_end": "10:3" - }, - { - "_num": "6", - "_begin": "10:4", - "_end": "10:7" - }, - { - "_num": "7", - "_begin": "10:8", - "_end": "10:11" - }, - { - "_num": "M", - "_begin": "10:8", - "_end": "10:11" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "2", - "_begin": "10:16", - "_end": "10:20" - }, - { - "_num": "3", - "_begin": "11:1", - "_end": "11:8" - }, - { - "_num": "4", - "_begin": "11:9", - "_end": "11:12" - }, - { - "_num": "5", - "_begin": "11:13", - "_end": "11:19" - }, - { - "_num": "6", - "_begin": "11:20", - "_end": "11:28" - }, - { - "_num": "7", - "_begin": "11:29", - "_end": "11:32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:1", - "_end": "11:8" - }, - { - "_num": "2", - "_begin": "11:9", - "_end": "11:12" - }, - { - "_num": "3", - "_begin": "11:13", - "_end": "11:19" - }, - { - "_num": "4", - "_begin": "11:20", - "_end": "11:28" - }, - { - "_num": "5", - "_begin": "11:29", - "_end": "11:32" - }, - { - "_num": "6", - "_begin": "11:33", - "_end": "11:38" - }, - { - "_num": "7", - "_begin": "11:39", - "_end": "11:47" - }, - { - "_num": "M", - "_begin": "11:45", - "_end": "11:47" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shmini", - "maftirOffset": "166", - "_num": "26", - "_hebrew": "שְּׁמִינִי", - "_verse": "Leviticus 9:1 - 11:47", - "_haftaraLength": "40", - "_haftara": "Samuel_2 6:1 - 7:17", - "_sephardic": "Samuel_1 6:1 - 6:19" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "13:5", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "13:6", - "_end": "13:17", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "13:18", - "_end": "13:23", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "13:24", - "_end": "13:28", - "_numverses": "5" - }, - { - "_num": "5", - "_begin": "13:29", - "_end": "13:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "13:40", - "_end": "13:54", - "_numverses": "15" - }, - { - "_num": "7", - "_begin": "13:55", - "_end": "13:59", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "13:57", - "_end": "13:59", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:4" - }, - { - "_num": "2", - "_begin": "12:5", - "_end": "12:8" - }, - { - "_num": "3", - "_begin": "13:1", - "_end": "13:5" - }, - { - "_num": "4", - "_begin": "13:6", - "_end": "13:8" - }, - { - "_num": "5", - "_begin": "13:9", - "_end": "13:17" - }, - { - "_num": "6", - "_begin": "13:18", - "_end": "13:23" - }, - { - "_num": "7", - "_begin": "13:23", - "_end": "13:28" - }, - { - "_num": "M", - "_begin": "13:26", - "_end": "13:28" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:29", - "_end": "13:34" - }, - { - "_num": "2", - "_begin": "13:35", - "_end": "13:39" - }, - { - "_num": "3", - "_begin": "13:40", - "_end": "13:42" - }, - { - "_num": "4", - "_begin": "13:43", - "_end": "13:46" - }, - { - "_num": "5", - "_begin": "13:47", - "_end": "13:50" - }, - { - "_num": "6", - "_begin": "13:51", - "_end": "13:54" - }, - { - "_num": "7", - "_begin": "13:55", - "_end": "13:59" - }, - { - "_num": "M", - "_begin": "13:57", - "_end": "13:59" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:4" - }, - { - "_num": "2", - "_begin": "12:5", - "_end": "12:8" - }, - { - "_num": "3", - "_begin": "13:1", - "_end": "13:5" - }, - { - "_num": "4", - "_begin": "13:6", - "_end": "13:17" - }, - { - "_num": "5", - "_begin": "13:18", - "_end": "13:23" - }, - { - "_num": "6", - "_begin": "13:24", - "_end": "13:28" - }, - { - "_num": "7", - "_begin": "13:29", - "_end": "13:39" - }, - { - "_num": "M", - "_begin": "13:37", - "_end": "13:39" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Tazria", - "maftirOffset": "46", - "_num": "27", - "_hebrew": "תַזְרִיעַ", - "_verse": "Leviticus 12:1 - 13:59", - "_haftaraLength": "22", - "_haftara": "Kings_2 4:42 - 5:19" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "14:13", - "_end": "14:20", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "14:21", - "_end": "14:32", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "14:33", - "_end": "14:53", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "14:54", - "_end": "15:15", - "_numverses": "19" - }, - { - "_num": "6", - "_begin": "15:16", - "_end": "15:28", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "15:29", - "_end": "15:33", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "15:31", - "_end": "15:33", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:33", - "_end": "14:38" - }, - { - "_num": "2", - "_begin": "14:39", - "_end": "14:47" - }, - { - "_num": "3", - "_begin": "14:48", - "_end": "14:53" - }, - { - "_num": "4", - "_begin": "14:54", - "_end": "15:7" - }, - { - "_num": "5", - "_begin": "15:8", - "_end": "15:15" - }, - { - "_num": "6", - "_begin": "15:16", - "_end": "15:28" - }, - { - "_num": "7", - "_begin": "15:29", - "_end": "15:33" - }, - { - "_num": "M", - "_begin": "15:31", - "_end": "15:33" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:5" - }, - { - "_num": "2", - "_begin": "14:6", - "_end": "14:9" - }, - { - "_num": "3", - "_begin": "14:10", - "_end": "14:12" - }, - { - "_num": "4", - "_begin": "14:13", - "_end": "14:15" - }, - { - "_num": "5", - "_begin": "14:16", - "_end": "14:20" - }, - { - "_num": "6", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "7", - "_begin": "14:26", - "_end": "14:32" - }, - { - "_num": "M", - "_begin": "14:30", - "_end": "14:32" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.3", - "_sameas": "A.3" - } - ] - }, - "_id": "Metzora", - "maftirOffset": "33", - "_num": "28", - "_hebrew": "מְּצֹרָע", - "_verse": "Leviticus 14:1 - 15:33", - "_haftaraLength": "18", - "_haftara": "Kings_2 7:3 - 7:20" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "16:18", - "_end": "16:24", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "16:25", - "_end": "16:34", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "17:1", - "_end": "17:7", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "17:8", - "_end": "18:5", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "18:6", - "_end": "18:21", - "_numverses": "16" - }, - { - "_num": "7", - "_begin": "18:22", - "_end": "18:30", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "18:28", - "_end": "18:30", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:3" - }, - { - "_num": "2", - "_begin": "16:4", - "_end": "16:6" - }, - { - "_num": "3", - "_begin": "16:7", - "_end": "16:11" - }, - { - "_num": "4", - "_begin": "16:12", - "_end": "16:17" - }, - { - "_num": "5", - "_begin": "16:18", - "_end": "16:24" - }, - { - "_num": "6", - "_begin": "16:25", - "_end": "16:30" - }, - { - "_num": "7", - "_begin": "16:31", - "_end": "16:34" - }, - { - "_num": "M", - "_begin": "16:31", - "_end": "16:34" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "2", - "_begin": "17:8", - "_end": "17:12" - }, - { - "_num": "3", - "_begin": "17:13", - "_end": "17:16" - }, - { - "_num": "4", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "5", - "_begin": "18:6", - "_end": "18:21" - }, - { - "_num": "6", - "_begin": "18:22", - "_end": "18:25" - }, - { - "_num": "7", - "_begin": "18:26", - "_end": "18:30" - }, - { - "_num": "M", - "_begin": "18:26", - "_end": "18:30" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:6" - }, - { - "_num": "2", - "_begin": "16:7", - "_end": "16:11" - }, - { - "_num": "3", - "_begin": "16:12", - "_end": "16:17" - }, - { - "_num": "4", - "_begin": "16:18", - "_end": "16:24" - }, - { - "_num": "5", - "_begin": "16:25", - "_end": "16:30" - }, - { - "_num": "6", - "_begin": "16:31", - "_end": "16:34" - }, - { - "_num": "7", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "M", - "_begin": "17:5", - "_end": "17:7" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Achrei Mot", - "maftirOffset": "72", - "_num": "29", - "_hebrew": "אַחֲרֵי מוֹת", - "_verse": "Leviticus 16:1 - 18:30", - "_haftaraLength": "16", - "_haftara": "Ezekiel 22:1 - 22:16", - "_sephardic": "Ezekiel 22:1 - 22:16" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "19:15", - "_end": "19:22", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "19:23", - "_end": "19:32", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37", - "_numverses": "5" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7", - "_numverses": "7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22", - "_numverses": "15" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:15", - "_end": "19:18" - }, - { - "_num": "2", - "_begin": "19:19", - "_end": "19:22" - }, - { - "_num": "3", - "_begin": "19:23", - "_end": "19:32" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:4" - }, - { - "_num": "2", - "_begin": "19:5", - "_end": "19:10" - }, - { - "_num": "3", - "_begin": "19:11", - "_end": "19:14" - }, - { - "_num": "4", - "_begin": "19:15", - "_end": "19:18" - }, - { - "_num": "5", - "_begin": "19:19", - "_end": "19:22" - }, - { - "_num": "6", - "_begin": "19:23", - "_end": "19:32" - }, - { - "_num": "7", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "M", - "_begin": "19:35", - "_end": "19:37" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:23", - "_end": "19:25" - }, - { - "_num": "2", - "_begin": "19:26", - "_end": "19:28" - }, - { - "_num": "3", - "_begin": "19:29", - "_end": "19:32" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27" - } - ], - "_variation": "D.3" - } - ] - }, - "_id": "Kedoshim", - "maftirOffset": "38", - "_num": "30", - "_hebrew": "קְדשִׁים", - "_verse": "Leviticus 19:1 - 20:27", - "_haftaraLength": "9", - "_haftara": "Amos 9:7 - 9:15", - "_sephardic": "Ezekiel 20:2 - 20:20" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:15", - "_numverses": "15" - }, - { - "_num": "2", - "_begin": "21:16", - "_end": "22:16", - "_numverses": "25" - }, - { - "_num": "3", - "_begin": "22:17", - "_end": "22:33", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "23:1", - "_end": "23:22", - "_numverses": "22" - }, - { - "_num": "5", - "_begin": "23:23", - "_end": "23:32", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "23:33", - "_end": "23:44", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "24:1", - "_end": "24:23", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "24:21", - "_end": "24:23", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "2", - "_begin": "21:7", - "_end": "21:12" - }, - { - "_num": "3", - "_begin": "21:13", - "_end": "21:15" - }, - { - "_num": "4", - "_begin": "21:16", - "_end": "21:24" - }, - { - "_num": "5", - "_begin": "22:1", - "_end": "22:9" - }, - { - "_num": "6", - "_begin": "22:10", - "_end": "22:12" - }, - { - "_num": "7", - "_begin": "22:13", - "_end": "22:16" - }, - { - "_num": "M", - "_begin": "22:13", - "_end": "22:16" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:17", - "_end": "22:20" - }, - { - "_num": "2", - "_begin": "22:21", - "_end": "22:25" - }, - { - "_num": "3", - "_begin": "22:26", - "_end": "22:33" - }, - { - "_num": "4", - "_begin": "23:1", - "_end": "23:3" - }, - { - "_num": "5", - "_begin": "23:4", - "_end": "23:8" - }, - { - "_num": "6", - "_begin": "23:9", - "_end": "23:14" - }, - { - "_num": "7", - "_begin": "23:15", - "_end": "23:22" - }, - { - "_num": "M", - "_begin": "23:19", - "_end": "23:22" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:23", - "_end": "23:25" - }, - { - "_num": "2", - "_begin": "23:26", - "_end": "23:32" - }, - { - "_num": "3", - "_begin": "23:33", - "_end": "23:44" - }, - { - "_num": "4", - "_begin": "24:1", - "_end": "24:4" - }, - { - "_num": "5", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "6", - "_begin": "24:10", - "_end": "24:12" - }, - { - "_num": "7", - "_begin": "24:13", - "_end": "24:23" - }, - { - "_num": "M", - "_begin": "24:21", - "_end": "24:23" - } - ], - "_num": "3" - } - ] - }, - "_id": "Emor", - "maftirOffset": "238", - "_num": "31", - "_hebrew": "אֱמוֹר", - "_verse": "Leviticus 21:1 - 24:23", - "_haftaraLength": "17", - "_haftara": "Ezekiel 44:15 - 44:31" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "25:14", - "_end": "25:18", - "_numverses": "5" - }, - { - "_num": "3", - "_begin": "25:19", - "_end": "25:24", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "25:25", - "_end": "25:28", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "25:29", - "_end": "25:38", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "25:39", - "_end": "25:46", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "25:47", - "_end": "26:2", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "25:55", - "_end": "26:2", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:3" - }, - { - "_num": "2", - "_begin": "25:4", - "_end": "25:7" - }, - { - "_num": "3", - "_begin": "25:8", - "_end": "25:10" - }, - { - "_num": "4", - "_begin": "25:11", - "_end": "25:13" - }, - { - "_num": "5", - "_begin": "25:14", - "_end": "25:18" - }, - { - "_num": "6", - "_begin": "25:19", - "_end": "25:24" - }, - { - "_num": "7", - "_begin": "25:25", - "_end": "25:28" - }, - { - "_num": "M", - "_begin": "25:25", - "_end": "25:28" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:29", - "_end": "25:34" - }, - { - "_num": "2", - "_begin": "25:35", - "_end": "25:38" - }, - { - "_num": "3", - "_begin": "25:39", - "_end": "25:43" - }, - { - "_num": "4", - "_begin": "25:44", - "_end": "25:46" - }, - { - "_num": "5", - "_begin": "25:47", - "_end": "25:50" - }, - { - "_num": "6", - "_begin": "25:51", - "_end": "25:54" - }, - { - "_num": "7", - "_begin": "25:55", - "_end": "26:2" - }, - { - "_num": "M", - "_begin": "25:55", - "_end": "26:2" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:3" - }, - { - "_num": "2", - "_begin": "25:4", - "_end": "25:7" - }, - { - "_num": "3", - "_begin": "25:8", - "_end": "25:13" - }, - { - "_num": "4", - "_begin": "25:14", - "_end": "25:18" - }, - { - "_num": "5", - "_begin": "25:19", - "_end": "25:24" - }, - { - "_num": "6", - "_begin": "25:25", - "_end": "25:28" - }, - { - "_num": "7", - "_begin": "25:29", - "_end": "25:38" - }, - { - "_num": "M", - "_begin": "25:35", - "_end": "25:38" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Behar", - "maftirOffset": "100", - "_num": "32", - "_hebrew": "בְּהַר", - "_verse": "Leviticus 25:1 - 26:2", - "_haftaraLength": "22", - "_haftara": "Jeremiah 32:6 - 32:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "26:3", - "_end": "26:5", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:9", - "_numverses": "4" - }, - { - "_num": "3", - "_begin": "26:10", - "_end": "26:46", - "_numverses": "37" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:15", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "27:16", - "_end": "27:21", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "27:22", - "_end": "27:28", - "_numverses": "7" - }, - { - "_num": "7", - "_begin": "27:29", - "_end": "27:34", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "27:32", - "_end": "27:34", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "2", - "_begin": "27:5", - "_end": "27:8" - }, - { - "_num": "3", - "_begin": "27:9", - "_end": "27:15" - }, - { - "_num": "4", - "_begin": "27:16", - "_end": "27:21" - }, - { - "_num": "5", - "_begin": "27:22", - "_end": "27:25" - }, - { - "_num": "6", - "_begin": "27:26", - "_end": "27:28" - }, - { - "_num": "7", - "_begin": "27:29", - "_end": "27:34" - }, - { - "_num": "M", - "_begin": "27:32", - "_end": "27:34" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:3", - "_end": "26:5" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:9" - }, - { - "_num": "3", - "_begin": "26:10", - "_end": "26:46" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "5", - "_begin": "27:5", - "_end": "27:8" - }, - { - "_num": "6", - "_begin": "27:9", - "_end": "27:11" - }, - { - "_num": "7", - "_begin": "27:12", - "_end": "27:15" - }, - { - "_num": "M", - "_begin": "27:12", - "_end": "27:15" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.3", - "_sameas": "A.3" - } - ] - }, - "_id": "Bechukotai", - "maftirOffset": "29", - "_num": "33", - "_hebrew": "בְּחֻקֹּתַי", - "_verse": "Leviticus 26:3 - 27:34", - "_haftaraLength": "17", - "_haftara": "Jeremiah 16:19 - 17:14" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:19", - "_numverses": "19" - }, - { - "_num": "2", - "_begin": "1:20", - "_end": "1:54", - "_numverses": "35" - }, - { - "_num": "3", - "_begin": "2:1", - "_end": "2:34", - "_numverses": "34" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:13", - "_numverses": "13" - }, - { - "_num": "5", - "_begin": "3:14", - "_end": "3:39", - "_numverses": "26" - }, - { - "_num": "6", - "_begin": "3:40", - "_end": "3:51", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "4:1", - "_end": "4:20", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "4:17", - "_end": "4:20", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:4" - }, - { - "_num": "2", - "_begin": "1:5", - "_end": "1:16" - }, - { - "_num": "3", - "_begin": "1:17", - "_end": "1:19" - }, - { - "_num": "4", - "_begin": "1:20", - "_end": "1:27" - }, - { - "_num": "5", - "_begin": "1:28", - "_end": "1:35" - }, - { - "_num": "6", - "_begin": "1:36", - "_end": "1:43" - }, - { - "_num": "7", - "_begin": "1:44", - "_end": "1:54" - }, - { - "_num": "M", - "_begin": "1:52", - "_end": "1:54" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:1", - "_end": "2:9" - }, - { - "_num": "2", - "_begin": "2:10", - "_end": "2:16" - }, - { - "_num": "3", - "_begin": "2:17", - "_end": "2:24" - }, - { - "_num": "4", - "_begin": "2:25", - "_end": "2:31" - }, - { - "_num": "5", - "_begin": "2:32", - "_end": "2:34" - }, - { - "_num": "6", - "_begin": "3:1", - "_end": "3:4" - }, - { - "_num": "7", - "_begin": "3:5", - "_end": "3:13" - }, - { - "_num": "M", - "_begin": "3:11", - "_end": "3:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:14", - "_end": "3:20" - }, - { - "_num": "2", - "_begin": "3:21", - "_end": "3:26" - }, - { - "_num": "3", - "_begin": "3:27", - "_end": "3:39" - }, - { - "_num": "4", - "_begin": "3:40", - "_end": "3:43" - }, - { - "_num": "5", - "_begin": "3:44", - "_end": "3:51" - }, - { - "_num": "6", - "_begin": "4:1", - "_end": "4:10" - }, - { - "_num": "7", - "_begin": "4:11", - "_end": "4:20" - }, - { - "_num": "M", - "_begin": "4:17", - "_end": "4:20" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bamidbar", - "maftirOffset": "253", - "_num": "34", - "_hebrew": "בְּמִדְבַּר", - "_verse": "Numbers 1:1 - 4:20", - "_haftaraLength": "22", - "_haftara": "Hosea 2:1 - 2:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "4:21", - "_end": "4:37", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "4:38", - "_end": "4:49", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:10", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "5:11", - "_end": "6:27", - "_numverses": "48" - }, - { - "_num": "5", - "_begin": "7:1", - "_end": "7:41", - "_numverses": "41" - }, - { - "_num": "6", - "_begin": "7:42", - "_end": "7:71", - "_numverses": "30" - }, - { - "_num": "7", - "_begin": "7:72", - "_end": "7:89", - "_numverses": "18" - }, - { - "_num": "M", - "_begin": "7:87", - "_end": "7:89", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:21", - "_end": "4:24" - }, - { - "_num": "2", - "_begin": "4:25", - "_end": "4:28" - }, - { - "_num": "3", - "_begin": "4:29", - "_end": "4:33" - }, - { - "_num": "4", - "_begin": "4:34", - "_end": "4:37" - }, - { - "_num": "5", - "_begin": "4:38", - "_end": "4:49" - }, - { - "_num": "6", - "_begin": "5:1", - "_end": "5:4" - }, - { - "_num": "7", - "_begin": "5:5", - "_end": "5:10" - }, - { - "_num": "M", - "_begin": "5:8", - "_end": "5:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:11", - "_end": "5:15" - }, - { - "_num": "2", - "_begin": "5:16", - "_end": "5:26" - }, - { - "_num": "3", - "_begin": "5:27", - "_end": "6:4" - }, - { - "_num": "4", - "_begin": "6:5", - "_end": "6:8" - }, - { - "_num": "5", - "_begin": "6:9", - "_end": "6:15" - }, - { - "_num": "6", - "_begin": "6:16", - "_end": "6:21" - }, - { - "_num": "7", - "_begin": "6:22", - "_end": "6:27" - }, - { - "_num": "M", - "_begin": "6:22", - "_end": "6:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:1", - "_end": "7:11" - }, - { - "_num": "2", - "_begin": "7:12", - "_end": "7:23" - }, - { - "_num": "3", - "_begin": "7:24", - "_end": "7:35" - }, - { - "_num": "4", - "_begin": "7:36", - "_end": "7:47" - }, - { - "_num": "5", - "_begin": "7:48", - "_end": "7:59" - }, - { - "_num": "6", - "_begin": "7:60", - "_end": "7:71" - }, - { - "_num": "7", - "_begin": "7:72", - "_end": "7:89" - }, - { - "_num": "M", - "_begin": "7:87", - "_end": "7:89" - } - ], - "_num": "3" - } - ] - }, - "_id": "Nasso", - "maftirOffset": "189", - "_num": "35", - "_hebrew": "נָשׂא", - "_verse": "Numbers 4:21 - 7:89", - "_haftaraLength": "24", - "_haftara": "Judges 13:2 - 13:25" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "8:15", - "_end": "8:26", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "9:1", - "_end": "9:14", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "9:15", - "_end": "10:10", - "_numverses": "19" - }, - { - "_num": "5", - "_begin": "10:11", - "_end": "10:34", - "_numverses": "24" - }, - { - "_num": "6", - "_begin": "10:35", - "_end": "11:29", - "_numverses": "31" - }, - { - "_num": "7", - "_begin": "11:30", - "_end": "12:16", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "12:14", - "_end": "12:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:4" - }, - { - "_num": "2", - "_begin": "8:5", - "_end": "8:9" - }, - { - "_num": "3", - "_begin": "8:10", - "_end": "8:14" - }, - { - "_num": "4", - "_begin": "8:15", - "_end": "8:22" - }, - { - "_num": "5", - "_begin": "8:23", - "_end": "8:26" - }, - { - "_num": "6", - "_begin": "9:1", - "_end": "9:8" - }, - { - "_num": "7", - "_begin": "9:9", - "_end": "9:14" - }, - { - "_num": "M", - "_begin": "9:12", - "_end": "9:14" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:15", - "_end": "9:18" - }, - { - "_num": "2", - "_begin": "9:19", - "_end": "9:23" - }, - { - "_num": "3", - "_begin": "10:1", - "_end": "10:7" - }, - { - "_num": "4", - "_begin": "10:8", - "_end": "10:10" - }, - { - "_num": "5", - "_begin": "10:11", - "_end": "10:20" - }, - { - "_num": "6", - "_begin": "10:21", - "_end": "10:28" - }, - { - "_num": "7", - "_begin": "10:29", - "_end": "10:34" - }, - { - "_num": "M", - "_begin": "10:32", - "_end": "10:34" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:35", - "_end": "11:9" - }, - { - "_num": "2", - "_begin": "11:10", - "_end": "11:18" - }, - { - "_num": "3", - "_begin": "11:19", - "_end": "11:22" - }, - { - "_num": "4", - "_begin": "11:23", - "_end": "11:29" - }, - { - "_num": "5", - "_begin": "11:30", - "_end": "11:35" - }, - { - "_num": "6", - "_begin": "12:1", - "_end": "12:13" - }, - { - "_num": "7", - "_begin": "12:14", - "_end": "12:16" - }, - { - "_num": "M", - "_begin": "12:14", - "_end": "12:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Beha’alotcha", - "maftirOffset": "246", - "_num": "36", - "_hebrew": "בְּהַעֲלֹתְךָ", - "_verse": "Numbers 8:1 - 12:16", - "_haftaraLength": "21", - "_haftara": "Zechariah 2:14 - 4:7" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "13:1", - "_end": "13:20", - "_numverses": "20" - }, - { - "_num": "2", - "_begin": "13:21", - "_end": "14:7", - "_numverses": "20" - }, - { - "_num": "3", - "_begin": "14:8", - "_end": "14:25", - "_numverses": "18" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "15:7", - "_numverses": "27" - }, - { - "_num": "5", - "_begin": "15:8", - "_end": "15:16", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "15:17", - "_end": "15:26", - "_numverses": "10" - }, - { - "_num": "7", - "_begin": "15:27", - "_end": "15:41", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "15:37", - "_end": "15:41", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:1", - "_end": "13:3" - }, - { - "_num": "2", - "_begin": "13:4", - "_end": "13:16" - }, - { - "_num": "3", - "_begin": "13:17", - "_end": "13:20" - }, - { - "_num": "4", - "_begin": "13:21", - "_end": "13:24" - }, - { - "_num": "5", - "_begin": "13:25", - "_end": "13:30" - }, - { - "_num": "6", - "_begin": "13:31", - "_end": "13:33" - }, - { - "_num": "7", - "_begin": "14:1", - "_end": "14:7" - }, - { - "_num": "M", - "_begin": "14:5", - "_end": "14:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:8", - "_end": "14:10" - }, - { - "_num": "2", - "_begin": "14:11", - "_end": "14:20" - }, - { - "_num": "3", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "14:38" - }, - { - "_num": "5", - "_begin": "14:39", - "_end": "14:42" - }, - { - "_num": "6", - "_begin": "14:43", - "_end": "15:3" - }, - { - "_num": "7", - "_begin": "15:4", - "_end": "15:7" - }, - { - "_num": "M", - "_begin": "15:4", - "_end": "15:7" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "15:8", - "_end": "15:10" - }, - { - "_num": "2", - "_begin": "15:11", - "_end": "15:16" - }, - { - "_num": "3", - "_begin": "15:17", - "_end": "15:21" - }, - { - "_num": "4", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "15:31" - }, - { - "_num": "6", - "_begin": "15:32", - "_end": "15:36" - }, - { - "_num": "7", - "_begin": "15:37", - "_end": "15:41" - }, - { - "_num": "M", - "_begin": "15:37", - "_end": "15:41" - } - ], - "_num": "3" - } - ] - }, - "_id": "Sh’lach", - "maftirOffset": "128", - "_num": "37", - "_hebrew": "שְׁלַח־לְךָ", - "_verse": "Numbers 13:1 - 15:41", - "_haftaraLength": "24", - "_haftara": "Joshua 2:1 - 2:24" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "16:14", - "_end": "16:19", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "16:20", - "_end": "17:8", - "_numverses": "24" - }, - { - "_num": "4", - "_begin": "17:9", - "_end": "17:15", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "17:16", - "_end": "17:24", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "17:25", - "_end": "18:20", - "_numverses": "24" - }, - { - "_num": "7", - "_begin": "18:21", - "_end": "18:32", - "_numverses": "12" - }, - { - "_num": "M", - "_begin": "18:30", - "_end": "18:32", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:3" - }, - { - "_num": "2", - "_begin": "16:4", - "_end": "16:7" - }, - { - "_num": "3", - "_begin": "16:8", - "_end": "16:13" - }, - { - "_num": "4", - "_begin": "16:14", - "_end": "16:19" - }, - { - "_num": "5", - "_begin": "16:20", - "_end": "16:35" - }, - { - "_num": "6", - "_begin": "17:1", - "_end": "17:8" - }, - { - "_num": "7", - "_begin": "17:9", - "_end": "17:15" - }, - { - "_num": "M", - "_begin": "17:9", - "_end": "17:15" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:20", - "_end": "16:27" - }, - { - "_num": "2", - "_begin": "16:28", - "_end": "16:35" - }, - { - "_num": "3", - "_begin": "17:1", - "_end": "17:5" - }, - { - "_num": "4", - "_begin": "17:6", - "_end": "17:8" - }, - { - "_num": "5", - "_begin": "17:9", - "_end": "17:15" - }, - { - "_num": "6", - "_begin": "17:16", - "_end": "17:20" - }, - { - "_num": "7", - "_begin": "17:21", - "_end": "17:24" - }, - { - "_num": "M", - "_begin": "17:21", - "_end": "17:24" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "17:25", - "_end": "18:7" - }, - { - "_num": "2", - "_begin": "18:8", - "_end": "18:10" - }, - { - "_num": "3", - "_begin": "18:11", - "_end": "18:13" - }, - { - "_num": "4", - "_begin": "18:14", - "_end": "18:20" - }, - { - "_num": "5", - "_begin": "18:21", - "_end": "18:24" - }, - { - "_num": "6", - "_begin": "18:25", - "_end": "18:29" - }, - { - "_num": "7", - "_begin": "18:30", - "_end": "18:32" - }, - { - "_num": "M", - "_begin": "18:30", - "_end": "18:32" - } - ], - "_num": "3" - } - ] - }, - "_id": "Korach", - "maftirOffset": "139", - "_num": "38", - "_hebrew": "קוֹרַח", - "_verse": "Numbers 16:1 - 18:32", - "_haftaraLength": "24", - "_haftara": "Samuel_1 11:14 - 12:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "19:18", - "_end": "20:6", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "20:7", - "_end": "20:13", - "_numverses": "7" - }, - { - "_num": "4", - "_begin": "20:14", - "_end": "20:21", - "_numverses": "8" - }, - { - "_num": "5", - "_begin": "20:22", - "_end": "21:9", - "_numverses": "17" - }, - { - "_num": "6", - "_begin": "21:10", - "_end": "21:20", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "21:21", - "_end": "22:1", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:17" - }, - { - "_num": "4", - "_begin": "19:18", - "_end": "19:22" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "6", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "7", - "_begin": "20:14", - "_end": "20:21" - }, - { - "_num": "M", - "_begin": "20:18", - "_end": "20:21" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:11", - "_end": "21:13" - }, - { - "_num": "2", - "_begin": "21:14", - "_end": "21:16" - }, - { - "_num": "3", - "_begin": "21:17", - "_end": "21:20" - }, - { - "_num": "4", - "_begin": "21:21", - "_end": "21:25" - }, - { - "_num": "5", - "_begin": "21:26", - "_end": "21:28" - }, - { - "_num": "6", - "_begin": "21:29", - "_end": "21:33" - }, - { - "_num": "7", - "_begin": "21:34", - "_end": "22:1" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "20:22", - "_end": "21:3" - }, - { - "_num": "2", - "_begin": "21:4", - "_end": "21:10" - }, - { - "_num": "3", - "_begin": "21:11", - "_end": "21:16" - }, - { - "_num": "4", - "_begin": "21:17", - "_end": "21:20" - }, - { - "_num": "5", - "_begin": "21:21", - "_end": "21:25" - }, - { - "_num": "6", - "_begin": "21:25", - "_end": "21:33" - }, - { - "_num": "7", - "_begin": "21:34", - "_end": "22:1" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1" - } - ], - "_variation": "C.3" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.2", - "_sameas": "C.3" - }, - { - "_variation": "E.1", - "_sameas": "A.3" - }, - { - "_variation": "E.3", - "_sameas": "C.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:9" - }, - { - "_num": "2", - "_begin": "19:10", - "_end": "19:17" - }, - { - "_num": "3", - "_begin": "19:18", - "_end": "20:6" - }, - { - "_num": "4", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "5", - "_begin": "20:14", - "_end": "20:21" - }, - { - "_num": "6", - "_begin": "20:22", - "_end": "21:9" - }, - { - "_num": "7", - "_begin": "21:10", - "_end": "21:20" - }, - { - "_num": "M", - "_begin": "21:16", - "_end": "21:20" - } - ], - "_variation": "F.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:13" - }, - { - "_num": "4", - "_begin": "19:14", - "_end": "19:17" - }, - { - "_num": "5", - "_begin": "19:18", - "_end": "19:22" - }, - { - "_num": "6", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "7", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "M", - "_begin": "20:7", - "_end": "20:13" - } - ], - "_variation": "G.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "2", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "3", - "_begin": "20:14", - "_end": "20:17" - }, - { - "_num": "4", - "_begin": "20:18", - "_end": "20:21" - }, - { - "_num": "5", - "_begin": "20:22", - "_end": "21:3" - }, - { - "_num": "6", - "_begin": "21:4", - "_end": "21:7" - }, - { - "_num": "7", - "_begin": "21:8", - "_end": "21:10" - }, - { - "_num": "M", - "_begin": "21:8", - "_end": "21:10" - } - ], - "_variation": "G.2" - }, - { - "_variation": "G.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Chukat", - "maftirOffset": "174", - "_num": "39", - "_hebrew": "חֻקַּת", - "_verse": "Numbers 19:1 - 22:1", - "_haftaraLength": "33", - "_haftara": "Judges 11:1 - 11:33" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "22:2", - "_end": "22:12", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "22:13", - "_end": "22:20", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "22:21", - "_end": "22:38", - "_numverses": "18" - }, - { - "_num": "4", - "_begin": "22:39", - "_end": "23:12", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "23:13", - "_end": "23:26", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "23:27", - "_end": "24:13", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "24:14", - "_end": "25:9", - "_numverses": "21" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:39", - "_end": "23:5" - }, - { - "_num": "2", - "_begin": "23:6", - "_end": "23:12" - }, - { - "_num": "3", - "_begin": "23:13", - "_end": "23:26" - }, - { - "_num": "4", - "_begin": "23:27", - "_end": "23:30" - }, - { - "_num": "5", - "_begin": "24:1", - "_end": "24:13" - }, - { - "_num": "6", - "_begin": "24:14", - "_end": "24:25" - }, - { - "_num": "7", - "_begin": "25:1", - "_end": "25:9" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:2", - "_end": "22:4" - }, - { - "_num": "2", - "_begin": "22:5", - "_end": "22:7" - }, - { - "_num": "3", - "_begin": "22:8", - "_end": "22:12" - }, - { - "_num": "4", - "_begin": "22:13", - "_end": "22:20" - }, - { - "_num": "5", - "_begin": "22:21", - "_end": "22:27" - }, - { - "_num": "6", - "_begin": "22:28", - "_end": "22:30" - }, - { - "_num": "7", - "_begin": "22:31", - "_end": "22:38" - }, - { - "_num": "M", - "_begin": "22:36", - "_end": "22:38" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "B.2" - }, - { - "_variation": "C.3", - "_sameas": "A.3" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.2", - "_sameas": "A.3" - }, - { - "_variation": "E.1", - "_sameas": "B.2" - }, - { - "_variation": "E.3", - "_sameas": "A.3" - }, - { - "_variation": "F.1", - "_sameas": "B.2" - }, - { - "_variation": "G.1", - "_sameas": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:39", - "_end": "22:41" - }, - { - "_num": "2", - "_begin": "23:1", - "_end": "23:3" - }, - { - "_num": "3", - "_begin": "23:4", - "_end": "23:6" - }, - { - "_num": "4", - "_begin": "23:7", - "_end": "23:12" - }, - { - "_num": "5", - "_begin": "23:13", - "_end": "23:15" - }, - { - "_num": "6", - "_begin": "23:16", - "_end": "23:18" - }, - { - "_num": "7", - "_begin": "23:19", - "_end": "23:26" - }, - { - "_num": "M", - "_begin": "23:19", - "_end": "23:26" - } - ], - "_variation": "G.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:27", - "_end": "23:30" - }, - { - "_num": "2", - "_begin": "24:1", - "_end": "24:9" - }, - { - "_num": "3", - "_begin": "24:10", - "_end": "24:13" - }, - { - "_num": "4", - "_begin": "24:14", - "_end": "24:19" - }, - { - "_num": "5", - "_begin": "24:20", - "_end": "24:25" - }, - { - "_num": "6", - "_begin": "25:1", - "_end": "25:6" - }, - { - "_num": "7", - "_begin": "25:7", - "_end": "25:9" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9" - } - ], - "_variation": "G.3" - } - ] - }, - "_id": "Balak", - "_num": "40", - "maftirOffset": "208", - "_hebrew": "בָּלָק", - "_verse": "Numbers 22:2 - 25:9", - "_haftaraLength": "17", - "_haftara": "Micah 5:6 - 6:8" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:10", - "_end": "26:4", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "26:5", - "_end": "26:51", - "_numverses": "47" - }, - { - "_num": "3", - "_begin": "26:52", - "_end": "27:5", - "_numverses": "19" - }, - { - "_num": "4", - "_begin": "27:6", - "_end": "27:23", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "28:1", - "_end": "28:15", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "28:16", - "_end": "29:11", - "_numverses": "27" - }, - { - "_num": "7", - "_begin": "29:12", - "_end": "30:1", - "_numverses": "29" - }, - { - "_num": "M", - "_begin": "29:35", - "_end": "30:1", - "_numverses": "6" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:10", - "_end": "25:12" - }, - { - "_num": "2", - "_begin": "25:13", - "_end": "25:15" - }, - { - "_num": "3", - "_begin": "25:16", - "_end": "26:4" - }, - { - "_num": "4", - "_begin": "26:5", - "_end": "26:11" - }, - { - "_num": "5", - "_begin": "26:12", - "_end": "26:22" - }, - { - "_num": "6", - "_begin": "26:23", - "_end": "26:34" - }, - { - "_num": "7", - "_begin": "26:35", - "_end": "26:51" - }, - { - "_num": "M", - "_begin": "26:48", - "_end": "26:51" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:52", - "_end": "26:56" - }, - { - "_num": "2", - "_begin": "26:57", - "_end": "26:62" - }, - { - "_num": "3", - "_begin": "26:63", - "_end": "27:5" - }, - { - "_num": "4", - "_begin": "27:6", - "_end": "27:14" - }, - { - "_num": "5", - "_begin": "27:15", - "_end": "27:23" - }, - { - "_num": "6", - "_begin": "28:1", - "_end": "28:10" - }, - { - "_num": "7", - "_begin": "28:11", - "_end": "28:15" - }, - { - "_num": "M", - "_begin": "28:11", - "_end": "28:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:16", - "_end": "28:25" - }, - { - "_num": "2", - "_begin": "28:26", - "_end": "28:31" - }, - { - "_num": "3", - "_begin": "29:1", - "_end": "29:6" - }, - { - "_num": "4", - "_begin": "29:7", - "_end": "29:11" - }, - { - "_num": "5", - "_begin": "29:12", - "_end": "29:16" - }, - { - "_num": "6", - "_begin": "29:17", - "_end": "29:28" - }, - { - "_num": "7", - "_begin": "29:29", - "_end": "30:1" - }, - { - "_num": "M", - "_begin": "29:35", - "_end": "30:1" - } - ], - "_num": "3" - } - ] - }, - "_id": "Pinchas", - "maftirOffset": "240", - "_num": "41", - "_hebrew": "פִּינְחָס", - "_verse": "Numbers 25:10 - 30:1", - "_haftaraLength": "22", - "_haftara": "Kings_1 18:46 - 19:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:17", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "31:1", - "_end": "31:12", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "31:13", - "_end": "31:24", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "31:25", - "_end": "31:41", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "31:42", - "_end": "31:54", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "32:1", - "_end": "32:19", - "_numverses": "19" - }, - { - "_num": "7", - "_begin": "32:20", - "_end": "32:42", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "32:39", - "_end": "32:42", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:6" - }, - { - "_num": "2", - "_begin": "30:7", - "_end": "30:9" - }, - { - "_num": "3", - "_begin": "30:10", - "_end": "30:13" - }, - { - "_num": "4", - "_begin": "30:14", - "_end": "30:17" - }, - { - "_num": "5", - "_begin": "31:1", - "_end": "31:4" - }, - { - "_num": "6", - "_begin": "31:5", - "_end": "31:8" - }, - { - "_num": "7", - "_begin": "31:9", - "_end": "31:12" - }, - { - "_num": "M", - "_begin": "31:9", - "_end": "31:12" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "32:4" - }, - { - "_num": "2", - "_begin": "32:5", - "_end": "32:19" - }, - { - "_num": "3", - "_begin": "32:20", - "_end": "32:24" - }, - { - "_num": "4", - "_begin": "32:25", - "_end": "32:27" - }, - { - "_num": "5", - "_begin": "32:28", - "_end": "32:30" - }, - { - "_num": "6", - "_begin": "32:31", - "_end": "32:38" - }, - { - "_num": "7", - "_begin": "32:39", - "_end": "32:42" - }, - { - "_num": "M", - "_begin": "32:39", - "_end": "32:42" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:9" - }, - { - "_num": "2", - "_begin": "30:10", - "_end": "30:13" - }, - { - "_num": "3", - "_begin": "30:14", - "_end": "30:17" - }, - { - "_num": "4", - "_begin": "31:1", - "_end": "31:12" - }, - { - "_num": "5", - "_begin": "31:13", - "_end": "31:24" - }, - { - "_num": "6", - "_begin": "31:25", - "_end": "31:41" - }, - { - "_num": "7", - "_begin": "31:42", - "_end": "31:54" - }, - { - "_num": "M", - "_begin": "31:51", - "_end": "31:54" - } - ], - "_variation": "C.1" - } - ] - }, - "_id": "Matot", - "maftirOffset": "252", - "_num": "42", - "_hebrew": "מַּטּוֹת", - "_verse": "Numbers 30:2 - 32:42", - "_haftaraLength": "22", - "_haftara": "Jeremiah 1:1 - 2:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:9", - "_numverses": "9" - }, - { - "_num": "2", - "_begin": "33:10", - "_end": "33:49", - "_numverses": "40" - }, - { - "_num": "3", - "_begin": "33:50", - "_end": "34:15", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "34:16", - "_end": "34:29", - "_numverses": "14" - }, - { - "_num": "5", - "_begin": "35:1", - "_end": "35:8", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "35:9", - "_end": "35:34", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "36:1", - "_end": "36:13", - "_numverses": "13" - }, - { - "_num": "M", - "_begin": "36:11", - "_end": "36:13", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:50", - "_end": "34:15" - }, - { - "_num": "2", - "_begin": "34:16", - "_end": "34:29" - }, - { - "_num": "3", - "_begin": "35:1", - "_end": "35:8" - }, - { - "_num": "4", - "_begin": "35:9", - "_end": "35:15" - }, - { - "_num": "5", - "_begin": "35:16", - "_end": "35:29" - }, - { - "_num": "6", - "_begin": "35:30", - "_end": "35:34" - }, - { - "_num": "7", - "_begin": "36:1", - "_end": "36:13" - }, - { - "_num": "M", - "_begin": "36:10", - "_end": "36:13" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:3" - }, - { - "_num": "2", - "_begin": "33:4", - "_end": "33:6" - }, - { - "_num": "3", - "_begin": "33:7", - "_end": "33:10" - }, - { - "_num": "4", - "_begin": "33:11", - "_end": "33:23" - }, - { - "_num": "5", - "_begin": "33:24", - "_end": "33:36" - }, - { - "_num": "6", - "_begin": "33:37", - "_end": "33:43" - }, - { - "_num": "7", - "_begin": "33:44", - "_end": "33:49" - }, - { - "_num": "M", - "_begin": "33:47", - "_end": "33:49" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - } - ] - }, - "_id": "Masei", - "maftirOffset": "172", - "_num": "43", - "_hebrew": "מַסְעֵי", - "_verse": "Numbers 33:1 - 36:13", - "_haftaraLength": "25", - "_haftaraLength2": "1", - "_haftara": "Jeremiah 2:4 - 2:28; 3:4 - 3:5", - "_sephardic": "Jeremiah 2:4 - 28; 4:1 - 4:2" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:10", - "_numverses": "10" - }, - { - "_num": "2", - "_begin": "1:11", - "_end": "1:21", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "1:22", - "_end": "1:38", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "1:39", - "_end": "2:1", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "2:2", - "_end": "2:30", - "_numverses": "29" - }, - { - "_num": "6", - "_begin": "2:31", - "_end": "3:14", - "_numverses": "21" - }, - { - "_num": "7", - "_begin": "3:15", - "_end": "3:22", - "_numverses": "8" - }, - { - "_num": "M", - "_begin": "3:20", - "_end": "3:22", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:3" - }, - { - "_num": "2", - "_begin": "1:4", - "_end": "1:7" - }, - { - "_num": "3", - "_begin": "1:8", - "_end": "1:10" - }, - { - "_num": "4", - "_begin": "1:11", - "_end": "1:21" - }, - { - "_num": "5", - "_begin": "1:22", - "_end": "1:28" - }, - { - "_num": "6", - "_begin": "1:29", - "_end": "1:38" - }, - { - "_num": "7", - "_begin": "1:39", - "_end": "2:1" - }, - { - "_num": "M", - "_begin": "1:39", - "_end": "2:1" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:2", - "_end": "2:5" - }, - { - "_num": "2", - "_begin": "2:6", - "_end": "2:12" - }, - { - "_num": "3", - "_begin": "2:13", - "_end": "2:16" - }, - { - "_num": "4", - "_begin": "2:17", - "_end": "2:19" - }, - { - "_num": "5", - "_begin": "2:20", - "_end": "2:22" - }, - { - "_num": "6", - "_begin": "2:23", - "_end": "2:25" - }, - { - "_num": "7", - "_begin": "2:26", - "_end": "2:30" - }, - { - "_num": "M", - "_begin": "2:28", - "_end": "2:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:31", - "_end": "2:34" - }, - { - "_num": "2", - "_begin": "2:35", - "_end": "2:37" - }, - { - "_num": "3", - "_begin": "3:1", - "_end": "3:3" - }, - { - "_num": "4", - "_begin": "3:4", - "_end": "3:7" - }, - { - "_num": "5", - "_begin": "3:8", - "_end": "3:11" - }, - { - "_num": "6", - "_begin": "3:12", - "_end": "3:14" - }, - { - "_num": "7", - "_begin": "3:15", - "_end": "3:22" - }, - { - "_num": "M", - "_begin": "3:20", - "_end": "3:22" - } - ], - "_num": "3" - } - ] - }, - "_id": "Devarim", - "maftirOffset": "70", - "_num": "44", - "_hebrew": "דְּבָרִים", - "_verse": "Deuteronomy 1:1 - 3:22", - "_haftaraLength": "27", - "_haftara": "Isaiah 1:1 - 1:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "4:4", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "4:5", - "_end": "4:40", - "_numverses": "36" - }, - { - "_num": "3", - "_begin": "4:41", - "_end": "4:49", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "5:1", - "_end": "5:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "5:19", - "_end": "6:3", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "6:4", - "_end": "6:25", - "_numverses": "22" - }, - { - "_num": "7", - "_begin": "7:1", - "_end": "7:11", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "3:25" - }, - { - "_num": "2", - "_begin": "3:26", - "_end": "4:4" - }, - { - "_num": "3", - "_begin": "4:5", - "_end": "4:14" - }, - { - "_num": "4", - "_begin": "4:15", - "_end": "4:20" - }, - { - "_num": "5", - "_begin": "4:21", - "_end": "4:40" - }, - { - "_num": "6", - "_begin": "4:41", - "_end": "4:49" - }, - { - "_num": "7", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "M", - "_begin": "5:16", - "_end": "5:18" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "2", - "_begin": "5:19", - "_end": "5:24" - }, - { - "_num": "3", - "_begin": "5:25", - "_end": "5:30" - }, - { - "_num": "4", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "5", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "6", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "7", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "M", - "_begin": "6:23", - "_end": "6:25" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "2", - "_begin": "5:19", - "_end": "5:24" - }, - { - "_num": "3", - "_begin": "5:25", - "_end": "6:3" - }, - { - "_num": "4", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "5", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "6", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "7", - "_begin": "7:1", - "_end": "7:11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11" - } - ], - "_num": "3" - } - ], - "_descr": "with the Ten Commandments every year and the Sh'ma in years two and three" - }, - "triennial-alt": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "3:25" - }, - { - "_num": "2", - "_begin": "3:26", - "_end": "3:29" - }, - { - "_num": "3", - "_begin": "4:1", - "_end": "4:4" - }, - { - "_num": "4", - "_begin": "4:5", - "_end": "4:14" - }, - { - "_num": "5", - "_begin": "4:15", - "_end": "4:20" - }, - { - "_num": "6", - "_begin": "4:21", - "_end": "4:29" - }, - { - "_num": "7", - "_begin": "4:30", - "_end": "4:40" - }, - { - "_num": "M", - "_begin": "4:36", - "_end": "4:40" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:41", - "_end": "4:43" - }, - { - "_num": "2", - "_begin": "4:44", - "_end": "4:49" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "4", - "_begin": "5:19", - "_end": "5:21" - }, - { - "_num": "5", - "_begin": "5:22", - "_end": "5:24" - }, - { - "_num": "6", - "_begin": "5:25", - "_end": "5:30" - }, - { - "_num": "7", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "M", - "_begin": "6:1", - "_end": "6:3" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "2", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "3", - "_begin": "6:20", - "_end": "6:22" - }, - { - "_num": "4", - "_begin": "6:23", - "_end": "6:25" - }, - { - "_num": "5", - "_begin": "7:1", - "_end": "7:5" - }, - { - "_num": "6", - "_begin": "7:6", - "_end": "7:8" - }, - { - "_num": "7", - "_begin": "7:9", - "_end": "7:11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11" - } - ], - "_num": "3" - } - ], - "_descr": "with the Ten Commandments in year two and the Sh'ma in year three" - }, - "_id": "Va’ethanan", - "maftirOffset": "136", - "_num": "45", - "_hebrew": "וָאֶתְחַנַּן", - "_verse": "Deuteronomy 3:23 - 7:11", - "_haftaraLength": "26", - "_haftara": "Isaiah 40:1 - 40:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "7:12", - "_end": "8:10", - "_numverses": "25" - }, - { - "_num": "2", - "_begin": "8:11", - "_end": "9:3", - "_numverses": "13" - }, - { - "_num": "3", - "_begin": "9:4", - "_end": "9:29", - "_numverses": "26" - }, - { - "_num": "4", - "_begin": "10:1", - "_end": "10:11", - "_numverses": "11" - }, - { - "_num": "5", - "_begin": "10:12", - "_end": "11:9", - "_numverses": "20" - }, - { - "_num": "6", - "_begin": "11:10", - "_end": "11:21", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "11:22", - "_end": "11:25", - "_numverses": "4" - }, - { - "_num": "M", - "_begin": "11:22", - "_end": "11:25", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:12", - "_end": "7:16" - }, - { - "_num": "2", - "_begin": "7:17", - "_end": "7:21" - }, - { - "_num": "3", - "_begin": "7:22", - "_end": "7:26" - }, - { - "_num": "4", - "_begin": "8:1", - "_end": "8:3" - }, - { - "_num": "5", - "_begin": "8:4", - "_end": "8:10" - }, - { - "_num": "6", - "_begin": "8:11", - "_end": "8:18" - }, - { - "_num": "7", - "_begin": "8:19", - "_end": "9:3" - }, - { - "_num": "M", - "_begin": "9:1", - "_end": "9:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:4", - "_end": "9:10" - }, - { - "_num": "2", - "_begin": "9:11", - "_end": "9:14" - }, - { - "_num": "3", - "_begin": "9:15", - "_end": "9:21" - }, - { - "_num": "4", - "_begin": "9:22", - "_end": "9:29" - }, - { - "_num": "5", - "_begin": "10:1", - "_end": "10:5" - }, - { - "_num": "6", - "_begin": "10:6", - "_end": "18:8" - }, - { - "_num": "7", - "_begin": "10:9", - "_end": "10:11" - }, - { - "_num": "M", - "_begin": "10:9", - "_end": "10:11" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "2", - "_begin": "10:16", - "_end": "10:22" - }, - { - "_num": "3", - "_begin": "11:1", - "_end": "11:9" - }, - { - "_num": "4", - "_begin": "11:10", - "_end": "11:12" - }, - { - "_num": "5", - "_begin": "11:13", - "_end": "11:15" - }, - { - "_num": "6", - "_begin": "11:16", - "_end": "11:21" - }, - { - "_num": "7", - "_begin": "11:22", - "_end": "11:25" - }, - { - "_num": "M", - "_begin": "11:22", - "_end": "11:25" - } - ], - "_num": "3" - } - ] - }, - "_id": "Eikev", - "maftirOffset": "0", - "_num": "46", - "_hebrew": "עֵקֶב", - "_verse": "Deuteronomy 7:12 - 11:25", - "_haftaraLength": "27", - "_haftara": "Isaiah 49:14 - 51:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "11:26", - "_end": "12:10", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "12:11", - "_end": "12:28", - "_numverses": "18" - }, - { - "_num": "3", - "_begin": "12:29", - "_end": "13:19", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "14:1", - "_end": "14:21", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "14:22", - "_end": "14:29", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "15:1", - "_end": "15:18", - "_numverses": "18" - }, - { - "_num": "7", - "_begin": "15:19", - "_end": "16:17", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "16:13", - "_end": "16:17", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:26", - "_end": "11:31" - }, - { - "_num": "2", - "_begin": "11:32", - "_end": "12:5" - }, - { - "_num": "3", - "_begin": "12:6", - "_end": "12:10" - }, - { - "_num": "4", - "_begin": "12:11", - "_end": "12:16" - }, - { - "_num": "5", - "_begin": "12:17", - "_end": "12:19" - }, - { - "_num": "6", - "_begin": "12:20", - "_end": "12:25" - }, - { - "_num": "7", - "_begin": "12:26", - "_end": "12:28" - }, - { - "_num": "M", - "_begin": "12:26", - "_end": "12:28" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:29", - "_end": "13:1" - }, - { - "_num": "2", - "_begin": "13:2", - "_end": "13:6" - }, - { - "_num": "3", - "_begin": "13:7", - "_end": "13:12" - }, - { - "_num": "4", - "_begin": "13:13", - "_end": "13:19" - }, - { - "_num": "5", - "_begin": "14:1", - "_end": "14:8" - }, - { - "_num": "6", - "_begin": "14:9", - "_end": "14:21" - }, - { - "_num": "7", - "_begin": "14:22", - "_end": "14:29" - }, - { - "_num": "M", - "_begin": "14:22", - "_end": "14:29" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "15:1", - "_end": "15:6" - }, - { - "_num": "2", - "_begin": "15:7", - "_end": "15:11" - }, - { - "_num": "3", - "_begin": "15:12", - "_end": "15:18" - }, - { - "_num": "4", - "_begin": "15:19", - "_end": "15:23" - }, - { - "_num": "5", - "_begin": "16:1", - "_end": "16:8" - }, - { - "_num": "6", - "_begin": "16:9", - "_end": "16:12" - }, - { - "_num": "7", - "_begin": "16:13", - "_end": "16:17" - }, - { - "_num": "M", - "_begin": "16:13", - "_end": "16:17" - } - ], - "_num": "3" - } - ] - }, - "_id": "Re’eh", - "maftirOffset": "249", - "_num": "47", - "_hebrew": "רְאֵה", - "_verse": "Deuteronomy 11:26 - 16:17", - "_haftaraLength": "12", - "_haftara": "Isaiah 54:11 - 55:5" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:18", - "_end": "17:13", - "_numverses": "18" - }, - { - "_num": "2", - "_begin": "17:14", - "_end": "17:20", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "18:1", - "_end": "18:5", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "18:6", - "_end": "18:13", - "_numverses": "8" - }, - { - "_num": "5", - "_begin": "18:14", - "_end": "19:13", - "_numverses": "22" - }, - { - "_num": "6", - "_begin": "19:14", - "_end": "20:9", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "20:10", - "_end": "21:9", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "21:7", - "_end": "21:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:18", - "_end": "16:20" - }, - { - "_num": "2", - "_begin": "16:21", - "_end": "17:7" - }, - { - "_num": "3", - "_begin": "17:8", - "_end": "17:10" - }, - { - "_num": "4", - "_begin": "17:11", - "_end": "17:13" - }, - { - "_num": "5", - "_begin": "17:14", - "_end": "17:17" - }, - { - "_num": "6", - "_begin": "17:18", - "_end": "17:20" - }, - { - "_num": "7", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "M", - "_begin": "18:3", - "_end": "18:5" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:6", - "_end": "18:8" - }, - { - "_num": "2", - "_begin": "18:9", - "_end": "18:13" - }, - { - "_num": "3", - "_begin": "18:14", - "_end": "18:17" - }, - { - "_num": "4", - "_begin": "18:18", - "_end": "18:22" - }, - { - "_num": "5", - "_begin": "19:1", - "_end": "19:7" - }, - { - "_num": "6", - "_begin": "19:8", - "_end": "19:10" - }, - { - "_num": "7", - "_begin": "19:11", - "_end": "19:13" - }, - { - "_num": "M", - "_begin": "19:11", - "_end": "19:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:14", - "_end": "19:21" - }, - { - "_num": "2", - "_begin": "20:1", - "_end": "20:4" - }, - { - "_num": "3", - "_begin": "20:5", - "_end": "20:9" - }, - { - "_num": "4", - "_begin": "20:10", - "_end": "20:14" - }, - { - "_num": "5", - "_begin": "20:15", - "_end": "20:20" - }, - { - "_num": "6", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "7", - "_begin": "21:7", - "_end": "21:9" - }, - { - "_num": "M", - "_begin": "21:7", - "_end": "21:9" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shoftim", - "maftirOffset": "268", - "_num": "48", - "_hebrew": "שׁוֹפְטִים", - "_verse": "Deuteronomy 16:18 - 21:9", - "_haftaraLength": "24", - "_haftara": "Isaiah 51:12 - 52:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:10", - "_end": "21:21", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "21:22", - "_end": "22:7", - "_numverses": "9" - }, - { - "_num": "3", - "_begin": "22:8", - "_end": "23:7", - "_numverses": "29" - }, - { - "_num": "4", - "_begin": "23:8", - "_end": "23:24", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "23:25", - "_end": "24:4", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "24:5", - "_end": "24:13", - "_numverses": "9" - }, - { - "_num": "7", - "_begin": "24:14", - "_end": "25:19", - "_numverses": "28" - }, - { - "_num": "M", - "_begin": "25:17", - "_end": "25:19", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:10", - "_end": "21:14" - }, - { - "_num": "2", - "_begin": "21:15", - "_end": "21:17" - }, - { - "_num": "3", - "_begin": "21:18", - "_end": "21:21" - }, - { - "_num": "4", - "_begin": "21:22", - "_end": "22:7" - }, - { - "_num": "5", - "_begin": "22:8", - "_end": "22:12" - }, - { - "_num": "6", - "_begin": "22:13", - "_end": "22:29" - }, - { - "_num": "7", - "_begin": "23:1", - "_end": "23:7" - }, - { - "_num": "M", - "_begin": "23:4", - "_end": "23:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:8", - "_end": "23:12" - }, - { - "_num": "2", - "_begin": "23:13", - "_end": "23:15" - }, - { - "_num": "3", - "_begin": "23:16", - "_end": "23:19" - }, - { - "_num": "4", - "_begin": "23:20", - "_end": "23:24" - }, - { - "_num": "5", - "_begin": "23:25", - "_end": "24:4" - }, - { - "_num": "6", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "7", - "_begin": "24:10", - "_end": "24:13" - }, - { - "_num": "M", - "_begin": "24:10", - "_end": "24:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:14", - "_end": "24:16" - }, - { - "_num": "2", - "_begin": "24:17", - "_end": "24:19" - }, - { - "_num": "3", - "_begin": "24:20", - "_end": "24:22" - }, - { - "_num": "4", - "_begin": "25:1", - "_end": "25:4" - }, - { - "_num": "5", - "_begin": "25:5", - "_end": "25:10" - }, - { - "_num": "6", - "_begin": "25:11", - "_end": "25:16" - }, - { - "_num": "7", - "_begin": "25:17", - "_end": "25:19" - }, - { - "_num": "M", - "_begin": "25:17", - "_end": "25:19" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Teitzei", - "maftirOffset": "341", - "_num": "49", - "_hebrew": "כִּי־תֵצֵא", - "_verse": "Deuteronomy 21:10 - 25:19", - "_haftaraLength": "10", - "_haftara": "Isaiah 54:1 - 54:10" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "26:12", - "_end": "26:15", - "_numverses": "4" - }, - { - "_num": "3", - "_begin": "26:16", - "_end": "26:19", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:10", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "27:11", - "_end": "28:6", - "_numverses": "22" - }, - { - "_num": "6", - "_begin": "28:7", - "_end": "28:69", - "_numverses": "63" - }, - { - "_num": "7", - "_begin": "29:1", - "_end": "29:8", - "_numverses": "8" - }, - { - "_num": "M", - "_begin": "29:6", - "_end": "29:8", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:3" - }, - { - "_num": "2", - "_begin": "26:4", - "_end": "26:8" - }, - { - "_num": "3", - "_begin": "26:9", - "_end": "26:11" - }, - { - "_num": "4", - "_begin": "26:12", - "_end": "26:15" - }, - { - "_num": "5", - "_begin": "26:16", - "_end": "26:19" - }, - { - "_num": "6", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "7", - "_begin": "27:5", - "_end": "27:10" - }, - { - "_num": "M", - "_begin": "27:7", - "_end": "27:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:12", - "_end": "26:15" - }, - { - "_num": "2", - "_begin": "26:16", - "_end": "26:19" - }, - { - "_num": "3", - "_begin": "27:1", - "_end": "27:3" - }, - { - "_num": "4", - "_begin": "27:4", - "_end": "27:8" - }, - { - "_num": "5", - "_begin": "27:6", - "_end": "27:10" - }, - { - "_num": "6", - "_begin": "27:11", - "_end": "28:3" - }, - { - "_num": "7", - "_begin": "28:4", - "_end": "28:6" - }, - { - "_num": "M", - "_begin": "28:4", - "_end": "28:6" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:11", - "_end": "28:3" - }, - { - "_num": "2", - "_begin": "28:4", - "_end": "28:6" - }, - { - "_num": "3", - "_begin": "28:7", - "_end": "28:11" - }, - { - "_num": "4", - "_begin": "28:12", - "_end": "28:14" - }, - { - "_num": "5", - "_begin": "28:15", - "_end": "28:69" - }, - { - "_num": "6", - "_begin": "29:1", - "_end": "29:5" - }, - { - "_num": "7", - "_begin": "29:6", - "_end": "29:8" - }, - { - "_num": "M", - "_begin": "29:6", - "_end": "29:8" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Tavo", - "maftirOffset": "71", - "_num": "50", - "_hebrew": "כִּי־תָבוֹא", - "_verse": "Deuteronomy 26:1 - 29:8", - "_haftaraLength": "22", - "_haftara": "Isaiah 60:1 - 60:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "29:9", - "_end": "29:11", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "29:12", - "_end": "29:14", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "29:15", - "_end": "29:28", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "30:1", - "_end": "30:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "30:7", - "_end": "30:10", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "30:11", - "_end": "30:14", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "29:9", - "_end": "29:11", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "29:12", - "_end": "29:14", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "29:15", - "_end": "29:28", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "30:1", - "_end": "30:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "30:7", - "_end": "30:10", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "30:11", - "_end": "30:14", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "When these Sidrot are not combined, they should each be read in their entirety." - }, - "_id": "Nitzavim", - "maftirOffset": "0", - "_num": "51", - "_hebrew": "נִצָּבִים", - "_verse": "Deuteronomy 29:9 - 30:20", - "_haftaraLength": "23", - "_haftara": "Isaiah 61:10 - 63:9" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "31:3", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "31:4", - "_end": "31:6", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "31:7", - "_end": "31:9", - "_numverses": "3" - }, - { - "_num": "4", - "_begin": "31:10", - "_end": "31:13", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "31:14", - "_end": "31:19", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "31:20", - "_end": "31:24", - "_numverses": "5" - }, - { - "_num": "7", - "_begin": "31:25", - "_end": "31:30", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "31:28", - "_end": "31:30", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "31:3", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "31:4", - "_end": "31:6", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "31:7", - "_end": "31:9", - "_numverses": "3" - }, - { - "_num": "4", - "_begin": "31:10", - "_end": "31:13", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "31:14", - "_end": "31:19", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "31:20", - "_end": "31:24", - "_numverses": "5" - }, - { - "_num": "7", - "_begin": "31:25", - "_end": "31:30", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "31:28", - "_end": "31:30", - "_numverses": "3" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "When these Sidrot are not combined, they should each be read in their entirety." - }, - "_id": "Vayeilech", - "maftirOffset": "46", - "_num": "52", - "_hebrew": "וַיֵּלֶךְ", - "_verse": "Deuteronomy 31:1 - 31:30", - "_haftaraLength": "13", - "_haftara": "Joel 2:15 - 2:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "32:1", - "_end": "32:6", - "_numverses": "6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:12", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "32:13", - "_end": "32:18", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "32:19", - "_end": "32:28", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "32:29", - "_end": "32:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "32:40", - "_end": "32:43", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "32:44", - "_end": "32:52", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "32:48", - "_end": "32:52", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "32:1", - "_end": "32:6", - "_numverses": "6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:12", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "32:13", - "_end": "32:18", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "32:19", - "_end": "32:28", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "32:29", - "_end": "32:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "32:40", - "_end": "32:43", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "32:44", - "_end": "32:52", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "32:48", - "_end": "32:52", - "_numverses": "5" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "every year" - }, - "_id": "Haazinu", - "maftirOffset": "68", - "_num": "53", - "_hebrew": "הַאֲזִינוּ", - "_verse": "Deuteronomy 32:1 - 32:52", - "_haftaraLength": "51", - "_haftara": "Samuel_2 22:1 - 22:51" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:7", - "_numverses": "7" - }, - { - "_num": "2", - "_begin": "33:8", - "_end": "33:12", - "_numverses": "5" - }, - { - "_num": "3", - "_begin": "33:13", - "_end": "33:17", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "33:18", - "_end": "33:21", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "33:22", - "_end": "33:26", - "_numverses": "5" - }, - { - "_num": "6", - "_begin": "33:27", - "_end": "33:29", - "_numverses": "3" - }, - { - "_num": "7", - "_begin": "34:1", - "_end": "34:12", - "_numverses": "12" - } - ] - }, - "_id": "Vezot Haberakhah", - "_num": "54", - "_hebrew": "וְזֹאת הַבְּרָכָה", - "_verse": "Deuteronomy 33:1 - 34:12", - "_haftaraLength": "18", - "_haftara": "Joshua 1:1 - 1:18", - "_sephardic": "Joshua 1:1 - 1:9" - } - ] - } -} \ No newline at end of file diff --git a/data/audio/generate-index.mjs b/data/audio/generate-index.mjs new file mode 100644 index 000000000..65275ac9d --- /dev/null +++ b/data/audio/generate-index.mjs @@ -0,0 +1,51 @@ +import { NUM_VERSES } from "@hebcal/leyning"; +import * as fs from "node:fs/promises"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; +import { isDeepStrictEqual } from "node:util"; + +const audioDir = path.dirname(fileURLToPath(import.meta.url)); + +const fullIndex = {}; +for (const entry of await fs.readdir(audioDir, { withFileTypes: true })) { + if (!entry.isDirectory()) continue; + /** @type {{ [ch: number]: (true | {reg?: boolean, sof?: boolean} | undefined)[]}} */ + const index = {}; + const dir = path.join(audioDir, entry.name); + for (const fname of await fs.readdir(dir)) { + if (path.extname(fname) != ".mp3") continue; + const [chV, extra] = path.basename(fname, ".mp3").split("-"); + const [chapter, verse] = parseChV(chV); + const chapterArr = (index[chapter] ??= []); + const kind = extra === "SA" ? "sof" : "reg"; + (chapterArr[verse] ??= {})[kind] = 1; + } + const bookName = entry.name.replace("_", " "); + const numVerses = NUM_VERSES[bookName]; + for (const [ch, chapterArr] of Object.entries(index)) { + for (let v = 0; v < chapterArr.length; v++) { + if (chapterArr[v] === undefined) { + chapterArr[v] = 0; + } else if (isDeepStrictEqual(chapterArr[v], { reg: 1 })) { + chapterArr[v] = 1; + } + } + if (chapterArr.length === numVerses[Number(ch) + 1] && chapterArr.every((x) => !!x)) { + const dense = {}; + for (let v = 0; v < chapterArr.length; v++) { + if (chapterArr[v] !== 1) { + dense[v] = chapterArr[v]; + } + } + index[ch] = dense; + } + } + fullIndex[bookName] = index; +} + +await fs.writeFile(path.join(audioDir, "index.json"), JSON.stringify(fullIndex)); + +function parseChV(s) { + const [ch, v] = s.split("_"); + return [parseInt(ch) - 1, parseInt(v) - 1]; +} diff --git a/data/calendar.json b/data/calendar.json deleted file mode 100644 index b268d6db6..000000000 --- a/data/calendar.json +++ /dev/null @@ -1,3407 +0,0 @@ -{ - '9/23/2017': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2017': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2017': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2017': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2017': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2017': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2017': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2017': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2017': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2017': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2017': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2017': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2018': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2018': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2018': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2018': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2018': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2018': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2018': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2018': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/3/2018': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/10/2018': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/17/2018': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/24/2018': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/14/2018': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/21/2018': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/28/2018': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/5/2018': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/12/2018': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/19/2018': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/26/2018': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/2/2018': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/9/2018': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/16/2018': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/23/2018': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/30/2018': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/7/2018': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/14/2018': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/21/2018': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/28/2018': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/4/2018': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/11/2018': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/18/2018': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/25/2018': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/1/2018': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/8/2016': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/15/2016': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/29/2016': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/5/2016': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/12/2016': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/19/2016': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/26/2016': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '12/3/2016': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/10/2016': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/17/2016': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/24/2016': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/31/2016': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/7/2017': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/14/2017': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/21/2017': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/28/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/4/2017': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/11/2017': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/18/2017': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/25/2017': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/4/2017': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/11/2017': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/18/2017': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/25/2017': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '4/1/2017': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/8/2017': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/22/2017': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/29/2017': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/6/2017': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/13/2017': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/20/2017': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/27/2017': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2017': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2017': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2017': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2017': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/8/2017': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/15/2017': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/22/2017': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/29/2017': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/5/2017': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/12/2017': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/19/2017': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/26/2017': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/2/2017': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/9/2017': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/19/2026': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/10/2026': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/17/2026': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/24/2026': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/31/2026': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/7/2026': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/14/2026': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/21/2026': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/28/2026': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/5/2026': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/12/2026': { - 'haftara': ['I Kings 7:40-50'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/19/2026': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/26/2026': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/2/2027': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/9/2027': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/16/2027': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/23/2027': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/30/2027': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/6/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/13/2027': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/20/2027': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/27/2027': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/6/2027': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/13/2027': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/20/2027': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/27/2027': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/3/2027': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/10/2027': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/17/2027': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/1/2027': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/8/2027': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/15/2027': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/22/2027': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/29/2027': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/5/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/19/2027': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/26/2027': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '7/3/2027': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/10/2027': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/17/2027': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/24/2027': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/31/2027': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/7/2027': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/14/2027': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/21/2027': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/28/2027': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/4/2027': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/11/2027': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/18/2027': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/11/2021': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/18/2021': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/2/2021': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/9/2021': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/16/2021': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/23/2021': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '10/30/2021': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/6/2021': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/13/2021': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/20/2021': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '11/27/2021': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/4/2021': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/11/2021': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/18/2021': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/25/2021': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/1/2022': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/8/2022': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/15/2022': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/22/2022': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '1/29/2022': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/5/2022': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/12/2022': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/19/2022': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '2/26/2022': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/5/2022': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/12/2022': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/19/2022': { - 'haftara': ['Jeremiah 7:21-8:3', 'Jeremiah 9:22-9:23'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/26/2022': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/2/2022': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/9/2022': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '4/30/2022': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/7/2022': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/14/2022': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/21/2022': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/28/2022': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/4/2022': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/11/2022': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/18/2022': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/25/2022': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/2/2022': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/9/2022': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/16/2022': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/23/2022': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/30/2022': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/6/2022': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/13/2022': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/20/2022': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/27/2022': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/3/2022': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/10/2022': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/17/2022': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/5/2024': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/26/2024': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/2/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/9/2024': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/16/2024': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/23/2024': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/30/2024': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/7/2024': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/14/2024': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/21/2024': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/28/2024': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/4/2025': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/11/2025': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/18/2025': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/25/2025': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/1/2025': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/8/2025': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/15/2025': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/22/2025': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/1/2025': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/8/2025': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/15/2025': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/22/2025': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/29/2025': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '4/5/2025': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/12/2025': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/26/2025': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '5/3/2025': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/10/2025': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/17/2025': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/24/2025': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/31/2025': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/7/2025': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/14/2025': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/21/2025': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/28/2025': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/5/2025': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/12/2025': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/19/2025': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/26/2025': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/2/2025': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/9/2025': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/16/2025': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/23/2025': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/30/2025': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/6/2025': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/13/2025': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/9/2027': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/30/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/6/2027': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/13/2027': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/20/2027': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/27/2027': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '12/4/2027': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/11/2027': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/18/2027': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/25/2027': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '1/1/2028': { - 'haftara': ['I Kings 7:40-50'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/8/2028': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/15/2028': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/22/2028': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/29/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/5/2028': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/12/2028': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/19/2028': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/26/2028': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/4/2028': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/11/2028': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/18/2028': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/25/2028': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '4/1/2028': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/8/2028': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/22/2028': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/29/2028': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/6/2028': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/13/2028': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/20/2028': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/27/2028': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2028': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2028': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2028': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2028': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/8/2028': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/15/2028': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/22/2028': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/29/2028': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/5/2028': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/12/2028': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/19/2028': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/26/2028': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/2/2028': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/9/2028': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/15/2029': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/22/2029': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/6/2029': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/13/2029': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/20/2029': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/27/2029': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/3/2029': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/10/2029': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/17/2029': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/24/2029': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/1/2029': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/8/2029': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/15/2029': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/22/2029': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/29/2029': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/5/2030': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/12/2030': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/19/2030': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/26/2030': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/2/2030': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/9/2030': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/16/2030': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/23/2030': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/2/2030': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/9/2030': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/16/2030': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/23/2030': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/30/2030': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/6/2030': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/13/2030': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '4/27/2030': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/4/2030': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/11/2030': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/18/2030': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/25/2030': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/1/2030': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2030': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2030': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2030': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2030': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2030': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/20/2030': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/27/2030': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/3/2030': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/10/2030': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/17/2030': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/24/2030': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/31/2030': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/7/2030': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/14/2030': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/23/2023': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2023': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2023': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2023': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2023': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2023': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2023': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2023': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2023': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2023': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2023': { - 'haftara': ['I Kings 3:15-4:1'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2023': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2023': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2024': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2024': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2024': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2024': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2024': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2024': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2024': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/2/2024': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/9/2024': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/16/2024': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/23/2024': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/30/2024': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/6/2024': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/13/2024': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/20/2024': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/4/2024': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/11/2024': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/18/2024': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/25/2024': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '6/1/2024': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/8/2024': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2024': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2024': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2024': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2024': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/20/2024': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/27/2024': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '8/3/2024': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/10/2024': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/17/2024': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/24/2024': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/31/2024': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/7/2024': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/14/2024': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/21/2024': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/15/2018': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/22/2018': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/6/2018': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/13/2018': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/20/2018': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/27/2018': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/3/2018': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/10/2018': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/17/2018': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/24/2018': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/1/2018': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/8/2018': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/15/2018': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/22/2018': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/29/2018': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/5/2019': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/12/2019': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/19/2019': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/26/2019': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/2/2019': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/9/2019': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/16/2019': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/23/2019': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/2/2019': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/9/2019': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/16/2019': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/23/2019': { - 'haftara': ['Jeremiah 7:21-8:3', 'Jeremiah 9:22-9:23'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/30/2019': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/6/2019': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/13/2019': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/4/2019': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/11/2019': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/18/2019': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/25/2019': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '6/1/2019': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/8/2019': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2019': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2019': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2019': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2019': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2019': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/20/2019': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/27/2019': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '8/3/2019': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/10/2019': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/17/2019': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/24/2019': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/31/2019': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/7/2019': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/14/2019': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/21/2019': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/5/2019': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/12/2019': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/26/2019': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/2/2019': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/9/2019': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/16/2019': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/23/2019': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/30/2019': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/7/2019': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/14/2019': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/21/2019': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/28/2019': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/4/2020': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/11/2020': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/18/2020': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/25/2020': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/1/2020': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/8/2020': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/15/2020': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/22/2020': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/29/2020': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/7/2020': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/14/2020': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/21/2020': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/28/2020': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/4/2020': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/18/2020': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/25/2020': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/2/2020': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/9/2020': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/16/2020': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/23/2020': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/6/2020': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/13/2020': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/20/2020': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/27/2020': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/4/2020': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/11/2020': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/18/2020': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/25/2020': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/1/2020': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/8/2020': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/15/2020': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/22/2020': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/29/2020': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/5/2020': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/1/2022': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/8/2022': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/22/2022': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/29/2022': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/5/2022': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/12/2022': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/19/2022': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/26/2022': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/3/2022': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/10/2022': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/17/2022': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/24/2022': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/31/2022': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/7/2023': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/14/2023': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/21/2023': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/28/2023': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/4/2023': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/11/2023': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/18/2023': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/25/2023': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/4/2023': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/11/2023': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/18/2023': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/25/2023': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/1/2023': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/15/2023': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/22/2023': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/29/2023': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/6/2023': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/13/2023': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/20/2023': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2023': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2023': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2023': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2023': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2023': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/8/2023': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/15/2023': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/22/2023': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/29/2023': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/5/2023': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/12/2023': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/19/2023': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/26/2023': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/2/2023': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/27/2025': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/4/2025': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/18/2025': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/25/2025': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/1/2025': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/8/2025': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/15/2025': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/22/2025': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/29/2025': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/6/2025': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/13/2025': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/20/2025': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/27/2025': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/3/2026': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/10/2026': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/17/2026': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/24/2026': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/31/2026': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/7/2026': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/14/2026': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/21/2026': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/28/2026': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/7/2026': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/14/2026': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/21/2026': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/28/2026': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/11/2026': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/18/2026': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/25/2026': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/2/2026': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/9/2026': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/16/2026': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/30/2026': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/6/2026': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/13/2026': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/20/2026': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/27/2026': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/4/2026': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/11/2026': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/18/2026': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/25/2026': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/1/2026': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/8/2026': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/15/2026': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/22/2026': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '8/29/2026': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/23/2028': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2028': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2028': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2028': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2028': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2028': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2028': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2028': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2028': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2028': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2028': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2028': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2029': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2029': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2029': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2029': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2029': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2029': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2029': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2029': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/3/2029': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/10/2029': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/17/2029': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/24/2029': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/14/2029': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/21/2029': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/28/2029': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/5/2029': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/12/2029': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/19/2029': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/26/2029': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/2/2029': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/9/2029': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/16/2029': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/23/2029': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/30/2029': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/7/2029': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/14/2029': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/21/2029': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/28/2029': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/4/2029': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/11/2029': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/18/2029': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/25/2029': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/1/2029': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/26/2020': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/17/2020': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/24/2020': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/31/2020': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/7/2020': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/14/2020': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/21/2020': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/28/2020': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/5/2020': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/12/2020': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/19/2020': { - 'haftara': ['I Kings 3:15-4:1'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/26/2020': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/2/2021': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/9/2021': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/16/2021': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/23/2021': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/30/2021': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/6/2021': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/13/2021': { - 'haftara': ['II Kings 12:1 - 12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/20/2021': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/27/2021': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/6/2021': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/13/2021': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/20/2021': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/27/2021': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/10/2021': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/17/2021': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/24/2021': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/1/2021': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/8/2021': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/15/2021': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/22/2021': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '5/29/2021': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/5/2021': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/12/2021': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/19/2021': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/26/2021': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/3/2021': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/10/2021': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/17/2021': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/24/2021': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '7/31/2021': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/7/2021': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/14/2021': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/21/2021': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '8/28/2021': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/21/2030': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/16/2017': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/20/2025': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/5/2026': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/24/2022': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/12/2020': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/8/2018': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/4/2021': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/8/2029': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/25/2027': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/9/2023': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/28/2019': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/16/2028': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/28/2024': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - } -} diff --git a/data/maftirOffset.json b/data/maftirOffset.json new file mode 100644 index 000000000..96609c516 --- /dev/null +++ b/data/maftirOffset.json @@ -0,0 +1,55 @@ +{ + "Bereshit": 164, + "Noach": 328, + "Lech-Lecha": 251, + "Vayera": 307, + "Chayei Sara": 32, + "Toldot": 42, + "Vayetzei": 166, + "Vayishlach": 190, + "Vayeshev": 264, + "Miketz": 230, + "Vayigash": 256, + "Vayechi": 24, + "Shemot": 291, + "Vaera": 238, + "Bo": 174, + "Beshalach": 209, + "Yitro": 60, + "Mishpatim": 303, + "Terumah": 94, + "Tetzaveh": 90, + "Ki Tisa": 104, + "Vayakhel": 200, + "Pekudei": 73, + "Vayikra": 215, + "Tzav": 62, + "Shmini": 166, + "Tazria": 46, + "Metzora": 33, + "Achrei Mot": 72, + "Kedoshim": 38, + "Emor": 238, + "Behar": 100, + "Bechukotai": 29, + "Bamidbar": 253, + "Nasso": 189, + "Beha'alotcha": 246, + "Sh'lach": 128, + "Korach": 139, + "Chukat": 174, + "Balak": 208, + "Pinchas": 240, + "Matot": 252, + "Masei": 172, + "Devarim": 70, + "Vaetchanan": 136, + "Eikev": 0, + "Re'eh": 249, + "Shoftim": 268, + "Ki Teitzei": 341, + "Ki Tavo": 71, + "Nitzavim": 0, + "Vayeilech": 46, + "Ha'azinu": 68 +} diff --git a/data/torah/json/README.md b/data/torah/json/README.md new file mode 100644 index 000000000..c17ab690c --- /dev/null +++ b/data/torah/json/README.md @@ -0,0 +1,4 @@ +The hebrew json sources used in this project are derived from +[Miqra according to the Masora](https://en.wikisource.org/wiki/User:Dovi/Miqra_according_to_the_Masorah), +a project to transcribe the tanach to a digital format. To generate the json +sources for this directory, run `process_mam.js` diff --git a/data/torah/json/process_mam.js b/data/torah/json/process_mam.js new file mode 100644 index 000000000..28bbb6d12 --- /dev/null +++ b/data/torah/json/process_mam.js @@ -0,0 +1,118 @@ +const fs = require("fs"); +const gematria = require("gematria"); +const path = require("path"); + +const project_root = path.resolve(__dirname, "../../.."); +const mam_dir = path.join(project_root, "MAM-parsed/plus"); + +console.log("Processing tanach json..."); + +const namemap = { + הושע: "Hosea", + יואל: "Joel", + עמוס: "Amos", + עבדיה: "Obadiah", + מיכה: "Micah", + זכריה: "Zechariah", + מלאכי: "Malachi", + ירמיהו: "Jeremiah", + יהושע: "Joshua", + יונה: "Jonah", + דברים: "Deuteronomy", + ויקרא: "Leviticus", + יחזקאל: "Ezekiel", + 'שמ"א': "I Samuel", + 'שמ"ב': "II Samuel", + 'מל"א': "I Kings", + 'מל"ב': "II Kings", + שמות: "Exodus", + שופטים: "Judges", + ישעיהו: "Isaiah", + בראשית: "Genesis", + במדבר: "Numbers", + קהלת: "Ecclesiastes", + "שיר השירים": "Song of Songs", + רות: "Ruth", + חבקוק: "Habakkuk", + אסתר: "Esther", + איכה: "Lamentations", +}; + +const stripPref = (s, ...prefs) => + prefs.reduce((s, pref) => (s.startsWith(pref) ? s.slice(pref.length) : s), s); + +const books = {}; +for (const file of fs.readdirSync(mam_dir)) { + const { book39s } = JSON.parse(fs.readFileSync(path.join(mam_dir, file), "utf8")); + for (const book39 of book39s) { + const hebrew_name = stripPref(book39.sub_book_name ?? book39.book24_name, "ספר", "מגילת", " "); + const name = namemap[hebrew_name]; + if (name == null) continue; + books[name] = book39; + } +} + +const gemToArray = (obj) => { + const arr = []; + for (const [gem, v] of Object.entries(obj)) { + arr[gematria(gem).toMisparGadol() - 1] = v; + } + return arr; +}; + +const tmpls = { + נוסח: ([wte]) => wte, + "מ:אות-מיוחדת-במילה": ([_big, normal]) => normal, + "מ:פסק": () => "׀", + "מ:לגרמיה-2": () => "׀", + פפ: () => " ", + "מ:קמץ": ([], { ד }) => ד, + 'קו"כ-אם': ([wte]) => wte, + "מ:הערה-2": ([wte]) => wte, + 'כו"ק': ([_, wte]) => wte, + 'קו"כ': ([_, wte]) => wte, + "מ:כפול": ([], { כפול }) => כפול, + 'מ:כו"ק כתיב מילה חדה וקרי תרתין מילין': ([_standard, split]) => split, + ססס: () => " ", + סס: () => " ", + "מ:ששש": () => " ", + ר3: () => " ", +}; + +/** @returns {string} */ +const eval_wte = (wte) => { + if (typeof wte === "string") return wte; + if (Array.isArray(wte)) return wte.map(eval_wte).join(""); + const tmpl = tmpls[wte.tmpl_name]; + if (tmpl == null) return ""; + const args = (wte.tmpl_args ?? []).map(eval_wte); + const pos_args = []; + const kwargs = {}; + for (const arg of args) { + const [name, value] = arg.split("=", 2); + if (value == null) pos_args.push(name); + else if (name.match(/^\d+$/)) pos_args[name] = value; + else kwargs[name] = value; + } + return eval_wte(tmpl(pos_args, kwargs)); +}; + +const process_book = (book) => + gemToArray(book.chapters).map((chapter) => + gemToArray(chapter).map( + ([_precode, _nav, verse]) => eval_wte(verse).split(/ |(?<=[׀־])/), + // .map((w) => w.replace(/[\u0591-\u05C7\ufb1e\u034f]/g, "")), + ), + ); + +const processed_books = Object.fromEntries( + Object.entries(books).map(([k, v]) => [k, process_book(v)]), +); + +const outdir = path.join(project_root, "data/torah/json"); +fs.mkdirSync(outdir, { recursive: true }); +for (const [name, book] of Object.entries(processed_books)) { + fs.writeFileSync(path.join(outdir, `${name}.json`), JSON.stringify(book)); +} + +console.log("Done"); diff --git a/data/torah/labels/Achrei Mot-1.txt b/data/torah/labels/Achrei Mot-1.txt deleted file mode 100644 index 11a3817d0..000000000 --- a/data/torah/labels/Achrei Mot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.647075,3.459773,3.854512,4.574331,5.688889,6.524807,7.407166,8.034104,8.986122,10.356100,10.797279,11.563537,12.608435,13.978413,15.139410,15.812789,17.376215,19.698211,20.092950,20.387100,22.105376,22.537304,23.187463,23.791181,24.278801,24.531136,25.761794,26.690592,27.874810,28.312905,28.916624,30.333041,31.285059,31.630274,32.791272,33.929050,34.718528,35.740206,36.715445,37.737123,37.966238,39.104016,41.217032,42.169050,42.698483,42.795989,44.022020,45.577757,45.876533,47.153630,48.477168,49.145921,50.190819,51.258937,51.790844,53.160822,54.948758,56.130073,57.897692,58.165720,58.418055,60.252432,61.267942,61.894881,62.823679,64.077556,64.611615,65.447534,66.329892,67.374790,67.955289,69.464586,70.741683,71.600822,72.529620,73.806717,76.268032,77.336150,78.241729,79.216967,81.004903,81.538962,82.258781,83.141139,84.000277,85.230935,85.881094,86.949212,88.922908,90.501865,91.175243,91.445527,92.420765,92.742760,93.578679,94.479631,95.245889,95.705663,97.214960,98.654597,98.812511,99.411604,100.595821,101.775413,102.468928,103.490606,104.396184,105.208883,105.742942,106.602080,108.854416,110.503032,111.034007,111.614506,112.566524,113.541762,114.540221,115.399359,116.374597,117.396275,117.999994,119.369971,120.647069,121.413327,121.784846,122.713645,123.897862,124.803441,126.034098,127.311196,127.984574,129.470651,130.515549,132.953645,134.914902,135.983020,136.842158,137.724517,138.653315,139.837533,140.952090,141.834449,142.577487,143.692045,144.504743,145.549641,147.058938,148.243156,149.566694,151.633270,152.887147,153.421206,153.932045,154.884063,155.204517,155.970775,156.803610,157.662748,158.145741,159.097759,161.025016,161.489415,161.761886,162.574585,163.012680,164.220118,165.531319,166.018938,167.899755,169.200072,170.598349,171.411047,172.363066,173.640163,174.638621,176.008598,177.123156,178.005515,178.702113,179.607691,180.652589,181.256308,182.579846,184.365848,184.763582,186.272879,186.876598,187.480317,188.223355,189.454013,191.404489,192.282222,193.954058,194.427800,196.262176,197.214194,197.441768,198.347346,198.785441,200.248299,201.706349,202.658367,203.424625,205.305441,207.186258,207.650657,208.161496,208.974194,209.879773,210.994330,212.526847,214.245124,214.825623,216.288480,216.868979,217.519138,219.005215,220.909251,221.396870,222.023809,223.022267,224.160045,225.019183,226.218911,226.435600,227.333469,227.788616,228.345895,229.367573,230.644671,230.757686,232.243763,233.265441,234.171020,235.239138,236.144716,237.491473,238.884671,239.418729,240.301088,241.090566,242.460544,243.528661,243.691201,244.991519,246.384716,247.383174,248.428072,249.798049,250.308888,251.214466,252.096825,253.048843,254.093741,254.999319,256.229977,257.042675,257.855373,259.039591,260.154149,261.222267,261.895646,263.419802,264.253401,265.809138,267.736394,268.688412,269.431451,269.776666,270.821564,271.820022,272.748820,273.700838,274.606417,275.511995,275.903650,276.457845 diff --git a/data/torah/labels/Achrei Mot-2.txt b/data/torah/labels/Achrei Mot-2.txt deleted file mode 100644 index b3110fa0c..000000000 --- a/data/torah/labels/Achrei Mot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.017810,4.621529,6.548785,7.454364,8.220622,9.265520,10.612278,11.703615,13.979171,15.000849,16.045747,17.392504,18.785702,20.968377,21.413232,22.059715,22.933622,24.313472,26.063838,27.641791,27.929191,29.909532,31.281871,32.187449,33.255567,34.950624,36.668900,38.062098,38.597478,40.128674,41.892162,43.331799,43.478059,44.809599,45.420070,46.051675,46.794713,47.235893,48.791630,49.802373,49.968466,50.811708,52.114899,53.734735,55.522671,55.960593,56.667635,58.478792,59.129138,59.617869,62.334604,64.679820,65.980137,67.744854,68.340916,68.673102,69.810201,70.877207,72.285976,73.036663,73.361742,74.476300,75.228287,76.598264,77.759262,78.734500,79.021979,79.818348,81.327645,83.347781,83.915120,84.323019,85.029678,86.376436,88.001832,89.000341,90.821616,91.325644,91.641392,92.755950,93.290009,94.047015,95.311878,96.359542,96.704504,97.446322,99.272559,100.441697,101.370495,101.815061,102.531493,103.646050,105.109716,105.458015,106.479693,107.733571,108.592709,109.382188,110.357426,111,111.773843,112.824786,113.985783,115.471861,115.843538,116.814111,117.882229,119.182546,120.622183,121.643861,121.861219,122.981554,125.164230,126.510987,126.780129,128.003788,128.375308,129.443426,130.650863,131.672541,132.856759,133.998790 diff --git a/data/torah/labels/Achrei Mot-3.txt b/data/torah/labels/Achrei Mot-3.txt deleted file mode 100644 index 5867d40ab..000000000 --- a/data/torah/labels/Achrei Mot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.703880,4.546209,5.730427,6.300091,7.902268,9.682336,10.073011,11.016566,12.479423,14.128040,15.451577,16.473255,16.616732,17.597207,18.781425,19.902393,20.522921,21.142788,21.305328,22.884285,24.927641,25.499911,27.311067,29.424083,30.306442,32.303358,33.673335,34.578913,34.952436,36.088210,37.383660,38.614317,39.702446,39.968181,40.686307,42.195604,44.053200,45.214198,45.789435,46.722674,47.094193,48.162311,48.626710,50.414882,52.385511,53.592949,55.125466,56.541883,57.470681,57.731950,58.637528,59.752086,60.852323,61.354263,61.926952,62.135932,63.854208,65.495334,66.361084,67.522082,68.590200,69.797637,72.723351,74.000449,75.672286,76.581459,76.833283,79.250380,80.045054,81.229272,82.227730,83.760247,85.733943,86.918160,87.521879,89.379476,89.893114,90.633353,92.490950,93.460205,94.574763,95.619661,96.850319,97.964876,100.495851,101.405344,102.264482,103.913099,105.166976,106.281534,106.862033,107.999811,109.300128,109.399712,111.018405,111.955122,113.301880,114.532537,116.366914,117.057253,117.753852,119.634668,121.097525,122.374623,122.606822,123.721380,125.044918,126.057965,127.134713,129.441526,129.877903,130.451791,131.194829,131.612788,132.959546,134.511655,134.900201,135.849052,137.252045,137.899774,138.983746,141.238068,141.800425,142.775663,144.168860,146.188996,148.418112,149.053230,149.285429,149.773048,150.608967,152.350463,153.295149,153.689889,155.361725,156.476283,158.101680,160.586215,161.009923,161.776182,162.913959,163.371546,164.846948,165.734007,167.080764,169.913599,172.258814,173.101336,174.650469,175.416728 diff --git a/data/torah/labels/Achrei Mot-4.txt b/data/torah/labels/Achrei Mot-4.txt deleted file mode 100644 index f47266d0c..000000000 --- a/data/torah/labels/Achrei Mot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.280763,3.308349,3.627238,4.220515,5.567272,6.565730,6.867589,8.818066,9.569589,11.650900,12.742238,13.052562,14.005542,15.375520,16.451591,17.875140,18.936126,20.307039,20.985787,21.566285,22.191145,23.537903,24.538817,25.273882,26.416605,27.902682,28.770595,30.474297,31.350196,31.744936,33.486432,33.826745,34.322351,35.860197,36.827327,38.104425,39.311862,40.147781,41.796397,42.578831,43.962548,44.844906,47.190122,47.662461,50.115836,51.509033,52.437832,53.854249,55.084906,56.106584,57.430122,58.001464,60.289097,61.380038,62.343158,63.214414,64.369740,66.767067,67.469796,68.282494,69.071973,70.534830,72.880045,73.808844,75.736100,76.572018,78.731474,79.336223,82.238717,83.502048,83.996672,87.170505,87.706347,88.159617,90.667218,91.816811,94.231686,94.603596,96.334778,97.186084,97.929122,98.127787,99.625397,102.139733,103.895406,106.240622,107.491283,109.146898,110.776278,111.890836,112.052810,113.040139,113.328945,114.443503,116.022460,116.974478,117.972936,119.110714,120.573571,121.850669,122.872347,123.777925,125.519422,126.174587,126.964065,127.619708,127.846410,129.384835,132.545333,134.828444,135.437506,136.152103,137.522080,138.659858,140.563894,141.146284,141.632012,142.879666 diff --git a/data/torah/labels/Achrei Mot-5.txt b/data/torah/labels/Achrei Mot-5.txt deleted file mode 100644 index 195318733..000000000 --- a/data/torah/labels/Achrei Mot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.358253,4.632964,5.329563,6.165481,7.187159,8.650016,9.232242,10.110973,10.644886,11.607054,12.958508,13.743290,14.486328,15.322247,15.527964,16.940608,17.563506,18.998397,19.866711,20.772289,21.701087,23.325315,24.371382,24.998321,26.275419,28.668922,29.401640,30.144678,31.723635,33.058100,34.615346,35.229214,37.365450,38.274873,39.037287,40.150115,41.729072,42.448891,43.517009,43.847588,44.794106,45.945854,48.012430,49.405627,50.752384,51.122149,52.348913,53.736097,54.694128,55.701713,56.862710,57.673704,58.285479,61.533449,62.501166,64.305799,66.558135,67.765573,68.837025,69.052721,70.509858,71.748718,72.027357,73.443774,73.969168,74.646854,75.227353,76.049203,77.606448,78.218223,78.854338,79.876016,80.851254,82.360551,82.822808,83.496186,84.285665,84.703039,85.796324,86.716335,89.018834,89.743717,90.974374,91.332456,91.970518,93.112166,94.580426,95.970824,96.860678,98.918467,99.728245,100.587383,101.632281,103.256509,104.023936,105.695773,106.578131,108.412508,108.839519,109.418752,110.353099,111.547202,112.804386,113.122772,114.146105,115.413466,117.247843,117.716647,118.562009,118.828965,120.864507,121.620884,124.468419,126.481715,127.907553,129.022111,130.430445,131.086713,131.342546,132.377002,133.044393,134.601639,134.873049,135.569648,135.848287,136.823525,138.007743,138.913321,139.455801,140.465796,141.789333,143.019991,144.622167,146.038585,147.129923,148.198040,149.544798,150.729015,152.006113,153.074231,154.908607,156.092825,157.950421,158.925659,159.150504,160.032862,161.897930,163.028236,163.817714,165.373451,166.557669,167.277488,168.368826,169.529823,171.178440,172.598164,173.619842,173.875262,174.386101,175.663198,176.917076,177.218935,178.147734,179.308731,180.539389,181.607507,182.466645,183.163244,184.695761,186.947338,187.421887,189.256263,190.172794,191.171252,191.728531,192.541229,193.632567,195.490163,196.140322,199.042816,200.087714,202.107850,203.129528,203.856256,204.715394,205.690632,207.107050,208.778886,209.149212,210.543603,211.129138,212.777755,214.774671,215.471270,216.191088,217.282426,218.489864,219.534762,220.324240,221.067279,222.414036,223.890253,224.165509,225.346806,225.555785,227.111522,228.202860,229.348912,231.082134,232.150252,233.079051,234.123949,235.517146 diff --git a/data/torah/labels/Achrei Mot-6.txt b/data/torah/labels/Achrei Mot-6.txt deleted file mode 100644 index 974cc62ec..000000000 --- a/data/torah/labels/Achrei Mot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.724812,2.398191,2.613925,2.914568,4.112855,5.575712,6.063332,7.085010,8.106688,9.151586,9.987504,11.612901,12.843558,14.886914,15.862152,16.883830,17.464329,18.718207,20.436483,21.318842,21.844279,22.781699,24.491354,25.466592,25.990939,26.942957,27.709215,28.916653,29.659692,30.715701,31.859815,33.107175,34.477152,34.832841,35.893570,37.020855,37.6,38.549486,40.277821,41.213155,41.958844,42.887643,43.746781,44.152159,45.127397,46.908671,48.029892,48.461994,49.572703,50.520854,50.875490,52.285571,52.913182,53.973784,55.243165,55.886208,57.138614,58.358162,59.694353,60.045104,60.728667,61.703905,63.043183,64.254107,65.705980,66.550686,67.231199,68.206437,69.785394,71.062492,71.619862,72.672113,73.331857,74.546992,75.326559,76.185697,77.346695,78.623792,79.178494,80.249189,80.945788,82.153225,82.534876,83.244728,84.271925,85.541307,86.552600,86.935957,87.969017,88.756517,90.055782,90.381533,91.472871,92.285569,93.423347,94.979084,95.954322,97.161760,98.462077,99.181896,100.250014,101.271692,102.363030,102.966749,103.663403,104.589351,106.261188,107.422186,107.920063,108.895301,109.591899,110.845777,111.542376,112.447954,113.562512,115.002149,116.929405,118.136843,118.856661,120.226639,120.591279,120.967083,122.478649,123.155096,123.572656,125.292766,126.059025,127.080703,128.218481,129.727778,130.676256,131.326415,132.046234,133.044692,134.303944,134.512724,135.581677,136.446298,137.491196,139.580992,141.670787,143.667704,144.526842,146.082579,146.838672,147.638316,148.487289,149.764386,150.739624,151.830962,152.945520,154.431597,155.351192,156.159025,158.323346,158.714491,159.336746,160.683503,161.844501,162.915143,163.841417,165.477926,165.756565,166.731803,167.962461,169.239558,170.934615,173.186951,173.671484,174.055639,175.388145,176.038304 diff --git a/data/torah/labels/Achrei Mot-7.txt b/data/torah/labels/Achrei Mot-7.txt deleted file mode 100644 index cbd6e948e..000000000 --- a/data/torah/labels/Achrei Mot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.509592,3.827579,4.293684,5.180210,6.410868,7.386106,8.663203,9.708101,10.752999,12.610596,12.999325,13.565036,14.991351,15.781634,16.489884,18.614468,19.222149,21.328522,22.953437,24.999956,26.346713,27.321951,28.343629,29.272553,30.452122,30.861360,31.744667,32.556128,33.020527,33.810005,35.087103,36.619620,37.312876,37.910529,38.908987,40.789803,42.647399,43.901277,44.760196,45.726328,46.896432,48.035902,48.895040,49.253093,51.366109,52.611155,54.500803,55.018438,56.390589,56.775754,58.263537,59.447754,60.864172,61.524263,62.685260,63.846258,65.742881,66.720677,67.185076,68.949793,69.994691,70.376899,70.798174,72.136306,73.413403,74.032701,74.749865,75.522465,76.419178,77.616801,78.798412,80.261269,81.005195,81.841113,82.746692,83.977349,85.490753,86.535651,87.882408,89.716785,90.134669,90.901780,91.551939,93.293436,94.616973,94.967288,95.975224,97.530961,98.231859,99.276757,100.484194,102.666870,103.781428,104.826326,105.426930,106.931481,108.313399,108.522379,110.681834,112.098252,113.607549,114.838206,116.231403,117.282795,118.623059,120.129407,120.809464,121.867251,122.933891,124.221787,125.118499 diff --git a/data/torah/labels/Achrei Mot-h.txt b/data/torah/labels/Achrei Mot-h.txt deleted file mode 100644 index 36780b5cf..000000000 --- a/data/torah/labels/Achrei Mot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.921672,2.379361,3.215280,4.109811,5.294028,7.012305,7.323682,8.475162,9.690098,10.827876,11.176244,11.653047,13.312318,15.907952,16.813530,17.145808,19.181965,21.364641,22.200559,23.199017,24.801194,26.194391,27.239289,28.423507,29.932804,31.372441,32.208360,33.740877,35.668133,37.850809,39.104686,40.939063,42.254139,42.689693,44.398836,46.410511,47.943028,48.303285,49.348183,50.509181,52.430610,53.754147,55.217005,55.582425,57.648568,58.017296,59.523991,60.989057,62.126835,63.473592,65.191869,65.721064,67.462561,70.109635,71.317073,72.408411,73.707268,75.131317,77.013096,78.259140,79.670474,81.557073,82.662364,84.102001,85.402319,86.145357,87.050936,87.744325,89.322469,90.437027,91.196374,92.525062,93.526814,94.478833,96.167831,97.076934,99.365476,100.294274,101.269512,103.173548,104.171752,105.551299,106.184867,107.438744,109.064141,110.828858,111.196638,112.607742,113.977719,115.231597,117.135633,118.052125,118.784250,119.491762,119.918940,121.542981,121.928178,122.996296,124.439025,125.284554,126.625958,127.338023,128.986640,129.944502,130.635257,131.074757,132.421514,133.301189,134.305653,134.782455,135.977639,138.033560,138.501512,139.166595,141.024192,141.952990,143.230087,143.973575,144.159335,145.284819,145.958699,147.700617,149.659538,149.822078,150.611556,150.828439,151.743669,152.393828,153.438726,154.553283,155.284951,155.830381,156.465522,157.022801,158.711570,159.994956,161.039854,162.665250,164.708606,165.916044,167.193141,168.911418,170.351055,171.628153,172.377189,173.886486,175.302903,176.347801,177.910806,178.368536,179.487513,179.903453,181.389530,182.504088,183.502546,184.384904,185.267262,186.846219,188.491206,189.605764,189.988440,191.590617,193.030254,195.212930,196.072068,197.047306,197.767125,199.229982,200.104672,200.940591,201.730069,203.285806,205.094891,206.127616,207.520813,209.087315,211.204750,212.505067,213.828604,215.291462,216.568559,217.428175,218.114770,219.850330,221.147042,221.425682,221.955471 diff --git a/data/torah/labels/Balak-1.txt b/data/torah/labels/Balak-1.txt deleted file mode 100644 index e4d9e0523..000000000 --- a/data/torah/labels/Balak-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.484535,3.482993,3.947392,5.526349,7.388303,7.794195,8.258594,9.071293,10.510930,12.832925,14.736961,16.548118,17.778776,19.288073,20.704490,21.215329,21.329887,22.212245,25.091519,26.786576,27.854694,29.108571,30.989388,32.614785,34.240181,34.681361,35.586939,38.303673,41.902766,44.456961,46.128798,46.593197,47.847075,49.843991,51.353288,52.932245,53.930703,54.929161,56.670658,60.571610,61.221769,63.892063,65.099501,66.562358,67.700136,69.789932,71.968893,74.628506,75.237333,76.262727,76.633948,79.774215,84.356441,87.256686,87.929600,90.618841,91.713763,92.059592,93.117029,93.943510,95.257295,99.006389,103.524528,104.227201,105.334084,107.467701,108.589224,110.511837,111.056577,112.114014,113.395755,115.029976,116.215586,120.349203,124.482819,125.315951,125.911478,126.608577,128.499146,128.979799,129.941105,132.120065,132.568675,133.754286,134.843766,135.869159,137.311118,137.803864,138.604952,139.726476,142.257916,142.930830,144.340746,145.045703,147.352838,148.153927,149.364931,150.550541,151.992501,153.242199,154.171461,156.158161,160.836517,161.958041,163.271826,164.906046,166.059614,167.629747,169.392141,170.615238,170.866144,172.281502,174.181747,175.136403,176.642449,178.308713,180.039064,182.442329,183.627940,184.511859,185.729513,187.908473,189.222259,190.375826,192.843178,194.413312,195.470748,196.624316,198.034231,199.219842,200.117061,200.661801,202.296022,204.090460,205.468332,206.224076,207.345600,210.005214,212.463140,214.041491,215.066884,217.117671,219.136414,220.001589,220.514286,222.148506,225.192642,225.801469,228.044517,228.941736,230.159390,231.248871,232.819004,234.421181,235.670879,237.497361,238.715015,240.060844,240.445366,241.150324,242.143673,244.803287,245.988898,246.982248,247.687205,248.520337,250.186601,252.461693,253.970660,254.843799,257.463510,259.610427,260.571733,260.814781,262.128566,263.025785,263.923004,265.429050,266.230139,267.159401,267.441143,268.530623,269.100756,270.382498 diff --git a/data/torah/labels/Balak-2.txt b/data/torah/labels/Balak-2.txt deleted file mode 100644 index babe9c67f..000000000 --- a/data/torah/labels/Balak-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.904036,2.809615,4.574331,6.339048,6.777143,7.984580,9.168798,10.422676,11.003175,12.489252,13.627029,15.111565,16.481542,18.083719,19.058957,20.359274,22.565170,23.772608,24.887166,26.141043,26.489342,27.371701,29.949116,31.086893,32.131791,33.223129,34.337687,36.125624,36.822222,37.820680,40.119456,41.396553,42.278912,43.741769,45.134966,46.621043,47.131882,48.385760,49.848617,51.404354,52.333152,53.447710,54.864127,55.282086,56.373424,56.953923,57.487982,58.974059,60.181497,61.435374,62.176871,63.105669,64.661406,65.683084,68.794558,69.607256,70.373515,71.395193,72.904490,73.667664,74.410703,75.989660,76.779138,77.638277,78.311655,79.635193,81.469569,83.536145,85.022222,85.695601,86.903039,87.924717,88.551655,88.805533,89.432472,91.359728,92.451066,93.542404,94.331882,95.562540,96.328798,98.163175,99.811791,100.369070,101.181769,102.830385,103.944943,105.361361,106.429478,106.917098,108.867574,112.373787,114.045624,114.554921,116.969796,117.596735,118.502313,119.709751,122.121542,122.437138,123.319728,124.689705,125.850703,127.197460,129.423492,130.836825,131.553560,135.965351,138.658866,139.708481,141.264218,141.703855,142.586213,143.468571,144.884989,146.324626,147.230204,147.880363,148.855601,151.224036,151.641995,153.592472,154.381950,155.100227,156.446984,157.149346 diff --git a/data/torah/labels/Balak-3.txt b/data/torah/labels/Balak-3.txt deleted file mode 100644 index 5604b1499..000000000 --- a/data/torah/labels/Balak-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.366893,4.667211,7.331338,7.453605,9.092971,10.207528,10.648707,11.461406,12.924263,13.886845,14.307565,18.542660,19.007059,19.935857,21.329054,24.742388,27.760982,30.199077,31.661934,32.776492,33.728510,35.214587,36.352365,36.536583,38.092320,38.855494,40.713091,42.384927,43.567603,46.980936,47.352456,48.163612,50.206968,51.275086,53.434542,54.990279,56.499576,57.498034,58.937671,60.121889,60.259666,61.281344,62.512002,63.742660,65.391276,66.203975,66.993453,68.967149,70.731866,72.519803,75.143657,76.211775,77.558533,79.114270,80.716447,81.854224,82.806242,83.827920,84.965698,86.823295,88.936310,89.307830,90.074088,92.140664,93.975041,94.323340,95.855857,98.897671,99.362070,100.244428,101.080347,101.591186,102.845063,104.470460,106.815676,109.044791,109.671730,110.855948,112.225925,113.828102,115.290959,116.359077,119.308011,119.795630,120.422569,121.606787,122.628465,124.091322,126.645517,127.643975,128.317354,129.362251,130.523249,131.962886,132.961344,134.006242,135.213680,135.840619,136.931957,138.000075,138.441254,139.532592,141.483068,143.619304,144.780301,144.987739,145.475358,146.868555,148.888691,150.142569,150.583748,152.162705,153.230823,154.066741,155.506378,156.365517,157.294315,158.873272,161.311367,162.240165,163.424383,164.074542,165.955358,166.419757,167.859394,168.463113,169.902750,171.249508,172.085426,173.130324,174.918261,176.799077,178.749553,179.097852,181.396628,184.763521,185.970959,188.478714,189.175313,189.957081,193.197081,195.658397,196.354995,197.399893,198.461073,200.062478,201.664655,202.802433,203.684791,204.404610,205.913907,207.655403,209.325698,212.065653,212.553272,213.319530,215.223567,219.449598,219.844338,220.703476,222.328873,223.791730,225.115267,226.508465,227.669462,229.039440,230.525517,232.104474,233.660211,236.400165,237.352183,238.675721,239.952818,240.774859,242.618578,244.081435,244.615494,246.403431,247.425109,248.075267,249.143385,250.397263,251.488601,252.765698,254.135676,254.600075,255.296673,256.271911,257.572229,260.521163,261.566061,262.843159,264.027376,264.793635,265.397354,266.419032,267.881889,269.716265,270.923703,271.875721,274.685335,275.405154,276.450052,277.564610,278.655948,281.024383,283.090959,284.971775,285.341753,286.200891,287.083249,288.104927,289.265925,290.357263,291.378941,292.284519,295.001254,296.162251,297.462569,298.646787,302.013680,303.360437,304.033816,304.962614,306.541571,307.377490,312.880619,313.971957,315.829553,316.154632,318.151549,319.660846,320.078805,322.006061,324.258397,324.862115,326.789372,327.625290,328.600528,329.482886,330.458125,331.665562,332.942660,334.057217,334.544837,335.264655,336.518533,340.210505,341.069644,341.580483,342.044882,342.945834,343.990732,345.685789,346.103748,346.496945,348.842161,349.910279,350.606877,351.651775,352.696673,353.788011,354.786469,356.860964,358.750914,360.213771,360.464564,362.577580,365.735494,366.989372,368.220029,369.102388,369.469281,370.328419,371.368691,371.466197,372.568419,373.659757,376.353272,377.049871,377.932229,379.371866,382.111821,383.899757,384.035993,385.893589,386.404428,387.124247,387.867286,390.971050,392.526787,393.385925,394.430823,395.545381,398.192456,399.283793,401.930868,403.834905,405.158442,405.924700 diff --git a/data/torah/labels/Balak-5.txt b/data/torah/labels/Balak-5.txt deleted file mode 100644 index fdfe15e62..000000000 --- a/data/torah/labels/Balak-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.918829,4.287264,7.143318,7.839917,8.443636,10.486992,10.904951,11.856969,13.041187,14.014883,14.966901,16.174339,17.428216,18.774974,19.866312,21.329169,22.141867,23.279645,24.483999,25.157377,26.782774,29.081550,30.126448,31.403545,31.867944,32.471663,34.050620,35.768897,36.976334,38.346312,41.016606,41.945405,42.920643,44.592479,46.124996,46.355654,47.470212,48.793749,49.560008,50.419146,51.974883,53.251981,54.296878,55.875835,57.315473,58.313931,58.731890,59.985767,61.378965,62.238103,63.399101,66.487355,67.416153,67.718012,68.693250,69.389849,71.154566,73.406901,75.705677,77.377513,78.840371,79.304770,81.208806,82.532343,83.507581,84.622139,86.038557,86.828035,87.849713,88.476652,89.289350,91.030847,93.097423,94.351300,95.930257,96.835835,97.718194,99.343591,100.667128,101.665586,102.501504,104.150121,105.496878,106.100597,106.681096,108.794112,109.397831,110.117649,111.998466,113.113024,113.995382,115.272479,116.433477,117.664135,118.383953,120.241550,121.425767,123.353024,125.094520,126.464498,127.114656,128.856153,129.645631,130.504770,131.294248,132.501686,132.989305,133.778783,134.777241,136.332978,137.563636,138.376334,139.490892,140.605450,141.464588,142.555926,144.622502,146.178239,147.733976,149.545132,150.450711,151.542049,152.726266,153.051346,153.678284,154.839282,155.234021,155.930620,157.393477,159.738693,161.155110,162.107128,163.453885,164.243364,165.474021,166.611799,168.539055,169.398194,170.512752,171.557649,173.066947,174.483364,175.458602,176.433840,177.362638,178.175337,179.104135,179.870393,180.938511,182.099509,183.864225,184.537604,184.932343,185.977241,186.511300,187.463318,188.113477,189.483454,190.063953,190.830212,191.457151,193.221867,194.824044,195.752842,196.658420,197.006720,197.772978,199.978874,201.023772,201.859690,202.881368,204.831844,205.528443,206.364361,207.525359,208.175518 diff --git a/data/torah/labels/Balak-6.txt b/data/torah/labels/Balak-6.txt deleted file mode 100644 index 31475056c..000000000 --- a/data/torah/labels/Balak-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.695057,2.414875,2.642449,3.780227,4.424218,5.103764,7.113107,7.599184,8.481542,9.665760,10.849977,11.546576,12.684354,14.054331,15.679728,16.562086,17.908844,19.557460,20.463039,20.834558,21.949116,22.831474,24.619410,26.012608,26.334603,27.007982,29.144218,30.281995,30.905850,31.065215,32.026576,32.302132,32.789751,33.672109,34.600907,35.738685,36.631927,37.229478,38.135057,39.040635,39.853333,40.991111,42.593288,44.169161,45.051519,46.026757,46.769796,47.698594,50.322449,51.088707,51.831746,53.480363,55.593379,57.706395,58.771429,60.884444,62.184762,63.601179,65.273016,65.386032,66.732789,67.336508,68.265306,69.078005,70.262222,71.074921,72.235918,73.582676,74.279274,75.530068,77.643084,79.847031,81.681408,82.029707,84.371839,85.407622,85.661465,87.009752,88.000501,89.556238,90.902995,91.715693,92.272972,93.851929,95.384446,96.494378,97.910795,98.955693,99.907712,100.906170,102.130659,103.039139,104.118324,105.113698,106.576555,109.246850,110.129208,110.802587,111.475966,112.729843,113.844401,114.889299,116.119956,117.164854,118.906442,120.996238,122.041136,122.877054,124.522587,125.822904,127.550523,129.733199,132.310614,133.448392,134.841589,135.770387,137.047485,139.857099,140.785897,142.457734,143.827712,144.685308,145.939185,146.888120,147.584718,150.672972,151.764310,152.600229,153.502723,154.849480,156.358777,157.473335,159.052292,160.677689,161.931566,163.278324,164.485761,165.995058,166.807757,167.759775,171.033789,171.936283,174.759866,177.732020,179.078777,180.309435,182.027712,183.397689,185.975104,188.320319,189.850149,190.453867,192.056044,193.960081,195.422938,197.071554,199.118747,200.861124,201.580942,202.416861,202.689332,203.780670,205.057768,205.406067,206.543845,207.728062,209.121260,209.399899,211.443255,212.534593,213.509831,214.717269,216.156906,217.550103,218.548561,219.593459,220.465024,221.946475,223.595092,224.195727,224.935681,225.095137,226.627654,228.253051,229.344389,230.969786,232.920262,234.197359,235.474457,237.378493,239.068251,239.904170,240.436687,241.853104,244.012560,246.079136,246.682854,248.911970,249.678229,250.676687,251.442945,252.348523,253.718501,255.018818,255.340814,255.851653,257.241766,257.936823,260.583897,261.373376,263.300632,264.020451,265.413648,266.737185,267.056097,267.840950,268.978727,270.186165,271.904442,272.786800,273.505077,275.014374,275.715899,276.536097,277.743535,278.367390 diff --git a/data/torah/labels/Balak-7.txt b/data/torah/labels/Balak-7.txt deleted file mode 100644 index 521c476a5..000000000 --- a/data/torah/labels/Balak-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.620771,6.037188,6.989206,8.196644,9.241542,11.308118,12.353016,14.048073,15.320544,16.945941,18.199819,19.291156,20.684354,22.123991,23.331429,24.724626,25.769524,26.605442,27.743220,28.834558,29.949116,31.133333,31.969252,33.432109,35.846984,37.353197,37.910476,38.885714,39.947664,40.760363,41.874921,43.221678,44.313016,45.775873,46.867211,47.796009,50.164444,52.034658,53.079556,54.867493,56.167810,58.048627,59.116744,60.231302,62.112119,64.526994,66.152391,67.313388,68.404726,69.728264,70.935701,72.119919,73.373797,73.722096,74.415611,75.669488,77.225225,79.036382,81.660237,85.027130,87.743298,89.202206,90.525744,91.709961,92.708419,94.151517,95.675882,97.672798,99.623274,100.714612,103.129487,105.084589,105.406585,106.590802,107.473161,108.448399,109.655836,110.840054,111.745632,113.022730,114.578467,115.414385,117.086222,118.267356,118.519691,119.773569,120.679147,122.002684,123.442322,125.276698,126.971755,128.504272,129.688489,131.197786,132.985157,133.492912,134.328830,135.486744,136.437220,136.946517,137.991415,138.754590,140.797946,142.376903,143.561120,144.861438,148.344431,149.867696,151.330553,152.909510,154.256268,156.067424,156.973002,158.203660,159.782617,160.781075,161.616993,162.706789,163.400304,164.096903,164.886381,166.836857,168.853909,169.875587,170.804386,171.733184,172.987061,173.590780,174.496358,175.146517,176.884930,178.299805,179.367923,180.807560,182.223977,183.199216,184.035134,184.296721,184.784340,186.223977,187.911324,188.909782,190.233320,191.485655,192.971733,193.877311,195.360304,198.007379,200.654454,201.722572,202.512050,203.533728,204.787606,205.228785,206.529102,209.024766,211.226035,212.665673,213.035650,215.079006,216.100684,216.515559,216.976874,217.975332,220.204448,222.681026,224.476920,225.452158,225.962997,227.123995,230.294208,231.453881,231.935332,233.116466,235.278378,236.993750,237.992208,238.503047,240.337424,242.148580,243.286358,244.168716,245.724453,247.605269,248.394748,250.113024,255.196801,257.485956,258.484414,260.179470,262.408586,263.732124,264.242963,265.148541,265.238337,267.026273,268.767770,269.650128,270.973666,271.504641,271.896296,272.708994,273.962872,275.402509,276.400967,277.445865,278.165684,280.116160,283.580613,284.625511,285.018708,286.063606,286.410363,287.246282,288.825239,290.543515,291.797393,293.074490,294.258708,295.117846,297.242747,301.697463,303.291361,304.031316,306.237211,306.794490,309.488005,310.757393,310.881202,312.429230,313.353402,314.348776,315.509774,316.276032,317.204831,317.923107,319.478844,321.772994,323.235851,324.396849,325.091905,326.717302,329.759116,331.709592,333.328821,334.513039,335.999116 diff --git a/data/torah/labels/Balak-h.txt b/data/torah/labels/Balak-h.txt deleted file mode 100644 index daaef3bdb..000000000 --- a/data/torah/labels/Balak-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.876190,4.385488,8.031020,9.517098,11.049615,12.883991,14.207528,16.459864,17.992381,20.291156,21.034195,22.845351,24.377868,24.747846,26.257143,27.394921,28.668934,30.642630,31.362449,32.918186,35.867120,36.978594,39.439909,44.037460,45.825397,47.961633,49.354830,51.232562,53.577778,55.319274,57.339410,58.105669,59.614966,62.145941,62.887438,65.093333,66.254331,67.670748,68.435465,70.176961,71.795865,73.374822,73.839221,75.859357,76.555955,78.320672,80.549788,82.360944,83.334640,84.518858,85.004935,86.723212,88.511148,89.904345,92.296001,94.757316,97.520491,100.399765,101.235683,102.536001,104.602577,105.201670,107.639765,109.447838,111.328654,113.627429,115.624345,115.994323,116.641398,118.800527,122.464172,124.809387,127.247483,129.453378,130.080317,131.865170,133.072607,133.832698,135.759954,137.798685,139.679501,142.512335,144.509251,146.297188,151.452018,153.866893,156.304988,158.185805,158.579002,160.250839,162.201315,162.569750,164.450567,166.133851,168.153987,168.571946,169.499202,170.683420,173.910994,175.420291,177.138567,177.437343,179.434259,181.454395,182.986912,185.308908,187.050404,188.118522,188.722241,190.092218,191.810495,194.058205,195.056663,196.171221,196.773397,197.678976,199.093851,199.369406,200.809044,201.505642,202.759520,204.756436,208.146549,209.214667,210.001062,211.324599,212.392717,214.737933,216.821561,218.772037,220.559973,222.371130,223.903647,225.273624,226.318522,227.549180,230.289134,232.873296,234.600336,235.087955,236.202513,237.293851,239.731946,244.074078,245.049316,246.163874,246.814032,250.111266,251.458023,252.642241,254.058658,255.080336,255.704191,256.981289,257.976663,258.252218,259.807955,260.365234,261.688772,261.964327,263.566504,264.890041,265.679520,266.465914,268.625370,270.743973,272.694449,274.250186,276.154222,276.874041,278.476218,282.211547,284.394222,286.182159,286.761116,289.106331,291.358667,292.751864,294.795220,296.374177,298.510413,299.114132,300.971728,302.318485,304.129642,305.569279,306.660617,307.798395,308.402113,310.004290,311.437760,313.109596,314.920753,315.594132,317.683927,318.519846,321.004381,321.744336,325.204109,325.783066,326.196399,327.241297,328.425515,330.484381,331.900798,334.600372,335.185696,335.882295 diff --git a/data/torah/labels/Bamidbar-1.txt b/data/torah/labels/Bamidbar-1.txt deleted file mode 100644 index a0a1a02d6..000000000 --- a/data/torah/labels/Bamidbar-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.973696,3.924172,4.249252,5.944308,6.820499,7.702857,8.466032,9.371610,10.973787,11.786485,12.993923,14.108481,15.803537,18.009433,18.868571,19.658050,20.772608,22.444444,22.769524,23.350023,23.532698,24.484717,24.922812,25.828390,27.268027,27.871746,28.916644,30.356281,31.192200,31.656599,32.399637,34.141134,34.953832,35.743311,36.486349,37.531247,38.042086,38.785125,39.621043,40.805261,42.244898,43.939955,45.147392,46.052971,47.144308,48.630385,49.326984,49.977143,50.696961,51.765079,53.204717,53.808435,54.272834,54.946213,55.782132,56.664490,57.686168,58.661406,59.427664,60.333243,61.192381,62.724898,63.676916,64.000454,64.952472,66.554649,67.390567,67.644444,68.642902,70.175420,70.964898,71.336417,72.311655,73.728073,74.563991,74.889070,75.562449,77.187846,78.000544,78.324082,78.997460,80.158458,80.855057,82.155374,83.153832,83.432472,84.198730,85.754467,86.543946,86.796281,87.725079,89.095057,89.977415,90.277732,91.113651,92.413968,93.319546,93.691066,94.596644,96.222041,96.965079,97.243719,98.218957,99.612154,100.424853,100.748390,101.630748,102.931066,103.766984,104.045624,105.020862,105.949660,107.110658,108.085896,108.991474,109.824308,110.753107,112.401723,113.121542,114.096780,114.770159,116.395556,117.115374,117.974512,118.694331,119.924989,120.737687,121.341406,122.154104,123.036463,123.779501,124.056599,125.031837,126.610794,127.632472,128.747029,129.675828,131.069025,131.298141,132.435918,133.059773,134.081451,135.172789,136.682086,137.726984,138.307483,139.909660,140.652698,142.324535,143.926712,144.553651,145.505669,145.784308,146.411247,147.595465,148.756463 diff --git a/data/torah/labels/Bamidbar-2.txt b/data/torah/labels/Bamidbar-2.txt deleted file mode 100644 index 7034cc771..000000000 --- a/data/torah/labels/Bamidbar-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.159456,2.763175,3.455147,4.616145,5.498503,6.705941,7.866939,8.540317,9.654875,10.885533,11.489252,12.859229,13.323628,14.879365,15.715283,16.574422,17.131701,18.106939,18.710658,19.407256,20.243175,21.288073,22.100771,22.704490,24.329887,25.815964,26.300499,27.113197,27.925896,29.017234,29.737052,30.712290,31.757188,32.384127,33.359365,35.147302,36.076100,36.772698,38.026576,38.374875,39.837732,40.673651,41.393469,41.950748,42.786667,43.343946,43.994104,44.760363,45.758821,46.548299,47.198458,48.730975,50.611791,51.029751,51.768163,52.348662,53.648980,54.252698,55.158277,56.203175,56.621134,57.433832,58.455510,59.871927,60.568526,61.288345,61.868844,62.820862,63.517460,64.167619,64.933878,66.141315,66.907574,67.511293,68.440091,69.183129,69.763628,70.460227,71.063946,72.132063,73.409161,74.082540,75.127438,76.195556,76.776054,77.565533,78.633651,80.003628,80.816327,81.466485,82.093424,82.906122,83.416961,84.090340,84.786939,86.017596,86.667755,87.248254,89.012971,90.522268,90.940227,91.706485,92.449524,94.167800,95.003719,96.211156,97.232834,97.790113,98.579592,99.647710,101.110567,101.853605,102.526984,103.177143,103.915556,104.558005,105.107574,105.804172,107.150930,107.892426,108.821224,110.566897,112.424494,112.865673,113.771251,114.398190,115.466308,116.325446,117.254244,118.299142,118.786761,119.715559,120.806897,122.223314,122.943133,123.593292,124.104131,124.777509,125.218689,125.822407,126.426126,127.517464,128.237283,129.003541,130.628938,132.300775,132.741954,133.345673,134.181591,135.040729,135.574788,136.224947,137.084085,138.036104,138.964902,139.429301,140.195559,141.379777,142.703314,143.399913,144.235831,144.839550,145.675469,146.067124,146.740503,147.669301,148.551659,149.364357,150.146126,151.074924,151.468122,152.280820,153.093518,154.138416,155.043995,155.923269,156.991387,157.479006,158.384584,159.475922,160.938779,161.705038,162.331977,162.935695,163.678734,164.234471,164.907850,165.627668,166.765446,167.485265,168.297963,169.784040,171.711296,172.129255,172.311931,174.517827,175.214426,176.212884,177.304221,177.907940,178.697419,179.742317,181.089074,181.785673,182.459051,183.039550,183.712929,184.223768,184.711387,185.663405,187.033382,187.610797,188.400276,190.048893,191.720729,192.138689,193.044267,193.717645,194.692884,195.505582,196.295060,197.247079,197.734698,198.477736,199.569074,201.008711,201.751750,202.448348,203.028847,203.655786,204.213065,204.979323,205.745582,206.720820,207.487079,208.160457,209.692974,211.295151,211.782770,212.549029,213.152747,214.104766,214.940684,215.799822,217.053700,217.564539,218.400457,219.515015,220.931432,221.651251,222.301410,222.951568,223.624947,224.228666,224.739505,225.343224,226.434562,227.270480,227.874199,229.360276,230.590933,231.032113,231.984131,232.657509,233.377328,234.580140,235.485718,236.484176,237.018235,237.807713,238.919187,240.312385,240.985763,241.682362,242.286081,243.029119,243.586398,244.120457,244.747396,246.024494,246.860412,247.649890,249.368167,251.295423,251.968802,252.804720,253.385219,254.151478,256.659233,257.866670,258.865128,259.910026,260.560185,261.628303,262.580321,263.509119,264.293972,264.985945,265.448802,266.098961,266.490616,267.280094,268.116013,270.159369,270.577328,271.181047,271.622226,272.249165,272.829664,273.897782,274.896240,275.708938,276.382317,277.218235,277.705854,278.193473,278.982952,280.190389,281.119187,281.513927,282.210525,282.860684,283.417963,284.253881,284.950480,285.925718,286.831296,287.527895,288.619233,289.896330,290.709029,291.498507,292.052702,293.051160,294.351478,295.257056,296.162634,296.580593,297.161092,298.066670,298.856149,299.062045,299.688983,300.432022,301.801999,302.661138,303.334516,303.938235,304.449074,305.284992,306.051251,306.608530,307.606988,310.532702,311.786580,312.060593,313.569890,313.823768,314.470843,315.864040,316.323813,316.695333,318.738689,319.110208,319.271206,319.689165,320.939958,322.286716,323.192294,323.494153,324.283632,324.748031,324.837827,325.557645,326.695423,327.809981,328.831659,329.760457,331.432294,332.570072,334.195469,335.147487,335.867305,336.888983,337.957101,338.932339,339.768258,340.627396,341.602634,342.670752,343.553110,344.458689,345.526806,345.967986,346.920004,348.266761,348.568621,350.170797,350.820956,351.003632,351.769890,352.881364,354.738961,356.062498,356.735877,357.989754,358.779233,359.220412,359.870571,361.144584,361.559460,362.093518,362.859777,363.788575,364.879913,365.669391,366.087351,366.760729,367.480548,368.525446,369.640004,370.257802,371.201498,372.896554,373.497189,375.006486,376.608663,377.073062,377.769661,378.373380 diff --git a/data/torah/labels/Bamidbar-3.txt b/data/torah/labels/Bamidbar-3.txt deleted file mode 100644 index d24b42d2c..000000000 --- a/data/torah/labels/Bamidbar-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.739955,3.831293,4.153288,4.849887,5.195102,5.914921,6.959819,7.631655,8.049615,8.769433,9.698231,10.882449,12.020227,13.088345,13.784943,14.922721,16.710658,17.639456,18.076009,18.702948,19.863946,21.141043,22.232381,23.439819,25.250975,26.133333,27.085351,28.339229,29.407347,30.545125,31.590023,32.495601,32.867120,34.144218,35.529705,36.621043,38.501859,40.754195,41.729433,42.449252,43.331610,44.631927,45.467846,46.280544,47.325442,48.300680,49.461678,50.599456,51.597914,51.969433,52.712472,54.012789,54.918367,56.868844,59.028299,59.562358,60.444717,61.303855,62.302313,63.138231,64.113469,65.135147,66.017506,66.969524,67.317823,68.060862,69.337959,70.220317,71.845714,73.842630,74.469569,75.421587,76.048526,76.698685,78.393741,79.856599,81.551655,82.178594,83.943311,85.290068,86.915465,87.704943,88.401542,89.051701,89.585760,90.746757,91.861315,93.068753,93.881451,95.553288,97.410884,98.479002,99.547120,100.452698,101.335057,102.287075,103.401633,103.842812,104.818050,106.118367,106.884626,108.765442,110.739138,111.226757,112.178776,112.968254,114.152472,114.872290,115.615329,116.404807,117.356825,118.517823,119.376961,120.491519,120.839819,121.373878,121.977596,123.019410,124.087528,125.782585,127.825941,128.522540,129.288798,130.101497,131.239274,131.889433,132.911111,133.979229,134.791927,135.697506,136.394104,137.276463,138.367800,139.343039,140.504036,141.293515,141.920454,142.686712,143.569070,144.985488,145.682086,147.353923,148.189841,149.792018,150.860136,151.626395,152.624853,153.739410,155.109388,156.223946,156.522721,157.544399,158.635737,159.889615,160.748753,162.838549,163.230204,164.600181,165.640454,166.615692,167.303039,168.301497,169.344853,170.087891,170.970249,172.038367,172.827846,173.056961,173.730340,175.077098,175.866576,176.702494,178.606531,179.721088,180.510567,181.555465,182.739683,183.645261,184.736599,185.108118,186.036916,187.081814,188.057052,189.334150,190.007528,190.843447,191.702585,192.724263,193.374422,194.280000,195.255238,196.276916,197.228934,198.111293,198.459592,199.458050,200.523084,201.660862,203.472018,205.329615,205.863673,207.001451,208.092789,208.905488,209.903946,210.995283,211.947302,212.992200,213.294059,214.338957,215.453515,216.568073,218.402449,220.306485,220.863764,221.653243,222.396281,222.976780,224.648617,225.484535,227.063492,227.806531,229.431927,230.337506,230.964444,231.939683,233.263220,234.354558,235.492336,237.117732,237.953651,239.370068,240.136327,241.227664,242.249342,243.271020,243.944399,244.896417,245.198277,246.266395,247.450612,248.425850,250.097687,252.071383,252.559002,253.325261,254.114739,255.229297,255.949116,256.947574,257.760272,258.712290,259.803628,260.546667,261.521905,261.893424,262.752562,263.774240,264.795918,266.374875,268.209252,268.650431,269.579229,270.368707,271.367166,272.249524,273.247982,274.083900,275.035918,276.173696,276.521995,277.288254,278.217052,279.192290,280.957007,282.814603,283.464762,284.323900,285.066939,285.483356,286.133515,287.596372,288.105669,288.988027,290.328617,292.186213,294.043810,294.810068,295.437007,296.203265,297.526803,298.385941,299.709478,301.497415,302.121270,302.512925,303.186304,303.929342,304.834921,305.345760,306.065578,306.855057,307.969615,308.689433,309.130612,309.687891,311.011429,311.917007,312.636825,313.403084,314.680181,316.398458,317.048617,318.604354,319.556372,320.043991,321.042449,322.969705,323.666304,324.571882,324.873741,325.640000,326.754558,327.335057,328.263855,330.191111,330.748390,331.282449,332.722086,333.140045,334.626122,335.090522,335.740680,336.838367,337.883265,338.928163,339.482358,340.852336,341.200635,341.406531 diff --git a/data/torah/labels/Bamidbar-4.txt b/data/torah/labels/Bamidbar-4.txt deleted file mode 100644 index 751a41152..000000000 --- a/data/torah/labels/Bamidbar-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.957302,3.770001,4.745239,5.743697,7.531633,9.226690,10.991406,11.703887,12.516585,13.422164,14.397402,16.115678,17.067697,17.462436,18.159034,19.320032,20.457810,22.385066,23.638944,24.939261,26.587878,27.470236,28.561574,29.490372,30.813910,32.114227,32.950146,33.530644,34.575542,35.852640,37.617356,38.406835,39.637492,40.589511,43.840304,45.883660,46.580259,48.019896,48.925474,49.854273,51.177810,52.013728,53.174726,53.592685,54.126744,55.101982,56.541619,57.447198,59.258354,59.699533,60.233592,61.232050,62.276948,64.064885,64.970463,65.388422,65.922481,66.897719,67.849737,68.221257,69.219715,69.985973,71.820350,72.795588,73.770826,74.606744,75.651642,77.021619,77.973638,79.413275,79.691914,81.386971,81.921030,82.571189,82.896268,84.475225,85.473683,86.170282,86.890100,87.795678,88.236858,88.956676,90.001574,92.161030,92.532549,92.927288,93.295724,94.526231,95.541892,96.746336,96.772549,97.466155,98.603932,99.732458,99.868694,100.840848,102.048286,104.509601,104.834681,105.624159,106.669057,107.737175,109.014273,109.989511,110.523570,111.173728,112.195406,112.868785,114.029783,115.051461,115.794499,116.166019,116.630418,117.605656,118.905973,119.184613,120.090191,121.297629,122.272867,123.224885,124.339443,125.198581,125.732640,126.220259,127.218717,129.053093,130.701710,131.853456,132.036132,133.707969,134.613547,135.704885,136.749783,138.560939,138.909238,140.418536,141.416994,142.160032,143.019170,144.017629,144.969647,145.434046,146.734363,147.686381,149.549046,149.906245,151.485202,153.017719,154.201937,154.455814,155.547152,156.383071,158.194227,159.517765,160.214363,160.398581,160.955860,162.070418,163.556495,163.928014,164.880032,165.669511,166.528649,167.411007 diff --git a/data/torah/labels/Bamidbar-5.txt b/data/torah/labels/Bamidbar-5.txt deleted file mode 100644 index 9b975551f..000000000 --- a/data/torah/labels/Bamidbar-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.054229,3.122347,3.400986,4.280261,5.232279,6.091417,7.089875,8.041893,8.340669,9.362347,10.267925,11.080623,12.195181,13.588379,14.052778,15.817494,16.281893,16.862392,17.907290,18.905748,20.159626,22.086882,22.946020,23.410419,23.848515,24.916633,25.891871,26.890329,27.699943,28.396542,28.718537,29.461576,30.576134,32.387290,33.362528,34.616406,36.427562,37.588560,37.865657,38.887335,40.141213,41.070011,42.404433,43.215589,44.051508,45.491145,46.884342,47.720261,48.695499,49.879716,51.690873,53.641349,55.057766,55.940125,56.845703,57.728061,59.283798,60.375136,61.280714,62.186292,63.324070,65.204886,66.273004,67.178583,68.293140,69.291598,70.568696,71.056315,72.101213,73.401530,74.585748,75.978945,76.280805,76.884524,77.743662,78.347381,79.299399,81.319535,82.178673,83.061032,84.013050,84.756088,85.963526,87.078084,88.773140,90.468197,91.582755,92.418673,93.531689,93.876905,94.480623,95.757721,96.849059,97.290238,98.126156,99.983753,100.401712,101.121530,102.491508,103.280986,104.395544,105.394002,107.205159,108.968333,109.943571,110.500850,111.267109,112.497766,114.239263,114.703662,115.330601,116.491598,117.513277,119.069013,119.462211,121.366247,121.923526,122.782664,123.618583,124.500941,125.545839,126.358537,127.774955,130.120170,131.211508,132.070646,133.603163,134.740941,135.878719,137.364796,138.525794,139.849331,140.708469,141.428288,142.357086,143.610964,144.771961,145.047517,145.767335,146.321530,146.971689,148.039807,149.107925,150.059943,151.267381,152.080079,153.032097,153.937676,154.912914,156.259671,156.606428,157.372687,158.371145,159.971780,160.830918,161.806156,162.781394,163.826292,164.103390,164.753549,165.659127,166.773685,168.143662,168.561621,169.327880,171.835635,172.857313,173.971871,175.481168,176.758265,177.756723,179.100397,180.145295,181.233549,182.162347,183.973503,184.925521,186.341939,187.293957,188.478174,189.430193,190.451871,190.869830,191.519989,192.657766,194.468923,195.513821,196.512279,197.441077,199.391553,200.482891,201.481349,202.665567,203.733685,204.616043,205.150102,206.171780,207.170238,208.470555,209.770873,210.072732,210.815771,211.558809,212.092868,213.091326,213.904025,214.856043,216.017041,217.201258,217.639354,218.173413,219.328242,220.257041,221.418038,221.696678,222.718356,223.438174,224.645612,226.596088,227.594546,228.593004,229.916542,231.774138,232.447517,234.165794,235.117812,236.185930,237.393367,238.415045,239.529603,240.202982,241.410419,242.362437,243.639535,245.845431,247.726247,248.701485,249.955363,251.232460,252.625657,254.042075,254.994093,257.943027,258.918265,260.357902,260.938401,261.588560,263.446156,265.094773,266.325431,268.113367,269.111825,270.319263,271.364161,272.594818,273.198537,274.289875,275.404433,276.402891,277.262029,278.607245,279.210964,280.836360,282.368877,283.251236,284.946292,286.896769,287.382846,287.800805,288.892143,290.262120,290.864297,291.584116,292.141394,292.954093,294.068651,295.183208,296.181667 diff --git a/data/torah/labels/Bamidbar-6.txt b/data/torah/labels/Bamidbar-6.txt deleted file mode 100644 index 97a5a6629..000000000 --- a/data/torah/labels/Bamidbar-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.787937,3.204354,3.552653,5.387029,6.362268,6.733787,7.360726,8.359184,9.729161,10.866939,11.842177,12.399456,13.606893,15.325170,15.766349,16.973787,18.088345,19.433560,19.849977,20.732336,21.312834,22.589932,23.704490,24.633288,24.958367,25.582222,26.511020,27.509478,28.182857,29.483175,30.388753,31.781950,32.176689,32.823764,34.077642,34.634921,36.073016,37.884172,38.789751,40.833107,41.831565,42.830023,43.735601,44.223220,44.477098,45.173696,46.125714,47.263492,48.981769,49.446168,50.165986,51.443084,52.627302,54.484898,55.297596,55.878095,56.946213,58.200091,59.384308,60.266667,61.056145,62.263583,63.262041,64.469478,66.443175,67.371973,67.859592,68.370431,69.392109,70.390567,70.574785,72.269841,73.454059,73.848798,74.406077,75.706395,76.635193,77.262132,77.912290,78.910748,79.816327,81.000544,81.859683,82.370522,83.276100,84.135238,85.342676,86.248254,87.711111,88.918549,90.242086,91.495964,92.796281,93.307120,94.143039,95.164717,95.954195,96.975873,99.576508,101.526984,103.198821,104.290159,105.822676,106.844354,107.842812,108.701950,109.723628,110.629206,111.766984,113.508481,114.506939,115.644717,116.759274,118.640091,119.893968,120.845986,122.471383,123.353741,124.143220,124.932698,126.000816,126.859955,128.624671,129.414150,130.366168,131.527166,133.547302,135.567438,136.565896,137.657234,138.469932,138.841451,139.630930,141.140227,142.579864,143.764082,145.528798,146.620136,147.548934,148.640272,149.963810,151.473107,151.937506,153.423583,155.745578,156.883356,157.997914,158.462313,158.926712,159.971610,162.200726,163.083084,164.244082,164.824580 diff --git a/data/torah/labels/Bamidbar-7.txt b/data/torah/labels/Bamidbar-7.txt deleted file mode 100644 index 2955738b6..000000000 --- a/data/torah/labels/Bamidbar-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,3.459773,3.806531,4.642449,4.919546,5.732245,7.171882,9.099138,9.470658,10.004717,11.165714,12.001633,12.976871,13.743129,14.648707,16.204444,17.063583,18.247800,19.269478,20.291156,21.057415,22.102313,23.054331,23.425850,24.261769,25.028027,25.678186,26.096145,27.094603,28.139501,29.184399,30.136417,31.158095,32.969252,34.060590,34.455329,35.221587,36.034286,36.916644,37.984762,39.285079,40.260317,41.258776,42.141134,43.580771,44.579229,46.529705,47.156644,48.364082,49.292880,50.453878,51.104036,52.195374,53.054512,54.029751,55.283628,57.303764,58.464762,59.277460,60.438458,62.851139,63.617398,65.103475,66.185561,67.207239,68.368237,69.389915,70.759892,71.944110,73.662386,76.332681,77.331139,79.026196,80.140754,81.859030,82.509189,83.484427,83.972046,84.877625,85.458123,86.642341,87.687239,88.708917,89.707375,90.984473,92.099030,93.097488,93.979847,96.023203,97.787919,98.948917,100.226015,101.085153,102.710550,103.685788,104.962885,105.682704,106.704382,107.772500,108.190459,108.956717,110.953634,111.975312,113.647148,115.713724,116.247783,117.014042,118.035720,118.685878,120.334495,121.100754,122.122432,122.517171,123.631729,124.583747,124.978486,125.860844,126.743203,128.020300,128.786559,129.274178,130.226196,131.712273,132.524971,133.289688,133.542024,134.492500,134.972409,135.692228,136.435266,137.410504,138.455402,138.966241,139.778940,141.473996,142.426015,144.237171,145.398169,146.605606,147.534405,148.997262,149.949280,151.110278,151.783656,152.758894,153.757352,154.198532,154.988010,156.892046,157.310005,157.658305,158.073180,159.622749,161.248146,162.246604,162.734223,164.824019,165.892137,166.333316,167.308554,168.539212,170.071729,171.209507,172.416944,173.252863,174.204881,175.249779,175.783838,176.550096,177.827194,178.243611,179.149189,180.821026,181.796264,182.841162,184.071820,185.279257,187.183293,187.554813,187.737488,189.478985,190.431003,192.358259,193.287058,195.028554,195.585833,196.468191,196.955810,198.023928,198.557987,199.811865,200.276264,201.460482,202.449078,203.308826,204.446604,205.836717,207.578214,209.714450,210.411049,211.363067,212.222205,213.174223,214.474541,215.124699,216.587556,217.702114,218.143293,219.397171,220.047330,220.183566,220.973044,223.387919,224.502477,226.522613,227.332228,228.771865,229.909643,230.281162,231.000981,232.254858,233.113996,233.555176,233.948373,234.691411,235.852409,237.477806,238.267284,238.754903,239.358622,240.380300,241.378758,243.538214,245.349371,245.767330,246.510368,248.344745,249.250323,250.225561,251.409779,252.454677,253.638894,254.614132,255.426831,256.541389,258.631185,259.049144,259.815402,260.326241,260.626559,261.183838,262.251956,263.482613,265.340210,266.222568,266.663747,267.197806,267.638985,268.265924,269.241162,269.891321,271.493498,272.213316,272.817035,273.815493,274.906831,275.812409,277.043067,278.552364,279.434722,281.036899,282.221117,283.382114,284.403792,285.750550,286.145289,286.679348,287.910005,289.001343,289.906922,290.951820,292.275357,293.947194,294.736672,296.362069,296.989008,297.941026,298.707284,299.682522,300.445697,301.862114,303.673271,304.973588,305.204246,306.133044 diff --git a/data/torah/labels/Bamidbar-H.txt b/data/torah/labels/Bamidbar-H.txt deleted file mode 100644 index 5f490b1ad..000000000 --- a/data/torah/labels/Bamidbar-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.599093,3.970612,4.899410,6.130068,7.314286,8.150204,8.661043,9.566621,10.356100,11.702857,13.537234,15.696689,16.300408,17.182766,18.181224,18.622404,19.551202,20.503220,21.640998,22.755556,23.498594,24.009433,24.845351,26.958367,27.585306,28.374785,28.862404,29.651882,30.603900,31.904218,33.738594,34.504853,35.619410,36.478549,37.035828,37.964626,38.870204,39.729342,40.356281,41.703039,42.724717,44.280454,45.603991,47.528163,48.874921,50.265034,51.379592,52.238730,52.726349,53.330068,54.444626,55.489524,57.114921,57.718639,58.856417,60.574694,61.782132,63.036009,65.497324,66.426122,67.819320,68.585578,69.607256,70.861134,72.997370,74.135147,75.969524,77.502041,79.498957,80.985034,82.238912,83.260590,85.094966,86.534603,87.299320,88.413878,89.342676,90.573333,91.130612,91.850431,93.081088,94.102766,96.331882,97.307120,98.166259,99.861315,101.672472,102.903129,104.667846,107.036281,108.266939,109.497596,110.728254,111.866032,113.166349,114.931066,116.184943,117.554921,119.273197,121.525533,122.407891,122.962086,123.307302,124.491519,126.233016,127.765533,128.276372,129.181950,131.364626,132.339864,133.454422,134.638639,135.474558,136.867755,137.796553,138.818231,139.909569,141.488526,142.695964,143.647982,145.877098,147.014875,148.152653,148.617052,149.522630,150.660408,151.403447,151.983946,153.655782,154.514921,155.861678,156.929796,157.835374,158.903492,159.762630,160.970068,162.525805,163.199184,164.638821,165.683719,166.937596,168.028934,169.375692,170.908209,172.463946,173.415964,174.553741,176.016599,177.015057,178.547574,179.662132,180.730249,182.471746,183.934603,185.443900,186.535238,187.696236,189.251973,189.666848,190.665306,193.265941,194.287619,194.821678,196.075556,197.491973,198.792290,200.092608,200.858866,201.973424,203.087982,205.131338,206.036916,206.965714,208.521451,209.705669,211.307846,212.445624,214.001361,216.996735,218.180952,220.410068,221.640726,223.428662,224.450340,225.239819,225.820317,226.841995,227.631474,228.258413,230.046349,231.694966,232.832744,234.481361,235.363719,236.547937,238.451973,240.379229,240.913288,241.563447,242.747664,243.746122,244.791020,245.766259,247.229116,248.320454,249.829751,251.199728,252.407166,253.730703,254.984580,256.424218,257.213696,258.165714,260.394830,261.346848,262.275646,263.645624,265.549660,267.082177,268.661134,269.055873,270.100771,271.935147,272.538866,272.975420,273.950658,274.786576,275.645714,276.365533,277.363991,278.455329,279.477007,281.241723,281.961542,283.377959,284.353197,285.769615,286.884172,287.557551,288.509569,289.879546,290.390385,291.133424,291.737143,292.573061,294.221678,295.661315,296.218594,296.658231,297.261950,298.121088,299.258866,302.068481,302.486440,302.997279,304.227937,305.737234,306.271293,307.130431,308.036009,309.382766,311.008163,311.890522,312.703220,313.910658,314.793016,315.373515,316.070113,317.091791,317.741950,318.531429,319.692426,321.039184,322.734240,323.872018,324.893696,326.147574,327.355011,327.703311,328.446349,330.420045,331.627483,333.531519,334.158458,335.528435,336.666213,337.293152,338.407710,339.615147,340.706485,341.890703,343.098141,343.887619,345.373696,346.581134,346.929433 diff --git a/data/torah/labels/Bechukotai-1.txt b/data/torah/labels/Bechukotai-1.txt deleted file mode 100644 index 541d9ba89..000000000 --- a/data/torah/labels/Bechukotai-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.160998,2.345215,3.390113,3.921088,5.128526,6.359184,7.589841,8.448980,9.911837,10.910295,11.885533,13.092971,13.952109,14.880907,15.600726,16.715283,17.388662,18.294240,19.199819,19.989297,20.473832,20.795828,21.329887,22.792744,23.930522,24.229297,24.833016,26.018866,27.179864,28.410522,29.548299,30.453878 diff --git a/data/torah/labels/Bechukotai-2.txt b/data/torah/labels/Bechukotai-2.txt deleted file mode 100644 index a3f6af537..000000000 --- a/data/torah/labels/Bechukotai-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,2.832834,3.691973,5.015510,5.781769,6.826667,9.290595,10.219393,11.008871,11.493406,12.213225,13.118803,13.628100,14.510459,15.555357,17.157533,17.363429,18.686967,19.705561,20.866558,21.888236,23.095674,24.024472,24.930050,25.882069,26.880527,27.716445,28.714903,29.759801,31.872817,33.985833,35.190187,36.327964,38.043157,38.948735,40.759892,41.595810,42.919348,43.778486,45.213497,45.380663,46.560255 diff --git a/data/torah/labels/Bechukotai-3.txt b/data/torah/labels/Bechukotai-3.txt deleted file mode 100644 index 42b9ce821..000000000 --- a/data/torah/labels/Bechukotai-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.575873,4.574331,6.478367,7.732245,8.707483,9.868481,11.493878,12.445896,13.699773,14.535692,15.255510,16.091429,17.345306,18.854603,20.990839,22.175057,23.196735,24.311293,25.681270,26.373243,26.833867,27.859320,29.778392,30.776850,32.634446,33.632904,34.654582,35.351181,36.535399,37.626736,38.485875,39.298573,40.436351,41.713448,43.013766,43.989004,45.382201,46.218120,47.680977,48.545123,49.100268,50.470245,50.841764,52.234961,53.349519,54.208658,54.507433,55.482671,56.713329,57.057002,58.473420,59.773737,60.586435,60.978091,62.046209,63.137546,64.159224,65.250562,66.156141,66.408476,66.756776,67.755234,69.264531,69.845029,70.657728,71.326481,72.951878,73.761492,74.341991,76.037048,77.267705,78.405483,79.450381,79.984440,81.098998,81.609837,83.003034,84.489111,85.650109,86.857546,87.972104,89.249202,90.038680,91.246118,92.871515,94.287932,95.657909,96.517048,97.608385,99.001583,99.883941,101.137819,102.484576,103.320494,104.644032,106.106889,106.798862,107.462343,108.855540,110.197672,110.569191,111.474769,112.214724,113.398941,114.211640,116.022796,117.532093,118.646651,119.575449,120.063068,121.595585,123.151322,123.731821,124.521300,125.403658,126.787604,127.005835,128.018261,129.318579,129.919213,130.639032,132.148329,133.495087,134.447105,135.584882,136.211821,137.024520,138.278397,138.928556,139.648374,141.274284,142.295449,143.410007,144.292365,145.430143,146.277774,147.020813,148.088931,148.901629,150.178727,151.339724,152.593602,153.266980,154.544078,155.612196,156.657094,157.562672,159.280949,161.068885,162.206663,162.920314,163.709792,164.685030,166.263987,167.494645,168.887842,169.418817,170.672695,172.251652,173.110790,174.434327,175.850745,176.570563,177.754781,178.915779,179.937457,180.889475,182.305892,183.234690,184.233148,186.415824,186.787343,188.389520,189.550518,190.456096,191.895733,192.708432,193.149611,193.799770,194.751788,195.169747,196.400405,197.700722,199.070699,200.579996,201.880314,202.716232,203.366391,204.991788,205.525847,206.431425,207.778182,208.567661,210.378817,212.143534,212.631153,213.559951,215.324668,217.460903,218.087842,219.527479,221.385076,222.290654,223.103352,224.194690,225.332468,226.423806,227.793783,228.838681,230.162219,231.439316,232.252015,233.366572,234.527570,235.433148,236.454826,237.290745,238.033783,239.403761,240.286119,241.307797,242.700994,243.513693,244.300087,244.973466,246.436323,247.156141,247.945620,248.688658,249.687117,250.105076,251.358953,252.543171,253.657729,254.540087,255.538545,256.583443,257.581901,260.066436,260.437956,262.341992,263.526210,264.083488,265.662445,266.962763,267.520042,268.820359,269.586618,270.306436,271.606754,273.023171,274.021629,275.112967,276.366844,276.803398,277.592876,278.591334,280.309611,281.099089,282.515507,283.815824,284.767842,285.719860,286.996958,288.808114,289.597593,290.224532,290.897910,292.407207,293.312785,294.380903,295.704441,296.493919,297.631697,299.024894,300.139452,301.741629,302.949067,303.970745,305.224622,306.199860,307.175098,308.475416,309.450654,310.333012,311.702990,312.631788,313.769566,314.466164,316.346980,317.322219,318.204577,319.528114,320.712332,321.687570,322.709248,323.777366,324.961584,325.936822,327.353239,327.837774,329.021992,329.713965,330.340903,331.432241,332.407479,333.382717,334.915234,335.379634,336.935371,338.912377,340.050154,341.211152,342.557910,344.252966,345.576504,346.389202,347.387660,348.687978,349.802535,351.218953,352.774690,353.657048,354.562626,355.514644,357.465120,358.370699,359.508476,360.785574,361.575052,362.364531,364.222127,365.011606,366.567343,367.542581,368.146300,369.214418,370.027116,370.650971,371.463669,372.346027,373.460585,374.342944,375.643261,377.013238,377.918817,379.033374,380.217592,380.983851,382.307388,383.770245,385.465302,386.486980,387.508658,388.716096,389.900313,391.711470,392.965347,394.033465,395.078363,396.076821,397.586118,397.765710,398.531969,398.898862,399.850880,400.756458,401.963896,402.869474,403.329247,403.871904,405.636620,406.399795,407.166053,408.071632,409.116530,409.766688,411.206326,412.320883,413.040702,413.899840,415.246598,416.500475,417.359614,418.404512,419.008230,419.495849,421.158497,422.087295,423.062533,424.177091,425.059449,425.361309,426.243667,427.961943,428.214279,428.864438,429.653916,431.279313,431.720492,432.370651,433.647748,434.367567,434.901626,436.201943,438.361399,439.174098,440.288655,441.124574,442.749971,444.073508,445.141626,446.279404,446.674143,448.531739,450.273236,451.132374,452.107612,453.013191,453.171104,454.192782,455.346070,456.112329,457.853826,458.759404,459.270243,460.199041,461.081399,461.917318,462.869416,463.217716,464.889552,466.932908,467.745607,469.487103,470.183702,471.158940,471.716219,472.552137,474.061434,475.872591,476.801389,477.799847,479.611004,480.377262,481.259620,482.490278,483.720936,484.672954,485.624972,486.530550,487.668328,488.295267,489.665244,490.408283,491.778260,492.846378,494.657534,495.539893,497.327829,498.488827,498.903702,499.646741,501.414541,502.389779,504.688555,506.917670,507.800029,508.937806,509.773725,511.584881,512.374360,513.163838,514.046196,514.951775,515.787693,516.484292 diff --git a/data/torah/labels/Bechukotai-4.txt b/data/torah/labels/Bechukotai-4.txt deleted file mode 100644 index 66a3b9e74..000000000 --- a/data/torah/labels/Bechukotai-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.811156,2.623855,3.390113,3.942766,5.034104,6.845261,7.309660,7.913379,8.935057,10.421134,11.651791,12.905669,13.901043,15.038821,15.828299,17.085591,18.084049,19.105727,20.359604,21.358062,22.495840,23.517518,24.724956,25.607314,26.652212,27.070171,27.859650,28.625908,29.879786,31.598062,33.827178,34.570217,35.429355,36.358153,37.542371,38.146090,38.935568,39.817926,40.932484,41.675523,42.697201,43.625999,44.624457,45.204956,46.156974,47.968130,48.896929,49.338108,50.243686,50.963505,52.983641,54.910897,56.002235,56.907813,57.883051,59.206588,60.251486,61.157065,61.918697,62.359876,63.799514,64.751532,65.169491,65.842870,66.748448,67.863006,68.768584,69.790262,70.881600,71.856838,72.832076,74.805772,75.595251,76.640149,77.476067,78.311985,80.099922,80.680421,81.307359,82.189718,83.095296,83.344548,84.180466,85.596883,86.479242,87.640239,88.661917,89.567496,90.824119,92.008337,93.169334,93.568790,93.915116,94.590468,95.751466,97.353643,98.468200,99.629198,100.674096,101.533234,102.578132,103.010060,104.333597,105.285615,106.260854,107.259312,108.373869,109.697407,110.835185,112.344482,113.575139,114.596817,116.291874,117.963711,118.869289,119.821307,121.266059,122.101977,122.984335,124.493632,125.584970,126.235129,127.117487,128.348145,129.416263,130.089641,130.786240,132.458077,133.266149,134.102068,134.465877,134.860616,135.719755,136.462793,137.066512,137.879210,138.761569,140.061886,141.060344,141.594403,142.662521,143.637759,144.404018,145.216716,145.704335,146.702793,147.747691,149.465968,149.976807,151.393224,153.111501,154.086739,155.038757,156.455174,156.757034,157.592952,158.312771,159.520208,160.890186,161.818984,162.631682,163.676580,164.396399,165.139437,166.045015,167.089913,168.065152,168.901070,169.760208,170.596127,171.315945,172.384063,173.359301,174.589959,175.031138,175.936716,177.678213,178.235492,178.978530,179.976988,180.534267,181.346966,182.229324,183.576081,184.713859,185.619437,186.478576,187.291274,188.057532,189.055991,190.031229,191.686435,192.847432,193.613691,194.588929,195.071922,196.186480,197.579677,197.900131,198.805709,200.431106,202.373988,203.070471,204.951287,206.013237,207.058135 diff --git a/data/torah/labels/Bechukotai-5.txt b/data/torah/labels/Bechukotai-5.txt deleted file mode 100644 index 4a097189e..000000000 --- a/data/torah/labels/Bechukotai-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.622313,5.688889,6.826667,7.383946,8.335964,9.473741,10.402540,11.354558,12.329796,13.351474,14.558912,15.580590,16.834467,17.670385,18.622404,19.435102,20.294240,21.153379,22.058957,23.080635,24.264853,25.309751,26.145669,26.795828,28.908844,29.860862,31.718458,32.507937,33.297415,34.481633,35.038912,36.524989,37.128707,37.662766,38.568345,40.774240,41.517279,42.329977,43.189116,44.326893,45.789751,46.556009,47.368707,48.158186,48.622585,49.412063,50.921361,51.641179,53.661315,55.611791,56.122630,57.794467,58.583946,59.605624,60.348662,60.878095,61.337868,62.336327,62.678458,63.398277,64.187755,64.768254,65.209433,65.882812,66.765170,67.624308,68.641361,69.546939,70.475737,71.567075,72.797732,74.028390,75.769887,77.163084,78.231202,79.183220,80.135238,81.319456,82.201814 diff --git a/data/torah/labels/Bechukotai-6.txt b/data/torah/labels/Bechukotai-6.txt deleted file mode 100644 index e7951868c..000000000 --- a/data/torah/labels/Bechukotai-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.237759,2.581432,3.579890,4.764108,6.459164,7.062883,8.223881,9.315219,10.383337,11.521115,12.426693,12.914312,14.632588,15.584607,16.884924,18.162022,19.160480,20.019618,20.971636,22.155854,22.643473,23.525831,24.663609,25.871047,26.706965,27.867963,29.028960,29.957759,31.281296,32.163654,33.324652,34.253450,35.228688,36.273586,36.668325,37.806103,38.642022,39.617260,40.522838,41.544516,42.635854,43.471772,44.586330,45.329368,46.095627,47.094085,47.886068,49.418585,50.393823,51.578041,52.460399,53.667837,54.155456,54.782395,55.571873,56.431012,57.011510,57.940309,58.191102,58.841261,59.855229,60.667928,61.476000,62.567338,63.635456,64.750014,66.166431,67.443529,68.511646,69.510105,70.044163,70.578222,71.344481,72.528699,73.712916,74.432735,75.129334,77.544209,78.681987,80.260944,81.236182,82.490059,83.209878,83.697497,84.951374,86.089152,87.017950,88.689787,89.781125,90.640263,91.592281,92.451420,93.426658,94.100036,95.121714,95.980853,96.654231,97.304390 diff --git a/data/torah/labels/Bechukotai-7.txt b/data/torah/labels/Bechukotai-7.txt deleted file mode 100644 index 268ef726d..000000000 --- a/data/torah/labels/Bechukotai-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.506213,3.178050,4.780227,7.009342,7.520181,8.356100,9.215238,10.283356,11.096054,12.048073,12.791111,13.627029,14.857687,16.227664,17.133243,18.456780,19.501678,20.685896,21.475374,22.357732,23.541950,24.377868,24.981587,26.514104,27.326803,28.557460,29.927438,30.879456,31.924354,32.644172,33.433651,34.432109,35.360907,36.754104,37.241723,38.007982,38.983220,40.028118,42.025034,42.884172,43.487891,44.393469,46.088526,48.085442,48.665941,49.200000,50.175238,50.987937,52.172154,52.915193,53.801995,54.772789,55.862538,56.955465,59.207800,59.834739,60.461678,61.274376,62.133515,63.224853,65.082449,66.336327,67.892063,69.633560,70.153396,71.057936,71.452675,71.986734,73.333492,74.540929 diff --git a/data/torah/labels/Bechukotai-h.txt b/data/torah/labels/Bechukotai-h.txt deleted file mode 100644 index 2df8185bd..000000000 --- a/data/torah/labels/Bechukotai-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.249047,7.600068,9.893038,11.377739,12.216482,14.290497,16.566053,17.889590,18.957708,20.764239,21.925237,24.990271,25.710089,26.801427,28.659023,30.052221,30.981019,31.770497,32.467096,33.883513,35.160611,35.573944,36.525962,38.615758,39.939296,40.697296,42.191631,43.860384,45.694760,47.180838,48.759794,49.618933,50.470482,50.772341,51.213521,52.281639,54.554799,56.017656,56.316431,57.129130,58.638427,62.330399,64.536295,66.904730,67.949628,68.878427,69.850581,71.986817,73.519334,74.006953,75.237610,76.236068,77.791805,80.113801,82.029274,83.143832,85.256847,86.966767,87.384726,87.640146,90.031801,91.030259,91.722232,93.231529,95.135565,96.319783,97.504001,98.084499,99.132195,99.805574,101.430971,104.101266,105.610563,106.121402,107.723579,111.651888,112.952206,114.856242,116.156560,117.247898,118.548215,120.661231,121.079190,122.449167,123.377966,123.953839,124.274292,126.085449,126.967807,128.361004,129.986401,131.031299,131.402818,132.048351,133.232569,134.920577,136.104795,138.032051,139.425248,140.377266,141.607924,142.397402,143.883480,145.114137,146.159035,148.248831,149.293729,150.152867,150.919126,152.432525,154.290122,156.143092,157.582729,158.883047,159.811845,160.017741,160.644679,162.270076,163.802593,165.311890,166.542548,167.587446,168.771664,169.584362,170.791800,172.463636,173.810394,174.901732,175.505450,177.734566,178.965224,179.801142,181.565859,184.236153,185.002412,186.116970,186.321323,188.387899,189.383274,190.149532,192.053568,193.353886,194.886403,195.559781,196.233160,196.999419,197.858557,198.996335,200.203772,202.377881,203.893727,204.961845,206.192502,207.190960,208.305518,209.048557,210.232774,211.509872,212.599988,214.480805,215.502483,216.384841,218.306715,219.049754,220.605491,222.950706,224.901182,226.062180,226.921318,227.757237,229.498733,231.054470,231.820729,233.631885,235.164402,237.298787,239.202823,239.992301,240.990759,241.803458,242.871576,243.521735,244.188945,246.130170,247.639467,248.591485,249.729263,251.493979,252.283458,253.421236,255.185952,256.555930,257.624047,259.597744,260.480102,261.919739,263.684456,264.682914,265.727812,266.586950,267.864047,269.698424,273.390397,274.574614,276.153571,276.757290,278.266587,279.450805,280.077744,280.936882,281.354841,282.771258,284.466315,285.325453,286.393571,287.949308,290.317744,291.334796,292.426134 diff --git a/data/torah/labels/Behar-1.txt b/data/torah/labels/Behar-1.txt deleted file mode 100644 index 7d6035f64..000000000 --- a/data/torah/labels/Behar-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.252336,3.459773,3.758549,4.501587,5.473741,6.379320,7.188934,9.394830,9.859229,10.509388,11.554286,13.110023,14.085261,14.836100,15.620952,15.857778,16.735510,17.850068,18.569887,19.521905,20.450703,21.936780,22.958458,24.026576,25.117914,26.046712,26.859410,27.764989,28.949206,29.970884,30.737143,31.619501,32.501859,33.964717,34.452336,35.334694,36.681451,38.539048,39.467846,40.326984,41.186122,42.207800,43.206259,44.088617,45.226395,45.922993,46.967891,48.128889,48.755828,49.638186,50.450884,51.310023,52.285261,53.353379,54.375057,54.743492,55.532971,56.601088,57.344127,58.226485,59.085624,59.875102,60.711020,61.546939,63.334875,64.240454,65.076372,65.912290,66.887528,68.025306,68.814785,69.813243,71.624399,73.655977,74.679593,75.561951,76.978369,78.325126,78.998505,79.880863,80.902541,81.083675,81.989253,83.034151,84.427348,85.797325,86.656464,87.654922,88.583720,89.349978,90.162677,90.975375,91.788074,92.763312,94.077853,94.867331,95.563930,96.701708,97.584066,98.582524,99.395223,100.115041,102.412077,103.410535,104.176794,105.361011,106.382689,107.404367,108.124186,108.960104,110.028222,111.026680,111.700059,112.350218,113.186136,115.461692,115.949311,116.785229,117.621147,118.364186,119.455524,121.173801,121.870399,122.566998,123.379696,124.262054,124.749674,125.492712,126.375070,128.464095,129.242515,129.451494,130.496392,131.285871,131.443784,132.372583,133.231721,133.855576,135.225553,136.874170,137.965508,138.592447,139.428365,140.101744,141.309181,142.284419,143.050678,143.800682,143.982300,145.124220,145.862632,146.907530,147.113426,148.227984,149.107378,150.152276,150.825654,151.591913,152.094547,152.884025,153.278765,154.625522,155.577540,155.760216,156.781894,157.682846,158.495545,159.238583,161.119400,161.978538,162.161214 diff --git a/data/torah/labels/Behar-2.txt b/data/torah/labels/Behar-2.txt deleted file mode 100644 index 76f0c236e..000000000 --- a/data/torah/labels/Behar-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.555737,2.461315,3.459773,4.736871,5.363810,6.362268,7.151746,8.289524,8.893243,9.636281,10.448980,10.770975,11.560454,12.651791,13.441270,14.602268,15.438186,16.552744,17.086803,18.015601,19.269478,19.637914,20.543492,21.135738,21.797370,23.504174,24.312246,26.007303,26.912881,27.957779,28.909797,29.954695,30.906713,31.812292,32.833970,33.878868,34.946986,35.875784,36.595602,37.385081,38.183436,39.112234,39.878493,40.830511,41.036407,41.941985,43.102983,44.263980,45.982257,46.748515,47.839853,49.093731,50.231509,50.672688,51.578266,52.177359,53.082937,54.058175,55.195953,56.078311,56.949876,57.123209,58.180534 diff --git a/data/torah/labels/Behar-3.txt b/data/torah/labels/Behar-3.txt deleted file mode 100644 index abcd3a8ab..000000000 --- a/data/torah/labels/Behar-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.857596,2.925714,3.784853,5.108390,6.315828,7.430385,8.498503,9.520181,10.611519,11.726077,12.283356,13.003175,14.001633,14.976871,15.975329,17.066667,17.879365,18.808163,19.644082,20.062041,21.246259,22.894875,23.167347,24.049705,25.117823,26.255601,27.230839,28.524989,28.873288,29.848526,30.939864,32.031202,34.167438,34.794376,36.326893,37.418231,38.602449,39.066848,39.972426,40.916735,42.379592,43.512744,45.184580,45.625760,46.159819,47.924535,49.108753,50.246531,52.080907,52.823946,53.892063,54.983401,55.726440,56.210975,57.232653,57.576327,59.178503,61.245079,62.034558,63.195556,64.031474,64.600682,65.784899,67.015557,67.874695 diff --git a/data/torah/labels/Behar-4.txt b/data/torah/labels/Behar-4.txt deleted file mode 100644 index dd38d46fa..000000000 --- a/data/torah/labels/Behar-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.832834,2.226032,3.085170,4.176508,5.569705,6.614603,7.473741,8.797279,9.702857,11.490794,12.029723,12.936855,13.854603,15.600970,17.342466,18.108725,18.562330,19.212489,20.118067,21.632253,22.491391,23.582729,24.441867,25.602865,26.694203,27.062638,28.084316,29.105994,30.150892,30.403228,32.098284,33.143182,33.836697,34.347536,34.852207,35.801142,37.333659,38.123137,38.398693,39.675790,41.417287,43.274883,43.994702,45.431255,46.333749,48.028806,48.841504,49.886402,51.163500,51.929758,52.533477,53.392615,54.460733,55.319872,56.155790 diff --git a/data/torah/labels/Behar-5.txt b/data/torah/labels/Behar-5.txt deleted file mode 100644 index c02d9d3c4..000000000 --- a/data/torah/labels/Behar-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.018594,3.529433,4.388571,4.664127,5.407166,6.475283,7.473741,8.565079,9.749297,10.399456,10.887075,11.699773,12.698231,13.789569,14.695147,15.925805,17.179683,17.574422,19.014059,19.687438,20.569796,22.562086,23.490884,25.232381,27.113197,28.158095,28.549751,29.780408,30.546667,31.127166,33.007982,35.260317,36.374875,37.350113,38.650431,39.579229,40.484807,41.483265,42.806803,44.873379,45.732517,46.196916,46.823855,47.729433,48.658231,49.401270,49.935329,50.840907,52.025125,53.255782,53.929161,54.342494,55.754286,56.683084,57.681542,58.749660,59.864218,60.560816,61.559274,62.580952,63.463311,64.345669,65.529887,66.644444,67.387483,67.828662,68.641361,70.661497,71.172336,72.611973,73.517551,74.655329,75.607347,76.675465,78.416961,79.271474,81.012971,81.872109,83.056327,84.124444,84.728163,85.680181,88.095057,89.116735,90.022313,90.718912,91.717370,92.344308,93.110567,95.037823,95.757642,96.686440,97.615238,98.729796,99.588934,100.796372,101.585850,102.468209,104.441905,104.903220,106.326077,108.369433,109.182132,110.134150,110.853968,111.457687,112.293605,113.477823,114.615601,115.799819,117.007256,117.889615,118.771973,119.793651,120.350930,121.279728,121.999546,122.672925,123.206984,124.646621,125.900499,126.411338,127.038277,128.059955,129.685351,130.614150,132.541406,133.052245,133.841723,134.700862,135.536780,136.488798,137.580136,138.392834,138.880454,139.669932,140.598730,141.550748,142.340227 diff --git a/data/torah/labels/Behar-6.txt b/data/torah/labels/Behar-6.txt deleted file mode 100644 index cc1eb520d..000000000 --- a/data/torah/labels/Behar-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.905578,1.532517,3.343673,4.133152,4.992290,5.503129,6.315828,6.896327,7.546485,8.521723,9.561995,10.490794,11.396372,12.046531,13.021769,13.532608,14.020227,14.949025,15.877823,16.736961,17.967619,18.757098,19.639456,20.614694,21.334512,22.286531,22.630204,23.582222,24.017234,24.690612,25.665850,26.687528,27.453787,28.893424,29.381043,29.907392,30.580771,31.323810,32.415147,33.460045,34.435283,35.410522,36.385760,37.360998,38.150476,38.893515,39.497234,40.426032,41.679909,43.096327,44.512744,45.570068,46.356463,46.890522,47.517460,48.376599,50.187755,50.954014,53.155283,54.153741,54.966440,55.639819,56.615057,58.356553,59.192472,60.933968,61.955646,62.884444,64.207982,65.020680,66.808617,67.969615,68.875193,69.873651,70.802449,71.800907,73.031565,73.937143,75.260680,76.886077,78.186395,79.463492,80.717370,82.040907,83.016145,84.037823,84.966621,85.941859,87.706576,88.098231,88.910930,89.816508,90.814966,91.299501,92.184401,92.961672 diff --git a/data/torah/labels/Behar-7.txt b/data/torah/labels/Behar-7.txt deleted file mode 100644 index 57160144e..000000000 --- a/data/torah/labels/Behar-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.555737,3.343673,3.877732,4.481451,5.642449,6.640907,7.546485,8.614603,9.520181,11.470658,12.492336,13.351474,14.303492,15.000091,16.068209,17.229206,17.972245,19.667302,20.665760,21.733878,22.453696,23.103855,24.009433,24.984671,26.284989,26.819048,28.398005,29.326803,29.651882,30.278821,31.300499,31.950658,33.599274,35.456871,37.291247,38.521905,39.055964,39.845442,40.681361,41.772698,42.887256,43.421315,44.577154,45.743311,47.471020,48.074739,48.786848,49.553107,50.574785,52.594921,53.570159,54.684717,56.194014,57.099592,58.028390,58.957188,59.816327,61.046984,61.581043,62.161542,63.043900,63.995918,65.156916,66.410794,67.432472,68.523810,69.777687,70.451066,72.143018,73.884515,75.765331,76.316442,76.995988,77.988279,78.717139,79.288596,80.684667,81.680041,82.724939,82.930835,84.138272,85.415370,87.249746,88.410744,89.362762,90.221901,90.732740,91.429338,92.311697,93.867433,94.587252,95.144531,96.043941,96.941810,98.288567,99.588885,100.680223,101.376821,102.281,103.087388,103.734463,104.291742,104.658635,105.378454,106.423352,107.886209,108.838227,109.558046,110.393964,111.160223,112.112241,112.971379,114.155597,115.037955,116.082853,116.686572,117.403306,118.750064,120.561220,121.675778,122.651016,123.068975,124.276413,125.274871,126.250109,128.066770,128.796228,129.701806,130.700265,132.209562,133.254460,135.143329,135.839928,136.931265,138.138703,138.672762,140.222611,141.248635,142.572172,143.500971,144.592308 diff --git a/data/torah/labels/Behar-H.txt b/data/torah/labels/Behar-H.txt deleted file mode 100644 index 51e249b3c..000000000 --- a/data/torah/labels/Behar-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,3.831293,4.713651,5.456689,6.385488,7.476825,8.823583,9.961361,12.469116,13.072834,13.931973,15.162630,16.161088,17.647166,19.249342,20.294240,22.778776,23.266395,24.032653,25.402630,27.004807,27.863946,30.046621,31.137959,32.275737,33.715374,35.526531,37.500227,38.684444,39.102404,40.449161,41.563719,44.512653,45.162812,45.975510,47.159728,48.506485,51.269660,52.059574,53.568871,54.102930,55.031728,55.398621,57.325877,59.346013,60.298032,62.573587,63.107646,65.406422,67.519438,70.468372,71.373950,72.720707,73.370866,74.369324,76.946739,77.666558,78.339936,78.966875,80.104653,81.544290,81.939029,82.844608,84.841524,85.863202,86.397261,87.024199,87.952998,89.322975,90.785832,91.293587,91.685243,92.776580,93.821478,94.936036,96.324608,97.624925,99.064562,100.272000,101.572317,103.081614,104.451592,105.612589,106.727147,108.724063,109.908281,110.349460,111.069279,112.183837,112.950095,115.504290,116.618848,117.710186,118.337125,119.660662,122.493496,123.050775,123.863474,126.185469,126.719528,127.300027,127.717986,130.597261,131.108100,132.640617,133.848054,135.310911,136.379029,137.609687,138.933224,140.721161,141.696399,143.019936,144.111274,144.552453,145.736671,147.385288,148.499846,149.846603,151.355900,151.797079,152.586558,153.979755,155.280072,155.930231,157.184109,158.321886,160.086603,161.317261,163.546376,164.707374,165.102113,166.007691,168.840526,169.281705,171.046422,172.184199,173.925696,174.845243,177.260118,178.142476,179.094494,180.139392,181.044970,182.600707,183.459846,184.481524,185.549642,186.919619,187.662657,189.171955,190.541932,191.029551,193.026467,194.094585,195.418122,196.532680,197.647238,198.529596,199.504834,201.571410,202.755628,204.032725,204.891864,206.052862,207.724698,208.096218,209.280435,210.394993,211.138032,211.764970,212.577669,213.831546,214.481705,215.108644,215.573043,216.571501,217.732499,220.588553,221.888871,222.933769,224.930685,225.929143,228.088599,228.715537,229.597896,230.015855,230.898213,232.291410,233.336308,235.485266,237.203543,237.711298,238.454336,239.499234,239.985311,241.030209,242.141683,242.838282,244.068939,245.253157,246.510208,247.319733,248.025674,248.582953,249.767171,251.624767,252.576785,253.552023,254.643361,255.850799,256.965357,258.242454,259.426672,260.564450,261.841547,263.884903,264.720822,265.510300,267.832296,268.319915,268.534242,269.364813,270.388312,271.479649,272.594207,273.523005,274.869763,276.332620,277.609717,278.608175,280.465772,281.533890,283.228946,284.227404,285.295522,285.806361,286.874479,288.012257,289.660874,291.239831,292.212664,292.955703,293.698741,294.488220,295.579558,298.138732,298.583968,299.419887,299.579342,300.740340,301.622698,302.667596,303.851814,306.382789,307.125828,308.217166,310.190862,311.050000,312.280658,313.348776,314.718753,315.856531,316.204830,316.994308,318.062426,319.037664,319.780703,321.034581,321.800839,322.822517,324.912313,325.585692,326.537710,328.232766,331.065601,332.319479,334.432494,335.198753,336.150771,337.381429,339.414409,339.760748,340.898526,342.013084,342.610635,343.121474,345.342880,347.130816,348.328640,348.955578,349.559297,351.324014,352.299252,353.065510,353.362744,354.361202,355.429320,356.659977,359.144513,360.026871,362.604286,364.369002,365.506780,367.317937,368.200295,369.523832,371.033129,372.240567,374.353583,375.259161,376.350499,377.790136,378.904694,380.971270,382.016168,383.061066,384.314943,386.892358,388.118390,388.884649,390.347506,391.485283,392.202018,393.548776,395.568912,396.706689,397.751587,398.866145,399.911043,400.816621,401.490000,402.999297,403.928095,404.555034,405.251633,405.762472,406.830590,408.223787,409.199025,410.174263,411.637120,412.983878,413.425057,414.725374,417.256349,418.394127,418.881746 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-1.txt" "b/data/torah/labels/Beha\342\200\231alotcha-1.txt" deleted file mode 100644 index 0e0a0b5df..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.165029,3.335314,3.584000,4.286171,5.149257,6.363429,6.787657,7.533714,8.864914,9.947429,11.615086,11.936914,12.892571,13.399771,13.911771,14.745600,15.769600,16.910629,17.729829,18.534400,19.616914,20.128914,21.050514,21.650286,22.235429,22.776686,23.990857,25.205029,26.563583,28.203886,29.008457,29.856914,30.427429,30.939429,32.387657,33.309257,34.230857,35.240229,36.074057,36.761600,37.463771,38.005029,38.517029,39.292343,39.862857,41.545143,42.058533,43.285943,44.017371,44.426971,44.953600,45.714286,46.255543,46.767543,47.542857,49.078857,49.781029,50.297505,50.966599,51.698027,52.824427,53.263284,54.229420,55.238791,55.809305,56.613877,57.901191,58.881305,59.978448,60.665991,61.675363,62.787134,63.986677,64.908277,65.376391,66.312620,67.790105,68.331363,68.550791,68.843363,69.369991,70.935248,71.900734,73.334334,74.680163,75.440848,75.821191,76.377077,77.898448,79.302791,80.297534,80.897305,81.657991,82.169991,82.638105,82.901420,83.881534,85.095705,87.012048,87.567934,88.196963,89.074677,89.806105,90.420505,91.839477,92.585534,92.746448,93.068277,94.092277,94.648163,96.342883,96.650083,97.264483,98.069055,98.815112,101.375112,101.887112,103.218312,103.730312,104.549512,104.973741,105.866083,107.709283,108.294426,108.894198,109.640255,110.400941,111.322541,112.200255,113.487569,114.175112,115.052826,116.925283,117.832255,118.314998,119.017169,119.894883,121.240712,122.498769,122.864483,123.303341,123.961626,124.576026,125.512255,127.574883,128.028369,128.759798,130.266541,130.968712,131.656255,132.592483,133.557969,134.552712,134.991569,135.898541,137.624712,137.961169,138.707226,139.672712,140.477283,141.398883,142.115683,143.797969,145.129169,146.372598,147.440483,148.713169,149,149.985855,150.775798,151.594998,152.267912,153.365055,153.877055 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-2.txt" "b/data/torah/labels/Beha\342\200\231alotcha-2.txt" deleted file mode 100644 index edc1d1b2a..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.065752,2.576486,3.610471,4.576653,5.780143,6.099987,6.693256,7.388230,8.795127,9.591803,10.795294,11.744525,12.863263,14.354913,15.287194,16.236426,16.914448,17.406015,18.389148,18.982417,19.728242,21.355497,22.236926,22.660691,23.711626,24.643907,25.186325,26.016903,26.745777,28.034020,28.813746,29.566832,30.651668,31.278839,31.532906,32.109417,32.990846,33.889226,35.041865,36.211454,37.940412,39.194754,39.465963,40.042282,41.110168,42.042449,43.279840,44.093468,44.839292,46.127536,46.500448,47.280174,48.059900,48.484782,49.088617,49.654316,50.677657,51.917108,52.234916,53.455299,55.222311,56.451440,57.570177,60.180564,60.497923,61.924037,63.941154,64.466622,65.195496,65.771815,66.331184,67.161762,68.043191,69.280583,69.636545,69.958605,71.111244,71.975723,73.450422,74.569160,75.450589,76.162513,77.111745,77.552459,78.111828,78.620345,79.552626,80.603561,82.261412,83.744668,84.244534,85.049862,85.439725,86.049945,87.117831,88.846789,89.405735,90.033328,90.897807,91.096473,91.740733,92.757767,93.334087,94.012109,95.063044,95.741067,96.673348,98.148048,99.639698,100.944891,101.877172,102.894206,103.792586,105.453742,106.521628,107.318304,108.182783,110.199901,111.522045,112.505178,113.827322,114.878257,116.152453,117.042471,118.449368,119.483352,119.907116,120.720744,121.703877,122.381899,123.263329,124.060005,125.127891,125.839815,127.619624,128.297647,129.263829,129.653692,130.060506,130.501221,131.111441,132.060673,132.823448,133.738779,134.518505,135.721995,135.932820,136.326902,137.140491,137.983943,138.187350,139.272186,140.780787,141.577464,142.543646,143.272520,144.103098,145.154033,146.035463,146.815189,147.950877,148.781454,149.878234,150.450288,152.175190,153.158322,154.175356,155.039835,156.006018,157.192557,158.124839,159.006268,160.277561,160.599621,161.921766,163.142206,163.786328,164.871164,165.786495,167.108639,167.922266,168.786745,170.871665,171.685292,172.515870 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-3.txt" "b/data/torah/labels/Beha\342\200\231alotcha-3.txt" deleted file mode 100644 index 993306d2c..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.060158,4.085551,4.582226,5.239118,6.216446,7.353992,8.715842,10.077693,11.247282,12.833437,14.627875,15.701333,16.694683,17.832229,19.850971,20.587973,21.837671,22.558650,23.423826,24.817720,26.147527,26.424308,27.908760,28.966197,30.151808,31.577745,33.500357,34.942317,35.695340,36.945038,37.842257,38.627323,39.348303,40.197457,41.254893,42.039960,43.321702,44.747639,45.468619,46.173576,46.942621,47.791775,48.881255,50.259127,50.531498,53.191111,56.267291,57.965598,58.878839,59.471644,61.618561,62.195345,63.028477,63.973761,64.806893,66.713484,67.450485,68.299639,69.260945,69.581380,70.286338,71.119470,71.888515,72.593473,73.570801,74.788455,76.166327,77.111612,77.816570,78.697767,79.611008,80.492205,81.107302,81.918142,82.392526,83.431155,83.959873,84.744940,87.132183,88.013380,89.791797,90.881277,91.826561,92.595606,93.556912,95.912112,97.273963,98.203225,99.036357,100.270034,101.055100,101.968341,102.641255,103.554496,105.252804,106.438415,107.608004,108.184787,108.921789,109.786964,111.581402,112.558730,113.167557,113.952624,114.978017,115.859215,116.692346,117.861936,118.743133,119.319917,119.960787,121.130376,122.075661,123.709881,124.478926,124.847427,125.520341,126.273364,128.500390,129.061152,129.637936,130.471068,131.160004,132.169375,132.938420,133.403051,134.011878,134.716836,137.248276,138.530017,139.523367,140.660912,142.503416,143.464490,145.600958,146.690438,147.363352,148.324659,149.478226,150.631793,151.689230,152.442253,153.948299,154.685301,155.566498,156.591891,157.312871,157.873633,158.466438,159.347635,160.613355,161.190139,161.911118,162.648120,163.080707,163.673513,164.811059,165.403864,166.011066,166.853718,167.276553,167.991263,168.872461,169.721615,170.618834,172.477359,173.038121,173.646948,174.752450,175.889995,176.354627,177.331955,178.581653,179.895438,180.792657,182.955595,183.948945,184.750034,185.775427,187.313517,188.467084,190.069261,190.774219,191.671438,193.578028,194.635465,195.420532,196.093446,196.894534,197.663579,198.240363,199.361887,200.864218,201.849440,202.554398,203.371508,204.332815,206.159296,207.665342,208.322235,209.299563,210.373021,211.029914,212.231546,212.888439,214.170180,215.163530 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-4.txt" "b/data/torah/labels/Beha\342\200\231alotcha-4.txt" deleted file mode 100644 index 0c4e7497a..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.356129,3.448163,3.678041,4.674177,5.609012,6.405921,6.773725,7.448033,8.474819,9.379004,11.156724,12.796517,13.210297,14.957366,15.723624,16.168054,16.704435,17.608620,18.390204,19.386340,20.520403,21.654465,22.696577,23.600762,24.167793,25.071978,26.987624,28.045061,28.841970,29.914732,30.864893,32.596637,33.133018,34.282405,34.926063,35.784272,38.037072,38.987233,39.784141,40.259222,41.194057,42.082917,42.895151,43.600109,44.657546,45.270552,45.684332,47.569328,48.565464,49.760827,50.542411,51.415946,52.074928,52.979113,53.684071,54.358378,55.737644,56.733780,58.434873,60.442471,60.948201,61.775761,62.971124,65.177948,66.710465,67.308147,67.967129,68.963265,69.775499,71.737121,72.380778,73.560816,74.189148,74.909431,75.721665,76.304022,77.208207,78.786699,79.552958,81.223401,82.694618,83.598803,84.395712,84.932093,85.683026,86.387984,86.909039,87.690623,88.456882,89.223140,89.636920,90.648381,91.644517,93.422237,94.019918,94.847478,95.721012,97.023652,97.330155,97.989137,99.904784,101.498601,102.647989,103.552174,104.517660,105.222618,106.555907,107.873872,108.915984,110.080697,110.739679,111.873741,112.394797,112.992479,113.574835,114.325769,115.842961,116.777796,117.237551,117.881208,118.846694,120.026732,121.176120,121.789127,122.448109,123.045790,123.827374,125.651069,126.800457,127.781268,128.271673,129.114558,129.988093,130.815652,131.152805,132.118291,133.160403,133.727434,134.570318,135.259951,136.041535,136.700517,137.175597,137.865230,138.662139,139.244495,141.598070,142.456279,142.931360,143.544366,144.387251,145.291436,146.777977,147.544236,149.337281,150.088214,151.099675,151.957885,152.662843,153.812230,154.609139,155.942429,156.708688,157.919376,158.348481,159.344617,160.800508,161.428840,162.762130,163.574364,164.080094,165.551311,166.286919,166.945901,167.666184,168.371142,169.321302,169.873009,170.915120,172.325036,172.984018,174.271332,175.282794,176.018402,177.121814,178.393803,179.160062,180.370750,181.397537,182.485624,183.374483,184.585172,185.382081,186.041063,187.221101,188.232562,189.443251,190.347436,191.588775,192.401009,194.025477,195.251490,195.711245,196.370228,197.611566,198.301199,199.312660,200.170870,201.013754,202.914075,204.002162,205.258826,206.163011,208.231909,209.289346,210.147556,211.726048,212.476981,213.411817,214.392628,216.384900,217.059207,217.580263,218.530424,219.618511,221.411556,222.821471,224.813743,225.671953,226.637439,227.986054,229.380644,230.897836,231.771371,232.982059,235.250184,236.230995,237.671561,238.820949,240.705945,241.533504,243.403175,244.200083,245.088943,246.100405,247.111866,247.985400,248.935561,250.038973,251.081085,251.923969,252.812829 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-5.txt" "b/data/torah/labels/Beha\342\200\231alotcha-5.txt" deleted file mode 100644 index 2edd47113..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.268125,3.861943,5.501736,6.344620,7.172180,7.929615,8.842623,9.961361,10.804245,11.601154,12.306112,13.225622,15.110618,15.509072,16.627810,17.823173,18.803984,19.524267,20.734955,21.608490,22.543325,23.324909,24.535597,25.347831,25.884212,26.359293,27.202177,27.876484,28.750019,30.757616,31.493224,33.087042,33.592773,34.604234,36.121426,37.393415,38.144348,39.324386,40.979505,41.469910,42.726574,43.661410,44.105839,44.519619,44.8,45.474424,46.286658,46.393934,47.497346,48.064377,48.585433,48.968562,49.290391,50.317177,51.175387,51.558516,52.508677,53.719365,54.608225,55.972165,56.416595,57.014277,58.117689,59.083175,59.910734,61.427926,63.266946,64.876089,65.841575,66.638483,67.818522,68.722707,69.872094,71.573188,72.063594,73.473509,74.331719,74.791474,75.465781,75.772285,76.262690,77.090249,77.442728,78,78.500165,79.128497,79.480976,79.787479,80.185934,80.523088,82.162881,82.372789,83.509174,84.597261,85.639372,86.834736,87.631644,89.041560,89.348063,90.144972,91.171759,92.075944,93.792363,95.232929,96.121789,96.520243,97.163900,98.206012,98.941620,100.198284,101.592874,102.190556,103.293968,104.121527,104.504657,104.857136,105.286240,106.006523,106.711481,106.972009,107.5,108.106072,108.673103,109.270785,109.699889,110.052368,110.864602,111.922039,112.243868,113.117402,114.634594,115.538779,116.442964,117.193898,117.745604,118.818366,119.599949,120.427508,121.454295,122.128602,123.369941,124.672580,125.178311,126.434975,126.940706,127.553712,128.013468,128.350621,128.703100,129.653261,130.051715,130.879274,131.385005,131.768134,132.151263,132.488417,133.254676,134.266137,134.572640,135.323574,136.702839,137.545723,138.005478,138.741087,139.752548,141.966803,143.032134,144.748553,146.587574,147.160642,147.942226,150.578155,151.206487,152.616403,154.486073,156.340419,156.938101,157.673709,158.317366,158.930373,159.742607,160.800044,161.612278,162.347886,163.451298,164.217556,165.673448,166.209829,166.870204,167.389867,167.822222,168.193741,168.588481,169.610623,170.714035,171.250416,171.664196,172.476430,174.138050,174.463129,174.815608,176.225524,176.578003,177.405562,178.202471,180.026166,180.562547,180.869050,181.788561,182.585469,184.301888,184.639042,185.098797,186.815216,188.102531,188.991390,190.340005,190.769110,191.719271,192.960610,193.328414,193.926095,194.661703,196.439423,197.404909,198.983401,200.056163,201.772582,203.412376,204.224610,205.266721,206.002329,207.044441,208.055902,208.944762,209.772321,210.599880,211.274188,212.331624,212.837355,213.864141,215.074830,216.745273,217.695434,218.875472,219.764332,220.714493,221.388800,222.461562,224.254607,226.047652,226.936512,227.779396,229.357888,229.741018 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-6.txt" "b/data/torah/labels/Beha\342\200\231alotcha-6.txt" deleted file mode 100644 index 5a6f601ed..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-6.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.080359,3.923244,4.704827,5.501736,6.252669,7.923113,9.685507,10.696969,11.800381,13.057045,13.976555,15.432446,16.673785,17.409393,18.436180,19.616218,20.474427,21.148735,21.960969,23.416860,24.060517,25.960838,26.727097,27.569981,28.428190,29.730830,30.497088,31.677127,32.274808,33.286269,33.684724,34.573584,35.293867,36.535205,37.286139,38.450852,39.937393,40.596376,41.056131,41.761088,43.048403,43.799336,44.182465,44.856773,46.236038,47.109573,49.193796,49.776152,50.404484,51.140093,52.258830,53.086389,53.592120,53.990574,54.664882,55.691668,57.300811,58.327597,59.262433,60.411820,61.254705,62.542019,64.580267,65.423151,66.511238,67.354122,69.361720,70.127978,71.047488,72.074275,73.392239,73.867320,74.526302,75.231260,75.844267,76.871053,77.637312,78.480196,80.794297,81.637181,83.016446,83.637348,84.418932,84.878687,85.629620,86.058725,87.039536,89.139084,90.150545,91.085380,91.514485,92.020216,93.322855,93.705985,94.349642,95.238502,97.092847,97.966382,98.456787,98.962518,100.035280,100.709587,101.751699,103.437468,104.035149,105.705593,107.207459,109.107780,109.766763,110.670948,111.958262,113.276227,114.670817,115.666953,116.540488,117.260771,118.471459,119.544221,120.662959,121.429217,122.471329,124.509576,126.057419,126.670425,127.390708,128.141642,129.137778,129.934687,130.792896,132.064885,133.260249,133.720004,135.145244,136.156706,137.551296,138.103002,139.053163,140.033974,141.198687,141.643117,142.378725,143.313560,144.370997,145.075955,145.872863,146.853674,148.095013,148.416842,149.888058,150.746268,151.880330,152.830491,154.761462,155.405119,155.972151,156.677108,157.611944,159.619541,160.155922,161.703764,162.240145,162.715225,163.343557,164.477620,165.703634,167.297451,167.879808,168.538790,169.596227,170.239884,170.852891,171.603824,172.753212,173.274268,173.948575,175.082638,176.109424,177.917794,179.327710,180.185919,181.059454,181.319982,181.856363,182.929125,184.124488,185.166600,185.963508,187.174197,188.890616,189.488298,190.193255,191.250692,191.848374,192.415405,193.028412,193.901946,194.468978,195.296537,196.093446,196.752428,197.181533,197.901816,199.679536,200.123966,200.522420,201.494872,202.575064,203.540550,203.877703,204.168882,204.720588,205.210993,205.854650,206.452332,207.708996,208.398629,209.517366,210.007771,210.697404,211.693540,212.643701,213.256707,214.038291,214.712599,215.340931,215.877312,216.750846,217.563080,218.099461,219.340800,220.888642,222.114656,222.436484,223.371320,224.673959,225.869322,226.742857,228.520577,229.363461,230.727401,231.953415,232.689023,233.317355,234.788571,235.811643,236.439975,237.528062,238.662124,239.658260,239.995414,240.792323,241.451305,242.953172,243.504878,244.317112,246.569912,247.627349,249.466369,251.228764,253.374288,253.910668,255.243958,256.332045,257.144279,258.033139,258.845373,260.056062,260.960247,262.247561,262.891218,263.611501,264.239833,264.960116,266.109504,266.906413,267.458119,268.837384,269.971447,271.427338,273.373634,274.575964,277.007557,278.754627,279.873364,280.992102,282.585919,283.490104,284.532216,285.405751,286.018757,286.509163,286.984243,287.796477,288.961190,289.804074,291.413217,292.348053,293.405489,294.279024,294.646828,296.286621,297.374708,297.880439,298.769299,300.393767,301.558480,303.075672,303.933881,305.190545,305.956804,306.707737,307.841800,308.163628,309.420292,310.171225,311.811019,312.485326,312.945081,313.435487,314.431623,315.197881,315.856863,317.265850,318.900535,319.314315,320.019273,320.402402,320.923458,321.873618,323.314184,324.678124,325.490358,326.241292,327.160802,327.697183,328.662668,329.658805,331.896279,333.290870,333.903877,334.394282,334.808062,335.696922,337.382690,338.041673,338.792606,339.773417,341.060731,342.531947,343.451458,344.600845,345.428405,346.669743,347.298075,348.232911,350.271158,351.834326,353.014364,353.749972,354.546881,355.067937,355.938685,356.205714,356.474137,356.933892,358.527710,359.600472,360.336080,361.531443,362.435628,363.385789,364.152047,364.504526,365.148183,366.052368,366.925903,367.676836,368.672972,370.251465,371.308902,372.121136,372.550240,373.025321,374.098083,375.691900,376.550110,376.948564,377.622872,378.159253,379.017462,379.783721,381.929244,382.818104,383.247209,384.090093,384.994278,386.113016,387.032526,387.844760,388.764270,389.806382,390.756542,392.917391,393.607024,394.940314,396.855960,397.468967,398.035998,398.664330,399.721767,401.606763,402.097168,403.016678,403.568385,404.733098,406.480167,407.384352,408.273212,409.039470,410.418736,411.154344,412.319057,413.943525,414.341979,415.062262,418.096646,418.679002,419.721114,422.280417,423.567732,424.594518,425.973783,427.720853,428.563737,429.973653,430.969789,432.149827,433.115312,433.988847,435.138235,436.486850,437.544287,438.923552,439.689810,440.808548,441.682083,442.632243,444.042159,444.869718,446.019106,447.168493,448.777636,449.620521,449.942349,451.229663,452.149174,453.773642,455.030306,455.857865,456.930627,457.666235,458.616395,459.597206,460.164238,461.007122,461.987933,462.662240,463.336548,464.393985,465.344145,465.941827,466.370932,467.045239,468.010725,468.547106,469.880395,471.596815,472.163846,472.776853 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-7.txt" "b/data/torah/labels/Beha\342\200\231alotcha-7.txt" deleted file mode 100644 index 5dd64b2fd..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.051019,3.051102,3.525718,4.390197,5.220775,6.034402,7.102288,9.051603,10.678857,11.543336,13.427635,14.665027,16.885551,17.343216,18.461954,20.004455,20.411269,21.750364,23.343717,23.903086,25.394736,26.343967,26.954188,27.598309,28.581442,29.496773,31.191829,31.666445,32.242765,33.175046,34.310734,36.904171,37.429638,38.514474,39.395904,40.023075,40.955356,42.006291,43.497941,45.447256,46.786351,47.328769,47.972891,49.922206,51.057894,51.973224,52.769901,54.464958,55.092129,56.058311,57.177049,58.261885,60.482409,61.329937,61.906257,63.313154,64.177633,65.109914,66.313404,67.110081,68.144065,68.906841,69.771320,70.517145,71.296871,72.161350,73.076680,73.720802,75.958277,76.1,76.398991,77.136689,78.146757,79.020060,79.952341,80.442979,81.019298,81.917678,82.460096,83.155069,84.392461,86.460430,88.392795,89.426779,90.172604,91.121836,92.342277,93.613569,95.596785,96.478215,97.359644,98.325827,98.936047,100.376845,101.529484,102.427864,103.224541,103.902563,104.682289,105.156905,105.784076,106.614654,108.496167,109.377596,109.818311,110.581087,111.445566,112.547352,113.445732,113.920348,114.496668,115.123839,116.242576,117.310462,118.293595,119.039420,119.751343,120.581921,121.446400,122.395632,123.327913,123.666924,124.243244,125.107722,126.734977,127.853714,129.464018,129.822766,130.500557,130.890420,131.483690,131.839652,132.415971,133.314351,134.399187,134.890754,135.416221,136.043392,137.280784,138.416472,139.314852,140.145429,141.145513,142.179498,143.162630,144.213566,144.925489,145.925573,147.027360,148.095245,149.213983,150.349671,151.502309,151.928163,152.505644,153.217567,153.963392,154.505810,156.374785,158.116281,159.302821,160.421558,161.201284,162.336972,163.150600,163.862523,164.354090,164.743953,165.591481,166.506812,167.167884,167.896758,168.693435,169.405359,169.896925,170.235937,171.293605,172.186877,173.475120,174.475204,175.441386,176.526222,177.560207,178.492488,179.289165,180.526556,181.357134,182.289415,183.408152,184.289582,185.171011,186.323650,187.289832,188.934037,189.493406,190.646044,192.646211,193.493740,194.527724,195.409154,196.578743,197.392370,198.460256,199.307784,201.155396,202.884354,203.477624,204.240399,205.054026,206.037159,207.189798,208.003425,208.410239,208.935706,209.630679,210.918922,211.376588,211.902055,212.546177,213.308952,214.088678,215.088762,215.868488,216.749917,217.682199,218.376940,218.885457,219.546529,220.173700,221.173783,221.987410,223.173950,223.885874,225.123265,225.919942,226.801371,228.242170,229.038846,229.513462,230.225386,230.937310,232.072998,233.462944,234.310473,234.954594,235.632617,236.937810,237.903993,238.412510,239.514297,240.717787,241.463612,242.141634,242.972212,243.972296,244.921527,245.752105,246.396227,248.481146,249.362576,250.040599,251.108484,252.023815,253.210355,254.176537,255.515632,257.092034,257.922612,258.888795,259.549867,260.193988,261.261874,262.041600,262.804376,263.499349,264.211273,265.313059,267.211523,268.076002,268.804876,269.957515,271.398313,272.432298 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-H.txt" "b/data/torah/labels/Beha\342\200\231alotcha-H.txt" deleted file mode 100644 index bb6f70c8d..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-H.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.885544,3.441280,4.068219,5.275657,7.435113,8.572890,10.291167,11.684364,13.100782,14.029580,15.956836,18.232392,19.207630,20.438287,20.856246,21.529625,22.922822,24.037380,25.593117,26.243276,27.822233,29.401190,31.189126,33.186042,33.952301,34.625680,36.134977,37.458514,38.967811,40.453888,41.638106,42.056065,42.822324,43.867222,44.981779,46.049897,47.118015,48.511212,49.138151,51.181507,51.994206,52.551485,53.387403,54.432301,55.593299,56.986496,57.636655,58.588673,59.749671,62.419965,63.070124,63.813163,65.438559,66.738877,68.921553,70.477290,71.777607,73.031485,75.678559,76.584138,77.002097,77.861235,79.579512,80.717290,82.203367,82.783866,85.105861,86.081099,87.334977,88.170895,89.378333,90.910850,91.955748,93.023866,94.602822,96.367539,98.643095,100.431031,101.499149,102.335067,103.751485,106.189580,107.141598,108.488355,109.486813,110.531711,111.971349,112.807267,114.432664,115.500782,117.590578,118.240736,119.285634,120.469852,121.421870,123.558106,124.904863,126.274841,127.807358,128.921915,131.127811,132.056609,133.682006,134.634024,135.864682,137.536519,138.604637,140.601553,142.830668,145.036564,145.849262,147.103140,147.497879,148.821417,150.702233,151.886451,153.511847,154.022686,156.251802,157.668219,158.805997,159.920555,161.081553,162.349398,163.603276,164.555294,165.437652,166.830850,168.131167,168.688446,170.267403,171.289081,173.402097,173.936156,175.097154,176.072392,177.001190,177.604909,178.812346,179.787584,180.414523,181.134342,182.295339,182.573979,183.363457,184.849534,185.871212,186.219512,187.171530,188.750487,189.748945,190.933163,191.745861,193.046178,194.392936,195.135974,196.413072,198.270668,199.385226,201.800101,202.728900,203.704138,205.120555,206.188673,206.815612,207.512210,208.649988,209.903866,210.530804,211.180963,213.015339,213.619058,214.431757,215.360555,216.800192,218.263049,220.143866,221.328083,222.396201,223.557199,224.578877,225.136156,225.646995,226.715113,227.574251,228.572709,230.569625,231.637743,233.890079,235.051076,236.513934,237.651711,239.973707,240.600646,241.157924,241.617788,242.667222,243.402641,244.780237,245.893435,247.843911,248.679829,250.003367,250.908945,252.186042,252.836201,253.857879,254.531258,255.158197,255.878015,256.597834,257.085453,258.734070,260.777426,261.961643,262.983321,263.656700,265.769716,267.070033,267.511212,268.138151,269.577788,271.040646,271.899784,272.619602,273.223321,274.732618,277.379693,278.378151,279.330169,280.862686,281.814705,283.091802,284.508219,284.833299,286.458695,287.596473,288.687811,289.616609,290.870487,291.938605,293.076383,294.678559,295.468038,295.816337,297.046995,298.277652,299.229671,300.437108,301.644546,302.828763,303.641462,304.895339,305.522278,306.567176,307.658514,308.889172,309.701870,311.211167,312.348945,313.254523,314.624500,315.321099,315.878378,317.178695,318.827312,320.754568,321.799466,322.240646,323.703503,324.353661,325.352119,326.513117,326.884637,327.534795,328.184954,329.345952,329.949671,331.087448,333.037924,334.106042,334.941961,335.870759,336.776337,337.185045,337.835203,338.618514,339.779512,340.870850,341.451349,342.496246,343.378605,344.260963,345.468401,345.932800,346.652618,347.627856,348.301235,349.369353,349.973072,351.343049,351.714568,353.456065,354.059784,355.290441,356.799739,357.983956,358.332256,359.191394,360.213072,362.293474,362.943775,363.640373 diff --git a/data/torah/labels/Bereshit-1.txt b/data/torah/labels/Bereshit-1.txt deleted file mode 100644 index e347386e1..000000000 --- a/data/torah/labels/Bereshit-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.028362,3.351900,4.014584,5.198801,5.869747,7.053965,7.648037,9.018015,11.363230,12.547448,13.662006,14.730123,15.761487,16.129648,16.852079,17.827317,19.108553,20.246331,21.342964,21.575662,22.086501,23.595798,24.453640,25.345326,25.771316,26.297344,27.281625,28.349743,30.474060,31.983357,32.516315,33.282573,33.537442,34.164381,35.544112,36.517468,36.774486,37.531649,38.065708,39.921315,41.192426,42.107331,43.012910,43.795442,44.840340,45.700670,46.674716,47.68,48.121550,48.7,49.257250,49.576787,51.146684,52.500352,53.475590,53.765494,54.599067,55.360529,56.637626,57.572146,58.581886,58.857239,59.580344,60.784495,62.189703,65.045757,65.463309,67.738865,70.246620,71.062402,72.223400,73.007150,73.889349,75.060951,76.320605,77.230589,78.015538,78.585146,79.571542,80.453740,81.916597,84.711912,86.360529,87.521526,88.543204,89.275727,89.761978,90.331587,91.081803,91.554161,93.638095,95.020438,97.110234,98.062981,99.799593,100.765149,102.040705,102.731135,103.567054,104.696838,105.973935,107.134933,108.295931,109.364049,111.268176,112.233732,113.338217,114.256727,115.074828,115.554097,116.304349,117.156274,118.124318,119.059832,119.309083,120.470081,121.760827,123.618423,124.732981,125.568899,127.263956,128.494614,129.655611,130.305770,130.996083,132.203521,133.109099,133.782478,134.571956,135.547194,136.115614,136.608812,136.949188,137.529686,138.095351,139.192890,140.539647,142.188264,143.976200,145.230078,145.973116,146.762595,147.552073,149.665089,150.251632,151.571457,152.328619,152.745406,153.217765,154.433393,154.989108,155.892146,156.183897,157.559293,158.941636,159.594602,160.060014,160.706034,161.115874,163.060879,164.678959,166.585550,167.530834,168.508162,169.341294,170.350665,171.987062,172.224004,172.896918,173.306887,174.210704,175.382313,176.247489,177.561274,178.746885,180.172822,181.826826,182.868241,183.733416,184.598592,185.656028,185.908447,186.709536,187.385171,188.202281,189.644241,190.349198,190.829851,191.070178,191.935353,192.672355,193.416849,194.007297,194.771207,195.695283,196.453492,197.062319,197.623081,198.504279,199.289345,200.042368,201.016261,202.589830,204.360648,205.690455,206.601204,207.295849,208.435066,209.423527,209.817409,210.914947,213.055809,213.792810,214.770138,216.117835,216.367907,216.965302,217.298731,218.326805,218.999719,219.882809,220.146774,221.307772,222.077886,222.571084,222.939245,223.536640,223.856176,225.620574,226.581880,227.495121,228.329688,229.204940,229.701615,230.294420,230.919269,231.912619,232.825860,233.081057,233.935470,234.362791,234.795378,235.428956,236.950227,238.264013,239.001014,239.207823,240.138559,240.955670,241.667093,241.779246,242.243877,243.077009,246.649863,248.585541,249.577306,251.176549,253.503609,254.335771,254.538629,255.108238,255.934865,256.800041,257.713281,258.354152,258.706497,259.797089,261.922158,263.428204,264.389510,265.126511,266.119861,267.786125,268.987758,269.285935,270.269499,271.112850,272.176090,272.881047,274.329055,275.530790,275.926737,276.287953,276.940918,277.295187,278.502625,280.138420,281.836728,282.765991,284.191928,285.185278,285.938301,286.739389,287.652630,288.950393,290.039874,290.616657,291.225484,292.266899,293.276271,294.376499,296.488218,297.177154,297.737916,299.276006,301.358836,302.240033,303.345535,304.034471,305.668692,306.149345,306.774194,307.719478,308.536588,309.422501,310.170809,310.353325,311.631471,313.236668,314.197974,314.999062,316.200695,317.216414,318.390363,320.627119,321.716599,323.126515,323.767386,325.545802,327.192115,328.009225,328.730205,329.158863,329.879843,330.407353,330.685165,332.159168,333.549132,334.238068,334.465094,335.362313,336.371685,337.184866,337.743162,338.111324,339.232848,339.809631,340.658785,341.341422,342.591782,343.613230,346.389408,348.344063,349.137257,350.596167,352.522494,353.683956,354.802926,355.485611,355.727512,356.463835,357.540312,359.636610,360.670594,361.577101,362.299474,363.106832,363.871697,364.409936,365.288114,365.424751,366.322099,367.661506,369.542323,371.618095,372.368796,373.870198,374.281470,374.510702,375.219240,376.170903,377.807838,378.956428,379.220393,379.755269,379.991448,381.054255,381.550001,381.719971,383.065567,383.972074,384.411163,384.708611,385.062715,385.884237,386.677431,387.797228,388.256519,389.743757,390.451966,391.004368,392.859875,393.709725,394.276292,395.692709,396.517044,397.349918,397.684047,399.324300,400.045839,400.783209,401.457292,402.363799,402.836873,403.003991,403.409049,404.103093,405.037929,406.103046,407.052046,408.102999,409.023670,409.215906,409.395755,409.941051,410.805066,411.510376,411.949465,412.770987,413.563623,414.039455,414.431929,415.081422,415.387065,416.849922,418.918782,419.966931,420.777093,421.134002,422.323793,423.499419,424.320941,424.884656,425.975297,426.869541,427.303783,428.224455,429.349033,430.085570,430.836271,431.771107,432.649285,433.093984,434.354595,435.487729,436.238430,436.414056,436.830745,437.913,438.842057,439.592758,440.303968,440.584592,441.335293,441.825336,442.845156,443.610021,443.952766,445.298362 diff --git a/data/torah/labels/Bereshit-2.txt b/data/torah/labels/Bereshit-2.txt deleted file mode 100644 index 52713f515..000000000 --- a/data/torah/labels/Bereshit-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.019244,1.932485,3.694879,5.216947,6.450623,7.588169,9.254433,10.760479,11.449415,12.218460,12.653539,14.058107,15.082932,15.512394,17.390067,18.591699,19.204045,20.033658,20.574529,21,21.651857,22.244662,22.982705,25.144603,25.903709,27.409755,28.210844,29.059997,29.682369,30.534000,31.783698,32.408547,33.145548,33.386450,34.395246,35.596879,36.494098,36.8,37.391317,38.448754,38.656687,38.892853,39.426082,40.531584,43.268143,44.440895,45.786724,46.176717,47.997728,49.888297,50.129395,51.250147,52.211453,52.975819,53.597310,54.550631,55.325052,56.200874,56.816629,57.738963,60.398577,62.401298,63.667018,64.404019,65.237151,66.182436,67.816656,68.537636,68.786529,69.498942,69.967360,71.021010,73.312123,74.257407,74.994408,75.337035,76.308193,77.039918,78.086610,79.095981,79.811764,80.271666,81.315770,82.501381,83.494730,84.067585,85.092978,86.086328,86.919460,87.306703,88.492314,89.856885,90.589958,91.487177,92.416439,92.611422,93.396488,94.600842,95.722366,96.727808,97.592983,98.570311,100.143166,101.072428,101.889539,102.581196,104.327568,105.256831,105.563966,105.919166,107.024668,107.636216,108.067596,109.942143,112.906170,113.755324,114.110524,114.911612,115.739607,116.636826,117.088156,118.498072,119.519536,119.891663,120.813370,121.758654,122.271351,123.312766,123.571835,123.718752,124.295536,125.256842,126.076673,126.893783,127.983264,129.040700,129.700314,130.517424,131.141065,132.054306,133.063677,134.008962,134.348140,135.597838,138.002143,138.588233,139.185915,139.346764,140.204973,141.308385,141.8,142.212571,143.086105,144.189517,145.760151,146.380756,147.147014,147.6,148.219776,148.756157,149.474593,149.719796,150.302153,150.715932,152.141173,154.424623,155.451410,156.003116,156.723399,157.290430,157.918762,158.930223,160.784569,162.347736,163.371113,163.812371,164.234984,165.106267,166.735624,167.486558,168.145540,168.536266,169.685654,170.283336,170.865692,171.708577,172.4,172.850237,173.371292,174.505355,176.850106,177.984169,179.501360,180,181.325056,181.9,182.673671,183.654481,184.259760,184.524022,184.842117,185.857311,186.876370,187.159820,188.094656,188.910362,189.209137,189.829741,190.550024,192.526971,193.147575,193.507652,194.833083,196.135722,197.116533,198.327222,198.982340 diff --git a/data/torah/labels/Bereshit-3.txt b/data/torah/labels/Bereshit-3.txt deleted file mode 100644 index ed930c827..000000000 --- a/data/torah/labels/Bereshit-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.848345,4.566621,6.424218,7.353016,8.374694,9.140952,10.000091,10.975329,11.625488,12.391746,13.877823,14.504762,15.108481,15.688980,16.687438,19.125533,20.100771,21.749388,23.490884,24.303583,25.093061,25.952200,27.972336,29.063673,30.410431,31.339229,31.850068,33.011066,37.376417,38.212336,39.814512,40.395011,41.602449,42.391927,42.995646,43.413605,43.854785,44.412063,45.619501,45.991020,47.012698,52.330068,54.628844,55.627302,57.508118,58.645896,59.946213,61.107211,62.036009,64.241905,65.147483,65.913741,66.912200,67.446259,68.189297,68.932336,69.721814,70.186213,71.556190,72.159909,72.624308,73.158367,73.599546,74.203265,75.387483,76.502041,77.663039,78.336417,79.265215,80.797732,82.098050,83.119728,83.909206,84.675465,85.673923,87.624399,89.667755,90.503673,91.246712,92.175510,92.895329,93.870567,94.660045,95.379864,95.867483,96.587302,97.910839,98.328798,99.187937,100.139955,100.882993,101.486712,102.090431,102.949569,103.622948,104.342766,104.946485,105.596644,108.266939,108.986757,109.474376,110.031655,110.797914,111.215873,111.680272,112.632290,113.839728,116.115283,116.997642,117.578141,118.855238,119.714376,121.246893,122.245351,123.150930,123.847528,124.520907,125.124626,125.960544,126.633923,127.887800,129.141678,130.000816,130.488435,131.277914,131.928073,132.346032,133.437370,134.900227,136.293424,137.013243,137.988481,140.264036,141.192834,141.773333,143.003991,143.793469,146.254785,147.160363,147.903401,148.367800,149.273379,150.898776,153.383311,154.103129,155.589206,156.471565,157.887982,159.792018,160.581497,161.045896,162.415873,163.832290,164.505669,165.805986,166.781224,167.477823,168.336961,170.566077,171.146576,172.284354,173.073832,174.490249,176.835465,177.601723,178.367982,179.830839,180.527438,181.154376,181.850975,183.197732,184.010431,184.869569,185.705488,186.309206,187.330884,192.067755,192.717914,193.298413,194.668390,195.945488,196.781406,197.315465,198.012063,198.499683,200.194739,201.704036,203.491973,204.908390,205.697868,206.417687,207.067846,207.601905,208.321723,210.248980,211.061678,211.642177,212.083356,212.594195,213.546213,214.057052,214.892971,216.030748,217.609705,218.050884,218.701043,219.165442,221.348118,222.253696,222.601995,223.205714,224.227392,228.012245,229.266122,230.055601,230.728980,231.402358,232.052517,232.656236,233.677914,235.187211,236.092789,238.716644,239.738322,240.574240,241.061859,242.246077,243.778594,244.498413,245.659410,246.356009,247.006168,247.749206,248.979864,249.885442,250.512381,250.907120,251.348299,252.346757,253.623855,255.342132,256.712109,257.826667,258.244626,258.639365,259.219864,260.566621,261.402540,262.308118,263.120816,264.165714,266.394830,267.253968,268.531066,268.949025,270.644082,271.503220,272.060499,273.221497,274.289615,274.962993,275.636372,276.425850,277.517188,278.074467,278.910385,279.723084,280.512562,281.348481,282.091519,282.672018,283.136417,283.484717,284.297415,287.385669,288.546667,289.846984,290.450703,291.147302,292.006440,292.563719,293.190658,293.701497,294.490975,296.000272,296.789751,297.857868,298.763447,299.808345,300.690703,301.596281,302.943039,304.034376,304.777415,306.100952,307.052971,308.144308,308.957007,309.491066,310.164444,310.768163,312.300680,313.183039,313.972517,314.761995,316.062313,317.734150,318.291429,320.218685,321.310023,322.703220,324.073197,324.537596,324.978776,325.628934,326.859592,327.858050,328.531429,329.204807,330.017506,331.015964,331.875102,332.873560,333.964898,335.218776,335.938594,336.704853,337.633651,339.630567,340.629025,341.395283,341.882902,343.206440,343.577959,344.042358,344.901497,346.248254,346.991293,347.734331,348.245170,349.150748,350.033107,350.636825,351.681723,352.982041,353.492880,354.143039,355.234376,355.698776,356.395374,356.882993,357.370612,358.043991,362.153923,363.663220,364.383039,364.917098,365.544036,366.403175,367.448073,368.376871,369.143129,369.537868,370.071927,372.393923,373.717460,374.855238,376.596735,378.152472,379.220590,380.102948 diff --git a/data/torah/labels/Bereshit-4.txt b/data/torah/labels/Bereshit-4.txt deleted file mode 100644 index 8b4f3a628..000000000 --- a/data/torah/labels/Bereshit-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.569705,6.777143,8.402540,9.238458,10.213696,10.817415,11.537234,12.140952,12.976871,13.394830,13.859229,15.577506,16.065125,16.831383,18.294240,19.269478,19.803537,20.871655,21.800454,22.915011,23.402630,24.470748,27.094603,27.791202,28.441361,29.114739,29.741678,31.065215,31.459955,32.202993,32.737052,33.340771,34.432109,35.685986,36.173605,36.707664,38.867120,40.097778,40.608617,41.490975,42.048254,43.650431,44.741769,45.624127,46.367166,47.388844,48.573061,49.176780,49.641179,50.105578,51.104036,53.913651,54.679909,55.051429,55.539048,56.096327,57.443084,58.209342,58.511202,58.952381,60.136599,61.158277,61.599456,62.087075,63.039093,64.664490,65.337868,65.825488,66.382766,66.754286,67.358005,68.426122,69.122721,69.865760,70.376599,71.491156,72.303855,72.954014,73.975692,76.645986,77.667664,78.550023,80.082540,81.266757,83.054694,84.587211,85.678549,86.909206,88.093424,89.115102,89.649161,90.276100,91.344218,91.971156,92.946395,94.618231,95.361270,95.941769,96.429388,96.847347,97.938685,99.099683,99.564082,100.028481,100.655420,101.212698,101.909297,103.186395,104.022313,104.765351,105.740590,106.739048,107.992925,108.619864,109.153923,109.664762,110.756100,111.638458,112.149297,112.961995,113.658594,114.587392,115.701950,116.352109,117.048707,117.977506,118.836644,119.602902,120.276281,121.112200,121.785578,122.366077,124.804172,126.429569,127.428027,128.356825,129.215964,130.098322,130.771701,131.143220,131.630839,132.164898,132.931156,134.068934,134.881633,136.042630,137.250068,137.923447,138.387846,138.782585,140.199002,141.522540,142.056599,142.753197,143.124717,144.216054,144.773333,145.655692,146.607710,147.304308,147.977687,149.045805,149.719184,150.833741,152.412698,152.993197,153.759456,154.850794,155.756372,156.569070,157.613968,158.240907,158.658866,159.935964,161.747120,162.350839,162.792018,163.511837,164.603175,165.276553,166.158912,166.646531,167.110930,168.527347,169.107846,169.641905,170.199184,171.174422,172.010340,172.776599,173.473197,174.309116,174.889615,175.400454,175.957732,176.445351,176.932971,177.954649,178.419048,179.301406,181.3,181.707302,182.364580,182.645079,183.132698,184.386576,185.199274,186.360272,191.399002,192.745760,194.092517,195.973333,197.296871,198.086349,198.875828,200.083265,201.035283,203.264399,204.077098,204.866576,205.772154,206.724172,207.165351,207.792290,208.953288,211.159184,211.716463,213.365079,214.479637,215.060136,215.663855,216.197914,217.103492,218.543129,219.541587,220.354286,220.958005,221.608163,222.629841,223.280000,223.767619,224.185578,225.230476,226.879093,227.529252,228.202630,228.667029,229.711927,230.315646,230.849705,231.546304,232.103583,233.403900,234.170159,234.588118,235.052517,236.004535,236.724354,237.165533,237.699592,238.721270,240.207347,240.694966,241.554104,242.273923,242.947302,243.667120,244.154739,245.269297,248.705850,249.704308,250.168707,250.725986,251.515465,252.583583,253.047982,253.698141,256.066576,257.065034,257.645533,258.574331,259.735329,261.291066,261.732245 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-5.txt b/data/torah/labels/Bereshit-5.txt deleted file mode 100644 index d4fdca853..000000000 --- a/data/torah/labels/Bereshit-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,2.414875,3.088254,3.900952,4.806531,5.735329,6.803447,7.639365,8.405624,9.125442,10.448980,11.749297,12.492336,12.910295,15.534150,15.603810,19.226122,19.295782,19.365442,19.435102,19.551202,20.805079,21.501678,22.360816,23.568254,24.334512,25.077551,26.122449,27.237007,28.026485,29.280363,30.905760,31.695238,33.158095,36.060590,36.153469,36.246349,36.362449,37.151927,38.127166,38.707664,39.566803,40.704580,42.492517,43.073016,43.653515 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-6.txt b/data/torah/labels/Bereshit-6.txt deleted file mode 100644 index 302578f8b..000000000 --- a/data/torah/labels/Bereshit-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.578957,3.413333,5.921088,7.337506,8.521723,9.822041,10.774059,12.097596,12.933515,14.140952,15.209070,16.486168,16.973787,18.041905,19.179683,20.433560,22.128617,24.171973,25.170431,25.890249,26.563628,27.933605,28.862404,30.093061,32.229297,32.902676,33.576054,33.901134,34.528073,35.758730,36.385669,37.662766,38.080726,38.521905,39.148844,40.147302,40.634921,41.238639,42.260317,43.189116,44.071474,45.139592,45.836190,46.695329,47.415147,48.320726,50.247982,50.874921,51.385760,52.221678,52.755737,53.661315,54.102494,54.590113,55.356372,56.215510,57.469388,58.467846,59.303764,60.464762,61.974059,62.717098,63.645896,64.342494,66.501950,67.593288,68.707846,69.543764,70.426122,71.076281,71.888980,72.608798,74.141315,75.046893,75.859592,77.183129,78.808526,80.201723,80.619683,81.316281,82.152200,82.802358,84.079456,85.960272,88.026848,89.141406,90.046984,90.906122,91.858141,92.786939,93.738957,94.853515,95.317914,95.782313,96.618231,97.802449,98.499048,100.310204,101.447982,102.539320,102.910839,103.607438,104.443356,105.441814,106.115193,107.345850,108.158549,109.249887,111.850522,112.616780,113.197279,113.870658,114.404717,114.961995,115.914014,116.680272,117.469751,118.630748,119.257687,120.349025,122.392381,123.228299,124.040998,124.760816,125.480635,126.130794,127.106032,127.500771,128.313469,129.567347,130.960544,132.237642,133.282540,133.863039,134.466757,135.441995,136.254694,137.299592,137.833651,138.599909,139.946667,140.596825,141.595283,143.360000,143.963719,144.428118,144.846077,145.426576,146.030295,146.842993,147.655692,148.305850,149.025669,150.093787,151.347664,152.183583,153.089161,153.785760,155.016417,155.411156,156.177415,157.524172,159.567528,160.682086,161.680544,162.052063,162.586122,163.491701,164.165079,165.024218,166.138776,166.858594,167.555193,168.576871,169.227029,170.480907,171.432925,171.943764,172.524263,173.174422,173.987120,174.660499,175.542857,176.193016,177.052154,178.213152,181.162086,182.137324,182.810703,183.484082,184.296780,184.784399,185.852517,186.990295,188.755011,189.892789,190.682268,191.123447,191.820045,192.841723,193.840181,194.606440,195.372698,196.185397,197.114195,197.810794,198.902132,200.225669,200.597188,201.015147,201.618866,202.338685,203.128163,204.289161,204.800000,205.426939,206.402177,208.631293,209.861950,210.651429,211.255147,211.928526,212.787664,213.809342,214.343401,214.947120,216.177778,218.383673,219.451791,220.334150,220.728889,221.309388,222.191746,222.865125,223.840363,224.513741,225.233560,226.440998,227.114376,228.298594,229.598912,230.086531,230.690249,231.735147,232.663946,233.546304,234.428662,235.589660,236.286259,237.145397,238.236735,239.629932,240.558730,242.694966,244.459683,245.690340,246.549478,247.246077,248.337415,248.848254,249.800272,250.914830,252.563447,253.886984,254.978322,255.419501,256.069660,256.998458,257.671837,258.391655,259.599093,260.133152,261.131610,262.989206,263.569705,264.034104,264.498503,265.241542,265.891701,266.727619,267.609977,268.190476,269.003175,270.210612,273.205986,274.088345,274.784943,275.644082,276.410340,277.524898,278.175057,279.219955,280.543492,282.377868,282.981587,285.071383,286.162721,287.346939,287.695238,288.554376,289.320635,290.156553,290.969252,292.153469,292.896508,293.987846,295.311383,295.775782,296.356281,297.238639,298.655057,299.514195,300.303673,301.441451,301.998730,302.997188,304.854785,305.690703,306.271202,307.014240,308.593197,309.266576,309.893515,310.799093 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-7.txt b/data/torah/labels/Bereshit-7.txt deleted file mode 100644 index a948bf1a7..000000000 --- a/data/torah/labels/Bereshit-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.484535,3.436553,5.247710,7.035646,7.732245,8.359184,8.962902,10.077460,10.588299,11.215238,12.074376,13.908753,14.953651,16.091429,16.462948,16.904127,17.507846,18.274104,19.226122,20.062041,20.596100,21.199819,22.198277,22.848435,23.823673,25.007891,25.541950,25.983129,26.795828,27.492426,28.328345,29.164263,30.093061,30.743220,31.393379,32.647256,34.249433,35.155011,36.710748,38.359365,39.288163,39.938322,40.449161,41.401179,42.097778,44.520560,44.892079,46.076297,46.912215,47.817793,50.093349,51.416886,52.485004,53.715662,54.412261,55.015979,56.269857,57.082555,58.220333,59.358111,60.774528,62.307045,64.187861,65.209539,65.627499,66.370537,67.206456,68.042374,68.831852,69.667771,70.410809,71.316388,72.221966,72.895344,73.870583,74.985140,75.519199,75.913939,76.471217,77.005276,77.794755,78.537793,79.768451,80.488270,81.184868,82.322646,83.576524,84.249902,84.667861,85.155480,85.991399,86.804097,88.824233,89.474392,90.008451,90.379970,90.867589,91.285549,91.657068,92.260787,93.421784,94.071943,94.861422,95.674120,96.486818,96.881558,97.276297,97.856796,98.924914,99.923372,100.782510,102.082827,102.524007,103.290265,103.592124,104.219063,104.846002,105.890900,106.308859,107.353757,108.723734,109.582873,110.325911,111.533349,112.137068,112.972986,115.527181,117.338338,118.220696,118.685095,119.219154,120.101512,120.983871,122.214528,122.887907,123.445186,124.582963,125.488542,126.324460,127.067499,128.019517,130.271852,131.409630,134.010265,135.171263,136.587680,137.702238,138.305957,139.327635,140.326093,141.626410,142.903508,143.855526,144.203825,144.784324,145.689902,146.502601,147.175979,149.103236,150.984052,152.075390,153.027408,153.561467,154.420605,155.929902,156.672941,157.299880,158.600197,159.668315,160.388134,161.340152,162.361830,163.058428,163.987227,164.614165,165.357204,165.937703,166.471762,167.214800,168.352578,169.420696,170.233394,170.813893,171.231852,171.812351,172.555390,173.553848,174.064687,174.807725,176.479562,178.453258,179.312397,179.707136,180.264415,180.914573,181.518292,182.400651,183.166909,184.444007,185.419245,185.906864,186.719562,187.369721,187.996660,188.786138,189.320197,190.016796,190.806274,191.526093,192.013712,193.012170,194.382147,195.868224,196.541603,197.818700 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-H.txt b/data/torah/labels/Bereshit-H.txt deleted file mode 100644 index b89664685..000000000 --- a/data/torah/labels/Bereshit-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.925714,4.040272,5.108390,6.501587,7.987664,8.986122,10.959819,12.074376,12.678095,14.744671,15.905669,16.788027,17.879365,18.854603,19.806621,20.735420,21.548118,23.289615,24.845351,26.331429,27.190567,28.096145,29.442902,30.975420,34.295873,35.456871,36.037370,36.664308,37.500227,39.079184,39.868662,41.679819,42.701497,43.560635,44.234014,45.046712,45.673651,46.230930,46.973968,48.158186,48.785125,49.412063,50.689161,51.989478,53.173696,53.893515,54.427574,55.449252,56.935329,58.514286,58.955465,60.000363,61.184580,62.136599,63.042177,63.901315,64.737234,65.549932,66.641270,67.732608,68.591746,69.381224,70.449342,71.354921,72.028299,73.096417,74.327075,75.093333,76.045351,76.765170,78.158367,79.551565,80.480363,81.502041,82.477279,83.220317,84.659955,85.890612,87.074830,87.864308,88.839546,89.489705,90.534603,92.531519,93.297778,94.621315,95.991293,96.757551,97.454150,99.242086,100.333424,101.285442,102.307120,102.887619,103.700317,105.047075,106.254512,107.206531,107.740590,108.321088,108.831927,110.016145,113.290159,114.335057,115.426395,117.237551,118.561088,119.466667,120.232925,120.999184,121.765442,122.996100,123.762358,124.784036,125.527075,126.432653,127.616871,128.777868,129.776327,130.681905,131.796463,132.980680,134.350658,135.952834,137.044172,137.926531,138.739229,139.993107,140.527166,141.084444,142.291882,144.613878,146.146395,147.655692,149.397188,150.767166,151.672744,152.508662,153.600000,154.296599,154.877098,155.945215,157.872472,158.615510,159.730068,160.287347,161.309025,162.887982,164.141859,165.024218,165.744036,166.997914,168.692971,169.366349,171.340045,171.990204,172.965442,174.033560,174.776599,175.403537,175.867937,176.610975,177.725533,179.141950,180.442268,181.417506,182.230204,183.321542,184.227120,185.039819,185.968617,187.965533,189.080091,189.799909,191.146667,192.168345,193.143583,193.631202,194.745760,195.860317,196.580136,197.230295,198.321633,199.389751,200.063129,201.758186,211.742766,213.995102,214.831020,216.015238,217.408435,218.546213,219.660771,220.844989,221.797007,223.515283,225.140680,226.023039,227.021497,227.857415,229.041633,229.738231,230.249070,231.038549,235.264580,236.216599,236.959637,238.213515,239.072653,239.955011,241.046349,241.975147,242.439546,244.343583,246.038639,247.524717,248.499955,249.219773,250.520091,251.611429,252.586667,253.283265,253.933424,254.676463,255.442721,256.139320,257.114558,257.996916,259.529433,261.154830,262.153288,263.198186,263.941224,265.380862,267.168798,269.026395,270.280272,271.348390,271.836009,273.182766,273.623946,274.204444,274.622404,275.040363,275.574422,280.311293,280.984671,281.588390,282.284989,283.585306,284.978503,286.371701,288.298957,288.925896,289.785034,290.504853,291.619410,292.850068,293.778866,294.336145,295.172063,296.356281,297.215420,298.190658,299.165896,300.187574,301.720091,302.393469,303.879546,305.133424,305.992562,306.573061,307.037460,307.943039,309.057596,310.241814,310.938413,311.635011,312.261950,313.213968,315.094785,315.953923,317.184580,318.392018,319.274376,320.783673,322.292971,323.662948,324.661406,325.543764,326.356463,327.494240,329.398277,331.464853,333.438549,334.947846,335.690884,337.525261,338.523719,339.266757,340.241995,341.426213,342.471111,343.399909,344.444807,345.118186,345.605805,346.302404,347.277642,348.438639,349.228118,350.342676,352.478912,354.081088,356.101224,357.378322,358.353560,359.769977,360.373696,361.766893,363.113651,363.810249,364.878367,365.807166,366.991383,367.827302,368.384580,369.174059,370.288617,371.379955,373.191111,374.282449,374.677188,375.954286,377.161723,377.765442,378.322721,378.949660,379.344399,381.503855,382.386213,383.640091,384.684989,385.311927,387.076644,388.330522,389.746939,390.791837,391.534875,392.208254,393.067392,393.903311,394.832109,396.573605,397.804263,398.593741,399.685079,400.799637,401.798095,402.657234,404.468390,405.234649,406.186667,407.278005,408.694422,409.298141,410.760998,411.782676,412.943673,414.011791,414.476190,415.219229,415.683628,416.124807,417.169705,418.098503,418.725442,419.398821,419.932880,421.418957,422.301315 \ No newline at end of file diff --git a/data/torah/labels/Beshalach-1.txt b/data/torah/labels/Beshalach-1.txt deleted file mode 100644 index bcdf7b8f8..000000000 --- a/data/torah/labels/Beshalach-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.930900,4.118285,5.528573,7.730348,8.248413,10.248719,10.751773,11.713374,13.658692,15.294151,16.085640,17.352020,17.886232,18.608808,19.481842,21.170351,22.249484,23.976367,24.420413,25.355808,27.068300,28.282227,29.439680,30.078474,31.402007,32.421836,33.976031,34.447557,36.118745,36.735648,37.872513,38.072229,38.937424,41.289164,42.066261,42.406049,43.427788,44.017806,45.341750,47.442790,48.968203,49.379097,50.090678,50.954119,52.134155,53.630788,54.436666,56.048423,56.515523,57.218474,58.211431,59.247561,60.109390,60.886487,61.663584,62.858012,64.753650,64.940729,66.710784,67.611610,68.973420,70.642740,71.750823,73.233065,74.341147,75.103854,76.341454,80.011079,81.493321,82.399934,83.882175,84.788789,85.781746,87.263987,88.285726,90.228470,91.120692,91.725101,92.507157,93.572068,94.795277,95.457249,97.172006,97.5,99.201093,100.021362,100.870413,101.992887,102.798765,103.431956,104.266616,105.187620,106.295703,108.224056,108.941980,109.105259,109.611593,110.590160,112.921452,113.166093,113.655377,115.655683,118.001365,119.411653,120.462173,121.325615,122.318573,122.932833,123.839447,124.602153,125.652674,126.972670,127.658358,128.622534,129.530096,130.335974,130.542637,131.688699,132.816366,133.607855,134.514468,135.723286,136.629899,137.133574,138.256048,139.148270,139.752679,141.019060,142.616427,142.904241,143.195241,145.175072,146.083567,148.371687,149.571351,150.442547,150.964008,151.896007,152.860778,153.882517,154.105099,154.709508,155.831982,156.732525,158.033757,159.999212,160.805091,161.870002,162.409011,163.042201,164.207847,167.301845,168.222849,168.884821,170.223155,170.516532,171.581443,173.059850,173.5,174.009635,175.146500,175.594296,176.357003,176.9,177.465085,179.019280,180.587866,180.832507,181.998153,182.534346,183.412178,183.987806,185.326140,187.412790,188.012870,188.530935,189.250470,190.214646,191.509808,192.157389,193.279863,194.575025,194.899320,196.079356,197.489644,199.317261,199.704099,200.207773,201.229512,201.934656,203.071520,205.561110,206.903648,207.578468,208.888021,210.240746,211.478346,213.219620,214.083061 diff --git a/data/torah/labels/Beshalach-2.txt b/data/torah/labels/Beshalach-2.txt deleted file mode 100644 index 7303112cf..000000000 --- a/data/torah/labels/Beshalach-2.txt +++ /dev/null @@ -1 +0,0 @@ -2.041873,3.258137,4.996391,7.011088,8.033131,8.954136,10.076609,10.279702,11.344613,11.946491,12.694807,13.515076,14.436080,15.774415,17.155921,17.680124,18.082423,19.176115,20.413715,20.859826,22.083035,23.435760,24.428718,26.285117,26.685613,27.594669,27.873380,29.563751,30.451096,32.120416,33.212300,35.054309,36.392643,37.299256,38.531033,38.841374,39.719207,39.937794,41.4,44.686106,44.973919,46.729584,48.010355,48.326303,49.189744,50.484906,51.967148,52.916934,54.312830,54.854659,55.452763,56.735488,57.483804,58.865310,60.347551,61.174182,61.879325,63.764506,65.476998,66.133534,66.881849,67.831635,69.141188,70.162927,70.940024,71.990544,72.233758,73.514530,74.063951,74.366155,75.258378,76.294368,76.587877,77.624007,78.890388,80.315066,81.538274,82.331385,82.648773,84.671283,85.177805,87.115892,89.379886,90.502361,90.772738,91.811798,92.988936,93.722862,94.902898,95.763149,96.856841,98.511770,99.547900,100.296216,100.559231,101.404299,102.411648,103.231917,105.117098,106.083999,106.624439,106.858026,107.831000,109.342023,110.392542,111.486235,113.241899 diff --git a/data/torah/labels/Beshalach-3.txt b/data/torah/labels/Beshalach-3.txt deleted file mode 100644 index b4c6768b8..000000000 --- a/data/torah/labels/Beshalach-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.796622,2.612028,3.475470,3.697021,4.756242,5.261157,6.009472,7.103165,7.886978,8.143175,8.532336,9.571710,10.910044,13.111820,14.090387,14.319064,16.018740,17.816002,18.011627,19.787527,20.396242,21.202121,22.727534,24.755431,25.238244,26.936346,27.828569,28.663229,30.231814,32.361636,33.178933,34.229453,34.578291,35.269044,36.362737,37.686680,39.125749,40.628711,41.535325,42.3,43.031957,44.168821,45.938877,48.298950,49.234344,49.466707,50.157460,51.380669,53.136333,54.402713,55.424452,57.180117,59.525799,60.504366,62.317593,63.569583,64.616794,65.630229,66.767093,67.918349,69.745967,71.875789,72.811183,73.760969,74.984178,76.466419,78.092567,80.423859,82.064398,83.417123,84.985708,86.108181,87.327530,88.497036,89.536817,90.429040,91.493951,92.760332,93.013117,94.106809,94.795955,95.704175,96.999337,97.477106,98.182250,98.425279,99.994692,101.444513,102.351127,102.610159,104.797544,105.283821,107.197783,108.651242,109.816888,110.406907,113.227482,114.263612,114.925583,115.875369,116.158616,117.151574,118.228861,118.430331,119.178647,120.617716,122.071176,123.193650,125.199295,125.586018,127.370464,128.089998,128.982221,130.291773,131.730843,132.427741,133.607777,135.388805,137.378138,139.352353,140.330920,141.349440,142.676602,143.587105,144.364202,145.270816,146.335727,147.587717,148.141092,148.623847,149.832665,151.213626,152.264147,153.300276,154.379578,155.257410,155.545224,156.523791,157.502358,158.337018,158.927036,160.164636,162.481537,163.244243,164.035731,165.100643,167.345590,168.093906,169.130036,170.583495,172.123300,173.447243,174.684842,176.123911,177.453770,178.570329,179.842843,180.732444,181.805266,182.668707,183.920697 diff --git a/data/torah/labels/Beshalach-4.txt b/data/torah/labels/Beshalach-4.txt deleted file mode 100644 index 287f2546a..000000000 --- a/data/torah/labels/Beshalach-4.txt +++ /dev/null @@ -1 +0,0 @@ -2.228924,3.207889,3.944931,4.159903,5.452837,6.216807,6.464140,7.290202,7.512717,8.678094,9.685069,10.538484,10.706526,11.862427,12.128257,13.052969,13.410652,14.777767,16.288790,16.921980,17.166622,18.519347,18.970366,20.635825,21.844643,23.355665,24.103482,24.909360,26.679415,27.949350,28.827183,30.122345,31.921181,33.518548,33.911928,34.890495,35.480513,36.588597,37.834526,39.388721,40.546800,40.720286,41.639501,42.139830,44.168917,45.305782,46.126051,47.176571,48.044611,49.296601,50.519810,50.8,51.368861,52.045224,52.6,53.786497,56.090596,57.707824,58.556875,59.607395,60.312539,61.420622,62.541864,63.296024,64.521357,66.133115,68.277327,69.409689,71.064618,72.100748,73.424692,73.890141,75.098946,75.919216,77.142424,77.978477,79.014606,79.196563,80.199768,80.949178,81.251383,81.755057,82.906312,83.594068,85.213162,85.630648,86.421980,88.249598,89.064336,89.755089,90.618530,91.697831,93.007384,93.654965,93.985951,95.151598,96.533104,97.684359,98.950740,100.418590,102.223690,102.842490,104.238387,105.015164,106.698875,107.158143,107.949631,108.813072,109.949937,111.389006,112.640996,113.827344,115.295194,115.681003,116.256630,117.479839,118.155868,119.671706,120.445431,121.798156,123.050146,124.027725,124.935327,125.684470,126.090705,127.529890,128.121222,128.581724,130.078356,130.869844,131.589379,133.834326,135.259004,135.719507,137.374436,138.971802,140.353309,141.706034,143.289010,144.570783,145.351472,146.498134,147.418223,148.671128,149.531802,150,151.460155,153.201429,154.712451,155.458943,156.455479,156.772487,158.038868,159.083301,160.542848,161.449461,162.600716,163.766362,164.989571,165.968138,167.608677,168.472118,169.767281,170.688285,171.897103,173.120311,175.350868,176.574077,177.926802,178.876588,179.855155,180.421233,181.529316,182.435930,182.795697,183.371325,184.666487,185.630663,186.422151,186.825091,188.019518,189.055648,190.552279,191.458893,192.322334,193.214557,194.293859,195.732928,196.841011,197.949095,198.999615,200.323558,201.532376,202.654850,203.878059,205.184615,206.551730,207.976408,209.142055,210.178184,211.574081,212.131539,212.851073,214.131845,215.369444,215.969480,217.106344,217.653190,218.933961,219.775060,221.027050,221.789756,223.113700,224.423253,226.178917,227.229437,228.265567,229.318913,230.554620,231.163149,231.708708,232.888745,234.004424,235.328367,235.722915,236.399278,237.881519,238.917649,239.824262,241.105034,242.097991,243.162903,244.299767,245.537366,246.458370,247.566454,248.631365,249.624322,250.833140,251.854879,253.293949,254.171781,256.575026,257.452858,258.129220,259.366820,260.703175,261.422709,262.343713,263.494969,264.336775,265.566742,266.473355,267.754127,268.326757,269.075073,270.154375,271.564663,272.082727,273.320327,273.708876,274.236817,275.608447,277.680706,279.206119,280.040779,281.695709,283.278685,285.221428,286.487809,287.739799,290.128653,291.409425,292.013834,293.136308,294.661721,296.172743,297.064966,299.233951,300.504341,301.554861,301.889241,303.387765,304.519920,305.800692,306.764868,308.347844,309.945211,311.110856,311.441113,311.931126,313.024089,314.794725,316.607952,317.600910,318.694603,319.313402,320.479048,322.421791,323.112544,324.781865,326.249715,327.803909,328.270303,329.130192,330.354894,331.528831,331.721175,332.530631,333.595543,334.703626,336.185867,337.250778,338.099829,339.351819,340.240868,341.703955,341.839960,342.560306,343.533338,344.367999,345.850240,346.833353,348.604103,350.101290,350.706626,350.951770,351.928907,352.256690,353.090179,354.500274,354.786428,355.382509,356.231560,358.073568,358.612256,360.131437,361.413757,361.741873,362.386790,363.553773,364.929758,365.980279,367.160315,369.002324,369.699621,370.431281,371.606027,372.088026,372.764389,373.541486,374.097125,374.490539,374.907870,375.713748,377.181599,379.095561,380.606583,380.992214,381.743447,382.549326,382.984528,384.463912,385.802246,386.040981,387.652738,388.655776,389.476045,390.339486,391.634649,391.953614,392.917791,394.328079,395.551287,396.716933,397.563053,398.746021,399.265454,400.315975,400.936797,402.102442,403.901279,404.122483,404.844695,406.298154,408.053819,409.322417,410.960739,412.262830,413.068709,414.320699,415.630251,416.968586,418.350092,418.743486,419.674036,420.257611,422.257917,422.975046,423.557019,424.621931,425.014792,425.950187,427.173396,428.713200,429.450707,430.904166 diff --git a/data/torah/labels/Beshalach-5.txt b/data/torah/labels/Beshalach-5.txt deleted file mode 100644 index a9102c3d4..000000000 --- a/data/torah/labels/Beshalach-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.148940,3.555388,4.644548,6.328259,7.321217,8.803458,9.545492,10.351370,11.531407,12.625099,13.586631,14.150159,14.457151,15.517628,16.904688,18.155326,20.197175,20.426978,21.088950,21.470889,22.665317,23.088605,23.713648,24.649043,25.397359,25.813845,26.648505,27.425602,28.677592,30.106571,30.688777,31.408312,32.545176,33.682041,35.034766,35.754300,37.049463,39.467098,39.716114,40.958358,41.693709,43.025658,43.512141,44.174113,44.513746,45.413302,46.776915,47.940544,49.523520,50.553622,52.352735,52.861980,53.537864,54.327223,54.705272,55.770184,56.907048,58.202210,59.500470,59.833554,60.610652,61.920205,63.090293,63.906120,65.316407,65.689010,66.634554,67.598730,67.833611,68.855350,69.776354,71.647144,72.059984,72.347798,73.153677,73.852838,75.571313,77.173316,77.979194,78.238227,79.389482,80.483175,81.282786,82.793809,83.729204,84.014799,85.309961,86.289558,86.985016,88.208225,88.891748,89.582501,90.805710,92.359904,94.125821,95.032435,96.183690,96.443819,97.393605,98.890236,99.724896,100.904933,102.138879,102.756431,103.266573,104.230749,105.497130,106.648385,107.361653,107.894108,108.915847,109.462693,110.743465,111.750813,112.398394,113.492087,113.961071,114.232910,114.896466,116.177237,118.285887,120.890602,122.142592,123.711177,124.426998,125.304830,125.981192,127.190010,129.895460,131.003543,131.291358,132.097236,133.147756,134.362262,134.633557,136.194264,136.529050,137.524987,138.977841,139.745320,140.179826,140.971314,142.237695,143.489685,144.971926,145.993665,147.587878,148.226094,149.909805,151.133014,152.759162,153.881635,154.845812,155.939504,156.918071,157.867857,158.184452,160.155976,160.749591,161.339609,162.375739,163.411868,165.068537,165.778900,166.277885,167.112544,168.580395,169.199195,169.477090,170.801034,171.921192,172.655117,172.842196,173.979060,175.802525,176.268934,176.542357,177.391408,178.369975,179.478058,180.787611,181.636662,182.874261,183.967954,184.960911,185.637273,187.407329,190.040825,191.033782,192.199429,192.462160,193,193.543000,193.994234,195.246224,196.570168,196.901154,198.081191,199.419525,200.247604,201.414885,203.060370 diff --git a/data/torah/labels/Beshalach-6.txt b/data/torah/labels/Beshalach-6.txt deleted file mode 100644 index 402aaf252..000000000 --- a/data/torah/labels/Beshalach-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.011053,2.810974,3.859322,4.127236,4.680398,5.730919,7.831960,8.335634,10.508628,11.069865,13.012608,13.933612,15.502198,17.027611,17.876662,19.013526,20.265516,21.143349,22.611199,23.328084,24.292260,26.738677,28.192137,28.836502,29.599209,31.196575,33.139319,34.002760,35.222286,36.272807,37.496016,37.735218,39.054299,40.997042,42.263423,43.313943,44.306901,45.189340,46.661496,47.942268,48.943531,49.985746,52.069755,53.283793,53.758685,54.967504,55.658256,56.939028,57.701735,58.781750,59.053056,60.018636,61.443314,61.831480,63.558363,65.731358,66.450892,66.680134,67.534407,68.556146,69.304462,70.700359,71.977376,72.787009,73.184686,73.903647,74.851852,75.500958,76.549954,77.447235,78.540928,79.502716,80.821939,82.512758,83.505716,85.016738,85.865790,86.959482,87.645275,88.651529,89.774003,91.083555,92.018951,92.839220,93.659489,94.796354,95.653026,97.408690,98.636543,100.574641,102.040192,102.997781,104.044462,105.339624,107.259684,107.849702,108.657894,109.965134,111.821533,113.053045,114.598936,116.632324,117.639672,118.459942,119.265820,120.474638,121.784191,122.374210,123.583028,124.278314,124.711130,125.416273,126.524356,127.761956,128.611006,129.747871,131.719396,132.188075,132.743049,133.468792,133.675662,135.032190,136.426310,137.304374,137.456984,139.339167,140.672709,141.458849,142.221556,142.466198,143.387202,145.081713,146.017108,147.297879,148.391571,149.197450,150.449440,151.639772,152.546385,153.553733,154.589863,155.525258,156.201621,157.367266,158.158755,158.979024,160.533218,163.123543,164.102110,165.900946,166.866512,167.656330,168.634897,169.469557,170.289827,171.513035,172.994627,173.307184,174.418981,175.523351,176.774245,177.939891,179.248239,180.931950,181.809782,182.421689,183.400256,184.565902,186.494255,187.078061,188.301270,189.596432,190.805250,191.674017,192.369238,193.975415,195.805544,196.683376,197.183190,198.208789,199.115403,200.148317,200.577525,202.045375,203.740334,205.110592,206.376973,206.755218,208.031903,209.649235,210.350017,210.546713,211.476852,212.786405,213.577893,214.671585,215.937966,216.815798,218.039007,218.319619,219.028405,220.010532,221.058263,221.992419,223.242183,224.235141,224.651213,225.256880,226.105930,227.415483,229.717994,230.277701,231.285049,232.551430,233.380472,234.335875,235.645428,237.429874,239.171147,240.250449,240.955593,241.390769,243.099806,244.654001,245.704521,246.884558,247.885147,248.098800,248.885067,249.878024,250.698131,251.950121,253.094215,253.907255,254.074306,255.223963,255.712314,256.468578,257.599432,258.476527,259.541438,260.937335,262.813738,263.091557,265.350896,266.156774,266.825670,269.049373,269.657529,272.057027,272.6,273.485523,274.938983,275.773642,276.939289,277.866444,278.945746,280.902880,281.809493,283.579548,284.117383,284.978240,286.161003,287.502548,287.923538,289.477733,291.175835,292.068057,292.759291,294.255924,296.155495,296.449227,298.147328,298.556887,299.377157,300.111476,302.010654,302.874095,303.492895,304.385117,305.734284,306.812724,308.030927,309.458259,310.983673,311.674426,312.739336,313.444480,314.394266,315.372833,316.236274,317.027763,317.919985,319.215147,320.927640,322.942336,323.949685,324.166109,325.964381,326.842213,327.722240,328.456165,329.693765,330.663340,331.636508,332.560649,333.884592,335.611475,336.992981,337.216662,338.900373,339.821377,340.987023,341.908028,342.699515,343.174408,343.535140,344.398581,345.132507,346.111074,347.003258,347.871436,348.802133,350.111685,351.996866,354.118247,354.816859,355.752836,356.083822,356.976045,358.861225,360.415420,361.106173,361.955224,363.408683,364.761408,366.589026,367.541092,367.768311,368.631549,369.941102,371.034794,371.384660,372.248102,372.655203,373.163900,374.277189,374.849387,375.644304,376.752388,377.240267,379.054898,379.616135,380.335669,380.839344,382.019380,384.796783,385.717788,387.387108 diff --git a/data/torah/labels/Beshalach-7.txt b/data/torah/labels/Beshalach-7.txt deleted file mode 100644 index 34124d851..000000000 --- a/data/torah/labels/Beshalach-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.018839,5.527263,5.820076,6.478954,6.938623,8.536822,9.242157,10.479756,12.192249,12.538756,12.998127,14.222467,15.618364,16.899135,17.604279,18.309423,18.957004,20.352901,21.360250,22.166128,22.369277,23.446899,25.426460,26.063030,26.540459,27.206454,28.602351,29.580918,30.372405,31.379754,31.808083,32.818823,33.976971,34.324811,35.366916,35.647112,36.999837,38.498683,38.987967,39.721892,40.642896,41.578291,42.355388,42.634144,43.655883,45.598627,46.447677,47.037695,48.635062,49.843880,50.937573,52.534939,53.086000,53.676019,54.021395,54.870446,56.841970,58.439337,59.173263,59.461076,60.468424,61.403819,61.909351,62.959871,63.722578,64.758708,65.337716,66.057251,67.654617,68.863435,70.374458,70.570702,72.174676,73.253977,74.131809,75.239892,76.376757,77.268980,78.319500,79.513928,81.715703,82.711019,83.557712,83.989432,84.282592,85.289940,85.923131,87.031213,88.412720,89.607147,91.146951,92.758708,93.650931,94.310856,96.411897,98.584892,99.908835,101.606936,103.709907,105.019459,105.998026,107.019765,108.099067,108.861773,109.381065,110.420040,111.538442,112.186023,113.596311,114.934645,115.697352,116.762262,117.913518,119.280633,119.704738,121.201370,122.381406,124.252196,125.089570,126.053746,126.248599,127.241556,128.157633,129.601629,131.357293,132.638065,132.918857,133.818102,135.344063,136.444576,137.780304,138.053727,139.017903,140.456972,141.550664,142.183855,142.413678,143.565361,144.270077,144.917658,146.011351,147.317166,148.266952,149.533332,151.533638,152.440252,153.274912,153.584699,154.282260,155.585006,156.274140,157.353442,158.907637,160.476698,162.304316,163.398008,163.869259,164.362184,165.427096,166.707867,167.988639,169.299858,170.264034,171.314555,172.523373,172.929027,174.350990,176.567157,177.646459,178.610635,180.208001,181.272912,182.251479,183.604204,185.000101,186.467952,187.604816,188.338589,189.374871,190.261633,191.081903,192.204376,193.360678,194.887128,196.009601,196.988168,198.240158,199.434585,200.441934,202.039301,203.118603,204.917439,205.924787,206.788228,208.155344,209.273463,210.520811,211.978912,213.259684,213.561888,213.853714,215.088171,217.692886,219.448550,219.835790,220.584106,221.042418,221.783699,222.167784,223.359081,224.432158,226.039487,226.240195,227.779999,228.643441,229.204678,230.154463,231.233765,232.284285,233.392368,234.558015,235.127882,235.761073,236.768420,237.167206,238.001866,238.951652,240.045344,241.527585,242.474157,243.395162,244.618370,245.481812,246.258909,247.544228,248.921187,250.921492,251.352893,252.058037,252.415328,253.163644,253.911960,254.976871,255.955438,257.106693,259.017585 diff --git a/data/torah/labels/Beshalach-H.txt b/data/torah/labels/Beshalach-H.txt deleted file mode 100644 index 09be8806c..000000000 --- a/data/torah/labels/Beshalach-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.970373,4.538958,5.908473,7.244409,8.438836,10.568658,12.540182,13.849735,14,14.986600,15.533446,16.958124,20.109686,21.571543,22.271477,24.113485,26.718200,28.301176,30.085622,31.176041,31.541505,32.409985,33.295745,35.497521,36.920930,38.859209,39.872291,41.023546,43.225321,46.567846,48.084853,49.620401,51.063726,52.885979,55.709142,57.509288,59.263643,60.012450,61.912021,62.012264,63.438830,64.129927,66.882317,67.900289,69.555218,71.210147,72.361403,74.117067,76.505921,77.919261,78.984173,80.121037,81.200339,82.437938,83.551981,85.302987,87.011855,89.150653,89.666455,90.461977,92.976510,93.702194,95.167733,95.764919,97.074471,98.254508,98.870937,100.097577,100.584488,102.542934,104.183472,106.202687,107.875244,108.968937,110.249707,110.826568,111.862698,112.913218,115.561105,116.207870,116.970576,118.970883,120.159229,120.613367,121.949755,124.813503,126.799418,127.763594,130.008542,131.649081,133.822075,134.368921,136.383618,139.880556,140.353655,141.461738,142.280887,143.604680,144.755935,146.482818,146.936851,148.246404,149.439279,150.748832,151.335551,153.468672,155.526541,157.440661,158.606149,158.972418,159.936594,162.296667,164.182499,166.055769,166.696643,167.703238,167.984147,169.196742,170.573201,172.146296,173.513540,174.580849,175.793444,177.710707,178.804399,179.639059,181.437896,182.600828,183.776690,185.173495,186.484408,187.620324,188.627672,189.649411,191.688265,193.290256,194.700544,195.288594,196.007212,197.590188,198.833667,199.200265,201.187703,203.525032,205.827543,206.748547,208.648118,209.713029,209.931025,210.970337,211.550939,213.042596,214.409412,216.510453,216.953774,217.274479,219.788319,220.751807,221.860579,223.155052,224.608512,225.228912,225.486413,226.319605,227.154266,228.837976,230.238473,231.235703,231.750705,232.426571,234.283576,236.758169,237.794299,238.103952,239.903974,242.465517,243.268013,243.736196,244.940716,247.224161,248.160528,249.070355,249.391850,250.618490,252.322651,253.324589,254.459684,255.524595,257.927840,260.028881,261.093792,262.719940,263.971930,266.116143,268.102058,268.965500,270.821899,272.056600,275.484483,276.111067,277.527961,278.054028,278.5,280.247801,280.961446,281.275129,283.327409,284.031950,284.758412,285.694346,287.647102,289.896428,291.781608,292.731394,294.055337,295.192202,297.163726,301.380199,303.754662,304.949090,306.114736,307.985526,309.438985,310.359989,311.482463,313.655458,316.389689,316.749373,317.952604,319.065455,319.489927,320.425322,321.403889,322.382456,322.999619,324.605487,326.589526,328.051316,329.455866,330.027049,331.126955,332.191866,333.299950,334.278516,336.465902,337.530812,339.919667,341.085313,342.538773,343.065953,344.447093,347.775658,349.070821,349.723518,351.652433,353.172167,355.604195,356.597152,358.899662,360.140595,362.280193,364.278277,366.235411,367.228369,368.264498,368.745804,370.610181,371.991687,373.070989,374.754700,376.779828,379.214381,381.482264,383.207984,384.261503,384.720170,385.196898,386.045949,386.765484,389.082385,391.701491,392.349072,393.773750,395.860400,397.659236,399.501244,401.415206,402.508899,403.686319,404.468292,406.345600,408.789516,409.292500,409.767393,411.767699,414.775353,417.106645,418.040817,418.876017,419.480426,420.559728,422.661786,424.342929,425.566138,426.369797,429.235764,429.661125,430.508537,432.401716,434.704226,435.171642,436.359156,438.863136,440.134384,441.117137,442.167657,443.614085,443.844336,444.981201,446.420270,447.830558,450.003552,450.858499,451.664377,452.858805,454.657641,456.485258,458.845332,459.780727,460.151591,462.447998,463.806826,464.779550,466.195681,468.080242,469.086836,470.541669,472.023910,472.570757,473.376635,474.060970,474.823677,477.383043,479.762018,481.042789,482.208435,483.575550,485.230480,486.180265,487.748850,490.209659,491.763853,492.828764,494.454912,495.606168,496.368874,497.520130,497.955014,499.649952,500.979479,501.878390,503.404667,506.140153,507.348971,507.799980,509.210267,510.937151,512.534517,513.455521,514.275790,514.720656,516.376832,517.571259,519.355704,520.535741,521.413573,522.190671,522.675090,524.709042,526.810082,528.119635,529.371625,529.763686,531.634476,532.728168,533.490875,534.944334,536.383404,537.390752,539.016900,540.556704,542.384321,543.733972,545.391976,547.142346,548.509441,550.028058,551.855676,554.970370,556.590213,558.397471,559.741774,562.660742,564.128592,565.020814,566.718916,569.884868,571.511016,572.662271,574.576233,576.144818,577.425590,579.066129,580.332509,580.951309,581.929876,584.246777,585.795554,586.650366,587.456245,588.621891,589.934294,591.025136,592.147610,594.277432,595.759673,596.997272,600.105661,601.442239,602.149140,603.962367,606.895579,608.233913,608.455624,609.597991,611.371083,612.795762,614.134096,616.163183,618.249833,619.631340,622.682166,623.991719,626.351792,628.755037,630.697781,632.338319,634.410579,635.187676,636.367713,637.461405,638.999898,639.687739,641.921362,643.821472,645.260541,646.555704,647.462317,649.045293,651.175115,652.657356,653.414526,654.522610,655.760209,657.474409,658.249799,660.480356,662.092113,663.977293,665.200502,667.100073,669.273067,670.625792,672.611708,675.230813,676.525975,678.627016,680.832071,684.081088,684.089,685.376250,685.746376,686.455552,688.908232,690.767825,696.620693,697.628041,699.182236,700.088850,701.283277,702.808690,704.262150,705.312670,706.636614,709.058838,710.842745,712.037172,713.375506,713.918192,715.678017,716.658941,717.695070,718.961451,720.026363,720.875413,721.690919,723.307440,724.476113,726.396674,728.123557,729.361157,731.662725,733.054330,733.5,734.635689,735.721874,737.285192,738.968903,741.976557,742.15,743.271719,744.912258,747.051909,749.718749,751.100255,752.568106,754.009112,755.277888,758.099392,759.241544,761.831868,763.429235,766.235420,768.630475,770.020171,771.142645,773.157342,775.056580,776.567602,777.047675,778.314056,780.112892,781.408054,782.516138,784.033703,784.991336,787.312042,789.369911,790.621901,791.917063,792.751275,793.917369,795.780421,798.364092,799.249659,800.680993,802.091281,802.969113,805.012591,806.912162,808.264887,809.459314,810.8,811.646699,814.755089,815.978297,817.115162,818.352761,821.360416,822.260865,823.428776,825.429082,828.364783,829.803852,831.395120,832.579624,833.633035,834.810915,836.465843,839.473498,840.524019,841.348695,842.935837,844.164863,846.539327,848.291853,849.246947,850.914097,852.545136,853.474641,855.014965,855.968051,857.234432,858.821294,860.085389,861.447802,862.182850,862.705101,864.647844,866.026634,867.157198,867.618458,869.331251,870.017778,871.864013,874.018389,875.702100,877.846313,879.270992,879.640669,881.400814,882.518807,883.454202,884.821318,885.771103,886.749670,887.728237,889.858059,891.416212,892.563260,894.002578,894.894801,895.988494,896.981451,898.679552,901.010844,902.032584,903.975327,906.047586,908.537175,909.861119,911.185063,912.509006,913.608097,914.728305,916.915690,917.742953,918.016376,918.894208,920.577919,922.103332,923.168243,924.189982,926.003209,927.658139,929.010864,932.110699,933.015586,933.693159,935.721036,936.998532,938.000444,939.289928,940.613871,941.534875,942.499051,944.499357,945.852082,946.830649,947.938732,949.478536,951.464451,953.335241,954.745529,956.184598,957.247457,959.221034,960.554664,961.806654,963.547928,964.742355,966.382894,967.721228,969.721534,971.290119,972.527719,973.446598,974.470462,976.571503,977.622023,978.586199,980.025269,981.291649,983.061704,984.112225,984.946884,985.666419,987.449958,990.420094,991.715256,993.744343,995.830993,996.622482,997.860081,998.723522,1000.853344,1003.803599,1004.882738,1005.817196,1006.925279,1008.796069,1011.084189,1012.134709,1013.962327,1015.689209,1017.459265,1019.718603,1020.307058,1022.424053,1023.517745,1024.697782,1026.151241,1028.165938,1030.468449,1031.979471,1034.253200,1035.411987,1037.124479,1038.720705,1039.772366,1040.826257,1041.806033,1044.236850,1045.330542,1046.309109,1048.410150,1049.746420,1051.158772,1052.453934,1054.180817,1056.923670,1058.128000,1058.375037,1059.461223,1060.978459,1063.266578,1064.245145,1065.425182,1068.003926,1069.118570,1070.255434,1071.305955 diff --git a/data/torah/labels/Bo-1.txt b/data/torah/labels/Bo-1.txt deleted file mode 100644 index 6e3e1d40e..000000000 --- a/data/torah/labels/Bo-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.632947,2.697051,3.877087,4.147841,5.546407,6.661534,6.980889,8.304832,8.738580,10.564171,11.793556,12.054542,13.085824,13.517545,14.265860,15.474679,17.287905,18.842100,19.934283,20.635218,22.000493,25.727681,27.483346,28.346787,29.915372,30.651168,32.320488,33.284664,34.133715,35.299361,36.565742,37.149554,38.137252,38.640926,39.598976,40.393093,41.850050,42.206321,42.587540,44.170516,45.614693,46.423463,48.617240,49.077741,50.934140,52.214912,53.682763,54.098655,54.674283,55.969445,56.968298,58.162199,58.624354,59.627832,60.692743,61.843998,63.326240,64.110171,64.858487,66.542198,68.269080,68.901553,69.636196,70.324576,71.341317,71.549287,72.621900,73.701202,74.638022,76.205182,77.399610,78.925023,80.320920,80.579952,81.357050,82.335617,83.157078,84.062499,84.868378,85.098629,86.595261,89.041678,89.504006,90.088764,91.973944,93.082028,93.988641,94.295388,95.360300,96.468383,96.684243,97,98.036968,99.159442,100.138008,100.532864,102.151646,103.168951,105.039741,106.262950,107,108.637260,109.817297,110.140013,111.924459,112.989370,113.807006,114.987043,116.195861,117.548586,119.462548,120.714538,121.032442,122.815579,123.546940,124.781833,125.559794,126.671222,127.818192,128.983838,129.803916,131.344433,133.359429,134.093354,135.647549,137.388822,137.976356,139.116339,140.163890,140.3,141.017825,142.298596,143.421070,143.752056,145.349422,146.673366,146.980675,147.935795,149.378816,150.544462,151.724498,152.210729,153.023107,154.231925,156.678343,157.071058,157.804795,158.078218,159.099957,159.443453,160.366338,161.618328,162.812755,163.733759,164.467685,164.773640,165.647721,166.971665,167.654970,168.345723,169.957480,171.637769,172.918541,174.199312,175.465693,176.631339,177.955282,179.984370,181.308313,182.646647,183.668386,184.519568,184.879334,185.616828,186.649390,187.973333,189.437309,190.223536,190.712820,191.475526,192.641172,194.727822,195.604372,196.582939,197.036075,198.345628,200.604967,201.205013,202.026522,202.531699,204.015560,204.953090,206.246637,206.951892,207.441175,208.635602,209.657342,209.930765,211.038848,211.520612,212.250892,213.027990,214.395105,215.675877,216.755179,218.237263,219.126668 diff --git a/data/torah/labels/Bo-2.txt b/data/torah/labels/Bo-2.txt deleted file mode 100644 index e37f0c854..000000000 --- a/data/torah/labels/Bo-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.714772,2.844606,4.489318,4.735862,6.440965,7.491485,9.218368,9.5,10.104645,11.069739,12.321729,13.516156,13.791773,14.273823,15.591180,16.768523,17.048369,17.324351,18.132462,19.139809,20.679613,21.212069,21.874041,22.665529,24.047035,25.143860,26.049093,26.279344,28.409166,28.860427,29.358951,31.229741,33.326506,34.261901,34.8,35.585844,36.607583,37.186565,37.747802,38.539290,39.036899,40.136657,41.425754,42.404321,43.440451,44.692441,45.685399,46.001994,47.325937,49.254289,50.981172,51.873395,52.090807,52.867904,54.019159,56.249716,57.516097,58.206850,59.430059,60.624487,61.646225,64.898521,65.1,66.048904,66.538187,67.430410,68.380195,69.646576,70,70.653924,71.661273,73.949393,74.510629,75.143820,75.380064,77.446330,78.692027,80.562817,83.081188,83.394600,83.762577,84.501495,86.084471,87.178164,87.497542,88.256830,89.134662,90.084447,90.947889,92.286223,92.953857,93.940817,94.1,95.544181,97.012031,98.176231,99.357714,99.842384,100.336281,101.861694,103.756884,104.821796,105.944270,106.865274,108.318733,110.333430,112.017141,112.938145,113.974275,115.470907,117.557557,118.613667,119.187981,120.224111,120.900473,121.936603,123.289328,124.181551,125.577448,126.843828,128.023865,128.829743,129.042132,129.808310,130.988347,132.427416,133.233295,134.283815,135.550196,135.759158,137.284571,138.918631,139.731145,140.939963,142.004874,142.954659,144.321775,144.508854,145.271561,146.192565,147.804322,148.670018,149.574377,150.337084,151.258088,152.222264,153.186440,154.352086,154.848350,156.266048,157.578159,158.556726,158.844539,159.391385,160.528250,161.305347,162.096836,162.427821,163.075403,164.600816,165.665726,167.257930,167.473637,168.984813,170.060514,170.826821,171.045136,172.239564,173.091272,173.937665,174.271308,174.760592,175.825503,176.890414,178.056060,179.380004,180.948589,181.337138,182.272532,182.498133,183.812336,185.438484,185.949756,187.798558,188.328074,188.759795,189.709580,190.544241,191.781840,193,194.631197,195.395722,195.719542,197.149567,197.865446,199.174998,199.793798,201.045788,201.842677,202.903908,203.696237,205.005790,206.600618,207.579639,208.529425 diff --git a/data/torah/labels/Bo-3.txt b/data/torah/labels/Bo-3.txt deleted file mode 100644 index 42b3b4478..000000000 --- a/data/torah/labels/Bo-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.071814,2.146150,3.801058,4.103262,6.060396,7.600602,8.371853,9.235295,9.436765,10.717536,12.170995,13.005656,14.315209,15.336947,15.783428,16.848338,17.452747,18.733519,19.956727,21.122374,21.4,23.367322,24.058075,25.110326,26.045909,27.168383,28.535498,29.226252,30.535805,31.549131,33.391139,34.340925,36.010245,36.715389,37.693956,38.802039,39.780606,40.687695,41.728591,42.805557,43.135346,43.878542,45.101751,46.405779,46.608434,48.233397,49.076698,50.003451,50.299144,51.335273,51.869854,52.704514,53.898942,54.949462,55.942420,56.259015,56.834642,58.101023,58.806167,59.554483,61.094287,61.969508,62.358057,63.351015,64.142502,65.495227,66.632092,68.085552,68.651087,69.572091,70.493095,71.917773,73.457578,74.911037,76.019121,76.824999,77.789175,78.818024,79.926107,80.588078,81.667380,82,82.602775,83.178403,83.667686,85.178708,86.704122,88.243926,88.496767,89.970808,90.846851,91.438479,92.330701,93.179753,93.469364,94.230273,94.525719,95.671128,96.505789,98.304625,99.240019,100.132128,101.283498,103.056444,105.229438,107.028274,107.891716,108.740767,109.877631,110.733637,111.352436,112.158315,113.323960,115.755987,117.281401,118.389483,119.886116,121.195669,122.087891,123.354272,123.945801,124.678216,125.226572,126.305874,128.092036,129.599854,129.988403,130.477686,131.341128,132.175787,133.240699,135.859805,136.795199,138.320612,139.227226,139.989933,140.910937,142.004629,142.915947,143.434012,144.514489,145.760445 diff --git a/data/torah/labels/Bo-4.txt b/data/torah/labels/Bo-4.txt deleted file mode 100644 index a510b7d0e..000000000 --- a/data/torah/labels/Bo-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.593212,2.676310,3.951505,4.498351,5.239309,6.577643,8.045493,9.225530,9.990519,10.737213,11.276269,12.564170,13.584231,13.859749,15.730538,16.536417,18.479161,19.457727,20.306778,21.414861,21.710013,22.718112,23.610335,24.473776,25.711376,26.833850,27.531826,28.805374,29.855894,30.388350,31.852266,34.748730,35.425092,36.412287,36.999260,37.526133,38.771844,39.736020,40.628909,41.311715,42.457709,43.765522,44.067727,45.334108,47.118553,48.154683,49.752050,50.347469,51.067004,51.757757,52.851449,53.887579,54.374838,55.600071,56.749302,57.842994,58.940868,59.874444,60.953745,61.543763,62.507940,63.069177,64.465074,65.817799,65.968571,67.849280,68.642748,70.110599,71.379104,72.033958,73.600648,74.291401,75.220383,75.605689,76.483521,76.941412,78.179011,79.073641,79.648634,80.974314,82.039739,82.471460,83.298289,83.960261,85.068344,86.043980,86.821077,87.091611,88.159412,88.461214,89.151533,90.072537,91.295746,93.224099,93.855775,94.879028,95.416333,96.769058,98.423988,100.122089,101.964098,102.327013,102.629217,103.463878,104.586351,105.248323,106.313234,107.502592,108.460442,108.705084,109.381446,110.388795,110.834067,111.525659,111.784404,112.260444,113.382918,115.152973,116.163713,117.171061,117.458875,118.307926,118.544576,119.678591,120.565040,121.507391,122.658060,124.543240,126.011091,127.119174,127.736492,129.030229,129.795842,130.280041,131.332143,132.625642,134.021539,135.993064,136.396982,136.670406,137.359654,138.424327,139.374113,140.813182,141.518326,142.683972,143.907180,145.461375,146.972397,147.585051,147.987990,148.908994,149.513403,150.592705,151.287759,152.208763,154.324195,155.086901,157.461365,159.044341,160.296331,162.454935,163.375939,163.729091,164.580025,165.639203,166.991928,167.898542,168.862718,170.028364,171.168497,171.444014,172.629939,173.546361,175.086165,176.007169,176.291532,177.291449,178.319983,179.341050,179.837328,180.815302,181.171708,182.063930,183.373483,184.269573,185.186710,186.467481,187.546783,188.406335,189.820513,190.735649,191.656653,192.692783,194.146242,195.686046,197.225850,198.002948,198.497233,199.605316,200.154255,201.535761,203.737537,203.982645,204.975602,207.047862,207.493973,207.944148,209.120121,209.540248,210.722581,211.649664,213.330529,213.955848,214.664389,215.470978,216.720635,217.742375,217.991716,219.027846,219.891287,220.956199,221.452236,222.136235,223.466932,223.888249,224.782726,226.383883,226.835490,227.583805,228.418466,229.238735,230.274865,231.397338,232.634938,233.627895,234.055846,234.417825,235.149538,236.056152,236.325024,237.188976,237.616229,238.850070,239.561461,240.266604,241.130046,241.474589,242.525109,243.921006,245.316903,245.843893,246.669628,247.225399,248.765203,251.959937,252.598014,254.384596,255.895618,257.147608,258.457161,259.996965,261.470490,262.931777,264.111814,264.874521,266.126511,266.996820,267.539870,269.011282,270.565477,271.086972,273.349704,274.294983,275.949913,277.245075,277.542171,278.332985,279.151552,280.353450,281.945722,282.343354,283.552173,284.286567,285.299411,286.925996,287.928195,289.084162,289.723432,291.162501,293.151057,293.810388,295.335801,297.186103,297.934419,299.200800,299.888813,300.852989,301.860338,303.093146,303.352178,304.489043,306.158363,308.259404,311.9,312.397380,312.847405,313.595721,314.790148,316.200436,316.891190,318.387821,320.344955,321.021318,321.683290,322.647466,324.216051,325.410610,326.487421,327.019877,328.415773,330.790238,331.597093,332.489316,334.129855,335.180375,336.259677,337.511667,338.677313,339.583927,340.562493,341.656186,342.637695,343.501137,345.098503,346.796605,347.3,348.192502,349.732306,352.250677,353.301890,354.056487,355.431712,356.323934,357.532752,357.919194,358.313039,360.185568,361.567075,362.531251,362.992851,364.085446,365.135966,366.410870,367.093478,367.827404,368.647673,369.899663,370.313191,371.378102,371.659825,372.710345,373.732084,374.581135,375.163516,376.242818,376.664927,377.491481,378.070468,379.219628,380.106905,381.177032,383.997338,384.463837,386.708784,388.306151,389.443015,390.522317,391.486494,392.537014,392.820659,394.148772,395.156119,396.408110,398.696229,399.185522,400.046552,401.643918,403.370801,404.045574,405.350734,409.735063,411.688597,412.336178,412.883024,413.717684,415.012846,416.250446,417.229013,420.164714,420.898638,422.452834,424.064590,425.129502,426.611743,427.705435,428.698393,430.842606,431.284090,432.377783,433.831242,435.466040,435.869334,436.647972,438.446729,440.763630,441.713415,442.548076,443.627377,444.735461,445.843543,446.606250,447.872631,448.438233,449.469998,450.208289,451.431497,452.600059,454.720748,456.390068 diff --git a/data/torah/labels/Bo-5.txt b/data/torah/labels/Bo-5.txt deleted file mode 100644 index 5269e0683..000000000 --- a/data/torah/labels/Bo-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.637739,2.923274,4.664548,5.199249,5.933175,7.170774,8.034215,9.257425,11.099433,11.968368,12.946935,14.328442,16.186489,17.102210,18.325419,20.843789,21.851138,23.563630,26.168345,26.962411,27.416468,29.100178,30.452903,30.912470,31.934209,32.550790,33.385451,34.493533,34.955380,35.761259,36.624700,37.775955,39.805043,40.553358,42.294632,42.856942,43.533305,44.324793,44.605785,45.591174,46.802116,49.119018,49.896115,50.131899,52.155453,53.119630,53.357140,54.045851,54.319274,55.427357,56.492269,57.139850,58.449403,59.672611,60.507271,60.731989,61.912569,62.805350,63.596838,65.107860,66.258043,66.502684,67.452470,68.690069,70.273045,70.589640,71.424300,72.417258,73.031145,73.606772,74.844371,75.395545,76.815896,79.212983,79.601156,80.445144,80.666189,82.273786,83.017299,84.575256,86.086278,87.309487,88.431961,89.324183,90.849597,91.123020,91.957680,93.224061,95.756822,96.239782,96.941423,97.862428,99.071246,100.697394,101.661570,102.525011,103.805783,107.964693,108.692891,109.527551,110.822713,112.794238,113.959884,116.585928,117.270877,118.007646,118.482539,119.547450,120.813830,121.868739,122.117065,123.152254,123.699101,124.729410,125.668849,126.650559,127.502514,129.584893,131.007143,132.316696,133.309653,134.619206,135.655335,136.866765,138.453824,138.841095,139.629340,141.255489,142.036293 diff --git a/data/torah/labels/Bo-6.txt b/data/torah/labels/Bo-6.txt deleted file mode 100644 index c5b97c291..000000000 --- a/data/torah/labels/Bo-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.289387,4.501169,5.810831,7.480151,10.214383,11.451982,11.663127,13.538632,14.135444,16.045242,16.980636,17.844078,18.966551,19.323984,20.366126,21.230851,22.137465,23.216767,24.353631,25.044384,26.109296,27.174207,27.650037,28.957570,30.151997,31.619848,33.202824,33.995188,34.296468,35.317988,35.682295,36.670712,38.552056,39.401107,40.422845,41.646055,42.041210,42.803916,43.638577,44.512869,44.786292,45.448264,46.772208,49.056803,49.805119,51.431267,53.043024,54.467703,55.259190,56.065069,56.942901,57.993422,58.365526,59.144677,59.573530,60.377748,61.577640,63.505993,64.252523,64.468712,65.505171,67.332788,67.971318,68.877931,69.147267,70.345217,71.798677,72.762853,73.870937,75.194880,76.580847,76.853205,78.133977,79.413480,80.220627,80.438444,81.460183,82.611438,83.719522,84.042332,84.934556,85.451727,86.372731,87.034703,88.099615,89.437949,90.833845,91.368461,92.692404,93.296813,94.289771,96.736188,97.628411,98.822839,99.136582,100.592893,101.863891,102.495828,103.299608,104.053499,105.173248,106.576849,107.728104,108.327392,109.843535,110.688812,111.451518,112.890587,115.207489,116.099711,116.445088,117.019304,118.549258,119.391842,120.390562,121.844021,123.239918,123.513341,125.024364,127.528344,127.929904,129.556052,130.894386,132.247111,132.937864,133.513491,134.621575,136.132597,137.327024,137.931433,139.154642,139.838111,140.334679,140.960585,141.924761,142.960891,144.256053,145.493652,146.616126,147.263707,148.400572,149.421760,149.695183,151.364504,152.328680,153.868484,155.595367,156.458808,157.566891,158,158.703756,159.653541,160.209780,161.265299,163.107307,163.825085,164.803651,166.415408,167.136680,167.985731,168.219975,168.671880,169.990030,171.716913,172.767433,173.961860,174.681395,175.631181,176.969515,178.293458,179.387151,180.250592,180.955736,182.106991,184.164860,185.258553,186.438589,187.489110,188.352551,189.129648,190.295294,192.209256,193.461246,194.367859,195.418380,197.375514,197.807234,198.411643,199.462164,200.196089,201.505642,202.292064,203.228884,203.835642,204.958115,206.454747,207.275016,208.584569,209,209.768457,210.468448,211.660965,213.589318,214.114006,214.660852,215.653810,217.323129,218.719026,219.553935,219.764582,220.727364,221.878620,222.785233,223.605502,224.727976,225.291999,225.637376,226.543989,226.826760,227.430981,228.345628,229.000255,229.547101,230.324199,231.014607,231.864003,233.257001,234.188278,235.082959,235.701759,236.651544,237.586939,238.723804,239.043013,239.572822,240.465077,241.460649,242.237746,243.460955,245.421454,245.622924,246.900330,247.337012,248.325008,249.249378,250.515759,250.947479,251.644166,252.647505,252.990752,253.1,253.551989,254.674462,255.365216,256.502081,256.925548,257.688254,259.300012,260.767862,261.861555,264.020158,266.452185,268.322974,269.042509,269.432652,271.100378,272.223882,273.231230,274.598346,275.835945,276.785731,277.879423,278.606801,279.441461,279.848534,280.374601,281.644567,283.008097,283.742023,284.677417,285.684765,286.979927,287.498601,288.865717,290.506256,290.929614,291.674297,292.983850,294.091933,295.459048,297.444963,297.803320,298.402405,298.704609,299.711958,300.281180,301.726654,303.856476,304.921388,305.899954,307.022428,308.000995,309.655925,310.130817,311.545815,313.042447,313.920279,315.244223,315.797206 diff --git a/data/torah/labels/Bo-7.txt b/data/torah/labels/Bo-7.txt deleted file mode 100644 index cde57098f..000000000 --- a/data/torah/labels/Bo-7.txt +++ /dev/null @@ -1 +0,0 @@ -1.858119,2.871237,4.074591,4.270865,4.848807,6,6.673197,7.234434,7.522248,9.003490,9.794979,10.055009,10.860888,11.834451,13.134617,14.286687,15.668194,16.316058,17.338024,18.265441,19.762073,20.213685,21.714840,23.715146,24.124584,24.744353,25.823655,26.665826,27.658784,28.853211,29.977660,31.198894,32.104156,33.302887,34.061289,35.576616,37.102030,38.162234,39.252720,39.852238,40.807467,41.843597,42.935832,43.737138,44.960346,45.866960,47.176513,48.833120,50,50.200236,53.654002,54.106966,54.699497,57.681626,58.973172,60.905141,62.218192,64.232888,65.087815,65.821740,67.001776,68.242342,69.016473,70.455542,71.120480,71.911968,73.221521,75.624767,76.001510,76.862366,77.538729,78.243872,79.726113,80.949322,81.792648,82.571289,83.668881,84.935963,86.216735,86.911325,88.245822,89.209999,90.375644,90.908100,91.814714,92.937187,93.440665,94.188981,95.685612,97.369323,97.846814,98.667084,100.077371,101.099111,101.607295,103.348568,105.009769,106.247369,107.110810,108.175721,109.255023,110.564576,111.960473,112.867086,113.687356,114.334937,115.543755,117.054777,118.708654,119.442580,120.795304,121.299807,123.040585,124.637952,125.299924,126.364834,127.890248,129.487615,130.192758,131.272060,132.452097,133.373101,134.323816,135.503852,136.632945,137.553949,139.252051,141.943110,142.243468,143.005828,143.797315,145.063696,146.013482,147.366207,149.588228,150.091089,150.994326,152.016291,152.297395,153.016929,154.369654,156.326788,157.248104,158.140327,159.550615,160.687479,161.953860,163.896603,164.216151,164.748607,165.455917,166.722298,167.410347,168.895292,169.854238,171.499052,172.175414,173.110809,174.434753,175.787478,176.909951,177.709638,178.256484,179.148707,180.170446,181.192185,181.730021,182.041235,183.034193,184.493033,185.356475,186.090400,187.558250,188.752677,190.263700,192.897196,193.389695,193.748769,194.761511,196.301315,197.395008,198.270193,199.411609,200.748038,201.740996,203.050549,204.259367,206.012357,207.451476,208.933717,209.471999,210.674991,212.732859,213.015698,213.912896,215.951498,218.340353,219.400260,220.263702,220.439328,221.328146,222.335494,223.457968,224.321409,225.127288,225.611440,226.287803,227.410277,227.823487,229.034245,229.581091,231.090174,233.149982,233.621287,234.240087,234.887668,236.254783,236.931146,237.463602,238.184369,239.370026,240.438044,241.085625,241.425240,242.864310,244.504848,245.022913,246.159777,247.095172,248.298540,249.061247,250.205177,251.615464 diff --git a/data/torah/labels/Bo-H.txt b/data/torah/labels/Bo-H.txt deleted file mode 100644 index 67f50fce8..000000000 --- a/data/torah/labels/Bo-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.390103,4.074545,4.707736,6.110545,7.384404,7.806886,9.145220,11.203089,14.196353,16.441300,17.578165,18.715030,19.866285,20.336225,20.868681,22.609955,23.876335,25.142716,27.229366,28.582091,29.834081,30.683131,33.374191,36.227702,37.738724,39.595123,40.688816,41.116259,42.318518,43.151499,45.332731,47.279251,48.128301,50.617890,52.085741,53.251387,53.986285,55.021442,57.022720,58.605696,60.692347,61.383099,63.412187,64.290019,64.683464,67.173054,69.187750,71.432698,72.793036,73.095241,75.440924,76.077820,77.013215,78.696926,80.006479,80.567716,82.222645,83.820012,85.719583,86.856447,87.304688,88.254473,89.247431,90.628938,92.269476,92.996222,93.787710,94.149188,95.358006,96.578766,97.642368,99.736633,100.830326,102.485255,103.636510,105.219486,105.805747,107.473876,108.743393,109.822695,111.518197,112.439201,113.806316,114.223663,116.166389,116.662918,117.483187,119.263322,120.428968,121.968872,122.604411,124.246073,125.367155,126,126.835005,129.051171,130.028312,131.352256,132.345214,133.827455,134.701697,135.752217,136.874691,138.644746,139.983081,140.717005,141.094702,142.634506,144.303826,145.406676,146.500368,147.219903,149.594366,150.508879,151.273179,153.072016,154.136038,155.210123,155.857704,158.001917,159.858316,161.182260,163.326472,164.002835,165.514293,166.895799,168.723416,170.280915,171.201919,172.612207,174.137620,175.707194,176.872840,177.8,178.945100,179.862497,180.422258,182.465736,183.392493,184.284716,185.766957,186.918212,187.666528,189.350239,190.918824,191.296906,193.153305,194.506030,195.038486,195.459639,196.826755,199.258781,200.294911,202.352780,203.892584,206.310220,207.504647,208.483214,209.041800,210.302444,211.488217,212.100760,213.180062,213.452345,214.575036,215.293078,216.458724,217.130927,219.088060,220.196144,221.246664,222.297184,223.635519,224.743602,228.298102,229.679609,231.233803,232.859951,234.989773,236.788610,237.224220,238.260350,239.224526,241.268004,242.463,243.968321,245.263483,245.867892,246.673771,247.223166,248.978830,252.749191,253.287449,255.224390,256.246129,257.311040,257.993238,259.360354,260.943330,263.922203,264.942314,266.410165,267.762890,268.423234,269.632052,270.725745,272.999473,275.068948,277.141208,279.011997,280.076909,280.730410,282.414121,286.069356,286.577977,288.486992,289.450530,290.429097,290.804446,292.137547,293.015379,294.094681,295.994252,297.807479,298.857999,300.987821,301.669869,304.015551,306.231717,307.627614,309.829390,311.297240,311.795345,313.304137,314.527345,316.354963,317.664516,319.578478,320.289055 diff --git a/data/torah/labels/Chayei Sara-2.txt b/data/torah/labels/Chayei Sara-2.txt deleted file mode 100644 index 7677bbc0e..000000000 --- a/data/torah/labels/Chayei Sara-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.696004,5.521473,7.264131,8.089600,9.171882,9.832258,10.382571,11.024602,12.015166,13.372604,13.666104,14.014636,14.583293,15.078574,15.830668,16.692825,17.408232,17.848483,18.398795,19.407702,20.765141,21.590610,22.434424,22.709580,23.149830,23.938612,24.470581,24.929176,25.626239,27.167115,28.524553,29.478429,30.909243,31.459556,32.119931,33.477370,34.137745,35.421809,36.870966,38.631967,39.200624,39.567499,40.062781,40.484688,41.035000,41.823782,42.704283,44.153440,45.731004,47.638756,48.152381,48.996194,50.133507,50.757195,51.307508,52.334759,52.885072,53.600479,55.691668,56.241981,56.902356,57.599420,59.176983,59.910734,60.350984,60.864610,61.800141,63.157580,64.863550,65.707363,66.276020,66.844677,67.486708,68.752428,69.137647,69.559554,69.981460,70.751898,71.045399,71.522337,71.925899,72.934806,75.869809,76.530184,77.098841,78.052717,78.713092,79.465186,80.364031,80.620844,81.134469,81.758157,82.657001,83.647565,84.619784,85.316847,85.922191,86.454161,87.297974,89.132350,89.756038,90.801633,91.443664,91.883915,92.599322,93.589885,94.286948,94.928980,96.634950,98.927920,99.643327,100.725609,101.404328,101.807891,102.670048,103.220361,103.990799,104.687862,105.183144,105.605050,106.026957,106.980833,107.879677,108.264896,108.815209,109.420553,109.989210,110.447804,111.016461,111.731868,112.850837,113.474525,114.336682,115.473995,116.079340,116.666340,117.216653,117.546841,117.858685,118.629123,120.133312,120.848718,122.316220,123.306783,124.792628,125.819878,128.112849,128.919975,130.460851,131.378039,132.130133,132.827196,133.505916,134.111260,134.679917,135.285261,136.844481,137.541544,137.871732,138.293638,138.642170,139.485983,141.522141,142.329266,143.173079,144.310393,145.429362,146.401582,147.300426,148.235958,148.676209,149.483334,150.015303,150.895804,151.757961,152.766868,155.004807,155.463401,156.362246,156.747465,157.095996,157.591278,158.031528,158.746935,160.452905,161.149968,161.480156,161.755312,162.819251,163.681408,164.341783,165.240628,166.359597,166.799848,167.166723,167.863786 diff --git a/data/torah/labels/Chayei Sara-3.txt b/data/torah/labels/Chayei Sara-3.txt deleted file mode 100644 index 24ec73fc7..000000000 --- a/data/torah/labels/Chayei Sara-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.736704,4.683233,5.261410,6.591216,7.381391,8.113749,8.865379,9.674826,9.983187,10.522819,11.255176,13.105342,14.550785,15.225324,15.591503,16.420223,16.844220,17.191126,17.653667,19.927829,21.238364,21.912903,22.356172,22.606716,23.030712,23.647434,24.418337,25.169966,25.883051,26.480501,27.482674,34.131708,36.078237,37.003320,37.870585,38.487307,39.238937,39.643661,40.453108,41.031285,42.264729,43.228357,43.806534,44.423256,45.232704,46.870872,47.853772,48.431949,48.759583,49.164307,49.607576,50.763929,51.881738,52.363552,53.481361,54.194445,54.868985,56.237337,58.164593,59.166766,59.802761,60.361665,61.248203,61.537292,62.134741,63.098369,64.081270,65.006353,65.700165,66.432522,67.049244,68.552504,70.325580,71.250663,71.848112,72.927376,73.659733,74.257183,74.873905,75.336446,75.664080,76.377165,78.285148,79.210231,81.619302,83.026199,84.298188,86.129081,87.015619,88.383971,89.578870,90.291955,91.332673,91.814487,92.257756,92.758843,93.202112,93.838106,94.358465,95.534092,95.977361,96.728990,99.966781,101.007499,101.527859,102.163853,103.108209,104.226017,104.669286,105.228190,106.442362,107.251810,108.369618,109.005613,110.354692,112.224131,112.898670,113.688845,115.076470,116.907363,117.948082,118.661166,119.065890,120.087336,121.320780,121.956775,122.457861,124.404390,126.485827,127.757816,128.451628,128.952715,130.513792,132.845772,133.847946,135.813747,136.893010,137.914456,138.666086,139.321353,139.629714,140.342799,141.094429,143.252956,144.679126,145.372938,145.700571,146.413656,147.589283,147.994006,149.246723,149.863445,150.518712,151.463068,151.867791,152.715784,154.064863,155.510306,155.818667,157.090656,158.555371,160.444082,161.696798,162.621881,163.026605,163.469874,165.493493,166.457121,167.208751,167.883291,168.538558,169.560004,170.118908,171.063263,171.622168,172.315980,173.067610,173.915603,174.551597,174.821413,175.303227,176.343946,176.787215,177.673752,178.926469,179.427556,180.025005,180.545364,181.065723,181.451175,181.778808,182.568983,184.554057,185.517685,186.172952,186.558404,187.290761,190.952548,191.781268,192.340172,192.956894,193.496526,194.074703,195.231057,195.944141,196.580136,197.428129,198.565210,199.066297,199.567383,200.184105,200.453921,200.993553,201.340459,201.725910,202.496813,203.074990,203.768802,205.137154,205.734603,206.929502 diff --git a/data/torah/labels/Chayei Sara-4.txt b/data/torah/labels/Chayei Sara-4.txt deleted file mode 100644 index d12a2565c..000000000 --- a/data/torah/labels/Chayei Sara-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.787653,4.738278,5.585574,6.226212,7.011511,7.776144,8.582109,10.152707,10.566022,11.599310,12.756592,13.273236,13.748549,15.463807,16.311103,17.530383,18.171021,18.749663,19.328304,19.989608,21.684200,22.924146,23.668113,24.350083,24.846062,26.210002,27.015966,28.276578,28.855219,29.475192,29.991836,31.087121,31.583099,32.637053,33.732338,34.744961,35.096278,35.550925,36.976863,38.382134,38.774784,39.911400,40.593371,42.763275,43.114593,43.589906,44.767854,46.937759,47.516400,48.942337,50.037623,50.843587,51.587555,52.207527,52.682840,53.034158,53.716128,54.749416,55.038737,55.658709,57.063981,57.828614,58.221263,58.882568,59.171888,59.998519,61.920434,62.602405,63.139714,63.904347,64.813641,65.495611,66.074252,67.252200,68.058165,68.802132,69.628763,70.476059,72.067322,72.625298,73.307268,74.154564,75.125855,76.200474,76.717118,77.543749,78.349713,79.486330,80.147634,80.850270,81.842227,82.606860,83.557485,84.260121,86.946669,87.752634,88.703259,89.633218,90.191194,90.707838,91.121153,91.575800,92.092444,92.815745,93.973028,94.840990,95.998272,96.886900,97.486207,98.519495,100.710065,102.218666,102.941967,103.747932,104.243910,105.008543,106.124494,107.054454,107.757089,108.459725,109.224358,109.947660,110.774290,111.683584,112.840866,113.977483,119.309249,121.231165,122.285118,123.111749,123.442401,124.186368,125.033664,125.715634,126.914249,127.265566,127.596219,127.926871,128.402183,128.753501,131.109398,131.667373,132.142686,132.700661,133.382631,134.064601,134.725906,135.511205,136.482495,137.267794,137.970430,138.445742,139.210376,140.656979,141.152957,142.392902,142.806218,143.219533,144.273487,144.666136,145.348106,146.691380,147.208024,148.034655,149.522590,149.853242,150.369886,151.651163,152.250470,152.684451,153.407752,154.337712,155.432997,155.825646,157.954220,158.946176,160.000130,161.405401,161.880714,163.616638,164.195279,164.815252,165.373227,167.047154,167.501800,168.039110,169.465048,170.126352,170.746325,172.420251,173.990849,175.251460,176.140088,176.946053,177.256039,177.855346,178.516650,178.971297,179.694599,180.273240,181.203199,181.761175,182.959789,184.695712,185.191691,185.522343,185.956324,187.733579,188.704870,189.428171,189.965481,190.854109,191.660073,192.032057,192.569367,193.437329,194.057302,194.718606,195.297247,195.834557,196.599190,197.673810,199.203076,199.802383,200.236364,200.587682,201.021663,202.034285,202.798918,203.563551,204.162858,205.382138,206.126105,207.159393,207.510711,207.882695,208.316676,209.402316,212.119051,212.676330,213.001409,213.628348,214.069527,214.580366,215.393065,216.066443,216.832702,217.784720,218.133019,218.736738,219.177917,219.781636,220.455015,223.264629,224.100548,225.679504,226.585083,226.933382,228.164040,229.046398,229.673337,230.230616,231.112974,231.507713,231.972112,233.017010,233.527849,234.456647,235.292566,235.826625,236.430343,236.894743,239.402498,240.749255,241.376194,242.049572,243.326670,243.930389,244.650207,245.370026,246.229164,247.877781,248.551160,249.085219,250.037237,251.685854,252.986171,255.702906,256.074425,256.445944,257.328303,259.278779,260.045037,260.648756,261.089935,261.670434,262.436693,262.854652,263.249391,263.829890,264.990888,265.826806,266.105445,266.709164,267.591523,268.148801,268.636421,270.238597,271.144176,272.072974,274.418189,275.068348,275.486307,276.322226,277.181364,277.738643,278.806761,280.060638,280.850117,281.407396,283.775831,284.147350,284.449210,285.006489,285.470888,286.237146,288.605582,289.209300,289.720139,291.066897,292.460094,293.830071,294.317690,294.874969,296.152067,296.546806,297.405944,298.775922,299.727940,300.029799,300.656738,301.005037,301.376557,301.748076,302.142815,302.537554,303.512792,304.046851,305.045309,306.531387,308.342543,308.806942,309.271341,309.967940,310.989618,311.616557,312.220275,312.707894,313.125854,313.590253,314.704811,315.122770,315.726489,316.423087,316.864266,317.676965,318.466443,318.884402,319.395241,320.347260,321.136738,321.717237,329.166526,330.311463,331.658220,332.192279,332.842438,333.237177,334.096316,335.861032,336.604071 diff --git a/data/torah/labels/Chayei Sara-5.txt b/data/torah/labels/Chayei Sara-5.txt deleted file mode 100644 index 9d5f3f4d8..000000000 --- a/data/torah/labels/Chayei Sara-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.176711,5.540651,6.201956,6.615271,7.028586,7.545230,8.599184,9.405148,10.149116,12.711670,13.310977,13.992947,15.088232,16.762159,18.563364,20.030633,20.535768,20.949083,21.424396,21.920374,23.056991,23.821624,24.606923,25.536882,26.528839,29.752697,30.641325,31.488621,32.335917,33.183213,34.464490,35.187792,35.663104,36.179748,36.965047,37.647017,39.279612,39.920251,40.292234,41.118865,41.594177,42.544802,43.226772,43.764082,45.768661,46.884612,47.959231,50.335794,51.121092,51.968389,53.063674,53.394326,53.952302,55.522899,56.328864,57.134829,57.858130,59.056744,59.573388,59.945372,60.276024,61.267980,62.073945,64.967151,65.401132,65.855779,66.537749,66.951064,67.757029,68.748985,69.182966,69.947600,70.236920,71.042885,74.824719,75.114039,75.713346,76.787966,77.304610,78.792545,79.598509,80.466471,81.251770,81.830411,83.318346,83.958985,84.620289,85.281593,86.748862,89.249419,90.551362,92.473278,94.023209,94.498522,95.077163,95.800465,96.689092,97.247068,98.858997,100.140274,100.925573,101.586878,102.868155,104.824512,105.521110,106.148049,106.821428,107.355487,107.935986,108.818344,109.259523,109.840022,110.606280,112.254897,112.719296,114.205373,114.994852,115.598571,116.457709,117.758026,118.408185,119.104784,120.335441,121.055260,121.775079,124.073854,124.793673,125.072312,125.652811,126.651269,126.999568,127.440748,128.532085,129.112584,130.018162,131.411360,131.713219,132.943877,133.570816,134.267414,135.196212,136.194670,136.960929,137.982607,138.981065,139.538344,139.933083,140.420702,141.395940,142.208639,143.392856,145.204013,145.645192,146.318571,147.131269,147.340249,148.013627,148.454806,149.104965,150.730362,152.216439,153.005918,153.795396,154.259795,155.235033,156.256711,157.162289,159.298525,159.670045,160.482743,161.597301,162.804738,163.501337,164.290816 diff --git a/data/torah/labels/Chayei Sara-6.txt b/data/torah/labels/Chayei Sara-6.txt deleted file mode 100644 index 449b05ec7..000000000 --- a/data/torah/labels/Chayei Sara-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.037867,4.463804,5.228437,5.807078,6.406385,7.543002,8.782948,9.981562,10.580869,11.159510,11.655488,12.254795,12.771439,13.308749,13.660067,14.218043,15.003341,15.519985,16.015964,16.780597,18.082540,18.661181,19.322485,19.797798,20.293776,20.727757,21.554387,23.145651,24.860909,25.894197,26.824156,28.043436,29.614034,30.998639,32.093925,33.023884,33.809183,34.945800,35.855093,36.516397,36.971044,37.508354,38.314318,40.525555,41.848163,42.261478,42.571465,42.922783,43.315432,44.286723,47.717239,48.750527,49.432497,50.341790,51.933054,52.656356,53.420989,55.218910,56.706844,57.285486,57.719467,58.690757,59.042075,60.054698,60.406015,60.819331,61.315309,64.167184,65.572455,66.316423,66.915730,67.370376,67.659697,68.135010,69.333624,70.490906,71.069547,71.565526,72.268161,72.929466,74.603392,76.318650,77.537930,78.571218,79.046531,79.418514,80.245145,81.650416,82.146395,82.849030,84.357631,85.618242,86.527536,87.374832,88.160131,88.511449,89.090090,89.937386,91.136000,92.623935,93.533228,94.091204,94.669845,95.744464,96.571095,97.087739,97.625049,98.183024,100.394260,100.786910,101.324220,101.944192,102.543499,103.018812,103.494124,105.581366,106.345999,107.048635,107.482616,108.267915,111.181787,112.277072,112.897045,113.723675,114.570971,115.046284,115.314939,115.748920,116.368893,117.670835,118.270142,118.910781,119.551420,120.212724 diff --git a/data/torah/labels/Chayei Sara-7.txt b/data/torah/labels/Chayei Sara-7.txt deleted file mode 100644 index 950b9a4f2..000000000 --- a/data/torah/labels/Chayei Sara-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.567133,4.414429,5.137731,5.571712,6.357010,7.286970,8.733573,10.531494,12.019429,13.073382,13.693355,14.685312,16.751888,17.909170,18.673803,19.479768,20.244401,21.339686,22.538300,23.364931,24.294890,25.307512,26.196140,27.539414,29.006683,29.626656,30.907933,32.209876,33.119169,34.028463,34.607104,35.537063,38.130731,39.245289,40.429507,41.195765,41.869144,42.681843,43.866060,45.212818,47.070414,47.836672,48.695811,50.158668,53.130822,53.873861,54.732999,55.522477,56.102976,57.240754,58.192772,58.633951,59.284110,59.725289,61.350686,62.093725,63.185063,63.626242,64.415720,65.855357,67.550414,68.084473,69.500890,70.383248,70.661888,71.195947,71.846106,73.262523,74.052001,74.632500,75.120119,75.538078,76.443657 diff --git a/data/torah/labels/Chayei Sara-h.txt b/data/torah/labels/Chayei Sara-h.txt deleted file mode 100644 index 74fa68991..000000000 --- a/data/torah/labels/Chayei Sara-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.604815,3.356909,3.980597,4.751035,6.438661,7.686037,9.061820,9.887289,10.437602,11.886759,14.399855,15.206980,16.436013,18.215358,19.407702,20.233172,21.498892,22.764611,23.810206,24.745738,25.607895,27.222146,27.644053,28.707991,30.267211,31.239430,32.119931,33.238901,34.009339,37.678092,38.393498,39.475780,40.796532,41.401876,42.851033,45.125660,45.584254,46.574817,48.244100,49.619882,50.151851,51.124071,53.215260,53.912323,54.114104,55.269761,56.535481,57.397638,58.241451,60.809578,62.130329,62.662298,63.652862,67.119833,67.596771,69.155991,70.219929,70.916992,71.247180,72.604619,74.090463,75.576308,76.768653,77.795904,78.878186,79.538561,80.235624,81.446313,83.390752,84.216221,85.243472,85.683722,86.270723,87.297974,88.306881,89.480882,90.343039,90.783289,91.168508,91.700477,92.360853,93.204666,94.378667,95.369230,96.689981,98.982951,101.092484,101.789547,102.725079,103.036923,104.100862,104.926331,105.715113,107.255989,108.521709,109.310491,110.539523,113.364463,114.960370,115.932590,116.317809,118.152185,119.417905,120.206687,121.288969,122.389595,123.765377,124.260659,125.618097,126.682035,127.214005,127.507505,128.608131,131.011164,132.918915,133.909478,134.771635,135.743855,136.459262,137.339762,138.311982,138.972357,139.614389,140.072983,141.668891,143.851799,144.457143,144.677268,145.245925,146.254832,147.043614,147.850739,148.235958,148.731240,149.299897,150.345491,151.427773,151.978086,153.885838,155.646839,156.453965,157.848091,158.435091,159.168842,159.627436,160.030999,161.205000,162.947657,164.396815,165.093878,165.387378,165.882659,166.212847,167.019973,167.662005,168.689255,169.973319,171.000570,171.422476,172.321321,172.559790,174.100666,175.769948,176.063449,176.430324,177.622668,180.374233,181.970141,182.942360,183.566048,185.235331,186.721176,187.271488,188.005239,188.372114,189.105865,189.491084,190.573366,193.783525,194.884151,195.177651,195.727964,197.415590,198.461185,199.011498,200.075436,201.377843,202.478469,203.964314,205.395127,206.587472,207.302879,208.054973,208.807068,209.320693,210.329600,211.228444,212.475820,213.319634,213.906634,214.933885,216.144573,216.731574,217.813856,220.895608,222.454828,223.408704,223.922329,224.289205,225.408174,226.417081,227.297582,228.086364,229.462146,229.773990,230.764553,232.287086,232.543898,233.094211,233.332680,233.956368,234.928588,236.139276,236.616214,238.010340,239.074278,240.541780,241.532343,242.174375,243.183282,246.136628,246.375097,246.888722,247.915973,249.420161,251.034413,251.621413,252.116695,252.832102,254.428009,255.822135,256.610917,257.509761,259.087325,260.408076,261.160171,262.095702,262.847797,263.544860,264.058485,264.553767,266.002924,267.231956,267.745582,268.057426,268.846208,271.597772,273.450493,274.147556,275.651744,277.706246,278.311590,278.916934,279.265466,280.219341,282.237156,283.080969,283.704657,286.181065,287.556847,288.859254,289.336192,289.996568,290.803693,291.794257,292.509663,293.903790,294.600853,295.756510,297.022229,297.755980,298.196230,299.076731,300.415826,301.277983,302.305234,303.038984,303.350828,304.011204,305.221892,307.129644,307.771675,308.927332,311.220303,311.807303,312.302585,312.871242,313.403211,314.668931,317.237058,318.337683,318.667871,319.254872,319.493341,320.979185,323.345531,324.721313,325.858627,326.684096,328.078222,329.674130,330.958193,331.802006,332.058819,333.507976,334.902102,335.507447,336.993292,339.561419,340.551982,341.267389,342.221264,342.863296,344.404172,345.743267,346.733830,347.504268,349.100176,351.411490,352.163585,352.768929,354.052992,356.859588,358.528871,359.757903,360.858529,362.069217,362.986405,364.527282,365.150970,366.563439,367.664065,368.269410,368.581254,369.425067,371.259443,372.121600,373.662476,375.056602,376.285634,376.927666,378.945480,380.853232,382.852702,383.549765,383.990015,385.420829,386.154580,387.218518,388.429206,389.291363,391.290834,392.061272,392.648272,394.115773,396.408744,397.656120,398.408214,399.508840,400.957997,401.398248,402.645624,403.801281,405.305469,408.203784,410.386692,411.982600,412.734694,413.266663,414.092132,415.009321,416,416.678603,417.724198,418.494636,419.540230,420.145575,421.227857,422.383514,423.098921,423.612546,424.584766,426.309079,427.666518,428.290206,428.803831,429.482551,429.977832,430.803302,432.472584,433.132960,433.719960,434.435367,435.370899,435.664399,436.067962,437.223619,438.305901,439.204746,440.103590,441.350966,441.956310,442.818467,444.396031,445.111438,446.010282,447.624533,448.174846,449.862473,450.467817,450.834692,451.219911,451.586786,452.503975,456.099352,457.493478,458.814229,460.024918,461.143888,461.694200,462.427951,463.033295,463.785390,464.555828,465.014422,465.913266,466.720392,468.187893,469.068394,469.270175,469.967238,471.691552,473.672678,474.773304,475.378649,476.057368,476.864493,478.038494,478.368682,478.790589,479.340902,479.927902,481.322028,482.697810,484.293718,486.329876,487.980815,489.063097,489.796847 diff --git a/data/torah/labels/Chukat-1.txt b/data/torah/labels/Chukat-1.txt deleted file mode 100644 index 70959b2a4..000000000 --- a/data/torah/labels/Chukat-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.433469,3.524807,3.826667,4.495420,4.724535,5.557370,6.741587,7.763265,8.831383,9.899501,10.596100,11.246259,12.593016,13.661134,16.238549,16.656508,17.306667,19.187483,20.252517,21.970794,22.853152,24.408889,26.034286,26.885714,27.055964,27.582313,28.600907,30.153560,30.594739,31.198458,31.918277,33.238730,34.887347,35.607166,36.138141,37.043719,38.196313,39.370116,39.927395,40.504810,41.387168,42.757146,43.825264,44.568302,46.100819,48.515694,50.512610,52.346987,53.624084,55.637486,57.611749,57.839322,58.486397,60.034425,60.451307,61.938461,63.236160,63.979198,65.302736,66.579833,66.808949,67.993167,69.293484,69.638700,70.497838,70.959153,71.911171,72.117067,73.045865,73.579924,74.462282,75.669720,76.850854,78.360151,79.544368,80.751806,81.680604,82.841602,83.909720,85.699228,85.858684,86.485623,87.785940,89.388117,90.428389,91.937686,93.539863,94.631201,95.513559,96.395918,97.510475,97.878911,98.363446,99.937777,101.049251,102.187029,102.462584,103.716462,105.457958,106.200997,107.567890,108.612788,109.471927,110.679364,111.515283,112.606621,113.416235,113.572607,114.872924,116.660861,116.936416,118.445714,119.617024,120.643899,121.619138,123.801813,124.939591,125.984489,127.099047,128.167165,131.023219,132.253877,132.811156,134.363809,136.500045,137.266303,138.148661,139.054240,140.400997,143.744670,144.673469,145.300407,146.066666,146.995464,147.156462,148.271020,149.455237,149.662675,150.800453,153.354648,153.933605,155.675101,157.509478,158.554376,159.390294,160.272652,162.037369,163.266484,163.963083,164.543582,165.100861,166.046711,166.882630,167.648888,169.297505,169.898140,170.664398,172.217051,173.540589,175.351745,176.907482,177.998820,179.020498,179.600997,180.135056,181.899772,183.967955,186.071655,187.371972,188.765169,189.624308,191.017505,191.687800,194.404534,195.144489,197.443265,199.347301,199.717278,201.064036,201.595011,203.197187,203.658503,204.351702,205.112611,206.180729,207.794226,208.542614,209.282568,210.604564,212.578260,213.251639,214.644836,214.991593,215.940528,216.706786,218.030323,218.959122,219.725380,220.465335,221.556673,222.644927,223.782704,224.525743,224.870958,225.358577,226.355494,226.840029,227.513407,227.788963,228.621797,229.247194,229.874133,230.567648,231.285924,231.816899,233.279757,234.067693,235.878850,237.039847,238.642024,239.106423,239.799938,240.450097,241.355675,242.470233,243.747330,245.001650,245.441287,246.927364,247.461423,248.085278,249.826774,250.729269,251.611627,252.144144,252.933622,253.511037,254.274212,255.156570,255.456888,256.975193,258.136411,258.712284,260.151921,261.216955,262.074701,262.981671,263.724710,264.839268,265.721626,266.952284,267.579222,268.295957,269.153554 diff --git a/data/torah/labels/Chukat-2.txt b/data/torah/labels/Chukat-2.txt deleted file mode 100644 index bed27c803..000000000 --- a/data/torah/labels/Chukat-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.113016,3.482993,4.133152,6.594467,6.800363,8.750839,9.772517,10.213696,11.119274,11.696689,12.184308,13.670385,14.413424,15.574422,16.178141,16.613152,17.774150,18.467664,20.441361,21.532698,22.229297,23.506395,24.179773,25.108571,25.758730,27.500227,29.752562,30.658141,30.932154,31.904308,32.484807,33.483265,33.922902,35.060680,36.848617,37.684535,39.100952,41.167528,43.094785,44.342494,45.108753,45.898231,47.523628,48.647926,49.065885,49.878583,50.784162,52.154139,54.545794,55.103073,55.846112,56.612370,57.819808,59.561304,59.909604,60.675862,62.161939,64.112416,64.901894,66.016452,66.222348,66.849286,67.545885,67.983980,69.098538,70.346248,70.973187,71.693005,72.761123,73.875681,74.315318,75.453096,76.706973,78.100171,79.214729,80.282846,81.420624,82.511962,82.742620,84.693096,87.224071,87.711690,88.010465,88.425341,89.563119,90.816996,91.977994,93.069332,93.905250,94.089468,95.529105,96.756679,97.126656,99.239672,99.796951,101.515227,102.603481,103.462620,104.321758,105.505976,106.707246,107.659264,109.377540,110.561758,111.258357,112.326475,113.510692,115.228969,116.297087,116.992103,117.733640,119.506157,122.501531,122.917948,123.660987,123.914865,125.354502,126.617560,127.430258,127.894657,128.939555,130.448852,131.447310,132.676426,136.159419,137.877696,138.852934,139.503093,141.383909,142.962866,144.239964,144.699737,145.837515,146.952072,147.462911,148.345270,149.366948,150.806585,151.526403,152.269442,154.614657,156.826986,158.049934,159.350251,160.604129,161.416827,161.904446,162.647485,163.204764,163.901362,165.828619,166.989616,168.336374,169.613471,170.379730,171.262088,172.098006,172.701725,174.350342,177.526059,177.983539,179.748256,180.491294,182.093471,182.511430,183.184809,183.742088,184.647666,185.412383,185.689480,186.873698,187.965036,188.356691,189.633789 diff --git a/data/torah/labels/Chukat-3.txt b/data/torah/labels/Chukat-3.txt deleted file mode 100644 index cb286ce91..000000000 --- a/data/torah/labels/Chukat-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.731759,4.036933,4.123961,5.034547,6.855720,7.062143,7.242245,9.579417,10.975650,11.212426,12.396188,13.731715,14.824419,16.008181,18.542471,18.823214,20.603410,21.996608,22.719006,24.086404,25.763400,26.458286,27.049971,27.280457,28.467255,30.404026,30.729084,32.070682,32.662367,34.932763,36.061108,37.502478,37.660704,38.735736,39.379021,40.538306,41.858540,43.669696,46.665070,48.223904,50.081500,50.731659,51.962316,52.169754,52.796693,54.329210,55.440684,57.576920,58.179096,58.477872,59.731750,60.217827,61.354062,62.375740,63.234879,63.954697,65.463994,66.973292,68.412929,68.666806,70.594062,72.539913,72.954788,74.789165,76.837562,78.434697,79.837350,80.487509,81.276987,83.103558,84.320548,86.665764,88.664243,91.380977,91.845376,92.446011,92.746329,94.673585,96.136442,96.531181,98.690637,99.525013,101.707689,102.681385,103.331544,104.469322,106.884197,107.743335,108.765013,109.322292,110.506510,111.435308,112.224787,113.130365,113.639662,114.590138,116.610274,118.305331,118.953948,120.231045,120.669140,121.480297,121.827054,122.825512,123.031408,124.656805,126.514401 diff --git a/data/torah/labels/Chukat-4.txt b/data/torah/labels/Chukat-4.txt deleted file mode 100644 index b64bd2118..000000000 --- a/data/torah/labels/Chukat-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.809615,4.667211,6.362268,7.407166,7.709025,8.195102,9.425760,10.308118,11.074376,12.049615,12.862313,14.139410,14.998549,15.416508,15.973787,17.018685,17.549660,19.221497,20.962993,22.077551,23.167347,24.255601,25.137959,25.506395,26.806712,27.990930,29.593107,30.429025,33.192200,34.853712,35.318111,36.548769,37.615345,38.660243,40.378519,41.771717,43.002374,44.511671,45.904869,46.833667,48.133984,48.668043,49.364642,50.966819,52.545776,53.147952,54.959109,55.911127,56.770265,58.903417,60.706864,62.309041,63.052079,63.562918,64.909676,66.883372,67.974710,69.733259,70.476297,71.544415,72.519653,73.727091,74.586229,75.306048,76.095526,77.906683,79.620333,80.502692,81.536796,82.186955,83.069313,84.248461,85.315481,86.662238,87.287635,89.330991,91.140612,92.852714,93.498247,96.075662,97.535435,99.694891,100.275390,101.297068,102.365186,103.317204,104.849721,106.475118,109.145413,109.981331,110.351308,111.210447,112.464324,114.321921,115.738338,115.992215,117.594392,119.057249,119.767816,121.021694,122.020152,122.879290,123.738429,125.712125,127.289540,129.263236,130.493893,130.770991,131.931989,132.767907,134.323644,135.181240,136.551218 diff --git a/data/torah/labels/Chukat-5.txt b/data/torah/labels/Chukat-5.txt deleted file mode 100644 index 2565debd0..000000000 --- a/data/torah/labels/Chukat-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.853399,3.478796,6.339708,7.189363,9.093399,9.463377,10.460293,11.249771,12.968048,15.266823,17.054760,17.612039,18.355077,18.607413,19.443331,20.209590,21.277708,21.787005,22.506823,23.132220,23.944918,25.616755,26.940293,27.796347,28.050225,29.141562,29.883059,30.417118,30.830451,31.042515,32.014669,33.036347,33.872265,34.638524,35.985281,37.889318,38.186551,39.370769,39.810406,40.483785,41.130860,43.616100,44.669635,45.132492,46.479250,46.940565,47.869363,48.983921,50.027277,51.141835,52.047413,53.533490,55.182107,55.505644,56.318343,56.408138,57.846234,60.121789,60.631086,61.558343,62.719340,63.903558,65.134216,66.271993,68.501109,70.419114,71.510451,72.230270,72.880429,74.203966,75.826279,76.056937,76.799975,77.798433,79.005871,79.306188,81.163785,84.228819,84.923875,85.526052,87.476528,87.964148,90.030723,91.238161,92.375939,92.792356,94.069454,95.485871,98.202606,100.083422,100.780021,101.755259,103.287776,105.958070,107.513807,108.510723,109.205780,111.225916,113.176392,113.476710,115.171767,116.122243,117.004601,118.304918,119.688864,119.896302,120.755440,122.264737,123.263195,124.306551,124.863830,127.580565,130.668819,131.969136,132.503195,133.221472,134.219930,135.404148,136.588365,137.377844,138.422742,139.003240,140.651857,142.300474,143.507912,145.619386,146.803603,148.870179,150.583830,151.905826,153.415123,154.367141,155.806778,156.340837,156.989454,158.266551,158.963150,159.682968,160.472447,161.587005,163.814578,164.278977,166.229454,167.576211,169.085508,169.757345,171.661381,172.658297,172.935395,174.235712,175.186188,176.068547,176.440066,177.902923,178.876619,179.201699,180.385916,182.522152,185.865826,186.632084,187.305463,188.211041,188.416937,189.322515,190.711386,190.825944,191.451341,192.635558,193.982316,194.586035,195.468393,196.861590,198.301227,200.205264,204.524175,206.171250,207.401908,208.539685,209.747123,210.583041,211.860139,212.298234,212.573790,213.409708,214.431386,215.360184,216.730161,217.821499,218.888075,221.326171,223.392747,224.994923,226.875740,227.734878,229.140502,231.067758,234.337907,234.916103,236.193200,237.072474,237.583313,238.372792,240.416148,243.201000,243.710298,244.221137,245.683994,247.170071,248.841908,249.375966,250.119005,251.047803,252.278461,253.439459,253.575694,254.620592,255.663948,256.639186,257.032384,258.332701,260.133155,260.713654,261.385490,263.289527,265.069753,266.227667,266.486171,268.154923,268.842270,269.258688,270.257146,270.976964,271.811341,272.320638,273.063676,274.062134,274.408892,275.871749,276.986307,277.636465,279.029663,280.678279,281.374878,282.489436,283.673654,285.879549,286.621046,287.874923,289.778960,290.405898,291.124175,292.029753,292.446171,293.514288,296.229481,296.622678,297.271295,298.870388 diff --git a/data/torah/labels/Chukat-6.txt b/data/torah/labels/Chukat-6.txt deleted file mode 100644 index 22212b15b..000000000 --- a/data/torah/labels/Chukat-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,2.670295,3.691973,5.061950,6.478367,7.987664,9.218322,11.679637,12.747755,14.883991,16.439728,17.562534,17.864686,18.616327,19.870204,20.822222,22.374875,23.744853,25.091610,26.206168,27.947664,30.037460,32.939955,34.751111,37.398186,38.443084,39.720181,41.066939,42.553016,43.760454,44.545306,45.845624,46.839456,47.721814,48.906032,50.090249,51.042268,51.808526,52.458685,54.339501,55.454059,55.895238,57.009796,57.938594,58.913832,60.121270,60.933968,62.094966,63.627483,64.927800,66.158458,67.319456,68.828753,70.059410,70.593469,71.452608,72.195646,73.426304,74.656961,75.446440,76.955737,78.163175,79.579592,80.369070,82.087347,82.783946,83.875283,84.618322,85.636916,86.699773,86.812789,87.760181,88.782074,89.534240,91.113197,92.433651,93.850068,95.032744,95.354739,96.351655,97.373333,98.486349,99.345488,100.272744,101.456961,104.173696,106.299932,108.623418,110.411355,111.781332,113.197749,114.939246,117.981060,119.606457,121.440833,123.251990,125.318566,127.478021,128.778339,131.680833,134.397568,135.512126,136.835663,137.903781,138.530720,139.831037,143.569450,143.940969,144.939427 diff --git a/data/torah/labels/Chukat-7.txt b/data/torah/labels/Chukat-7.txt deleted file mode 100644 index e84e7bb48..000000000 --- a/data/torah/labels/Chukat-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.368435,3.181134,4.226032,4.455147,5.383946,5.637823,6.636281,7.913379,8.955193,11.579048,12.438186,13.483084,14.969161,16.873197,17.732336,18.661134,19.288073,20.518730,22.028027,22.980045,24.071383,24.860862,25.418141,26.184399,27.995556,28.644172,29.456871,31.685986,31.905850,34.413605,35.433741,37.662857,39.357914,41.076190,41.376508,41.723265,43.627302,46.715556,47.597914,48.619592,49.896689,51.197007,53.333243,54.957098,56.837914,58.416871,59.368889,59.801612,60.985830,62.284605,62.561703,64.187100,66.276895,66.950274,67.832632,68.227372,69.063290,70.154628,71.451081,72.581929,73.441068,74.044787,76.970501,79.547916,80.523154,81.126873,81.591272,82.543290,83.866827,85.120705,86.142383,86.815762,87.489140,88.998437,90.600614,91.134673,92.806510,94.206779,95.306555,97.326691,99.137848,99.718347,100.902564,102.202882,102.897939,104.453675,105.614673,106.543471,107.797349,110.069821,110.346918,110.715353,112.410410,113.232451,113.312905,114.904288,115.783562,117.037440,117.873358,119.684514,120.542111,121.726329,122.864106,124.512723,125.046782,126.486419,127.065376,127.947734,129.387372,130.989548,133.009685,134.658301,135.865739,138.164514,139.116533,140.416850,141.763607,142.506646,144.155263,144.805422,146.036079,147.034537,148.636714,149.753015,150.935490,152.181657,153.200251,154.732768,156.427825,158.053222,159.028460,159.887598,161.327236,164.299390,164.995988,165.901567,166.319526,167.596623,169.895399,170.522338,171.869095,173.146192,173.610592,175.653948,176.722066,177.650864,178.440342,180.344378,182.318075,183.339753,185.824288,186.311907,188.006963,189.934220,191.466737,193.483789,194.087508,195.309681,195.818211,197.350728,198.812043,199.856941,200.507100,201.760977,202.945195,204.733131,205.383290,206.172768,207.960705,209.609322,209.977757,211.579934,212.810592,215.968505,217.708460,218.397358,218.748732,219.505739,219.898936,220.990274,221.987190,223.703925,226.374220,228.719435,230.066192,230.296850,230.605156,231.357495,231.681032,232.934910,234.583527,235.442665,236.255363,238.229059,239.552597,240.109876,241.340533,242.037132,242.733731,244.335907,245.938084,247.006202,247.818901,248.747699,248.996951,249.258538,250.227608,250.896361,251.453640,252.125477,252.868515,254.308152,255.515590,255.862347,257.859263,259.227699,259.620896,260.735454,262.011010,263.698356,264.812914,266.322211,267.258731 diff --git a/data/torah/labels/Chukat-h.txt b/data/torah/labels/Chukat-h.txt deleted file mode 100644 index b544a92c6..000000000 --- a/data/torah/labels/Chukat-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.921088,5.241542,6.425760,7.726077,9.049615,10.489252,10.788027,11.484626,12.854603,13.945941,14.758639,15.176599,16.639456,19.379410,19.913469,21.585306,22.212245,24.812880,26.461497,26.902676,28.806712,30.617868,31.082268,33.334603,34.681361,35.586939,36.353197,37.816054,37.973968,39.460045,40.667483,40.989478,41.569977,42.452336,44.333152,45.749569,46.655147,48.094785,49.325442,50.857959,51.830113,52.898231,56.032925,57.333243,58.401361,59.353379,60.723356,62.162993,63.997370,65.831746,67.642902,69.872018,70.054694,70.890612,71.237370,72.978866,75.478778,76.200272,76.985125,77.192562,78.144580,78.632200,80.095057,81.395374,82.556372,83.879909,84.739048,84.946485,85.828844,86.455782,87.663220,89.985215,91.796372,93.932608,95.650884,96.672562,98.576599,101.525533,102.291791,103.940408,105.565805,106.401723,107.957460,109.513197,110.418776,111.045714,112.949751,114.110748,116.548844,117.245442,118.708299,122.400272,123.282630,124.188209,125.720726,127.021043,127.647982,128.692880,131.247075,132.431293,134.010249,134.544308,137.052063,138.236281,139.420499,140.999456,142.346213,144.064428,145.477823,146.936145,147.725624,149.165261,150.437732,151.203991,152.364989,154.106485,154.686984,156.498141,157.930068,159.625125,160.112744,160.809342,163.386757,163.897596,165.360454,166.053968,167.098866,168.561723,169.885261,171.092698,173.391474,175.202630,176.665488,178.639184,180.937959,181.959637,182.725896,184.838912,186.162449,186.509206,187.507664,187.899320,189.478277,192.334331,193.448889,195.236825,196.676463,197.419501,197.671837,199.210612,199.555828,201.088345,202.644082,203.596100,204.269478,205.523356,206.754014,208.190567,209.069841,210.393379,211.577596,212.250975,213.737052,214.689070,217.312925,217.543583,217.938322,219.331519,220.283537,221.212336,223.998730,226.738685,227.853243,229.176780,231.289796,231.777415,232.097868,232.957007,235.371882,235.859501,236.939231,238.480272,238.847717,239.426674,240.448352,241.209985,242.997921,245.238959,246.214197,246.701816,248.489752,249.070251,249.766850,252.158505,252.622904,253.458822,255.223539,255.687938,256.709616,258.789866,259.867530,260.935648,261.037870,262.314968,262.849027,265.008482,267.493017,268.305716,269.280954,271.742269,272.880047,273.460546,275.364582,277.106079,278.267076,278.708256,279.613834,280.147893,282.307349,284.358505,285.496283,286.564401,287.374015,288.743993,289.278051,290.369389,291.576827,292.226986,293.550523,294.920500,296.001230,296.629525,296.997961,298.693017,300.504174,301.502632,303.313788,305.148165,307.005761,308.417553,308.561498,308.946986,309.782904,311.103358,313.123494,314.631249,315.513607,316.581725,317.255104,319.298460,320.784537,322.688573,323.290750,323.755149,326.425444,327.493562,328.584900,330.024537,331.394514,333.500607,334.501362,336.103539,337.961135,339.307893,339.841952,341.397689,342.396147,343.348165,345.020002,346.552519,349.710432,352.317499,352.677961,353.258460,354.256918,355.278596,356.270886,357.946576,359.288708,360.658685,361.982223,363.839819,365.209796,366.742313,367.647892,369.226849,369.923447,370.689706,373.361697,375.260953,376.514830,377.977688,378.697506,380.624762,382.869293,384.285711,385.748568,386.329067,387.350745,387.556640,390.017956,390.807434,392.548931,394.174327,395.577150,397.000994,398.089248,398.692967,400.689883,401.247162,403.151198,403.894237,405.032015,406.425212,406.723987,407.977865,409.928341,411.762717,413.457774,414.451606,414.711652,415.049157,416.233375,417.852604,420.731878,422.891334,423.236550,424.815507,428.391380,429.063216,429.888341,431.931697,432.442536,434.578772,435.182491,435.318727,437.083443,437.896142,439.335779,441.193375,442.925166,444.179044,445.270382,446.106300,447.058318,448.823035,450.727071,451.493330,453.118727,456.624940,458.018509,458.572332,459.476368,461.171425,462.634282,462.818500,464.211697,464.954736,466.159089,466.550745,468.269021,471.008976,472.820132,473.865030,476.651425,477.998182,478.578681,481.363534,482.849611,483.383670,484.704123,486.399180,488.512196,491.670110,492.157729,494.222763,496.885348,497.766164,499.298681,499.972060,501.527797,504.081992,504.685711,505.498409,507.193466,510.094418,512.021674,513.647071,514.715189,516.549566,521.077457,522.238454,523.236912,524.839089,526.232287,526.627026,527.950563,528.531062,529.692060,530.664214,531.314373,531.543488,532.983126,533.470745,534.260223,535.699860,537.952196,539.461493,542.572967,543.780405,546.636459,548.734180,552.566085,553.402004,554.586222,556.234838,556.931437,558.301414,559.485632,560.460870,561.389668,563.450707,564.330893,564.374249,566.371165,567.137423,568.971800,571.340235,572.036834,573.383591,574.312389,577.330983,578.770621,580.999736,582.718013,583.970348,585.177786,586.547763,587.871301,589.427038,590.866675,591.911573,593.838829,595.533886,596.950303,597.461142,598.784680,600.758376,602.058693,603.544770,604.496788,606.029305,606.348217,607.718194,609.181051,609.970530,611.526267,613.337423,615.380779,615.676471,616.837469,618.207446,619.484543,620.784861,621.109940,622.781777,623.312752,624.775609,626.493886,626.935065,628.349783,629.766200,631.688830,632.756948,634.614545,635.123842,636.702799,638.885474,639.930372,641.996948,643.157946,644.806563,645.385520,646.151778,648.264794,648.891733,649.495452,650.447470,652.235406,653.699014,657.019467,658.226905,660.223821,661.872438,663.265635,664.891032,666.098470,667.538107,668.188266,669.767223,671.299740,672.623277,674.922052,677.290488,678.957699,680.652755,681.140374,681.581554,682.626452,683.782823,684.804501,686.058379,687.776656,689.959331,694.719422,697.900556,698.504275,699.456293,701.244229,702.219467,704.843322,706.352619,707.885136,709.371213,710.834071,711.855749,713.109626,714.688583,716.012120,717.474978,720.215837,720.887674 diff --git a/data/torah/labels/Emor-2.txt b/data/torah/labels/Emor-2.txt deleted file mode 100644 index e3fcdd3e6..000000000 --- a/data/torah/labels/Emor-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.788144,4.809822,5.317577,6.199936,7.244834,8.117940,8.498711,9.789777,10.973995,11.644289,14.500344,17.031319,18.052997,18.888915,19.371908,20.277487,21.624244,22.715582,23.923020,24.805378,25.896716,26.895174,27.359573,29.124289,29.635128,30.262067,31.515945,31.954040,33.068598,34.047932,34.953510,35.996866,37.181084,37.921038,38.710517,39.453555,40.544893,42.216730,42.936549,43.586707,44.260086,45.096004,46.071242,47.023261,47.998499,48.880857,49.693555,50.297274,51.388612,51.876231,52.433510,53.153329,54.848385,55.870063,56.659542,57.611560,58.401038,59.840676,60.537274,61.558952,62.557410,63.405936,65.054553,65.565392,66.238771,67.840948,68.955505,70.511242,71.904440,73.181537,74.296095,75.340993,75.570109,76.429247,77.311605,79.076322,79.772920,80.678499,81.885936,82.930834,83.813193,84.741991,85.949428,87.458725,88.596503,89.989700,91.290018,92.033056,93.217274,94.285392,95.562490,95.791605,97.625982,98.248295,100.268431,100.872149,102.961945,103.844304,104.703442,105.167841,105.818000,106.561038,107.629156,108.650834,109.115233,110.183351,112.458907,113.155505,114.246843,116.104440,117.613737,118.565755,118.929564,119.742263,120.322762,121.135460,121.855279,122.011651,122.824349,124.171106,126.284122,127.375460,127.746979,128.466798,129.442036,130.277954,130.788793,132.158771,132.646390,134.527206,136.199043,137.961040,138.355779,139.516777,140.228886,141.366663,141.877502,142.481221,143.456459,144.571017,146.173194,148.518409,149.307888,150.120586,151.072604,152.210382,154.160858,156.738273,157.318772,158.711970,159.617548,160.499906,161.033965,163.030881,163.773920,164.888478,165.724396,166.955053,167.419453,168.278591,169.602128,171.297185,172.295643,174.965938,177.171834,179.215190,180.887026,181.513965,182.721403,183.342174,185.083670,186.267888,188.380904,189.379362,190.377820,191.448730,192.142536,193.606644,194.721202,195.812540,196.509138,197.461156,198.366735,199.876032,200.433311,200.684104,201.610938,203.023152,203.835850,204.509229,205.438027,206.320385,207.156304,208.108322,208.592857,209.026326,210.303424,211.441202,212.224512,212.897891,213.594490,214.003197,214.859252,215.529546,216.620884,217.738905,218.296184,218.946343,220.107341,221.430878,222.568656,223.892193,224.403032,225.076411,226.585708,226.980447,227.886025,228.884483,229.790062,230.112057,231.528474,233.618270,234.082669,234.918588,236.009926,236.961944,238.053282,239.121400,240.235957,241.698815,242.836592,243.208112,244.438769,245.622987,246.412465,247.457363,249.641256,251.893592,252.799170,253.704748,254.656766,255.283705,256.166063,257.327061,258.827106,259.022118,261.265202,262.028376,262.837991,263.906109,264.718807,265.995905,266.483524,267.296222,268.712639,269.478898,270.454136,272.195633,273.124431,273.797809,274.355088,274.932503,275.745202,276.882979,279.251415,280.412413,280.992911,281.689510,282.595088,284.917084,285.567242,286.164794,286.977492,288.301029,289.345927,290.669465,291.215950,291.982208,293.607605,294.489964,295.279442,296.301120,297.554998,298.553456,299.435814,300.248512,300.968331,301.757809,302.570508,304.265564,305.612322,306.726880,307.446698,308.491596,309.466834,311.161891,312.183569,313.460667,314.691324,316.804340,319.521075,320.078354,321.494771,324.141846,324.675905,325.256403,326.301301,327.810598,329.180576,330.062934,330.968512,331.897311,332.547469,333.058308,333.628901,334.423660,336.463497,337.183316,337.787034,338.530073,339.760731,341.223588,342.454245,343.336604,344.520821,345.588939,345.937238,347.051796,348.561093,349.907851,350.488350,351.254608,352.067306,352.810345,353.669483,354.226762,355.085901,356.516551,357.886528,358.722447,359.906664,360.881903,362.182220,362.553739,363.761177,365.711653,366.594011,367.662129 diff --git a/data/torah/labels/Emor-3.txt b/data/torah/labels/Emor-3.txt deleted file mode 100644 index 586af3698..000000000 --- a/data/torah/labels/Emor-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.616193,3.753971,4.261726,4.981545,6.119323,7.257100,7.605400,9.300457,9.950615,11.854652,12.760230,13.201409,14.223087,15.430525,16.986261,18.147259,19.122497,20.608574,21.699912,23.464629,24.254107,25.159686,27.435241,28.642679,29.687577,30.778915,31.545173,32.450751,33.472429,34.517327,35.469345,36.282044,37.605581,39.138098,40.647395,42.574652,43.689209,45.848665,47.543722,49.076239,51.226943,51.888758,52.492477,53.328396,54.048214,55.348532,55.998690,56.602409,57.670527,58.529666,59.481684,61.896559,62.500278,63.429076,64.032795,64.984813,66.238690,67.399688,68.003407,69.094745,70.325402,71.602500,72.252659,73.320777,74.504994,75.317693,76.594790,77.291389,77.895108,78.638146,79.003498,80.025176,81.905992,82.532931,83.949348,84.645947,85.644405,86.085584,87.896740,88.662999,89.777557,90.915334,92.006672,92.865811,94.026808,94.723407,95.837965,98.345720,98.879779,99.808577,102.014473,102.548532,103.570210,104.893747,106.403044,107.355062,108.585720,109.700278,111.116695,112.579552,113.461910,114.669348,115.458827,116.805584,118.222001,119.359779,120.915516,122.122954,122.982092,123.887670,125.234427,126.906264,127.672523,128.972840,130.226718,130.714337,132.502273,133.361412,135.613747,136.240686,137.006944,138.284042,138.980641,139.770119,141.279416,142.811933,143.694291,145.041049,146.062727,147.037965,148.198963,149.429620,151.333656,152.401774,152.866173,153.585992,154.584450,155.490028,155.740822,156.469480,156.840999,157.560817,158.605715,159.697053,161.833289,162.669207,163.690885,164.712563,165.664582,166.941679,168.195557,169.472654,171.562450,172.816328,173.907666,175.324083,176.624400,177.019139,177.692518,179.271475,179.735874,180.432473,181.430931,182.708028,183.776146,184.983584,185.703402,186.841180,187.491339,188.396917,189.720455,191.508391,193.064128,194.062586,195.200364,196.175602,197.057960,198.102858,199.078096,199.565715,200.540953,201.539412,202.816509,204.232926,205.649344,207.460500,208.296418,209.410976,210.688074,211.732972,212.940409,213.451248,214.472926,215.564264,217.816600,219.000817,219.627756,220.951294,222.042631,223.110749,224.805806,226.082904,227.104582,228.567439,229.751656,230.703675,231.609253,232.816690,234.000908 diff --git a/data/torah/labels/Emor-4.txt b/data/torah/labels/Emor-4.txt deleted file mode 100644 index a985a3319..000000000 --- a/data/torah/labels/Emor-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.545986,3.683764,4.078503,4.867982,5.889660,8.165215,8.792154,9.558412,10.742630,12.484127,13.598684,15.386621,16.477959,17.220997,18.219455,19.148254,20.262811,21.330929,22.515147,23.165306,24.256644,25.649841,28.482675,29.341814,31.245850,32.476508,34.728843,35.773741,36.865079,37.677777,38.304716,39.001315,39.999773,40.742811,41.787709,42.925487,43.622086,44.736644,45.665442,47.662358,48.800136,50.425533,51.609750,52.724308,53.676326,54.512245,55.533923,56.462721,58.041678,59.225895,61.431791,62.824988,64.961224,66.099002,66.818821,67.933378,68.955056,70.487573,72.507709,73.181088,73.784807,75.015465,76.315782,76.965941,77.987619,78.939637,80.030975,80.890113,81.842131,82.794149,83.931927,85.139365,85.743084,86.439682,87.113061,87.902539,88.715238,89.458276,90.270975,90.944353,91.873152,93.452109,95.379365,96.540362,97.329841,98.142539,99.280317,100.441315,101.230793,101.950612,102.554331,103.320589,104.411927,105.178186,106.292743,107.918140,109.079138,109.706077,110.333016,111.308254,113.374830,113.908889,114.675147,115.929025,117.716961,118.738639,119.295918,120.271156,120.665895,122.384172,123.521950,124.357868,125.774285,126.819183,128.491020,128.885759,129.860997,131.672154,132.020453,133.761950,134.922948,136.292925,136.710884,137.709342,140.054557,140.419909,142.486485,143.438503,144.553061,146.085578,147.710975,148.988072,150.381270,151.728027,154.189342,155.048480,156.697097,157.161496,157.997415,159.088753,160.899909,161.294648,163.361224,164.591882,165.892199,168.260635,169.189433,170.838050,171.859728,172.974285,174.831882,176.155419,177.293197,178.059455,179.220453,180.776190,181.704988,182.865986,183.934104,185.907800,187.161678,188.578095,189.553333,191.573469,192.084308,192.780907,193.918684,194.870703,195.892381,198.005396,198.585895,199.468254,201.023991,202.045669,203.020907,205.482222,206.596780,208.547256,210.056553,211.147891,212.842948,213.980725,215.025623,217.138639,217.649478,218.415737,219.808934,220.946712,221.898730,222.920408,224.197505,225.103084,226.403401,227.378639,228.748616,230.048934,231.186712,231.999410,234.669705,235.644943,236.968480,238.268798,241.310612,243.307528,244.445306,246.302902,247.556780,248.833877,250.110975,251.550612,252.758050,253.895827,255.358684,256.635782,258.052199,259.398957,259.747256,261.511972,262.765850,263.810748,265.041406,266.318503,267.293741,269.313877,269.755056,271.589433,272.634331,273.563129,274.654467,275.815465,276.767483,277.951700,279.368118,280.854195,282.108072,282.665351,283.408390,284.522948,287.379002,288.214920,288.818639,289.793877,291.140635,293.369750,295.691746,296.550884,297.502902,298.524580,299.894557,301.380635,302.564852,305.745986,307.278503,308.253741,309.530839,310.529297,312.038594,313.292471,313.803310,314.616009,315.684127,318.006122,319.004580,320.188798,321.814195,324.252290,326.109886,327.178004,329.082040,329.797233,330.609932,331.770929,332.815827,333.489206,334.278684,335.416462,335.927301,336.995419,338.318957,340.594512,341.314331,342.753968,344.727664,347.769478,347.908798,348.687483,350.754059,351.374830,353.185986,354.254104,355.159682,356.483220,357.760317,358.898095,359.548254,360.709251,361.986349,362.868707,364.215465,365.399682,366.351700,367.280499 diff --git a/data/torah/labels/Emor-5.txt b/data/torah/labels/Emor-5.txt deleted file mode 100644 index 2f1910cef..000000000 --- a/data/torah/labels/Emor-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.320454,4.156372,4.806531,6.013968,9.032562,9.636281,10.518639,11.772517,12.979955,14.071293,16.184308,17.531066,19.551202,20.967619,21.919637,23.173515,24.520272,25.402630,25.983129,26.958367,27.675102,28.743220,29.927438,30.600816,31.692154,33.526531,34.432109,35.685986,37.357823,38.565261,38.983220,39.563719,40.399637,43.696871,45.043628,46.808345,48.805261,50.175238,51.939955,53.495692,55.097868,56.096327,56.723265,57.791383,59.138141,60.740317,61.111837,62.597914,64.269751,65.198549,66.545306,67.218685,68.310023,69.819320,71.096417,72.280635,73.116553,73.998912,75.276009,75.879728,77.156825,77.992744,79.850340,81.034558,82.288435,83.310113,84.633651,85.423129,85.980408,86.723447,87.930884,88.441723,89.370522,90.438639,91.112018,91.994376,93.619773,95.059410,95.895329,97.729705,98.983583,99.982041,100.492880,101.352018,102.652336,103.372154,104.254512,107.274216,107.785055,108.620973,109.503332,110.478570,111.268048,112.466234,113.418252,113.905871,114.950769,116.251087,117.040565,119.518491,120.400849,122.328106,123.507697,124.575815,125.086654,126.108332,127.594409,127.919489,129.219806,130.729103,131.634682,132.540260,134.142437,134.560396,135.233775,136.928831 diff --git a/data/torah/labels/Emor-6.txt b/data/torah/labels/Emor-6.txt deleted file mode 100644 index ccf22716c..000000000 --- a/data/torah/labels/Emor-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.113016,3.181134,3.715193,4.342132,5.294150,8.266304,8.707483,9.311202,10.611519,11.818957,13.119274,14.628571,16.625488,17.832925,19.110023,20.108481,21.942857,24.404172,25.472290,26.331429,27.910385,28.852108,30.013106,30.663265,31.615283,32.172562,33.054920,34.053378,34.749977,35.887755,37.606031,38.767029,40.044127,40.880045,41.971383,43.016281,46.801133,47.637052,49.099909,50.237687,51.584444,52.931201,54.045759,55.020997,56.646394,57.342993,57.796601,58.771839,59.886397,60.508710,61.785807,63.039685,64.572202,65.640320,66.336918,67.358596,68.449934,69.985636,70.987533,72.445764,74.024721,76.230617,78.371443,80.796780,81.934558,83.188436,83.742631,84.323129,85.646667,87.001524,88.092862,89.230640,90.368418,93.131592,94.478350,94.826649,95.709007,96.730685,97.171864,99.493860,100.283338,101.560436,102.930413,105.832907,107.899483,109.292681,109.942839,111.219937,113.658032,115.051229,115.464563,116.927420,117.995538,119.229370,119.326876,119.783565,120.851683,121.614858,122.682975,124.029733,125.167511,126.305288,127.512726,128.720164,129.974041,131.506558,133.108735,134.246513,136.591728,137.659846,138.333225,139.285243,140.748100,141.885878,143.255855,143.650595,144.393633,145.461751,146.436989,148.782205,150.964880,152.032998,153.402975,154.308554,155.376672,157.559347,158.511366,159.765243,160.694041,161.831819,162.807057,163.944835,165.012953,165.895311,168.658486,169.680164,170.934041,172.118259,173.116717,174.672454,175.740572,176.622930,177.598168,178.178667,179.246785,180.570322,181.940300,183.333497,186.050232,187.327329,189.324245,190.392363,192.528599,193.805697,194.177216,195.384654,196.615311,198.031728,199.215946,200.075084,201.375402,202.188100,203.325878,204.649415,206.971411,207.969869,208.341388,209.363066,210.500844,210.965243,211.917261 diff --git a/data/torah/labels/Emor-7.txt b/data/torah/labels/Emor-7.txt deleted file mode 100644 index dbf2e18c8..000000000 --- a/data/torah/labels/Emor-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.287949,3.588266,4.029445,4.842144,5.887041,7.961684,8.258917,9.118056,11.161412,12.503543,14.477239,15.452478,16.334836,18.238872,19.283770,20.444768,21.443226,22.441684,23.463362,25.437058,27.201775,28.734292,30.150709,32.008305,34.051661,35.259099,37.000595,39.276151,39.624450,41.458827,42.666264,43.850482,44.779280,45.893838,47.031616,49.283951,50.375289,52.000686,53.277784,54.578101,54.921775,56.082772,57.266990,58.451208,59.472886,62.013088,63.079271,64.927175,65.739873,67.133070,68.061869,69.013887,70.174884,71.382322,72.473660,73.495338,74.772435,76.281733,78.650168,80.089805,81.366903,82.226041,83.828218,85.953745,87.463042,88.995559,89.692158,90.853156,92.757192,93.337691,94.614788,96.031206,97.390982,98.762772,100.155969,101.595606,102.895924,104.173021,105.375833,107.488849,108.673066,110.948622,113.761740,115.038837,116.362375,117.314393,118.405731,118.963010,120.031128,121.006366,122.260243,123.607001,125.789676,127.020334,129.272669,130.364007,131.292806,134.613259,136.261876,137.794393,138.467772,140.069948,141.416706,142.879563,143.274302,144.481740,146.014257,146.396636,147.907956,149.231494,150.253172,150.833670,151.716029,152.668047,153.829045,154.618523,155.663421,157.312038,158.635575,159.657253,161.445190,162.420428,164.115484,166.507140,167.036573,168.127911,169.706868,170.256437,171.092355,172.578432,174.064509,175.086187,175.550586,176.432945,177.338523,179.915938,180.984056,181.448455,182.214713,183.143512,183.840110,185.674487,186.905144,188.135802,189.180700,189.668319,190.202378,191.573723,193.222340,194.290458,194.615537,195.358576,196.148054,197.750231,197.954585,200.160480,200.764199,201.460798,202.946875,205.501070,205.849369,208.519664,208.914403,210.098621,210.563020,211.631138,213.186875,214.301433,214.719392,215.903610,216.832408,217.598666,218.806104,219.758122,220.733360,221.708598,223.821614,224.425333,225.539891,226.700889,227.815446,228.883564,230.207102,230.741161,231.530639,232.877396,234.038394,235.152952,236.151410,236.635945,237.050821,238.304698,239.289279,240.659256,241.889913,242.470412,243.654630,245.837306,246.882204,247.819729,248.168029,248.864627,249.746986,250.559684,251.534922,252.928119,253.462178,254.460636,255.969933,256.875512,257.781090,258.779548,260.962224,261.635602,262.401861,263.191339,264.630976,266.372473,267.370931,268.137190,269.293562,270.059820,271.197598,272.544355,273.380274,274.262632,275.771929,276.561407,277.350886,278.233244,278.999503,280.253380,281.042859,281.762677,282.761135,283.620274,284.758051,285.501090,286.778187,287.683766,289.146623,290.330840,291.120319,292.211657,293.581634,294.301453,295.392791,296.530568,297.691566,298.829344,299.711702,301.987258,302.753516,303.937734,305.493471,306.886668,309.487303,309.858822,310.481135,312.060092,313.464174,313.662269,315.995149,316.408482,317.151521,318.591158,320.030795,321.215013,322.213471,323.095829,324.651566,325.835784,328.157779,329.109797,330.247575,331.360024 diff --git a/data/torah/labels/Emor-H.txt b/data/torah/labels/Emor-H.txt deleted file mode 100644 index 46fde5e03..000000000 --- a/data/torah/labels/Emor-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.856054,4.551111,5.665669,7.941224,8.893243,10.774059,11.377778,12.492336,13.839093,15.162630,15.743129,16.625488,17.763265,19.969161,21.106939,22.476916,24.473832,25.890249,28.165805,29.535782,30.069841,31.161179,32.484717,33.947574,35.108571,36.548209,38.591565,40.007982,40.425941,42.655057,45.139592,46.277370,46.625669,48.018866,50.039002,51.525079,52.012698,53.707755,56.447710,57.585488,58.096327,59.025125,60.604082,61.997279,63.204717,64.574694,66.246531,67.244989,68.243447,69.474104,70.519002,73.189297,75.766712,76.904490,78.274467,79.853424,81.896780,82.988118,84.553812,85.041431,85.993449,87.990365,89.058483,90.567780,91.241159,92.982655,93.934673,95.560070,97.115807,99.670002,100.413041,101.248959,103.129775,103.617394,104.569413,107.820206,108.238165,109.631363,110.973494,111.083426,113.660841,114.354356,115.213494,116.699571,117.558710,119.044787,120.043245,121.691862,123.015399,124.547916,125.941113,127.032451,127.752270,128.866828,129.308007,130.283245,132.001521,133.278619,134.021657,135.066555,136.622292,137.249231,138.781748,140.058846,141.614583,141.958256,143.421113,144.532447,144.784782,145.899340,146.244555,147.684193,148.984510,149.356029,150.215168,151.561925,152.931902,154.209000,154.859159,155.462877,156.554215,158.111429,158.970567,159.131565,161.174921,162.382359,163.195057,164.263175,165.772472,166.469071,167.421089,168.674966,170.114604,171.531021,172.459819,173.249298,174.317415,175.431973,176.337551,177.661089,178.450567,179.170386,180.401044,182.421180,183.071338,184.696735,185.811293,187.227710,188.620908,190.617824,192.823719,193.334558,194.309796,194.843855,195.865533,196.538912,197.723130,199.325307,199.859366,201.275783,203.040499,203.992517,204.828436,205.942994,206.686032,207.847030,209.495647,210.289449,210.607121,213.115096,214.747680,215.699698,217.274029,219.382522,221.611637,222.308236,222.582249,223.481660,224.712317,226.523474,228.334630,230.285107,231.237125,232.305243,233.419800,234.255719,236.090095,236.871864,237.124200,238.772816,239.210912,240.299166,241.645923,242.923020,244.246558,245.500435,247.102612,248.373275,249.231138,250.690912,252.118649,253.047447,254.324545,255.439102,257.459239,260.083093,260.849352,261.638830,262.614068,263.867946,264.936064,266.700780,268.186858,269.556835,270.926812,272.203910,273.736427,274.340146,275.013524,276.406721,277.126540,278.612617,280.493434,281.027492,281.943955,283.035293,283.708672,284.776790,286.541506,287.377424,289.652980,291.139057,292.766580,294.182997,295.738734,296.969392,298.107169,299.244947,300.336285,300.777464,302.054562,302.771296,303.723315,304.837872,305.348711,306.277510,306.741909,308.294562,308.918417,310.006671 diff --git a/data/torah/labels/Kedoshim-1.txt b/data/torah/labels/Kedoshim-1.txt deleted file mode 100644 index 48f0d601d..000000000 --- a/data/torah/labels/Kedoshim-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.536417,3.082184,3.461384,4.026584,5.100984,7.913384,8.162584,8.430373,9.805784,10.624773,12.267973,13.563573,14.479973,15.329573,16.403973,17.825973,18.679173,19.279573,19.911573,21.396773,22.471173,23.625501,24.385040,25.505040,26.057040,27.401040,28.521040,29.449040,29.905040,31.569040,32.137040,32.737040,33.105040,35.121040,36.433040,37.521040,38.193040,39.313040,40.049040,41.041040,41.681040,43.121040,44.981227,46.933227,47.893227,48.949227,49.973227,51.509227,53.141227,54.869227,56.917227,58.197227,59.637227,61.365227,61.549227,62.605227,63.981227,64.685227,66.189227,68.333227,69.261227,70.189227,71.053227,72.333227,73.245227,73.757227,74.093227,75.565227,76.797227,78.045227,79.229227,79.805227,80.285227,80.997227,81.781227,82.709227,85.109227,86.005227,86.773227,88.117227,89.545869,89.761869,90.721869,92.353869,93.929263,95.657263,96.553263,97.545263,98.505263,99.753263,100.905263,101.177263,102.681263,104.201263,105.001263,106.665263,107.737263,108.857263,109.233263,110.385263,112.209263,112.945263,114.065263,115.313263,116.201263,116.993263,118.561263,119.425263,120.689263,121.377263,122.721263,122.993263,124.081263,124.577263,126.977263,127.825263,128.849263,129.577263,130.921263,133.272953,133.688953,134.008953,134.984953,135.672953,136.984953,137.528953,138.322411,138.544494,139.568494,140.224494,141.344494,141.808494,143.824494,145.256494,146.792494,147.712494,147.920494,149.008494,150.152494,151.296494,152.416494,153.664494,154.912494,155.480494,156.376494,157.496494,158.816494,160.672494,161.208494 diff --git a/data/torah/labels/Kedoshim-2.txt b/data/torah/labels/Kedoshim-2.txt deleted file mode 100644 index f19d90045..000000000 --- a/data/torah/labels/Kedoshim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.184000,2.176000,3.040000,4.384000,5.152000,6.176000,7.296000,8.096000,9.024000,9.952000,10.656000,11.584000,12.832000,13.792000,15.296000,16.128000,17.504000,18.368000,19.712000,20.640000,21.600000,21.899829,22.304000,23.264000,24.437334,25.909334,26.533334,27.245334,27.410324,28.658324,30.066324,31.756248,32.844248,33.148248,34.684248,35.516248,36.444248,37.172248,38.548248,38.948248,40.388248,41.060248,42.084248,42.332248,43.565525,44.781525,46.333525,47.605525,49.045525,49.861525,51.461525,52.061525,55.293525,57.725525,59.421525,59.629525,61.021525,62.397525,63.789525,64.093525,65.101525,66.509525,67.981525,69.069525,70.637525,71.757525,72.685525,74.157525,78.029525,78.837525,79.605525,79.949525,82.189525,83.133525,85.405525,87.122688,88.338688,90.066688,91.506688,93.202688,94.263755,95.799755,96.591755,97.711755,98.559755,99.255755,100.119755,102.287755,104.239755,105.031755,106.039755,106.479755,106.879755,108.767755,110.639755,110.887222,112.021412,113.525412,114.061412,114.733412,115.621412,116.673660,117.433660,119.161660,121.913660,122.745660,125.369660,127.241660,128.337660,129.897660,131.273660,131.961660,133.161660,134.273660,135.521660,137.825660,138.737660,141.321660,142.777660 diff --git a/data/torah/labels/Kedoshim-3.txt b/data/torah/labels/Kedoshim-3.txt deleted file mode 100644 index da351bc63..000000000 --- a/data/torah/labels/Kedoshim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.024000,2.176000,2.544000,4.240000,5.680000,6.032000,6.928000,8.112000,9.552000,10.480000,10.776000,11.704000,12.952000,14.584000,15.672000,17.208000,18.456000,18.792000,20.232000,21.425717,22.625717,23.425717,23.873717,24.641717,25.889717,26.625717,27.873717,29.281717,31.329717,32.449717,32.721717,33.681717,34.673717,35.377717,36.497717,37.233717,38.001717,39.249717,39.953717,40.625717,41.057717,41.761717,42.433717,43.457717,44.097717,45.313717,46.555565,47.675565,48.411565,49.371565,50.843565,51.931565,52.475565,53.179565,54.427565,55.771565,57.595565,58.907565,59.707565,60.827565,62.587565,63.675565,64.299565,65.131565,65.835565,66.459565,67.547565,68.187565,68.987565,69.291565,70.123565,71.211565,72.187565,73.435565,74.331565,75.483565,76.187565,77.307565,77.867565,79.243565,80.331565,81.675565,82.571565,83.003565,84.091565,84.515565,85.635565,85.907565,86.803565,87.307565,88.571565,89.107565,89.795565,90.731565,91.659565,92.059565,92.715565,94.187565,95.517902,96.413902,97.277902,98.653902,99.165902,100.093902,101.245902,102.781902,103.389902 diff --git a/data/torah/labels/Kedoshim-4.txt b/data/torah/labels/Kedoshim-4.txt deleted file mode 100644 index c24295ca1..000000000 --- a/data/torah/labels/Kedoshim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.163996,2.283996,4.363996,5.259996,6.347996,7.115996,7.787996,8.875996,10.315996,12.171996,13.099996,14.891996,17.099996,18.203996,19.995996,21.243996,21.723996,22.907996,23.403996,24.139996,25.003996,25.739996,26.667996,27.403996,28.107996,29.803996,30.363996,31.227996,31.787996,32.907996,35.755996,37.003996,38.699996,40.299996,41.227996,41.915996,43.163996,44.923996,46.171996,47.163996,47.803996,48.363996,49.323996,50.123996,50.859996,52.619996,53.275996,54.107996,54.683996,55.515996,56.763996,58.491996,58.763996,59.003996,59.867996,60.163996,60.307996,61.651996,62.931996,63.923996,65.171996 diff --git a/data/torah/labels/Kedoshim-5.txt b/data/torah/labels/Kedoshim-5.txt deleted file mode 100644 index 52d9c7fb1..000000000 --- a/data/torah/labels/Kedoshim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.600000,2.432000,2.880000,3.448000,4.568000,5.384000,6.280000,9.512000,11.624000,12.584000,14.472000,15.528000,17.704000,18.568000,20.328000,21.336000,23.512000,24.568000,26.200000,27.992000,29.208000,30.040000,30.712000,31.704000,32.248000,33.272000,34.776000,36.664000,38.200000,38.536000,39.304000,40.232000,41.288000,42.760000,43.560000,44.296000,45.096000,46.600000,47.560000,48.648000,49.640000,51.528000,52.648000,52.816000,54.096000,55.440000,55.584000,55.952000,57.424000,60.912000,62.288000,64.368000,64.928000,66.752000,67.448000,68.408000,68.758720,69.846720,70.838720,71.894720,72.790720,73.718720,74.998720,75.766720,76.854720,78.001937,79.537937,79.945937,81.577937,82.409937,83.081937,84.521937,86.217937,88.137937,90.345937,90.721937,91.777937,93.505937,95.329937,96.449937,97.377937,98.369937,99.617937,102.369937,103.617937,104.865937,105.297937,106.289937,106.945937,108.481937,109.505937,110.625937,112.897937,113.201937,113.969937,114.769937,115.921937,117.169937,117.905937,118.769937,119.793937,121.969937,123.345937,124.273937,125.809937,126.769937,127.857937 diff --git a/data/torah/labels/Kedoshim-6.txt b/data/torah/labels/Kedoshim-6.txt deleted file mode 100644 index a67a59c16..000000000 --- a/data/torah/labels/Kedoshim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.967768,2.207768,3.455768,4.735768,5.567768,6.431768,7.103768,8.799768,9.391768,10.063768,11.567768,12.463768,14.191768,14.503768,15.943768,16.679768,17.223768,17.863768,18.567768,20.327768,22.056107,22.931750,23.731750,24.563750,26.483750,27.859750,28.691750,28.931750,29.763750,30.435750,31.459750,32.195750,32.403750,33.107750,33.971750,34.475750,34.987750,35.819750,37.259750,39.243750,40.683750,41.547750,41.795750,42.571750,43.627750,44.347750,45.019750,45.979750,46.635750,47.531750,48.347750,49.179750,50.107750,51.995750,53.435750,54.171750,54.411750,55.531750,56.155750,56.923750,57.819750,58.747750,59.387750,60.283750,61.147750,63.067750,64.027750,65.371750,65.611750,66.411750,67.339750,68.523750,69.515750,70.219750,71.083750,71.979750,72.779750,73.339750,74.363750,76.123750,76.987750,78.523750,78.859750,80.331750,81.099750,81.739750,82.555750,83.195750,85.627750,87.363750,88.123750,89.291750,89.899750,90.459750,91.259750,92.795750,95.483750,96.555750,97.995750,99.787750,101.035750,101.475750,102.115750,102.771750,103.635750,105.075750,107.091750,108.051750,108.883750,109.379750,109.731750,110.419750,111.811750,112.643750,113.987750,114.171750,114.891750,115.259750,116.219750,116.915750,117.491750,118.419750,119.251750,120.600393,121.000393,121.832393,122.400393,126.138179,126.570179,127.466179,128.034179,128.506179,131.034179,132.058179,132.218179,134.490179,135.530179,136.874179,137.130179,138.058179,138.874179,139.770179,141.258179,142.282179,142.810179,143.610179,145.362179,147.042179,147.858179,148.754179,149.714179,152.626179,153.426179,153.946179,154.162179,156.122179,158.042179,159.386179,159.722179,160.682179,160.954179,162.154179,163.178179,165.706179,166.618179,166.826179,167.514179,168.570179,169.546179,170.410179,171.242179,172.234179,173.356821,174.956821,176.492821,177.644821,178.460821,178.860821,179.756821,181.132821,181.348821,183.044821,184.029750,184.893750,186.077750,187.845339,189.125339,190.085339,190.229339,191.989339,192.885339,193.525339,194.197339,195.349339,195.989339,197.013339,198.293339,200.245339,201.389339,202.605339,203.229339,203.821339,204.501339,205.189339,205.893339,207.045339,208.325339,209.045339,209.877339,210.997339,213.533821,213.805821,214.013821,214.941821,215.149821,215.421821,216.733821,217.709821,218.669821,219.269821,220.613821,221.269821,222.197821,223.245821,225.005821,226.093821,227.770071,229.025589,230.337589 diff --git a/data/torah/labels/Kedoshim-7.txt b/data/torah/labels/Kedoshim-7.txt deleted file mode 100644 index 11492833a..000000000 --- a/data/torah/labels/Kedoshim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.948603,2.748603,3.772603,4.892603,5.612603,6.068603,6.932603,8.244603,9.524603,9.956603,10.132603,10.900603,11.732603,12.980603,13.940603,15.220603,16.916603,19.508603,20.324603,20.572603,22.588603,25.064877,26.643575,27.379575,28.307575,29.235575,30.771575,31.635575,32.227575,33.379575,34.091575,35.147575,36.395575,37.059575,37.875938,38.547938,38.915938,40.195938,43.075938,43.699938,45.331938,46.387938,47.763938,48.579938,49.123938,50.035938,51.187938,52.043938,53.307938,53.643938,55.947938,57.379938,59.267938,60.547938,61.619938,63.051938,64.203938,65.099938,65.963938,66.955938,68.427938,70.160815,70.704815,71.920815,72.616815,73.352815,73.848815,74.808815,76.200815,78.016815,78.480815,79.152815,79.872815,80.896815,82.096815,82.368815,83.744815,84.496815,85.168815,86.160815,87.376815,88.072815,89.160815,89.536815,90.688815,92.448815,93.312815,94.400815,96.192815 diff --git a/data/torah/labels/Kedoshim-h.txt b/data/torah/labels/Kedoshim-h.txt deleted file mode 100644 index 2eebdd967..000000000 --- a/data/torah/labels/Kedoshim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.392000,4.408000,5.880000,6.840000,8.280000,9.176000,10.488000,11.000000,13.176000,14.360000,14.744000,16.888000,18.520000,19.832000,21.080000,22.968000,23.928000,24.680000,26.088000,28.712000,30.952000,32.072000,34.088000,35.976000,37.192000,39.789533,40.877533,42.189533,42.653533,44.989533,47.037533,49.437533,50.317533,51.597533,53.389533,53.901533,54.173533,55.453533,55.885533,57.453533,57.789533,58.685533,59.613533,60.797533,62.738480,63.346480,64.114480,64.418480,64.722480,66.738480,68.082480,68.722480,70.258480,70.930480,71.602480,72.370480,73.618480,75.570480,76.594480,77.362480,78.202480,79.962480,82.778480,83.514480,85.018480,86.938480,88.506480,90.266480,91.966143,92.958143,94.846143,95.126143,95.686143,96.742143,98.758143,100.390143,100.790143,103.286143,105.334143,106.454143,107.958143,108.686143,110.094143,111.134143,113.150143,113.878143,115.014143,116.006143,116.350143,117.534143,118.334143,119.038143,119.742143,121.982143,122.750143,123.998143,124.798143,125.950143,127.006143,128.030143,128.766143,129.134143,130.286143,131.758143,132.654143,133.998143,135.310143,136.430143,137.582143,139.502143,140.622143,141.934143,143.086143,143.790143,145.230143,147.438143,151.200225,151.648225,152.288225,152.752225,154.800225,157.680225,158.896225,159.856225,161.104225,163.280225,164.464225,165.904225,166.256225,167.920225,169.768673,170.856673,172.520673,172.648673,174.536673,176.216673,176.432673,178.416673,179.408673,181.520673,183.888673,185.008673,186.032673,187.664673,189.200673,190.480673,191.952673,192.672673 diff --git a/data/torah/labels/Ki Tavo-1.txt b/data/torah/labels/Ki Tavo-1.txt deleted file mode 100644 index ec74715d2..000000000 --- a/data/torah/labels/Ki Tavo-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.623855,2.783311,4.362268,4.611519,5.818957,7.305034,8.883991,10.323628,11.275646,11.995465,13.481542,15.130159,16.399546,17.490884,20.672018,22.785034,23.226213,23.829932,26.175147,27.475465,29.449161,31.678277,33.117914,35.416689,37.390385,38.295964,38.946122,40.269660,41.268118,43.311474,43.562268,44.630385,46.046803,47.207800,48.972517,50.365714,51.526712,52.594830,53.709388,55.358005,55.517460,56.910658,57.769796,58.652154,59.697052,60.440091,61.969524,63.943220,65.446757,66.538095,68.024172,69.463809,70.261088,71.166667,71.538186,72.722404,74.185261,76.251837,78.016553,79.874150,80.942267,82.358685,84.750340,86.979456,88.094014,89.580091,91.994966,94.107982,95.338639,96.406757,97.985714,99.820091,102.234966,104.394422,105.834059,108.063175,109.781451,111.360408,112.544626,114.286122,115.679320,116.979637,117.606576,118.721134,119.626712,120.857370,122.134467,123.063265,123.875964,124.735102,126.081859,128.496735,130.122131,131.376009,132.792426,134.301723,135.323401,136.205760,137.436417,139.851292,140.362131,141.523129,142.382267,143.775465,145.284762,146.817279,147.119138,148.303356,150.460087,150.790619,152.996514,154.087852,155.341730,156.131208,158.174564,160.543000,161.912977,163.445494,165.070891,166.371208,168.228805,169.552342,171.108079,172.036877,173.731934,176.262909,178.166945,178.724224,180.187081,181.046220,182.509077,183.228895,183.809394,185.550891,186.758328,188.755245,189.800143,190.868260,192.679417,195.837331,197.462728,198.925585,199.552524,200.713521,202.199598,203.917875,204.614474,205.961231,206.583544,207.953521,211.038691,212.455109,214.382365,215.961322,219.096016,220.257013,221.464451,223.461367,225.760143,226.510883,228.670339,231.015554,232.153332,233.987708,235.357686,236.681223,238.538819,240.048116,242.119593,244.250928,245.388706 diff --git a/data/torah/labels/Ki Tavo-2.txt b/data/torah/labels/Ki Tavo-2.txt deleted file mode 100644 index fd0370366..000000000 --- a/data/torah/labels/Ki Tavo-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,4.597551,8.521723,9.218322,9.729161,12.051156,14.675011,15.975329,17.089887,18.181224,19.527982,21.492426,23.837642,25.254059,27.111655,29.247891,30.594649,32.057506,34.286621,40.323810,43.272744,44.851701,47.173696,49.774331,51.097868,51.608707,53.837823,55.509660,57.460136,58.992653,60.780590,62.847166,65.145941,65.912200,67.467937,68.837914,70.184671,71.113469,72.042268,73.876644,74.944762,76.872018,77.940136,79.170794,81.585669,84.023764,85.416961,86.647619,87.971156,89.712653,91.082630,92.081088,93.218866,94.913923,97.746757,99.139955,101.183311,102.878367,105.664762,106.895420,107.963537,109.960454,113.260911,114.561229,116.952884,117.603043,120.668077,122.572113,123.129392,124.383270,124.750163,126.445220,127.861637,129.672793,130.764131,132.127941,133.288939,135.146535,136.609392,138.884948,140.974743,142.135741,143.900458 diff --git a/data/torah/labels/Ki Tavo-3.txt b/data/torah/labels/Ki Tavo-3.txt deleted file mode 100644 index 96ef19df1..000000000 --- a/data/torah/labels/Ki Tavo-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.834376,4.249252,5.688889,8.010884,11.006259,13.374694,13.955193,14.976871,16.114649,16.764807,18.645624,20.874739,22.476916,23.707574,24.752472,25.983129,27.074467,28.792744,29.489342,30.580680,32.229297,33.274195,36.246349,37.221587,39.264943,40.913560,43.769615,45.580771,47.833107,51.014240,52.825397,54.265034,55.936871,58.839365,60.696961,62.577778,63.854875,64.574694,66.269751,67.941587,69.474104,70.472562,71.145941,72.469478,73.073197,75.186213,77.067029,79.110385,79.969524,81.082540,82.545397,84.356553,85.656871,87.769887,88.768345,90.300862,93.621315,94.248254,96.291610,97.661587,99.286984,100.935601 diff --git a/data/torah/labels/Ki Tavo-4.txt b/data/torah/labels/Ki Tavo-4.txt deleted file mode 100644 index adb9523cf..000000000 --- a/data/torah/labels/Ki Tavo-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.925714,4.295692,6.246168,7.685805,8.312744,9.334422,10.402540,12.004717,12.325170,12.766349,14.252426,16.713741,18.896417,20.219955,21.264853,22.983129,25.676644,28.904218,30.181315,31.551293,32.062132,34.453787,35.266485,37.193741,38.168980,39.144218,40.653515,41.814512,42.859410,45.901224,47.294422,49.244898,50.777415,52.588571,53.703129,55.676825,57.878095,60.362630,60.850249,61.500408,63.241905,64.472562,65.656780,67.444717,73.133605,75.966440,77.057778,77.498957,79.449433,80.819410,81.887528,84.116644,85.184762,87.390658,88.551655,90.339592,91.756009,93.265306,94.844263,96.771519,98.141497,99.302494,100.881451,102.413968,106.515616,108.141013,108.651852,110.997067,114.224641,114.944460,116.523417,118.798972,120.122510,122.514165,124.018836,126.062192,127.292850,128.268088,129.638065,131.263462,132.261920,133.910537,135.814573,136.557612,137.811489,139.529766,141.015843,143.012759,144.452396,145.056115,145.775934,147.076251,148.701648,150.652124,151.813122,153.020559,153.949358,154.924596,155.969494,157.385911,159.568587,160.613485,161.820922,163.492759,165.280696,167.161512,168.299290,169.971126,170.807045,173.523779,174.545457,175.892215,177.749811,179.723507,179.952623,182.440088,183.070355,183.488315,185.322691,186.599788,187.528587,188.527045,190.106002,192.962056,194.076614,196.352169,198.116886,198.720605,199.065820,200.180378,201.202056,202.920333,204.127770,205.613847,207.192804,208.168042,210.138655,211.415752,212.925049,214.782646,218.195979,219.356977,220.468451,222.047408,223.812124,224.226999,225.805956,226.451489,227.682147,230.027362,231.420559,233.231716 diff --git a/data/torah/labels/Ki Tavo-5.txt b/data/torah/labels/Ki Tavo-5.txt deleted file mode 100644 index 241c1d01d..000000000 --- a/data/torah/labels/Ki Tavo-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.157914,4.295692,4.760091,5.944308,7.105306,8.103764,9.938141,12.469116,15.092971,16.788027,17.182766,18.111565,18.692063,19.783401,21.339138,23.057415,23.498594,24.775692,26.215329,28.049705,29.396463,31.207619,32.066757,34.551293,36.850068,38.127166,38.568345,39.822222,40.658141,41.842358,43.165896,44.293698,45.594016,47.056873,47.799912,49.750388,51.120365,53.140501,55.392837,55.880456,56.086351,56.547667,57.894424,58.544583,59.752020,61.005898,65.371249,66.369707,68.993562,69.899141,72.081816,73.289254,75.680909,77.956465,78.908483,79.930161,80.975059,82.391476,84.759912,85.293970,86.896147,88.359004,90.263041,92.427726,93.472624,94.215663,95.423100,96.630538,97.094937,97.954075,99.579472,101.576388,102.737386,103.433985,104.664642,105.848860,106.054756,106.983554,108.330311,110.605867,111.557885,112.417023,113.601241,114.739019,115.087318,115.946456,117.316434,119.429449,121.449585,122.285504,122.866003,123.771581,125.327318,126.441876,126.790175,127.509994,128.903191,131.039427,132.316524,132.873803,133.849041,135.010039,135.892397,136.588996,137.192715,138.191173,139.305731,139.700470,140.373848,141.720606,143.833622,144.924960,145.366139,145.734574,146.895572,147.847590,148.265549,148.938928,150.216025,152.449740,153.657178,153.982257,155.120035,155.746974,156.629332,156.928108,157.485387,158.344525,159.389423,159.736180,160.548879,161.918856,163.938992,165.123210,165.610829,166.748607,167.839944,168.211464,168.884842,170.254820,172.182076,173.250194,173.993232,175.525749,176.988607,177.336906,178.149604,179.473142,180.959219,182.607836,183.513414,184.674411,185.440670,186.067609,187.158947,188.366384,188.691464,189.411282,190.734820,193.172915,195.030511,195.587790,197.189967,197.793686,198.487201,199.439219,200.179173,201.433051,202.268969,203.337087,203.708607,204.405205,206.007382,208.665015,209.172770,210.356988,211.448326,212.632543,214.397260,215.767237,217.206874,218.391092,219.041251,219.363246,220.733224,222.683700,223.891138,225.121795,226.143473,228.813768,230.462385,231.948462,233.295219,234.363337,234.920616,235.570775,237.126512,239.791775,241.626151,242.206650,243.065788,244.157126,245.991503,247.268600,248.522478,249.683475,250.798033,252.121571,253.259348,254.118487,255.070505,256.138623,256.904881,258.390958,260.550414,261.084473,262.849190,263.824428,264.938986,265.798124,267.028782,268.166559,269.373997,270.697534,272.369371,273.639382,274.870039,277.075935,278.027953,278.770992,280.001649,281.000107,282.370085 diff --git a/data/torah/labels/Ki Tavo-6.txt b/data/torah/labels/Ki Tavo-6.txt deleted file mode 100644 index c9cd31fca..000000000 --- a/data/torah/labels/Ki Tavo-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,3.831293,4.153288,5.476825,7.079002,8.518639,9.958277,11.328254,12.651791,13.650249,15.345306,16.668844,18.108481,19.153379,20.360816,21.823673,23.193651,24.749388,25.654966,26.021859,27.275737,30.035828,31.336145,32.497143,33.515737,36.302132,38.275828,39.042086,39.970884,41.294422,42.269660,43.360998,44.939955,46.263492,46.867211,48.399728,49.514286,50.744943,51.627302,52.138141,53.206259,55.017415,55.574694,56.549932,58.244989,59.754286,61.495782,63.492698,65.094875,65.675374,66.929252,68.113469,70.063946,70.830204,71.875102,72.687800,74.150658,75.613515,77.207982,79.320998,80.667755,82.177052,84.499048,86.565624,87.610522,89.143039,90.187937,91.790113,92.788571,94.158549,95.389206,97.455782,99.406259,101.008435,101.774694,102.842812,104.723628,105.907846,109.344399,109.762358,110.876916,112.409433,112.897052,115.451247,116.774785,117.448163,118.539501,119.979138,122.301134,122.811973,123.601451,124.739229,125.784127,128.013243,129.174240,130.544218,131.705215,132.216054,133.562812,135.319964,136.782821,137.850939,139.360236,140.776654,142.587810,143.772028,144.909806,145.954704,146.883502,148.067719,148.787538,150.552255,151.039874,152.618831,153.756608,155.985724,157.378921,159.598984,161.944200,163.035538,164.103655,165.868372,167.006150,168.863746,169.676445,170.883882,172.021660,173.902476,175.058848,176.637805,177.798803,178.634721,179.726059,181.931955,184.114631,185.205968,186.459846,188.456762,190.871637,191.312816,192.009415,192.845333,193.518712,194.772590,195.724608,196.769506,197.628644,198.046603,198.298939,199.343837,200.481615,202.379483,203.285061,204.237079,205.096218,206.768055,208.161252,208.509551,209.182930,209.925968,211.690685,212.271184,212.944562,213.734041,214.407420,214.961615,216.076172,216.610231,217.794449,219.257306,219.907465,219.997261,220.984925,221.494222,222.539120,223.212499,224.001977,224.977216,226.091773,226.715628,227.294585,228.153723,228.910730,229.514449,230.791547,232.277624,233.020662,234.762159,235.271456,236.386014,236.755991,237.893769,238.381388,239.403066,239.937125,240.581462,241.510260,242.137199,242.996338,243.412755,244.666632,245.154251,246.315249,247.847766,249.380283,250.100102,251.493299,252.259557,253.556451,255.065748,256.435725,257.271026,257.601277,258.274656,259.061051,260.222048,261.011527,261.940325,262.962003,263.519282,264.192661,264.421776,265.048715,266.395472,267.437286,269.480642,270.897060,273.102955,275.006992,276.536425,277.581323,279.206720,281.017876,282.411073,282.921912,284.454429,285.937422,287.353840,288.027218,288.302774,289.185132,290.021051,291.019509,291.366266,292.387944,293.363182,294.988579,296.451436,296.892615,297.208628,298.021326,298.741145,299.809263,300.434660,301.340238,302.594115,303.662233,304.265952,305.357290,306.471848,307.818605,310.163821,310.883639,312.671576,313.971893,315.040011,316.526088,317.454886,320.055521,320.728900,321.518378,322.354297,323.793934,324.931712,325.558651,326.557109,327.555567,328.971984,330.086542,331.154660,331.804818,332.239204,333.447082,335.812433,336.810891,338.598828,339.922365,340.801640,342.101957,343.671662,344.461141,346.236293,347.838470,349.278107,350.253345,350.459240,351.434479,353.106315,354.104773,355.381871,356.705408,358.818424,360.350941,361.233299,363.137336,364.155930,366.477925,367.569263,368.451621,369.589399,370.703957,371.493435,372.306134,372.558470,373.858787,375.925363,376.386678,377.965635,379.730352,380.286706,381.308384,382.117999,383.302216,384.065391,385.830107,386.805346,387.594824,389.173781,390.102579,391.031377,391.611876,392.633554,393.539132,394.351831,395.280629,395.837908,397.277545,399.251241,400.133600,401.712556,402.664575,404.429291,406.217228,407.563985,408.655323,409.839541,410.512919,411.279178,411.906117,413.299314,414.529971,415.760629,416.268384,416.964983,418.028475,419.143033,420.605890,421.674008,422.463486,423.136865,424.739042,425.458860,426.201899,427.037817,427.409337,428.198815,429.034733,429.592012,430.660130,431.739554,432.691572,433.666810,435.129667,436.012025,436.499644,437.126583,437.753522,438.380461,440.214837,441.654474,442.397513,443.117331,443.581730,444.556968,446.461005,447.250483,448.129758,449.104996,449.755154,450.683953,451.728851,453.145268,454.236606,455.420823,456.117422,456.930120,457.649939,458.880597,459.670075,460.064814,460.622093,461.458012,462.549349,463.408488,464.174746,465.614383,466.427082,468.052479,469.956515,470.815653,471.976651,472.859009,473.602048,474.577286,475.111345,476.318783,477.050866,477.547720,478.188643,479.140662,480.673179,482.066376,483.317170,484.245968,485.081886,485.569505,486.614403,488.437711,489.505829,490.643607,491.874264,492.779842,493.964060,494.753538,495.937756,496.704015,497.888232,498.700931,499.234990,500.414582,501.134400,502.039978,503.247416,503.874355,504.803153,506.289230,507.098845,507.772223,509.374400,510.837257,511.371316,512.114355,512.694854,513.809411,514.413130,514.967325,516.267643,518.914718,519.680976,520.307915,520.888414,521.817212,522.838890,523.558709,524.533947,525.021566,525.764604,526.693402,527.428577,528.148396,529.100414,530.191752,531.027670,531.631389,532.165448,532.862046,533.651525,534.185584,535.044722,535.834201,537.204178,538.481275,540.733611,541.383770,542.498328,543.659325,544.564904,545.307942,546.329620,547.235198,548.349756,548.907035,549.998373,550.973611,551.995289,552.900867,553.945765,554.479824,555.756922,556.476740,557.126899,558.032477,558.938055,559.632740,560.656332,561.671012,563.110649,563.598268,564.527067,565.757724,566.941942,568.288699,569.054958,570.099856,570.703575,571.002350,572.441987,573.324346,574.644799,575.620037,577.268654,578.313552,579.381670,579.985389,580.960627,582.237724,582.841443,583.723801,585.116999,586.695956,587.067475,587.903393,589.505570,590.596908,590.824482,591.706840,592.030377,593.191375,594.236273,595.397271,596.395729,597.161987,598.160445,598.903484,600.760289,600.967727,602.593124,603.521922,605.727817,606.656616,607.492534,609.350130,611.138067,612.299065,613.622602,614.226321,616.313033,616.939972,617.891990,618.263509,619.470947,620.051446,621.049904,622.001922,623.255799,625.740334,626.854892,627.714031,628.735709,630.361105,631.266684,632.404461,633.286820,634.819337,636.514393,637.280652,637.532988,638.392126,639.947863,640.643610,641.221876,642.013587,642.956354,643.281433,644.233451,644.953270,646.276807,647.321705,647.786104,648.668463,651.955102,652.698141,653.841000,654.421499,656.471961,657.104220,658.907667,659.813245,660.017599,661.341136,663.314832,664.731249,665.915467,667.053245,667.773064,668.748302,669.955739,671.023857,671.650796,673.601272,674.576510,676.828846,678.082723,678.941862,680.729798,681.496057,682.633834,683.864492,685.234469,687.115286,687.904764,689.042542,689.923358,690.619957,691.107576,692.268574,693.592111,694.265490,695.008528,696.123086,697.121544,698.282542,699.188120,700.534878,701.347576,702.369254,703.228392,704.807349,705.036465,706.753590,708.185127,708.997825,710.112383,710.971522,711.361635,712.029707,712.824258,714.008476,715.219088,716.287206,717.099904,717.609201,718.259360,719.397138,720.628880,721.557678,722.347157,724.181533,724.854912,726.364209,727.082019,728.034037,729.148595,730.051089,731.281747,731.908685,732.441202,733.486100,735.018617,735.993855,737.317393,738.849910,739.755488,740.730726,741.678118,742.459887,743.156486,743.641021,744.311316,745.565193,746.726191,747.538889,748.370182,749.740159,750.994037,751.713855,753.246372,754.523470,755.777348,758.145783,758.981701,759.537438,760.347053,760.644286,761.526645,762.617982,763.381157,764.333175,765.912132,767.258889,768.559207,769.253098,770.159842,771.108776,772.664513,774.127370,777.192404,779.000477,779.833311,781.598028,783.014445,783.966463,784.988141,786.172359,787.310137,788.122835,788.584150,789.652268,790.766826,791.904604,792.717302,793.286638,794.726275,795.747953,797.326910,797.930629,798.146343,799.585981,801.397137,801.928112,802.203668,802.993146,804.130924,804.943622,806.034960,806.912693,807.702171,810.442126,810.925119,812.573736,813.731650,814.677500,815.324575,815.832330,816.524303,817.731740,818.823078,819.446933,819.789065,821.041400,821.824988,822.590807,823.589265,824.493301,825.210036,826.788993,828.739469,829.691487,831.177564,832.103278,833.635795,834.332394,834.724049,835.629627,836.511986,837.231804,837.996521,838.733392,839.795342,840.512076,841.465649,841.765966,842.603427,843.247418,844.129776,845.032270,845.680887,846.470366,847.445604,848.351182,848.978121,849.990547,850.849685,851.615944,852.242883,854.087377,856.246833,856.966652,857.802570,858.754588,859.451187,860.379985,861.180560,862.164838,862.897295,863.288950,863.985549,864.911263,865.744098,866.437613,867.621830,870.422046,871.188452,871.524589,872.968678,874.756615,875.589449,877.377386,878.399064,879.676161,880.256660,880.860379,881.649857,883.135935,883.945940,884.635980,885.512170,886.069449,887.625186,888.437885,889.482783,890.132941,890.518429,890.643780,891.201059,892.222737,894.080334,894.869812,895.377567,896.883780,897.789359,898.227454,898.642329,899.362148,900.337386,901.515436,902.653213,903.532488,904.948905,906.574302,907.060379,908.427272,909.075889,910.329767,910.907182,912.114619,913.350236,914.268233,915.183070,915.995768,916.762027,917.412186,918.015904,918.707877,919.822435,922.515950,923.700167,924.582526,925.163025,926.207923,927.067061,928.065519,928.805474,929.779170,930.684748,931.845746,932.797764,933.703342,934.330281,935.073319,938.231233,939.206471,940.321029,941.087288,941.667787,943.174000,944.334997,944.977446,945.262461,946.156799,946.946277,947.944735,948.687774,949.173851,949.680064,950.515982,951.370495,952.299293,953.158431,954.017570,955.573306,956.734304,957.242059,958.286957,959.598403,960.666521,962.895637,964.753233,965.960671,966.375546,967.579900,968.414276,968.993233,969.641850,970.010285,971.284299,973.211555,974.674412,976.578448,977.646566,978.923664,979.666702,980.874140,983.683755,984.496453,985.982530,986.818448,988.443845,989.371101,989.646657,991.388154,993.059990,993.524389,994.012008,995.030603,995.816997,996.699355,998.185433,999.137451,999.880489,1000.527564,1001.595682 diff --git a/data/torah/labels/Ki Tavo-7.txt b/data/torah/labels/Ki Tavo-7.txt deleted file mode 100644 index 61211c46e..000000000 --- a/data/torah/labels/Ki Tavo-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.670295,4.272472,4.685805,4.986122,6.054240,7.006259,8.306576,9.212154,12.021769,12.648707,13.252426,16.178141,17.524898,19.103855,20.729252,22.470748,23.910385,25.164263,25.953741,27.370159,28.229297,29.924354,31.712290,33.268027,34.243265,35.125624,36.472381,38.933696,41.812971,44.111746,45.504943,46.573061,49.521995,51.124172,52.378050,53.167528,54.630385,56.000363,56.929161,58.438458,59.529796,60.481814,61.387392,62.966349,64.197007,66.077823,67.122721,68.074739,69.351837,70.187755,71.371973,73.276009,75.133605,76.782222,77.316281,78.314739,79.243537,80.822494,82.169252,83.423129,84.769887,85.954104,87.347302,88.113560,89.529977,91.271474,92.386032,94.166167,95.116735,96.393832,98.390748,100.268481,100.918639,102.172517,103.263855,105.748390,106.561088,107.420227,111.297959,112.458957,113.294875,115.477551,117.869206,120.079308,122.331644,124.073141,124.514320,125.791417,127.811553,129.599490,130.853367,132.989603,134.823980,135.590238,137.749694,140.187789,140.675408,141.882846,143.322483,144.483481,146.155318,147.084116,149.034592,150.311689,151.519127,152.169286,153.167744 diff --git a/data/torah/labels/Ki Tavo-H.txt b/data/torah/labels/Ki Tavo-H.txt deleted file mode 100644 index 95fe64208..000000000 --- a/data/torah/labels/Ki Tavo-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.586697,3.922640,4.473772,4.993651,6.947997,7.876795,10.256841,11.301738,13.778534,14.742177,15.670975,16.657823,17.934921,18.766969,21.746863,23.952200,25.531156,27.316155,28.709206,31.379501,32.261859,35.257234,36.275828,38.621043,40.826939,43.195374,44.396463,47.043537,47.898050,49.105488,50.196825,51.311383,53.842358,54.933696,55.676735,57.232472,58.556009,60.367166,61.597823,64.360998,64.848617,65.475556,68.703129,69.608707,70.909025,72.650522,73.579320,75.947755,78.385850,78.873469,80.289887,81.450884,83.285261,84.283719,85.142857,87.093333,88.115011,90.088707,91.272925,93.246621,96.218776,97.495873,98.517551,99.933968,102.302404,103.393741,105.228118,106.667755,108.060952,109.129070,110.545488,113.030023,116.048617,116.838095,117.743673,118.811791,120.948027,121.714286,122.666304,125.197279,127.565714,128.866032,129.304127,130.279365,131.649342,132.531701,134.876916,137.732971,138.449705,140.284082,141.259320,143.418776,146.228390,146.716009,150.175782,150.779501,151.545760,152.520998,155.005533,156.793469,157.745488,160.555102,162.017959,162.969977,164.316735,165.869388,168.583039,170.626395,171.903492,173.784308,175.038186,176.222404,178.405079,179.032018,181.609433,183.021237,183.555296,184.298335,185.761192,188.245727,190.637383,191.333981,192.796838,194.190036,197.301510,200.180784,201.782961,203.942417,205.939333,206.752031,208.702507,209.422326,211.488902,212.951759,214.019877,215.622054,216.968811,220.219605,223.632938,224.770716,226.512213,228.927088,229.902326,230.413165,232.410081,234.337337,237.239832,238.098970,241.164004,242.441101,243.857519,245.552575,246.713573,248.640829,249.569627,251.729083,253.633120,254.933437,256.698154,258.044911,259.322008,260.877745,263.710580,265.498516,266.682734,267.866952,269.353029,270.723006,273.505219,274.082190,274.732349,277.472303,278.145682,280.537337,281.949129,282.785047,284.178244,285.455342,288.172076,289.240194,292.142689,293.814525,296.066861,297.297519,299.851714,300.757292,302.777428,304.472485,306.215872,307.811532,310.087088,310.899786,313.384321,315.218698,317.169174,318.562371,319.793029,321.906045,324.088720,326.967995,327.571714,328.454072,329.336430,330.776067,333.562462,334.444820,337.300875,338.067133,340.342689,341.341147,343.338063,344.638380,345.752938,347.192575,348.237473,349.723550,350.977428,352.138426,353.554843,356.132258,358.175614,359.801011,361.379968,362.540965,365.234480,368.090534,368.833573,370.017791,371.016249,372.014707,373.431124,374.592122,376.658698,378.957473,380.397110,381.720648,383.090625,385.760920,388.733074,390.103052,390.637110,391.264049,392.192847,393.307405,394.956022,396.233120,398.230036,400.691351,401.248630,401.805909,403.500965,404.894163,405.567541,406.774979,408.609355,409.932893,413.369446,416.782779,417.641918,418.408176,418.942235,420.655886,423.744140,424.254979,426.275115,426.925274,429.293709,430.245727,430.942326,432.521283,433.821600,436.282915,437.281374,439.719469,441.437745,443.181971,444.683913,447.261328,448.445546,450.070943,451.905319,454.180875,455.086453,457.594208,460.798562,462.563278,464.211895,465.419333,468.391487,469.273845,471.154661,472.454979,473.499877,474.567995 diff --git a/data/torah/labels/Ki Teitzei-1.txt b/data/torah/labels/Ki Teitzei-1.txt deleted file mode 100644 index de5f07e8d..000000000 --- a/data/torah/labels/Ki Teitzei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.345009,2.247122,4.058278,4.731657,5.892655,8.423630,10.861725,13.323040,14.948437,16.271974,18.152791,20.149707,21.937643,22.959321,23.702360,24.631158,27.231793,28.230251,29.693108,30.668346,32.456283,34.337099,34.791202,35.335557,36.589435,38.138892,38.589430,39.648416,41.070177,41.455751,43.392172,46.689406,47.433934,48.200193,49.872030,52.542324,54.190941,56.048538,58.649172,59.147868,60.088810,60.644568,61.505227,62.402483,63.322182,65.048878,66.687845,68.090692,69.460670,71.457586,73.013323,74.011781,76.008697,79.027291,79.584570,81.070647,82.396129,84.048146,86.000501,87.672338,88.833335,89.258355,90.644492,91.912878,92.628455,94.207412,95.159430,95.995348,96.877706,98.897842,99.678772,100.829536,102.615692,103.525188,105.893624,107.635120,109.353397,111.234213,112.952490,114.290439,115.320925,116.496335,118.168172,119.932888,122.394204,123.132256,124.571893,127.079648,129.866043,131.259240,133.116836,133.418049,134.649353,135.229852,135.920720,136.895958,137.592556,138.529419,140.696809,142.236547,142.687702,143.019517,145.487341,146.027036,146.747146,147.238683,148.747980,150.721677,153.368751,153.863528,154.901268,155.233149,157.176824,159.591699,161.077776,161.936915,162.981813,164.073151,165.094829,165.554728,166.753227,167.426606,168.181012,168.843023,170.277058,171.577375,172.273974,173.225992,175.408668,176.083407,176.949411,178.933244,179.865961,181.189498,182.420156,184.115212,185.183330,186.042469,187.040927,188.039385,188.944963,191.104419,192.265417,193.101335,193.937253,195.887729,198.435870,199.161743,199.830557,200.981321,203.234596,205.022533,205.549079,206.183530,207.135549,207.781174,208.454552,210.033509,212.773464,213.166714,213.903632,216.063088,217.131206,217.897464,219.499641,220.985718,221.914516,223.052294,224.434319,225.874540,228.021364,233.803133,234.522306,235.660729,236.797861,238.237498,239.607476,241.116773,242.184891,243.949607,244.901626,246.712782,247.943439 diff --git a/data/torah/labels/Ki Teitzei-2.txt b/data/torah/labels/Ki Teitzei-2.txt deleted file mode 100644 index 04a2e4c2f..000000000 --- a/data/torah/labels/Ki Teitzei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.136379,3.111617,5.410393,7.337649,8.266447,9.241686,10.752724,12.054278,13.099176,13.635871,14.654913,15.538276,16.321300,18.596855,19.223794,21.336810,22.072624,23.078307,24.672183,26.217754,27.587731,28.493309,29.514987,30.745645,31.836983,33.323060,34.809137,35.401274,37.776327,39.288798,40.960634,42.562811,43.514829,44.536507,46.649523,47.624761,50.318276,50.774124,51.400382,53.350033,54.394931,54.957052,56.252527,57.877924,60.246360,61.268038,62.359376,63.706133,65.958468,66.932472,67.676745,68.650749,70.740545,71.947982,72.830340,74.200318,76.359774,76.828800,77.799411,79.262268,80.755573,83.079560,83.540391,84.749405,85.980062,87.210720,89.439836,90.786593,93.224688,94.687545,97.473940,98.617836,101.430087,104.173053,105.317610,107.361809,108.212430,109.210888,111.091705,111.997283,112.740321,113.901319,115.619596,116.342105,117.244993,119.450888,120.300526,122.575113,123.006431,123.875430,125.842314,126.741850,127.879627,129.296045,130.503482,132.384299,133.289877,134.218675,135.263573,136.819310,137.433986,138.355648,138.849722,139.704880,140.126820,141.264597,142.231355,143.052534,143.818792,144.925444,145.858922,147.784960,149.829159,150.828442,152.105539,152.778918,153.521956,154.729394,156.795970,157.980188,158.630346,160.302183,165.642773,168.591707,169.543725,170.658283,171.447761,171.925415,173.839417,175.671144,176.829129,178.058012,179.551525,181.014383,181.567417,183.870437,184.722337,185.218617,186.462328,187.112487,187.762645,188.691444,189.295162,191.013439,193.242555,194.658972,195.262370,196.307589,197.058429,198.346393,199.281789,199.955168,201.418025,202.857662,203.786460,206.062016 diff --git a/data/torah/labels/Ki Teitzei-3.txt b/data/torah/labels/Ki Teitzei-3.txt deleted file mode 100644 index 793fea6dc..000000000 --- a/data/torah/labels/Ki Teitzei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.765716,3.290843,4.594493,5.825151,7.055808,8.193586,9.656443,10.570126,11.490820,12.678085,14.164273,14.676056,15.419094,16.463992,17.810750,18.531843,19.320047,20.202405,21.224083,21.898511,23.755058,25.184522,26.461620,27.831597,29.062255,30.571552,32.359488,33.075244,34.100985,34.864735,36.237221,37.816177,38.767351,39.881909,41.367986,42.356331,43.434562,44.897419,46.507701,47.512490,48.318858,48.695374,50.222894,51.182462,52.350181,53.260091,54.200332,55.489372,55.880778,56.461277,57.134656,58.040234,58.678280,59.665631,61.580775,62.889977,63.600911,65.119257,66.354082,67.621511,68.420658,69.092533,69.628096,72.024468,72.641183,73.696305,74.578663,75.925420,77.704797,78.889015,79.981128,81.002806,81.467205,83.185481,85.728729,86.380831,87.730531,89.028016,91.442891,92.067771,93.997086,96.457452,96.920627,97.618450,98.686568,100.683484,103.203121,103.972433,105.291803,105.746758,107.202615,107.521084,109.721093,112.252068,113.101868,114.818700,116.235117,118.812532,120.290160,124.292442,126.753757,127.868315,129.795571,131.955027,132.604281,134.044823,135.737696,137.246993,138.570531,139.801188,140.869306,142.610803,144.143320,145.211438,146.070576,147.626313,150.157288,151.248626,152.076365,153.036562,153.489059,154.371418,155.834275,157.575771,158.968969,160.965885,162.173322,164.147019,165.888515,167.676452,169.603708,170.927245,172.088243,173.295681,174.410239,175.455136,176.685794,178.171871,179.085540,180.472571,181.772888,182.315722,183.026766,184.332135,184.842974,186.514811,187.853788,188.991566,190.036464,191.313562,192.358460,192.908596,193.844537,194.959094,196.839911,198.461470,198.769935,200.737026,201.279772,202.014123,202.546064,204.661198,208.237071,209.421289,210.651946,212.068364,213.391901,213.813788,214.785098,216.019766,217.505843,218.573961,219.502759,220.594097,221.917635,222.823213,225.145208,226.029336,227.420764,228.744301,230.738929,231.223408,232.178566,233.100029,235.050505,236.490143,236.857270,238.185199,240.155695,241.354606,241.666491,242.757829,244.553596,245.729983,246.682002,248.959079,250.072115,251.395652,252.881729,254.135607,256.152483,257.360585,258.702703,260.401202,261.446632,262.607630,263.861508,265.626224,266.057812,268.017880,268.568566,270.286842,271.006661,273.142897,274.907613,275.813191,278.808566,281.107341,281.677942,284.240856,284.551742,285.643635,286.656313,287.008500,288.623591,289.837447,291.165789,292.466106,292.885005,293.487784,294.352612,295.049210,295.447920,296.279868,297.525548,298.903723,299.855741,301.759777,302.848524,305.363390,306.385068,308.405204,308.975255,310.448560,313.146902,314.493659,314.988246,316.057391,317.271467,318.200265,320.475821,322.472737,323.192555,324.074914,325.050152,326.768428,329.183304,329.721213,331.040900,332.225118,332.845239,334.236547,335.051771,336.151247,340.300063,342.831038,344.224236,345.036934,345.386837,346.430131,348.601799,349.577037,350.459396,351.364974,352.827831,354.337128,355.428466,356.984203,360.026017,362.022933,364.600348,365.691686,366.806244,367.990462,368.718458,369.691834,371.819736,373.639227,375.009204,376.681041,377.620415,379.402323,381.351048,382.826709,383.778727,386.449022,390.767933,391.952151,393.159589,394.970745,396.085303,397.571380,398.987797,399.939815,401.070468,401.999266,404.530241,405.598359,407.154096,408.454414,409.110899,409.894051,410.843451,411.704143,413.327986,414.183649,414.976603,415.905314,416.346493,416.926992,417.693250,418.691708,419.713386,420.549305,422.058602,422.751973,424.647619,425.955047,427.812644,429.020081,430.250739,431.040217,433.013913,433.838632,434.430331,435.480693,436.479151,437.663368,438.731486,439.869264,441.239241,441.625032,442.330579,443.003958,443.839876,445.651033,446.565545,448.469582,450.745137,452.581870,453.317381,454.500264,455.796887,456.925693,458.458210,459.254546,460.043135,461.787130,462.783700,464.084017,464.842913,466.661432,467.542314,469.865786,471.073223,471.659659,472.745060,474.146747,475.748924,477.118901,478.628198,480.114276,481.693232,484.874366,486.012144,487.939400,488.424758,489.286158,489.685746,491.781763,494.119281,494.887016,496.394057,499.414907,500.622253,502.735269,504.174906,505.869963,507.495359,507.987833,509.274819,512.719120,514.298077,516.852272,519.011728,519.552195,520.922172,522.315370,522.963442,524.149746,525.589383,527.307660,528.513841,529.326539,530.812616,532.716653,533.404665,535.141077 diff --git a/data/torah/labels/Ki Teitzei-4.txt b/data/torah/labels/Ki Teitzei-4.txt deleted file mode 100644 index 4ab014999..000000000 --- a/data/torah/labels/Ki Teitzei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.368910,3.151273,4.829758,5.430392,6.781540,7.431699,8.093095,9.555952,10.809830,11.320669,11.947608,12.922846,14.501803,16.707698,17.590057,18.425975,19.401213,19.945614,20.980170,21.779991,22.639129,23.451827,25.286204,25.835501,26.516861,27.654639,28.369684,29.558675,32.097373,33.026171,33.862089,34.999867,35.835785,36.927123,37.948801,38.715060,40.851295,41.295663,42.035513,43.103631,43.862757,44.763548,46.496345,46.914304,47.959202,49.607819,50.153040,51.233216,51.546237,51.940977,53.728913,55.091654,55.644864,56.461632,57.502460,58.686678,60.404955,61.682052,62.843050,63.329890,63.748628,65.798250,67.378000,68.795840,69.980058,71.048176,72.696792,74.359225,75.241584,76.565121,79.305076,80.280314,81.441312,82.114110,83.623987,85.670682,87.806918,88.851816,90.988051,92.079389,93.611906,95.229329,95.805280,97.721838,100.344962,101.505960,103.711856,106.103511,107.728908,110.492082,112.744418,114.416255,115.995212,117.829588,119.153125,120.867362,121.962740,123.432951,124.384969,125.569187,127.124924,128.494901,129.702339,132.349414,133.620555,134.578530,135.710433,136.286384,137.471197,138.415343,139.390581,140.806998,141.666136,143.895252,146.542327,147.796204,150.838018,153.206454,154.288956,156.082631,156.953280,158.416137,159.530695,160.505933,161.736591,163.431647,164.253060,165.103484,166.450058,167.471736,168.757731,169.559877,170.327790,171.349468,172.233495,174.183972,175.138370,177.425717,178.412863,180.154359,181.176037,183.242613,185.007330,186.121888,187.468645,188.443883,189.558441,191.462477,193.738033,194.899031,196.431548,197.073863,199.591590,200.644757,202.125773,203.811966,204.841085,205.909203,206.954101,208.207979,210.413874,211.143515,212.178591,213.037729,214.523806,216.962908,218.007806,219.749302,220.608441,221.699778,222.883996,225.716831,226.831388,229.292704,230.593021,232.218418,233.704495,234.444833,236.444450,237.345591,238.297609,238.739780,239.574706,241.780602,243.001815,243.655810,244.747148,246.744064,248.508781,249.254993,250.319937,252.277110,252.579052,253.414888,255.783323,257.548040,259.010897,260.543414,261.843731,262.865409,264.490806,266.441282,267.416520,268.391758,268.919595,269.761736,270.644094,271.944411,273.272129,274.758206,275.733444,277.010542,278.403739,280.400655,282.142152,283.558569,285.462605,286.577163,288.481199 diff --git a/data/torah/labels/Ki Teitzei-5.txt b/data/torah/labels/Ki Teitzei-5.txt deleted file mode 100644 index 5025817bf..000000000 --- a/data/torah/labels/Ki Teitzei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.744775,3.161324,5.061574,6.702699,9.812198,12.144322,14.163339,15.510096,16.763974,17.948191,18.737670,20.432726,21.338305,22.777942,24.426559,26.353815,27.909552,29.279529,31.276445,33.134042,34.434359,35.711457,36.756355,37.638713,39.728509,40.492591,41.632545,43.049291,44.137616,45.606418,48.346372,48.888240,50.425714,51,51.824989,54.360341,55,55.851678,56.682336,58.052313,59.608050,61.032562,62.440885,63.611657,65.051294,66.746351,68.232428,69.811385,71.529661,73.317598,74.594695,76.127212,77.241770,78.186633,79.238686,82.628799,83.325398,86.065353,87.5,88.921407,89.896645,91.057643,92.706260,94.192337,95.748074,97.292779,98.087429,98.762487,99.904446,101.613371,103.145888,103.958586,104.933824,105.560763,107.511239,108.486977,110.490877,111.416875,113.762091,114.876649,118.545401,119.868939,122.167714,124.791569,125.520123,127.938623,129.571431,131.127167,133.193743,133.718896,134.703041,135.487796,136.627946,137.910082,139.256840,140.626817,141.171270,142.182554,144.004369,145.731869,147.198064,148.392218,149.612940 diff --git a/data/torah/labels/Ki Teitzei-6.txt b/data/torah/labels/Ki Teitzei-6.txt deleted file mode 100644 index 3ba6e9bb3..000000000 --- a/data/torah/labels/Ki Teitzei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.525195,2.273032,3.237591,4.886208,6.256185,7.463623,8.601400,10.157137,10.883001,11.805754,12.920312,13.895550,14.963668,17.750062,19.081914,20.475111,21.728989,23.331166,25.040193,25.565310,26.378008,27.051387,28.583904,29.494635,30.539533,31.932731,33.558128,34.174198,35.299624,35.994591,37.801191,38.892529,40.099967,41.795023,43.165001,44.442098,45.974615,47.483912,49.039649,50.827586,51.709944,53.312121,54.774978,56.446815,57.631032,59.117110,60.231667,62.182144,64.991758,66.222963,68.776611,69.635749,70.610987,72.607903,75.371078,76.380868,77.214203,79.120823,82.023317,84.670392,85.901049,87.572886,88.896423,91.195199,93.958374,96.094609,97.000188,98.881004,100.134881,101.411979,102.990936,104.662773,106.032750,108.470845,109.322009,110.224047,111.872664,113.196201,114.751938,115.786865,116.486224,116.741643,117.786541,118.831439,121.080766,122.192682,123.870169,126.660026,128.749101,129.863659,131.721255,132.766153,134.066471,136.388466,137.188789,138.269283,140.101241,141.111336,141.705333,142.701876,143.375255,144.303083,145.552759,147.798683,150.747617,152.117594,153.255372,153.700250,155.020088,156.662079,158.178002,159.594419,161.521676,164.308070,165.979907,167.373104,168.835961,170.507798,171.761676 diff --git a/data/torah/labels/Ki Teitzei-7.txt b/data/torah/labels/Ki Teitzei-7.txt deleted file mode 100644 index 3e10a51a1..000000000 --- a/data/torah/labels/Ki Teitzei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.205370,2.215568,3.504146,4.448182,5.632400,8.349135,10.299611,12.621606,13.550404,15.013262,17.358477,20.446731,21.305869,23.395665,24.649543,26.414259,27.319837,29.502513,30.756391,31.917388,32.822967,35.446822,36.106950,37.048998,37.483173,38.558296,39.490687,40.535585,41.835902,42.292392,43.856038,45.102975,46.217533,47.657170,48.734251,49.872029,51.218786,51.729350,52.890623,54.610344,55.105525,55.918223,56.312963,57.125661,57.984799,59.099357,60.724754,62.210831,63.395049,64.486387,65.299085,66.204663,67.713960,69.246477,70.152056,71.916772,74.819267,75.724845,76.282124,77.350242,78.859539,81.622713,82.760491,83.967929,84.896727,85.964845,87.776001,89.285298,90.678496,92.211013,92.910177,94.115049,95.944430,97.099340,99.589963,100.867060,102.980076,106.045110,107.109235,109.663430,111.010187,112.264065,114.005561,116.257897,117.558214,119.462251,120.669688,122.387965,124.431321,126.149598,127.635675,128.959212,130.050550,132.024246,133.208464,134.485561,135.948418,136.843451,138.014994,139.512718,141.730187,142.844745,144.423702,146.258078,147.488736,148.672954,150.135811,150.598119,151.714768,153.340164,155.522840,156.521298,158.053815,159.725652,162.628146,163.135360,163.747855,164.694722,165.701829,166.932487,167.800907,169.495964,170.982041,172.468118,174.047075,174.734954,175.876765,177.305920,178.304060,179.128281,179.997873,181.185054,182.737292,184.246589,184.625612,185.639787,187.113399,189.006680,189.397022,190.833738,192.542849,192.821488,194.818404,197.813778,198.221485,198.672917,199.671375,200.941256,202.984612,204.470689,206.258625,207.953682,208.853186,210.115984,211.784975,213.189013,214.326791,215.069829,216.068287,216.747564,217.809784,219.481621,219.704175,220.619399,222.094977,223.302415,224.509853,225.577971,227.807086,228.498392,229.386043,230.221961,232.138401,232.914404,233.723502,235.606357,238.230254,239.437144,240.644581,241.852019,243.268436,243.742708,244.661633,245.383589,247.490215,248.204481,249.922758,251.199855,252.244753,253.080671,254.752508,256.215365,257.446023,258.769560,260.255637,261.788154,263.808290,266.646991,268.057542,269.537398,270.768056,272.904292,273.407120,273.947135,274.945594,276.013711,277.105049,277.838255,278.823326,280.989143,282.745776,283.7,284.840357,286.096332,287.466309,287.933078,289.226123,292.506628,293.737286,295.850302,296.538253,299.033602,300.845179,301.773977,303.608353,305.117650,306.138748,306.975247,308.600063,309.399503,310.351521,311.628618,313.415889,313.857734,314.604531,315.463669,316.694327,317.646345,319.411061,320.850699,321.544679,322.694052,324.890971,326.562807,327.816685,330.510200,331.717637,333.923533,335.572150,337.011787,338.288885,339.589202,341.261039,342.561356,344.349293,346.578408,347.692966,349.155823,350.270381,351.175959,351.458625,352.313737,352.706300,353.265863,354.767599,355.700719,356.661051,357.995172,358.980545,359.793244,361.650840,362.502329,363.949616,365.389253,366.658701,367.842918,369.189676,371.093712,372.486909,373.787227,375.017884,375.444227,376.364642,377.512696,378.789794,381.645848,382.853286,384.780542,387.543717,389.540633,389.977747,390.771290,391.582352,392.743350,394.577726,395.390149,396.179628,398.107160,399.941261,400.777179,401.984617,403.540354,405.514050,406.439491,407.267385,409.008882,410.703939,411.888156,413.025934,414.488791,416.671467,417.809245,419.341762,420.758179,421.706493,422.499675,424.911844,427.071300,428.557377,429.593309,430.182774,431.689814,433.547410,435.056707,435.985505,437.680562,438.632580,439.445279,440.675936,441.697614,442.974712,444.971628,447.038204,448.083102,449.406639,450.242467,451.008726,451.798204,452.564462,453.446821,455.257977,458.114032,459.878748,460.701855,461.468113,462.396911,463.859768,465.369065,466.576503,468.526979,469.664757,471.499133,473.751469,475.469746,476.816503,477.359205,479.240021,481.167277,482.653354,483.349953,484.928910,485.927368,486.832946,488.992402,494.472311,497.281926,498.466143,500.532719,505.642651,506.601305,508.521926,511.540520,513.096257,513.890750,514.930834,518.798271,520.246684,521.616661,523.218838,524.960335,526.307092,526.677526,528.048589,529.528519,530.944937,532.593553,533.917091 diff --git a/data/torah/labels/Ki Teitzei-h.txt b/data/torah/labels/Ki Teitzei-h.txt deleted file mode 100644 index 661c38d0c..000000000 --- a/data/torah/labels/Ki Teitzei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.991581,4.996650,5.468751,7.721087,9.671563,11.204080,13.479635,13.981308,15.406892,16.307475,18.443710,19.567624,22.298712,23.400458,26.268835,27.336953,30.610967,32.700762,33.768880,36.787475,39.434549,42.197724,45.030558,45.668135,48.745751,50.572881,52.778777,56.284990,59.767983,60.720154,61.496031,64.444966,67.068821,69.019297,71.062653,72.548730,74.081247,77.285601,81.163333,81.901603,83.322789,83.918884,85.315463,87.019011,88.418972,91.314703,92.406041,93.074236,95.563955,96.503613,97.760534,99.534567,101.183184,102.785361,106.268354,107.173932,108.436605,111.260644,112.793161,114.690176,116.490211,117.933343,120.777110,123.540285,125.839061,127.905636,129.531033,130.901011,131.557748,134.040555,138.145636,139.399514,141.744729,144.359723,145.864924,148.176657,149.433960,151.916767,154.213845,156.829629,157.642741,160.420382,161.304882,164.831835,166.526892,169.034647,172.099681,174.013751,176.674012,181.016143,182.896960,185.845894,187.610610,189.065770,189.950270,191.455472,192.821016,195.551835,198.523989,199.661767,202.866121,206.511654,207.454061,208.074763,209.052368,211.220203,212.265101,213.565418,217.094851,219.376420,219.840819,221.721635,223.973971,224.545904,227.146539,228.052117,230.977832,232.719328,235.645043,237.758059,240.521233,241.728671,243.423727,245.142004,248.903637,251.922231,255.010485,257.541460,258.041258,261.175802,262.665487,264.186206,266.048312,267.631101,268.606790,270.487606 diff --git a/data/torah/labels/Ki Tisa-3.txt b/data/torah/labels/Ki Tisa-3.txt deleted file mode 100644 index c704edd79..000000000 --- a/data/torah/labels/Ki Tisa-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.590782,5.186040,5.534339,7.299055,9.690711,11.803727,12.825405,14.032842,14.891981,15.188943,16.029758,17.121096,18.462957,19.066676,20.436653,20.976556,21.487395,22.532293,23.623631,24.900729,25.899187,27.362044,28.569481,29.212567,30.048485,30.628984,32.068621,35.056068,35.367896,36.807533,37.991751,39.268848,41.126444,42.241002,42.892732,43.105917,44.530862,47.108276,47.933973,48.630572,49.257511,50.581048,52.856604,53.307146,54.444923,55.018670,56.256080,57.997039,58.713506,59.599216,60.638215,61.735451,62.893098,63.705796,64.112780,64.782522,65.683376,66.956590,67.374964,68.303762,69.464760,71.949295,72.922604,74.548001,74.976665,75.835803,76.532402,77.752671,78.831177,80.085055,81.018658,82.326062,83.463840,84.725540,85.723998,86.954656,87.990489,89.035387,90.242824,90.492580,90.913822 diff --git a/data/torah/labels/Ki Tisa-4.txt b/data/torah/labels/Ki Tisa-4.txt deleted file mode 100644 index 99e46dfec..000000000 --- a/data/torah/labels/Ki Tisa-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.538315,3.617442,3.958397,5.214107,5.829488,6.103914,7.463848,9.205344,10.157362,11.086161,12.363258,12.790703,13.882040,14.276780,15.693197,17.234453,18.534770,20.462026,21.297945,21.721286,21.979081,23.559113,25.773434,26.803851,27.848749,28.148228,28.693302,28.972803,30.193965,32.339806,34.197402,35.242300,36.867697,38.390034,38.645454,39.783232,41.129989,42.987585,43.311678,43.974794,45.684540,48.563815,49.247112,50.284341,51.120260,51.484105,52.652777,54.419639,54.677434,55.579232,56.554470,58.063767,59.705243,61.260980,62.143338,63.025696,64.209914,65.835311,66.061982,67.437488,69.263626,70.627444,71.988599,73.580043,74.515643,75.606981,77.302038,78.880994,80.088432,80.606595,82.038908,83.841503,84.165826,85.382582,86.706119,86.893461,88.235681,89.814638,90.116498 diff --git a/data/torah/labels/Korach-3.txt b/data/torah/labels/Korach-3.txt deleted file mode 100644 index f120ff390..000000000 --- a/data/torah/labels/Korach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.738699,3.720964,3.952757,4.435751,4.602916,5.477565,6.986862,9.160286,9.949764,10.638632,11.520770,13.099727,13.889205,15.744071,17.466793,17.885853,18.977191,20.370388,21.693925,22.364220,23.571658,24.198597,25.313154,26.212976,26.741498,28.076329,28.940830,29.423086,30.328665,31.907622,33.138279,33.788438,34.252837,34.853472,35.987116,37.217774,37.516549,38.561447,39.629565,40.646617,41.750870,42.329827,42.979986,43.653364,45.093001,46.346879,47.043478,47.879396,48.204475,48.854634,50.224611,51.664249,52.476947,53.034226,54.357763,56.116312,56.441391,58.066788,59.808285,60.733999,63.452119,66.168944,67.655021,68.876600,69.963967,71.333944,72.375758,73.420656,73.977935,74.628094,75.835531,76.485690,78.020245,78.507864,80.458340,83.569814,85.343628,85.900907,86.690385,87.247664,88.289478,89.648662,90.670340,92.295737,93.270975,95.569751,96.684308,98.588345,100.492381,101.676599,103.510975,106.394846,108.247846,109.292744,110.778821,110.915057,111.890295,113.283492,115.977007,116.794791,117.243311,118.357868,119.658186,120.162857,120.743356,122.700576,123.161891,124.212882,124.441997,125.510115,127.367712,128.273290,129.931114,130.519458,132.377054,133.646442,134.900319,135.573698,136.849905,138.359203,139.294744,141.291660,142.266899,144.397267,146.167851,148.042376,148.294711,149.502149,152.050747,153.188524,153.652924,153.742719,154.553876,155.691654,157.479590,158.478048,160.219545,162.541540,164.395849,166.237151,167.049849,167.839328,168.303727,169.805073,171.450606,173.251458,175.324316,176.142672,176.479031,177.311866,178.774723,182.164836,183.209734,183.883113,185.949689,187.651489,188.394528,188.553984,189.738201,191.013757,191.919335,192.406954,193.985911,195.084211,195.448768,196.424006,197.259925,198.724192,199.698020,200.173365,201.827611,204.474686,205.697270,206.166120,207.060408,208.305780,209.240000,210.377778,211.422676,212.116252,212.985756,214.551773,215.327374,216.859891,217.832045,219.189936,220.717518,222.234887,223.036194,224.195532,225.346346,226.590929,227.204697,228.872657,230.033655,231.310753,232.319424,232.856409,233.761988,235.828564,236.289879,238.201360,239.540672,240.330151,242.861126,244.718722,246.878691,247.593884,247.737830,248.381821,249.867898,251.289596,251.661115,253.007872,253.283428,253.698303,255.463020,256.853064,257.179754,258.339210,259.175129,260.637986,260.995993,261.915083,262.611682,263.819120,264.388762,267.892350,270.944137,272.964454,274.251660,275.654223,278.010985,279.113996,280.789986,282.852408,284.881768,286.056762,287.449960,288.521748,290.356851,290.654084,291.629322,293.785694,295.271771,296.011566,296.638504,298.472881,300.503578,301.362717,302.848794,303.661492,304.706390,306.053148,307.005166,307.930880,309.672377,311.859735,312.672433,314.294843,316.454299,317.545636,319.449673,321.910988,322.607587,323.164866,324.558063,325.277881,327.019378,329.457473,329.916939,331.076277,332.408444,332.977250,334.076917,335.078739,335.821777,336.680916,337.400734,338.213433,339.609346,342.462684,343.860846,345.277263,346.727341,347.297399,347.993998,349.651261,352.840801,353.046696,353.673635,354.042070,354.994089,356.845977,357.272204,357.834823,358.167281,358.951539,360.050809,361.502339,363.716760,364.006594,364.497235,366.308391,368.626141,370.267048,371.358386,371.633941,372.234576,372.534894,373.463692,374.873941,375.056617,375.637116,376.247274,377.160381,378.387955,379.595393,380.849270,381.452989,383.157143,383.922456,384.661566,385.764037,386.528753,387.547347,388.195964 diff --git a/data/torah/labels/Korach-4.txt b/data/torah/labels/Korach-4.txt deleted file mode 100644 index b3633570c..000000000 --- a/data/torah/labels/Korach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.351020,3.337868,3.860317,4.556916,5.717914,8.345692,9.332540,10.266478,11.172789,12.593084,13.492857,14.798980,15.878820,16.188322,17.693764,18.967074,20.267391,20.474829,22.378865,23.121904,23.795282,27.533695,28.230294,29.804727,31.197822,31.752017,33.052334,34.817051,35.671563,37.707634,39.752108,39.981223,41.094239,41.883718,43.184035,43.718094,44.249069,46.080362,46.612879,47.564897,48.888434,50.862130,52.882266,54.414783,55.993740,56.945758,59.058774,60.521631,60.939591,61.682629,63.145486,64.561904,65.792561,66.767799,67.835917,69.020135,69.461314,70.738411,71.829749,72.387028,73.571246,74.825123,75.074375,76.026393,76.418049,77.665758,79.332969,81.144126,83.535781,84.534239,85.834557,86.858969,88.205726,89.018424,90.357472,91.472030,92.586588,93.608266,94.165545,94.721281,96.369898,97.879195,98.622234,98.735250,99.611440,99.835797,100.534071,100.948946,102.249263,105.219994 diff --git a/data/torah/labels/Korach-5.txt b/data/torah/labels/Korach-5.txt deleted file mode 100644 index d626887a5..000000000 --- a/data/torah/labels/Korach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.119132,4.135005,4.341744,5.096392,6.460565,8.367085,8.650520,9.618049,11.638185,12.444715,15.695509,16.621223,18.200180,19.265389,20.478910,21.568706,21.965356,23.913922,24.969704,25.941858,26.799455,27.519273,28.355192,29.601200,30,30.753105,31.794919,32.322811,33.692788,34.897142,35.640180,36.615418,37.404897,37.822856,38.565895,39.329069,40.204195,41.166620,42.072198,42.884897,43.090793,44.785849,46.408162,46.988661,48.196099,49.287436,50.727074,52.538230,54.688392,55.593970,56.894288,59.236419,60.467077,61.372655,62.205490,62.760168,63.659095,64.889753,69.538210,71.708710,73.125127,74.889843,75.894382,76.794817,78.373774,79.396860,80.975817,82.461894,85.410828,86.827245,86.963481,87.240579,89.260715,90.518584,92.213641,92.837496,97.015998,99.820526,100.979509,102.419146,103.041459,103.985677,104.589395,105.330892,106.375790,107.443908,108.140507,109.255064,110.346402,110.973341,111.685450,113.496606,114.914115,116.702052,117.166451,118.048809,118.722188,119.558106,120.781332,122.785680,123.993118,126.616972,127.754750,128.822868,129.240827,129.937426,131.234660,133.391031,134.505589,135.178968,135.922006,136.618605,137.640283,139.590759,141.541236,143.660739,144.880349,146.488017,148.619627,150.523663,151.940081,152.238856,152.633595,153.748153,155.002031,156.163028,156.670784,157.088743,157.947881,159.526838,160.707972,162.542348,163.168917 diff --git a/data/torah/labels/Korach-6.txt b/data/torah/labels/Korach-6.txt deleted file mode 100644 index 6a216c948..000000000 --- a/data/torah/labels/Korach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.390113,2.876190,3.154830,4.803447,6.568163,6.801905,7.496961,8.240000,8.820499,9.818957,10.724535,11.444354,11.978413,13.046531,14.509388,16.390204,17.690522,18.224580,19.455238,20.267937,20.941315,21.823673,23.054331,24.168889,25.097687,25.515646,26.699864,27.762061,28.413515,29.249433,29.385669,30.012608,30.894966,31.682902,33.470839,34.373333,35.023492,36.648889,37.275828,38.785125,40.921361,41.339320,42.082358,43.173696,44.311474,45.356372,47.283628,48.560726,49.930703,50.534422,50.602540,51.786757,53.667574,54.851791,55.360470,56.173169,57.194847,58.377522,59.050901,59.444098,60.605096,61.719654,62.671672,63.437930,64.366729,64.877568,65.595844,68.289359,69.286275,69.611355,71.422511,72.117568,73.348225,74.369903,75.530901,76.227500,77.179518,79.594393,80.314212,82.496887,83.332806,84.493803,85.236842,85.863781,86.699699,88.278656,90.113033,91.436570,92.365368,92.690447,93.944325,95.709042,95.822057,96.424231,97.323645,97.806638,99.068861,99.494358,100.567920,101.086910,101.876389,102.153486,102.591581,102.890357,104.260334,106.191031,107.460062,109.935345,110.260425,111.073123,111.721740,112.371899,113.161377,113.901332,114.853350,115.875028,116.080924,116.539155,117.816252,119.580969,120.370447,121.159926,121.949404,122.646003,123.296162,124.271400,124.875119,125.594937,126.593395,127.266774,127.824053,128.381332,129.542330,132.142964,132.768361,133.788497,134.158475,135.156933,136.248271,137.069042,137.509949,138.670946,140.923282,142.101332,142.746865,143.870452,145.943509,146.087454,146.917205,147.758843,149.123101,150.276389,151.112307,153.225323,153.945141,154.313577,156.124733,156.796570,158.212987,159.791944,161.858520,162.949858,165.411173,166.432851,168.151128,169.288906,169.425141,170.905051,172.019608,172.948407,174.225504,175.473214,177.702330,177.956207,179.465504,180.626502,181.507318,182.436116,183.272035,183.713214,184.525912,186.429949,186.964008,187.487197,187.744234,189.926910,190.713305,192.378974,193.981150,195.080687,195.801649,197.032307,197.493622,198.027681,199.211899,199.931717,200.953395,201.230493,202.182511,202.781604,204.914756,205.185686,207.159382,207.995300,209.945776,210.619155,211.664053,212.451989,213.281740,213.862239,214.698157,215.464416,216.555754,217.043373,218.413350,219.410266,220.478384,221.732262,222.057341,222.800379,223.543418,224.400723,225.029495,225.453713,226.521831,227.207636,228.647273,229.529631,231.410447,232.060606,234.342824,234.666361,236.036339,236.568856,238.472892,240.469808,242.209763,242.929581,243.183459,244.251577,244.810874,245.344933,246.317087,246.781486,248.221123,249.266021,250.107306,251.044706,251.458040,252.386838,253.128334,254.611328,256.142821,256.413232,256.979852,257.576420,258.063481,259.410238,261.602278,261.772477,262.996995,264.481530,265.014047,265.710646,266.291145,266.894864,267.730782,268.218401,268.915000,269.959898,271.213775,272.421213,272.812868,273.741667,274.151916,275.312914,275.726247,276.186020,277.741757,277.947653,279.456950,280.107109,281.662846,283.056043,283.915181,284.983299,285.260397,286.258855,287.861032,288.624629,290.271281,291.032914,291.706292,292.518991,293.769873,294.325521,295.252778,296.526791,297.960261,300.047595,300.644524,301.269920,302.338038,303.681712,304.796270,305.864388,306.816406,307.373685,308.186383,309.486701,310.043979,310.972778,311.622936,312.830374,315.477449,316.104388,317.311825,319.099762,319.657041,320.609059,321.723617,323.070374,323.697313,324.533231,324.997630,325.647789,326.948106,327.691145,328.271644,329.709739,329.982211,330.924977,332.132415,333.037993,333.548832,334.338311,335.545748,336.962165,337.332143,338.350737,340.183571,341.692868,342.923526,343.875544,344.524161,345.615499,346.989765,347.977766,349.696043,350.322982,351.691417,352.109376,353.990193,355.662029,356.335408,357.542846,359.354002,360.979399,362.210057,362.626474,363.810691,365.436088,366.898945,367.781304,368.172984,368.611054,369.702392,370.234909,371.233367,372.324705,374.855680,376.179218,376.522891,378.238084,379.190102,379.863481,380.908379,382.231916,382.696315,383.276814,383.834093,385.064750,385.854229,386.713367,388.896043,390.219580,390.753639 diff --git a/data/torah/labels/Korach-7.txt b/data/torah/labels/Korach-7.txt deleted file mode 100644 index 967a1e137..000000000 --- a/data/torah/labels/Korach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.941194,3.766793,4.592391,5.985588,6.244838,7.170018,8.047217,9.130814,10.276332,11.513772,12.010119,12.567398,13.380096,13.493112,14.352251,14.652568,16.185085,16.740822,17.778944,18.986990,19.497829,20.287307,20.471525,21.005584,21.864722,22.979280,23.977738,25.301276,26.508713,27.901910,29.248668,29.805947,30.595425,31.106264,31.733203,32.847761,33.428260,34.380278,35.518056,36.307534,38.095471,39.256468,39.953067,40.858645,41.344722,42.296740,43.829257,47.010391,47.381910,48.450028,48.680686,50.422183,51.142001,52.628078,53.487217,54.601774,55.623452,56.761230,58.386627,58.874246,59.454745,60.476423,61.289121,62.330935,62.813929,63.858827,64.392885,65.507443,66.993520,68.711797,69.385176,69.485949,70.117421,71.324858,71.880595,72.622092,74.827988,75.640686,76.871344,77.544722,79.657738,80.400777,80.841956,82.188713,82.862092,84.603588,85.845008,87.334291,88.657829,89.911706,91.606763,93.184178,94.438056,95.552613,96.574291,97.340550,98.176468,99.546446,101.630234,102.326833,104.416628,105.415087,105.645744,106.713862,107.967740,108.198397,109.590053,110.006470,110.749508,111.049826,111.978624,112.977082,114.091640,115.206198,117.079304,118.100982,118.936901,119.957037,120.512774,121.836311,123.136628,124.018987,124.412184,125.619622,126.780619,128.104157,129.590234,130.658352,132.399848,133.630506,134.496774,134.924656,135.574814,136.619712,137.571731,138.570189,139.057808,140.311685,141.658443,143.005200,144.212638,146.325653,146.718851,147.438669,148.437127,149.783885,151.362842,152.639939,153.336538,154.799395,156.192592,157.701889,158.375268,158.745245,159.720483,160.463522,161.996039,162.669418,163.482116,163.875313,164.732910,165.544066,166.917068,167.751444,169.121421,170.047136,170.883054,171.533213,172.369131,173.739108,174.157068,175.109086,176.223644,177.802601,179.076731,179.468269,181.024006,181.392442,182.960696,183.708269 diff --git a/data/torah/labels/Korach-h.txt b/data/torah/labels/Korach-h.txt deleted file mode 100644 index 23f8f7962..000000000 --- a/data/torah/labels/Korach-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.877732,5.108390,5.246168,6.500045,8.241542,9.541859,10.865397,12.165714,13.535692,16.066667,17.668844,17.922721,20.337596,24.377868,27.512562,28.580680,28.625578,31.017234,32.470507,33.613243,35.424399,36.789751,38.693787,39.715465,40.992562,41.573061,43.175238,45.543673,46.238730,48.421406,48.744943,49.138141,50.415238,51.030354,52.800726,54.263583,55.384354,55.672290,56.136689,57.506667,58.658413,59.958730,61.723447,62.443265,62.720363,64.042358,65.830295,66.991293,68.105850,69.940227,72.842721,73.514558,75.279274,76.369070,79.944943,81.361361,83.172517,86.051791,87.584308,88.534785,90.531701,91.739138,93.780952,95.313469,97.078186,97.449705,98.030204,99.400181,100.700499,101.420317,103.185034,103.904853,106.203628,107.271746,110.313560,110.960635,113.050431,113.607710,116.695964,119.296599,119.969977,123.127891,123.870930,124.521088,126.285805,127.005624,128.645936,130.507211,131.268844,132.104762,133.497959,135.007256,136.562993,138.374150,140.195105,141.620317,144.128073,147.820045,148.586304,150.072381,150.792200,153.694694,154.321633,155.598730,156.295329,157.015147,159.267483,161.426939,164.027574,165.931610,166.604989,169.437823,170.923900,172.363537,173.919274,175.405351,176.171610,177.820227,179.886803,181.535420,183.810975,185.320272,187.108209,188.129887,189.383764,189.778503,191.194921,194.190295,195.211973,196.323447,196.880726,197.967438,198.181043,199.964354,202.263129,203.865306,204.422585,205.676463,206.303401,209.345215,213.222948,215.707483,217.351474,218.767891,219.554286,221.156463,222.572880,224.035737,225.661134,227.193651,227.704490,228.540408,230.142585,231.164263,234.507937,236.388753,237.038912,238.432109,241.148844,242.890340,244.376417,244.747937,246.257234,248.230930,250.901224,251.412063,252.201542,252.712381,256.102494,257.867211,258.215510,259.678367,261.187664,263.997279,264.693878,267.433832,269.361088,270.011247,270.940045,272.936961,274.306939,278.695510,279.554649,281.806984,282.619683,283.502041,285.615057,286.404535,289.864308,291.141406,292.070204,293.324082,295.924717,298.037732,300.444898,300.615147,302.047075,303.927891,305.530068,306.226667,307.898503,308.033197,309.496054,310.796372,311.260771,313.118367,313.722086,315.881542,319.155556,321.361451,322.383129,324.240726,327.352200,329.024036,330.231474,331.020952,332.832109,333.250068,334.875465,335.641723,337.568980,338.312018,340.169615,341.788986,343.696221,345.042978,346.343296,347.792366,350.393001,352.204157,356.546289,357.103568,359.216584,360.052502,360.424021,363.024656,363.651595,365.694951,367.899305,368.712003,371.307629,372.283250,373.095949,373.838987,375.325064,376.184203,377.414860,380.085155,383.382389,384.241527,385.611504,387.074361,388.839078,389.721436,391.904112,393.018670,395.503205,397.384021,398.800439,400.727695,402.283432,403.600801,403.746289,406.898035,408.291232,409.521890,411.495586,413.074543,414.096221,415.582298,415.695314,416.065291,417.713908,419.153545,419.314543,422.240257,422.843976,423.935314,425.398171,426.744928,428.161346,429.763522,430.436901,433.339396,435.080892,435.520529,436.797627,438.771323,439.955541,441.488058,441.672275,441.949432,443.893681,446.328693,446.630552,448.720348,450.601164,453.944838,454.548557,455.918534,457.869010,459.331867,459.935586,460.655405,461.746742,463.790098,465.624475,466.948012,467.946470,470.593545,472.079622,472.403160,473.494498,474.841255,476.280892,476.418670,477.835087,478.508466,479.646244,481.689600,483.245337,486.171051,487,488.028647,489.143205,490.397083,491.441981,493.183477,494.530235,495.547287,496.383205,497.962162,499.578512,500.669850,501.105828,502.499025,505.030000,506.817937,507.581111,508.765329,509.369048,510.715805,512.201882,512.828821,513.548640,514.989624,515.285510,516.353628,516.932585,519.602880,522.418046,522.882445,524.368522,525.065120,528.617773,531.798907,532.379406,534.631742,536.071379,536.721538,537.812876,538.764894,540.065211,540.761810,542.201447,542.781946,543.014145,544.303669,545.603987,546.715461,548.087402,550.704667,552.443080,553.531334,553.879633,554.729097,554.913588,556.469325,558.257262,559.789779,560.597851,560.874949,561.850187,563.661343,566.378078,566.912137,568.514314,570.395130,571.881207,572.875039,572.926105,574.057715,574.567012,577.794586,579.029468,581.467563,582.257041,583.069740,585.879354,588.154910,588.781849,590.825205,591.312824,592.288062,592.377858,593.045068,594.925885,597.591554,597.938311,598.936769,600.058663,600.278901,601.506474,602.874910,603.407427,604.800624,606.031282,607.215499,608.771236,609.723254,611.859490,614.181486 diff --git a/data/torah/labels/Lech-lecha-4.txt b/data/torah/labels/Lech-lecha-4.txt deleted file mode 100644 index 393b64111..000000000 --- a/data/torah/labels/Lech-lecha-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.083610,3.854512,4.856686,5.222864,5.878132,6.726124,7.265756,7.959568,9.520646,10.002460,10.580637,11.544265,12.026079,12.739164,14.878418,16.535859,17.229671,17.769302,18.289662,18.848566,19.311107,19.947102,20.390371,21.007093,22.452535,23.165620,24.611062,25.979414,26.519046,27.251403,27.983761,28.658300,29.236477,29.679746,30.547011,31.105916,31.876818,32.223724,32.628448,33.495713,34.247343,34.671340,35.345879,36.444415,37.061137,37.697132,38.641488,39.161847,40.067657,40.954195,41.358919,41.802188,42.650180,45.386884,46.350512,47.718864,49.010126,50.551931,51.862465,52.537005,53.134454,54.117355,54.425716,54.868985,56.121702,56.738424,57.470781,58.106776,58.742770,59.744943,60.631481,61.826380,63.156187,65.430349,66.085616,66.895064,67.415423,68.186326,68.918683,69.708858,70.402670,70.788122,71.732477,73.428463,75.278629,75.702625,76.068804,76.724071,77.379338,77.996060,78.921143,79.711318,79.961861,80.443675,81.330213,82.332386,82.660020,83.527285,84.471641,85.493087,86.360352,88.499606,88.981420,90.118502,91.197765,92.546844,93.491200,94.262102,95.052278,95.591909,96.131541,96.767536,97.075897,97.519166,99.619875,100.467868,101.566404,102.221671,103.358752,104.360925,106.076183,106.577270,107.829986,108.947795,109.448882,110.104149,111.202685,111.780862,112.416856,113.322667,113.804481,114.189932,115.442649,116.001553,116.425549,117.389177,118.834620,120.280062,121.474961,122.149500,122.804767,123.941849,125.618561,126.158193,126.929096,127.603635,128.162540,129.685072,130.436702,131.072697,133.385404,133.886491,134.156307,134.522485,135.775202,137.317007,137.856639,138.165000,138.569723,139.591169,140.786068,141.113702,142.173693,142.501326,144.100949,144.602035,145.083849,145.623481,146.375111,147.107468,147.512192,148.360185,149.959808,150.557257,151.694338,152.638694,153.255416,154.720131,156.049937,157.283381,158.304827,159.730997,160.598262,161.388437,162.159340,162.544791,163.412056,163.990233,164.472047,165.474220,168.326560,169.039644,169.463641,169.945455,170.485087,171.294534,171.834166,172.739976,173.722877,174.108328,176.286128,176.825760,177.577390,178.194112,178.791561,179.177012,179.485373,180.641727,182.087169,183.474794,184.284241,184.862418,185.710411,187.155853,187.734030,188.196571,188.832566,189.352925,190.393644,192.185992,192.918349,193.284528,194.074703,194.672152,195.924869,196.348865,197.139040,197.775035,198.661573,199.239750,199.490293,199.933562,200.453921,201.012825,203.017172,203.325533,205.850239,207.893130,208.779668,209.993839,211.150193,211.497099,212.537818,213.154540,213.674899,214.118168,214.561437,215.313067,215.544337,216.064697,216.662146,217.201778,217.702864,219.726483,220.246843,220.767202,221.345379,222.212644,222.578823,222.887184,223.542451,224.024265,224.544624,225.142073,226.703151,227.281328,228.148593,228.591862,229.150766,229.478400,229.960214,230.364938,231.116568,232.138014,232.523465,232.889644,233.352185,233.641273,234.315813,234.836172,235.973254,236.320160,236.898337,238.864138 diff --git a/data/torah/labels/Miketz-1.txt b/data/torah/labels/Miketz-1.txt deleted file mode 100644 index 18db60952..000000000 --- a/data/torah/labels/Miketz-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.781769,7.035646,8.289524,9.404082,11.284898,12.399456,13.792653,14.802721,14.987755,16.555102,18.093061,18.450522,20.215238,21.538776,23.164172,24.139410,25.091429,26.066667,27.111565,28.295782,29.642540,31.221497,34.356190,36.051247,37.235465,38.860862,40.021859,41.345397,41.576054,42.713832,43.665850,44.617868,46.127166,47.311383,49.912018,50.933696,51.932154,52.373333,53.000272,54.370249,55.925986,57.946122,58.991020,59.966259,61.220136,62.520454,63.635011,65.121088,66.258866,67.187664,68.279002,70.043719,71.344036,72.737234,76.080907,77.613424,78.635102,80.957098,82.025215,83.836372,85.647528,86.854966,87.598005,88.805442,90.198639,92.149116,93.240454,94.424671,95.539229,96.769887,97.838005,98.975782,100.601179,102.505215,103.875193,105.105850,106.011429,107.242086,108.542404,109.796281,111.235918,112.559456,113.186395,113.999093,115.067211,117.458866,118.364444,119.618322,120.779320,123.124535,124.749932,125.283991,125.514649,126.420227,127.186485,127.929524,128.254603,129.485261,131.203537,131.946576,132.550295,132.991474,133.943492,134.825850,135.499229,136.149388,137.798005,139.632381,140.352200,141.536417,142.024036,142.836735,144.113832,144.717551,147.016327,147.875465,148.734603,149.965261,151.126259,152.121633,152.469932,153.584490,154.931247,156.626304,158.298141,159.296599,160.178957,161.548934,164.056689,164.915828,165.589206,166.796644,169.374059,170.906576,171.928254,172.740952,173.716190,174.737868,176.363265,177.524263,178.406621,179.799819,180.937596,182.493333,183.491791,185.001088,185.976327,187.183764,188.460862,189.946939,190.504218,191.758095,192.315374,192.733333,194.219410,195.055329,196.053787,197.307664,199.234921,200.581678,201.138957,201.835556,202.996553,204.111111,206.247347,207.176145,207.524444,208.360363,209.080181,210.635918,211.866576,212.795374,214.072472,214.560091,215.558549,216.951746,217.485805,218.437823,220.040000,221.479637,222.733515,224.358912,225.009070 diff --git a/data/torah/labels/Miketz-2.txt b/data/torah/labels/Miketz-2.txt deleted file mode 100644 index 868072818..000000000 --- a/data/torah/labels/Miketz-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.065034,4.063492,4.339048,5.291066,6.753923,8.007800,9.400998,10.027937,11.119274,13.510930,14.625488,15.554286,16.622404,17.667302,18.410340,19.362358,20.407256,21.823673,23.379410,23.681270,25.074467,26.235465,27.628662,30.275737,31.483175,31.808254,32.481633,33.758730,34.919728,35.685986,36.080726,36.963084,39.703039,40.864036,41.444535,42.094694,42.698413,43.929070,46.251066,46.548299,48.104036,49.265034,50.518912,51.517370,52.353288,53.189206,53.930703,54.952381,56.159819,57.622676,60.083991,61.175329,62.243447,63.543764,64.890522,66.423039,67.885896,68.977234,70.300771,71.461769,72.506667,73.574785,74.317823,75.780680,77.591837,78.381315,78.845714,79.751293,81.283810,82.862766,84.023764,85.370522,87.181678,89.364354,90.757551,92.266848,93.776145,95.912381,97.607438,97.674014,99.787029,100.878367,101.691066,102.223583,103.082721,103.266939,104.451156,106.192653,107.283991,108.514649,109.907846,111.184943,112.717460,114.110658,116.316553,117.384671,119.126168,120.821224,121.982222,122.725261,123.654059,125.070476,126.788753,128.013243,129.104580,130.149478,130.962177,131.960635,133.121633,134.212971,135.629388,138.392562,139.716100,140.807438,142.223855,143.013333,143.918912,145.196009,146.658866,147.007166,148.818322,149.816780,150.374059,151.256417,153.508753,154.182132,154.530431,155.157370,156.388027,157.131066,157.874104,158.524263,159.731701,160.985578,162.518095,163.609433,164.561451,165.815329,167.463946,168.508844,170.064580,171.063039,171.689977,172.409796,173.660590,174.725624,175.956281,176.815420,177.395918,178.301497,179.903673,180.693152,181.714830,183.015147,185.964082,187.264399,189.145215,190.375873,192.628209,193.580227,194.183946,195.043084,196.320181,197.365079,198.526077,199.547755,200.755193,203.333506,204.205714,204.945669,206.106667,207.848163,209.125261,210.263039,211.145397,211.422494,212.583492,214.510748,216.020045,217.134603,217.993741,218.224399,219.617596,221.451973,222.403991,222.984490,224.145488,225.167166,225.956644,226.560363,227.094422,228.394739,232.318912,233.526349,234.199728,234.896327,236.312744,237.380862,237.822041,238.631655,239.537234,240.698231,241.766349,242.741587,243.089887,244.436644,245.365442,246.271020,247.339138,248.128617,250.357732,251.286531,252.006349,252.702948,253.538866,254.305125,254.955283,255.489342,256.603900,258.345397,260.110113,261.549751,262.107029,263.082268,264.591565,265.148844,265.729342,266.797460,267.772698,269.003356,270.210794,271.278912,272.997188,274.506485,275.737143,276.921361,277.919819,279.057596,280.172154,281.681451,282.122630,282.610249,283.817687,285.768163,286.789841,288.508118,289.599456,289.970975,290.760454,292.292971,292.618050,293.244989,294.382766,295.590204,296.333243,297.563900,300.884354,301.488073,301.786848,302.737324,303.921542,305.082540,306.057778,307.427755,308.797732,310.177732,311.994376,312.248254,313.664671,314.616689,315.429388,317.008345,318.401542,319.237460,320.421678,321.373696,322.790113,323.718912,324.787029,325.855147,326.737506,328.223583,329.547120,330.336599,331.265397,332.008435,334.005351,335.352109,336.466667,337.650884,338.695782,339.926440,340.367619,341.784036,343.107574,343.873832,344.222132,345.499229,347.101406,348.192744,350.700499,352.465215,353.440454,355.274830 diff --git a/data/torah/labels/Miketz-3.txt b/data/torah/labels/Miketz-3.txt deleted file mode 100644 index 24ea82ee9..000000000 --- a/data/torah/labels/Miketz-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.156372,4.969070,5.151746,6.266304,7.636281,9.168798,10.678095,11.792653,12.140952,12.512472,13.185850,13.789569,14.509388,15.531066,16.784943,17.922721,19.014059,19.221497,20.243175,20.800454,21.427392,22.402630,22.797370,23.795828,24.399546,25.537324,26.164263,27.278821,28.458413,29.108571,29.433651,30.408889,31.662766,32.638005,33.659683,34.216961,34.842358,35.187574,36.441451,37.735601,38.265034,38.432200,39.588571,40.443084,41.464762,42.486440,43.020499,43.554558,44.181497,45.203175,46.410612,47.200091,47.989569,48.593288,50.613424,51.402902,52.331701,52.559274,53.906032,55.902948,57.342585,58.526803,59.339501,59.896780,60.590295,61.774512,62.585669,63.653787,65.116644,66.207982,66.961302,67.344218,67.831837,69.113651,71.342766,72.503764,73.037823,73.943401,74.892336,76.146213,78.653968,79.280907,79.907846,81.092063,81.417143,82.787120,83.274739,84.157098,84.644717,85.201995,86.316553,87.965170,89.008526,89.380045,91.260862,92.328980,94.279456,95.231474,95.788753,96.042630,97.691247,98.225306,99.061224,100.117007,100.785760,101.389478,102.805896,103.920454,104.802812,105.079909,105.613968,107.076825,108.261043,108.838458,109.999456,111.090794,113.482449,114.527347,115.386485,115.802902,117.033560,118.287438,119.216236,120.330794,121.329252,122.629569,123.001088,123.604807,124.765805,127.018141,127.761179,128.689977,129.502676,130.570794,131.987211,134.309206,134.820045,135.097143,136.629660,137.442358,138.998095,139.950113,140.786032,141.738050,142.782948,143.711746,144.292245,145.639002,147.264399,147.657596,149.120454,149.840272,151.210249,152.139048,153.439365,154.530703,155.622041,156.713379,157.572517,158.338776,159.290794,160.103492,161.589569,162.123628,162.657687,163.679365,164.097324,164.538503,165.304762,167.580317,168.369796,169.363628,170.106667,171.012245,171.848163,172.614422,173.798639,174.866757,175.442630,175.999909,176.905488,177.530884,177.970522,178.829660,179.385397,180.453515,181.637732,182.938050,183.564989,183.981406,184.837460,186.114558,186.648617,187.438095,188.274014,188.668753,188.829751,189.921088,190.617687,191.243084,191.541859,192.726077,194.212154,194.862313,195.698231,196.464490,197.509388,198.066667,198.763265,199.715283,201.085261 diff --git a/data/torah/labels/Miketz-4.txt b/data/torah/labels/Miketz-4.txt deleted file mode 100644 index d9779a4be..000000000 --- a/data/torah/labels/Miketz-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.387029,6.315828,7.198186,8.730703,9.729161,10.495420,11.308118,12.910295,15.418050,16.486168,17.275646,18.459864,19.527982,20.828299,21.757098,22.685896,24.055873,24.752472,25.518730,27.190567,28.142585,28.650340,29.413515,30.481633,31.619410,32.800544,33.418231,34.049796,35.229388,36.669025,37.992562,38.456961,39.292880,40.732517,42.056054,42.915193,43.261950,44.306848,45.607166,45.837823,46.905941,47.741859,48.322358,49.062313,50.827029,52.893605,53.845624,54.775045,55.252789,55.972608,57.249705,58.503583,60.036100,60.593379,60.799274,61.542313,62.563991,64.119728,65.512925,66.751383,67.796281,68.794739,70.211156,71.113651,72.181769,73.249887,74.689524,75.920181,76.220499,77.381497,77.961995,78.542494,79.401633,79.958912,81.352109,82.838186,83.975964,84.556463,84.949660,85.669478,87.062676,88.246893,89.175692,90.220590,91.520907,93.262404,96.397098,97.604535,98.719093,99.346032,99.762449,100.505488,101.968345,102.688163,103.291882,104.290340,104.847619,105.846077,107.169615,107.912653,109.236190,110.428209,110.962268,111.751746,112.866304,114.004082,114.445261,116.024218,116.860136,117.997914,118.810612,119.809070,120.528889,121.132608,122.107846,122.502585,123.431383,124.058322,125.335420,126.078458,127.100136,128.377234,130.374150,131.372608,132.719365,133.996463,134.948481,136.132698,136.713197,137.293696,138.268934,139.151293,140.614150,143.168345,144.027483,145.188481,145.580136,146.578594,147.272109,148.479546,149.385125,149.892880,151.169977,152.606531,153.581769,154.765986,156.135964,156.643719,157.594195,158.894512,160.355828,161.934785,162.352744,163.258322,164.837279,166.532336,167.948753,170.015329,171.013787,172.499864,173.753741,174.659320,176.122177,177.259955,179.605170,180.580408,181.277007,182.112925,183.181043,185.085079,185.781678,186.081995,187.057234,188.125351,188.566531,190.424127,191.840544,192.839002,193.883900,195.114558,196.113016,196.879274,198.017052,199.410249,200.269388,201.871565,203.009342,204.727619,205.261678,206.027937,206.678095,208.187392,209.464490,210.300408,210.973787,212.506304,213.992381,214.688980,215.501678,216.546576,219.031111,219.727710,220.168889,220.865488,221.956825,223.512562,224.627120,225.254059,225.811338,226.740136,228.853152,229.781950,231.035828,233.375552,233.816054,234.466213,235.069932,236.161270,237.043628,240.108662,240.944580,242.709297,243.916735,245.588571,247.771247,248.537506,249.025125,249.698503,250.859501,252.043719,253.251156,254.296054,254.433832,255.385850,256.221769,257.498866,259.054603,260.610340,261.608798,262.514376,264.602242,265.737324,267.246621,268.872018,269.870476,270.867392,271.912290,273.073288,274.536145,275.464943,276.324082,276.718821,277.879819,278.805533,280.593469,280.800907,282.379864,283.447982,284.516100,285.537778,287.279274,288.578050,290.807166,291.921723,292.222041,294.218957,295.240635,297.771610,299.675646,300.859864,302.160181,303.297959,304.133878,306.084354,307.198912,308.313469,309.033288,309.799546,311.099864,312.562721,314.072018,314.582857,315.534875,316.417234,317.647891,319.342948,320.016327,320.945125,322.268662,323.685079,324.358458,325.055057,326.285714,326.795011,328.304308,329.349206 diff --git a/data/torah/labels/Miketz-5.txt b/data/torah/labels/Miketz-5.txt deleted file mode 100644 index f19aac2db..000000000 --- a/data/torah/labels/Miketz-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.366893,3.620771,4.921088,6.151746,7.243084,8.520181,9.518639,11.074376,12.421134,13.651791,14.789569,15.880907,16.693605,18.133243,18.992381,19.805079,20.942857,22.150295,23.288073,24.797370,25.865488,26.654966,27.955283,28.884082,29.673560,33.086893,34.155011,34.362449,36.057506,38.740386,40.583946,43.068481,43.625760,45.785215,46.922993,48.827029,49.941587,51.613424,53.308481,54.144399,55.371973,56.695510,57.229569,57.949388,59.296145,60.410703,61.478821,62.663039,65.537080,66.396218,67.975175,69.902431,72.108327,73.362204,75.684200,77.518576,78.029415,78.981433,79.910232,81.071229,82.417987,83.137805,83.718304,84.414903,85.808100,87.479937,88.176535,89.407193,90.312771,90.986150,92.216808,93.006286,93.981524,95.351501,97.464517,98.416535,99.670413,101.202930,102.271048,103.919665,105.080662,106.543520,107.588418,108.028055,109.212272,110.628690,111.464608,112.997125,114.529642,116.572998,118.220073,118.614812,121.004926,123.025062,124.348599,125.625696,126.693814,127.111774,128.203111,129.526649,131.035946,132.196944,133.520481,134.658259,135.401297,136.446195,137.885833,138.046830,139.045288,139.390504,140.644381,142.308508,143.446286,145.466422,147.324018,148,149.622794,150.760572,152.409189,153.872046,155.404563,156.704880,156.862794,158.186331,158.971184,159.667783,160.410821,162.082658,163.475855,163.635311,164.517669,165.864427,167.071864,168.209642,169.092000,170.856717,172.505334,174.293270,176.847465,177.590504,178.099801,178.958939,180.073497,180.561116,182.000753,182.906331,183.904789,185.414087,188.107601,188.499257,189.404835,190.426513,191.587511,192.887828,194.698984,195.372363,196.928100,197.531819,198.390957,199.203656,200.666513,204.195946,205.426604,206.726921,208.050458,209.141796,210.372454,212.160390,213.344608,214.900345,215.059801,216.429778,217.544336,218.287374,219.123293,220.516490,221.259529,222.025787,223.767284,224.603202,225.276581,227.041297,228.211638,229.093996,230.278213,231.717851,232.948508,234.620345,236.083202,236.501161,237.337080,238.358758,239.519755,241.400572,243.049189,244.140526,245.347964,246.369642,247.577080,248.621978,249.248916,249.968735,251.222613,252.499710,253.428508,254.611184,255.563202,256.213361,257.026059,258.024517,258.837216,260.369733,263.806286,264.827964,266.058622,268.357397,270.516853,272.792409,273.790867,274.441025,275.276944,276.252182,276.948780,277.691819,278.713497,279.363656,280.594313,281.639211,282.614449,283.287828,284.100526,285.772363,288.767737,289.742975,290.973633,292.436490,293.365288,293.571184,294.241479,295.193497,296.633134,298.908690,299.465969,301.277125,302.925742,303.738440,304.899438,306.664155,308.150232,309.171910,310.562023,311.746241,312.860799,314.579075,315.740073,316.575991,317.760209,318.828327,319.337624,320.568282,321.775719,322.750957,323.447556,324.654994,326.698350,327.650368,327.833043,328.715402,329.667420,330.345515,330.949234,331.664336,332.664427,333.265062,333.752681,334.704699,335.888916,336.817715,337.467873,337.884291,338.580889,339.857987,341.088644,342.388962,345.361116,345.895175,346.406014,347.032953,348.495810,349.053089,350.167647,351.375084,353.372000,354.347238,355.879755,357.365833,358.224971,359.475765,360.729642,361.215719,362.074857,364.420073,364.463429,366.367465,367.574903,368.944880,371.034676,371.963474,373.078032,375.423248,376.468145,377.257624,378.488282,378.835039,379.949597,380.901615,381.830413,383.432590,384.593588,385.519302,386.494540,387.653996,388.277851,388.719030,389.089007,390.296445,392.316581,393.686558,394.917216,396.078213,397.448191,399.120028,400.164926,400.791864,401.674223,402.254721,403.160300,404.158758,405.389415,406.434313,407.641751,409.104608,410.869325,411.937443,412.212998,413.141796,414.047374,416.717669,417.925107,418.482386,419.596944,420.293542,421.036581,421.895719,422.754857,424.148055,424.705334,426.423610,427.538168,428.374087,429.047465,429.976263,430.974721,432.205379,433.110957,434.597034,436.083111,437.336989,438.381887,439.612545,440.262703,442.027420,442.886558,443.815356,444.628055,445.696173,450.200844,451.268962,451.988780,454.844835,455.727193,458.281388,460.510504,461.601842,462.693179,463.227238,464.202477,465.177715,466.199393,467.639030,468.219529,468.916127,469.426966,470.657624,472.166921,473.792318,474.883656,476.091093,476.973452,478.273769,478.527647,480.129823,481.960476,483.794852,484.166372,485.350589,487.092086,488.253084,490.017800,490.969818,492.386236,493.872313,495.311950,496.287188,497.192766,498.307324,498.934263,499.092177,499.858435,500.133991,501.527188,502.757846,504.197483,504.986961,506.937437,507.494716,508.144875,509.282653,510.048911,511.767188,513.299705,514.692902,515.296621,515.900340,517.386417,518.268775,519.429773,521.124830,521.821428,522.378707,523.353945,523.980884,525.257982,527.092358,528.671315,530.110952,531.898889,532.734807,533.570725,536.403560,536.912857,538.700794,540.674490,541.858707,542.648186,544.366462,545.479478,546.176077,547.429955,548.590952,549.473311,550.355669,551.539886,552.956304,553.931542,555.046100,556.485737,558.227233,559.086372,560.061610,561.361927,561.942426,564.055442,565.170000,565.936258,567.608095,569.047732,570.464150,571.321746,572.227324,573.341882,574.526100,575.501338,576.639116,577.985873,578.798571,578.911587,580.049365,581.290907,583.218163,584.100521,584.843560,585.958118,587.258435,588.349773,589.742970,591.252267,591.786326,592.668685,593.527823,594.015442,595.292540,598.125374,599.216712,600.331270,602.026326,603.907143,605.091360,605.602199,606.832857,607.900975,609.294172,610.733809,611.918027,612.916485,613.473764,614.797301,616.167279,617.630136,618.721474,620.671950,622.204467 diff --git a/data/torah/labels/Miketz-6.txt b/data/torah/labels/Miketz-6.txt deleted file mode 100644 index 57e0b9f40..000000000 --- a/data/torah/labels/Miketz-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.826667,3.871565,6.402540,6.955193,9.323628,10.647166,11.970703,12.130159,13.291156,14.034195,14.218413,15.402630,16.911927,18.281905,18.908844,20.162721,21.021859,22.531156,23.436735,24.435193,26.362449,27.639546,28.568345,30.031202,30.983220,32.144218,33.583855,35.065306,35.596281,36.664399,37.611791,39.144308,41.227937,43.085533,43.851791,46.104127,46.684626,48.727982,50.794558,51.258957,51.909116,52.721814,54.254331,56.297687,57.760544,59.176961,60.825578,62.218776,63.101134,65.098050,66.166168,68.163084,69.625941,71.204898,71.669297,73.201814,74.641451,74.917007,75.822585,77.006803,77.375238,77.955737,79.256054,80.463492,81.206531,81.810249,83.110567,85.403175,86.076553,87.260771,88.421769,90.000726,91.092063,91.904762,92.996100,95.434195,95.921814,96.595193,96.802630,98.567347,100.239184,100.562721,102.211338,103.441995,103.952834,104.649433,105.949751,107.342948,108.573605,111.104580,112.776417,113.380136,115.400272,117.717642,119.157279,120.202177,121.223855,121.943673,122.895692,123.731610,124.939048,125.635646,126.192925,127.237823,129.211519,131.417415,132.183673,133.739410,134.296689,136.131066,138.592381,139.846259,141.007256,141.936054,142.655873,143.584671,146.270476,147.733333,148.522812,149.590930,150.612608,151.564626,151.934603,153.165261,154.615782,156.032200,156.519819,157.680816,158.795374,159.840272,161.001270,161.674649,163.369705,164.855782,165.668481,166.713379,168.245896,170.567891,170.939410,172.053968,172.564807,173.098866,174.004444,175.676281,176.488980,177.739773,178.436372,179.526168,180.245986,181.499864,183.148481,183.845079,184.866757,186.492154,187.628390,188.116009,189.044807,189.671746,190.574240,191.828118,193.235283,193.792562,195.000000,196.323537,197.159456,198.320454,200.479909,202.523265,203.637823,204.589841,205.681179,206.818957,207.883991,208.975329,211.181224,212.992381,214.315918,215.430476,216.915011,217.843810,219.074467,221.001723,222.992472,224.571429,226.638005,227.218503,228.449161,230.701497,231.258776,233.116372,235.322268,236.552925,237.873379,239.034376,240.102494,240.961633,242.331610,244.723265,245.721723,247.857959 diff --git a/data/torah/labels/Miketz-7.txt b/data/torah/labels/Miketz-7.txt deleted file mode 100644 index fb812f040..000000000 --- a/data/torah/labels/Miketz-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.690913,5.316309,5.873588,6.686287,7.475765,7.847284,8.683203,9.890640,11.121298,12.142976,12.886015,13.579529,14.810187,15.853543,16.526922,17.920119,19.568736,20.567194,21.379892,22.331910,23.864427,24.978985,26.116763,27.231321,28.461978,30.574994,31.759212,32.455811,33.756128,35.218985,35.565742,37.144699,39.157216,40.271774,40.525652,41.500890,42.197489,42.801207,43.451366,43.912681,45.375538,47.534994,48.556672,49.578350,51.714586,52.968464,54.942160,56.079937,57.055176,57.751774,58.027330,59.490187,61.061434,62.501071,63.522749,65.589325,67.609461,69.629597,71.208554,72.833951,73.855629,74.737987,76.084745,77.176083,78.406740,79.637398,80.821615,83.050731,83.654450,84.443928,84.721026,86.834042,89.086377,91.013634,91.431593,92.453271,93.614269,94.543067,95.448645,96.214903,97.468781,98.467239,98.996672,99.623611,100.179348,101.711865,102.385244,104.358940,105.261434,107.211910,108.628328,109.603566,110.741343,111.925561,112.905840,113.657806,114.958123,117.744518,118.696536,119.369915,119.973634,121.134631,122.202749,122.849824,124.753860,125.891638,126.588237,128.376173,131.063520,132.246196,132.452092,134.634767,135.074405,136.955221,138.092999,138.836037,140.136355,140.343792,141.249371,141.969189,142.596128,143.523384,144.893362,146.379439,147.888736,148.956854,150.721570,151.670504,152.390323,153.060618,154.268055,155.822250,157.169008,158.097806,158.860981,159.766559,160.347058,162.969371,163.710867,164.732545,165.357942,166.819257,167.419892,168.766650,170.291457,171.916854,172.938532,173.097987,174.003566,174.907602,176.393679,177.252817,178.181615,179.342613,180.317851,181.409189,182.430867,183.567103,184.913860,186.005198,186.700255,187.838033,188.697171,190.229688,191.204926,191.971185,192.991321,194.593498,196.126015,196.983611,197.749869,198.864427,200.652364,202.090640,203.019439,204.180436,204.853815,205.361570,206.406468,208.230051,209.042749,210.435947,211.689824,212.641842,213.408101,215.335357,216.240935,217.100074,218.377171,220.931366,221.651185,222.463883,223.787420,224.205380,225.041298,226.364835,227.131094,227.688373,228.384972,228.963928,229.985606,230.937625,231.655901,233.095538,235.208554,237.298350,237.877307,238.247284,239.408282,240.453180,241.776718,242.333996,243.750414,246.230323,247.693180,248.621978,250.015176,251.269053,252.406831,253.428509,254.775266,256.145244,257.909960,259.279937,260.696355,261.485833,261.831049,262.945606,264.036944,265.430142,266.614359,267.471956,268.400754,269.583430,270.651547,271.533906,272.577262,273.482840,274.620618,275.572636,276.571094,277.838940,278.512318,279.510776,280.277035,281.089733,281.809552,282.599030,283.876128,285.315765,286.360663,286.894722,288.495357,290.004654,290.887012,291.512409,292.719847,293.950504,295.622341,296.109960,296.876219,298.106876,298.676498,299.521182,300.072293,301.233291,303.415967,304.646624,304.759640,305.781318,306.988756,308.264311,309.169890,310.284447,311.538325,313.419141,314.928438,315.572429,316.143676,317.002815,318.372792,320.787667,322.248983,322.826397,324.033835,324.496692,327.886806,329.651522,330.441001,332.159277,334.202633,335.015332,335.547849,336.569527,337.335785,339.681001,340.424039,341.794017,342.560275 diff --git a/data/torah/labels/Miketz-H.txt b/data/torah/labels/Miketz-H.txt deleted file mode 100644 index 204d524dd..000000000 --- a/data/torah/labels/Miketz-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.947392,5.433469,6.339048,8.684263,9.891701,12.329796,15.023311,17.072750,18.453696,18.822132,21.353107,22.792744,23.721542,25.532698,27.088435,28.063673,29.062132,29.455329,31.196825,32.031202,34.446077,36.582313,37.534331,38.416689,38.973968,41.528163,43.150476,45.263492,47.515828,48.630385,49.466304,51.138141,52.368798,53.692336,55.512834,56.627392,58.020590,59.228027,61.480363,62.664580,63.500499,65.915374,68.887528,70.025306,71.070204,72.440181,73.601179,74.225034,75.081088,76.961905,78.400494,80.974331,81.856689,82.437188,83.248345,84.316463,85.616780,86.147755,87.189569,88.931066,91.514310,92.071589,93.023607,93.743426,96.088641,97.040659,97.923018,99.385875,101.777530,102.520569,104.471045,106.584061,107.232678,107.906056,110.646011,112.410727,113.385966,115.382882,117.704877,118.401476,119.190954,119.748233,121.094991,122.929367,124.995943,126.574900,127.643018,127.825693,128.731272,129.379888,130.819526,132.352043,133.211181,134.139979,136.550229,137.124560,137.657077,138.492995,139.188052,140.743789,143.013176,144.336714,146.472950,147.750047,149.630864,150.582882,151.279480,152.835217,153.833675,154.948233,155.691272,157.200569,158.245467,159.290365,159.986963,160.822882,162.796578,164.420433,165.047371,166.603108,169.296623,170.434401,171.920478,172.988596,173.476215,174.219254,175.078392,176.030410,177.632587,178.677485,179.536623,181.185240,181.997938,182.996396,183.785875,184.737893,186.131090,187.728641,188.471680,189.655898,190.143517,191.768913,193.022791,193.719390,194.485648,195.762746,197.806102,198.804560,200.940795,201.405195,202.217893,203.100251,205.282927,206.327825,206.464061,207.439299,208.368097,209.087916,209.807734,211.247371,212.756669,215.009004,215.705603,216.332542,218.027598,218.491997,221.069412,221.671589,222.552405,225.013721,225.495172,227.329548,230.324922,230.928641,233.550954,234.151589,234.851272,235.287825,236.681022,237.911680,239.119117,239.698074,241.764650,242.763108,245.247644,245.919480,246.612995,247.077394,248.470591,249.352950,250.351408,252.291143,253.498252,255.518388,258.397663,259.163921,259.766098,260.136076,261.598933,262.690271,263.711949,264.546325,266.636121,267.495259,269.167096,271.253808,271.529364,273.897799,274.385418,275.546416,276.311132,277.750769,278.842107,280.072765,281.187323,282.975259,284.250815,285.411813,285.828230,287.314307,289.148683,290.354579,291.165735,292.837572,294.695169,295.925826,297.040384,298.038842,298.523377,298.894896 diff --git a/data/torah/labels/Mishpatim-1.txt b/data/torah/labels/Mishpatim-1.txt deleted file mode 100644 index 9e2239e01..000000000 --- a/data/torah/labels/Mishpatim-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.163772,3.282214,4.922753,5.802322,6.665308,8.133158,9.082944,10.104683,10.968124,11.917910,12.637444,13.515276,14.580188,16.393414,17.285573,18.422438,19.731991,20.206904,21.185471,22.120866,23.344075,24.668018,25.066511,25.670920,26.505580,27.354631,28.419542,29.268593,30.534973,30.949036,32.013947,32.909188,33.657504,34.823150,35.724759,36.075140,37.034312,37.868972,38.991446,40.355439,42.253149,43.394851,44.857864,45.908384,46.728654,48.282848,49.156233,49.861377,50.580912,51.674604,52.779193,52.965382,54.362169,55.427410,56.492321,56.847871,57.845046,58.450799,59.344531,61.439554,63.693785,64.718750,64.972944,66.656654,67.966207,68.129880,69.100053,69.891541,70.253851,71.560861,72.539716,73.403158,73.593586,74.451135,75.676887,77.000830,78.382337,79.256301,80.296299,81.490726,82.021360,82.936161,84.179964,84.633167,85.674714,86.207459,87.603355,88.194180,89.935454,91.504039,93.389219,93.993628,94.310223,95.285584,96.684687,97.654920,99.252287,99.631221,100.533058,101.597970,102.258142,103.051429,104.643191,105.722493,107.089609,108.025003,108.946008,109.615133,110.665653,111.131800,112.045774,112.701997,113.479094,115.479401,116.457968,117.666785,118.170460,119.465622,120.746394,121.212518,122.234257,122.824275,123.774061,124.608721,125.774367,126.508292,126.925622,128.120050,129.501556,130.652811,131.703331,132.207006,133.142401,134.667814,135.387348,136.409087,137.876938,138.668425,139.877244,140.985327,141.676428,142.726601,143.633214,144.410311,145.863771,148.655565,149.677304,150.842950,151.314302,152.292869,153.487296,154.739286,156.034034,157.257657,158.466475,159.401870,160.661902,162.185268,163.281586,163.679604,165.005843,166.574428,167.624949,169.438176,170.517478,171.553607,172.057282,173.079021,174.575652,176.057893,177.180367,177.655260,178.734562,179.555262,180.577001,181.800210,182.715734,183.181717,183.450259,184.380341,185.617940,186.189349,187.272870,188.125165,188.964622,189.861972,191.273481,191.786934,193.673086,195.140937,196.608787,197.125631,198.420793,199.384969,200.680131,201.615526,203.270456,204.752697,205.666918 diff --git a/data/torah/labels/Mishpatim-2.txt b/data/torah/labels/Mishpatim-2.txt deleted file mode 100644 index 009c4ba86..000000000 --- a/data/torah/labels/Mishpatim-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.967202,2.553777,4.172052,4.625999,4.938497,6.493109,7.195145,7.430799,8.335117,9.356856,10.407377,11.069349,12.119869,13.141608,14.551896,15.415337,15.728069,16.980059,17.584468,18.447910,19.584774,20.620904,21.628253,22.160708,22.995368,23.959544,24.819020,25.869540,27.524470,29.826980,30.834870,31.644291,32.763650,33.831071,34.532214,35.338093,36.575692,37.770120,39.439439,40.533132,41.318930,42.317578,43.372100,44.652872,45.789737,47.387104,48.066609,49.045176,50.225213,51.423895,52.225519,52.829928,53.779714,54.945359,55.895145,56.744196,57.780325,58.543032,59.478427,60.629682,61.708984,62.558035,63.637337,64.270527,65.292266,66.616210,67.422088,68.472609,69.609473,70.559259,71.509044,73.955461,74.876466,76.603349,77,78.708580,79.927598,80.470865,81.064564,82.633149,82.970852,83.3,83.630214,84.637562,86.019069,87.483865,88.563167,89.210748,90.433957,91,91.801073,93.268923,93.6,94.074802,95.053264,96.118280,97.256121,98.510391,99.201145,100.568260,101.330967,101.906595,102.627505,102.970741,104.237886,104.653621,104.913863,105.763299,106.778046,108.073209,109.756920,111.239160,112.174555,112.980434,113.229393,114.405103,115.229894,115.985525,117.314684,120.638933,122.106784,123.103826,124.308559,125.574940,127.301823,128.330137,129.409438,130.546303,131.827075,132.724674,133.377846,133.956737,135.232758,136.384013,137.664785,138.236983,139.229940,140.338024,142.180190,143.014850,143.820728,144.914421,146.353490,147.418401,148.540875,149.300307,149.827551,150.557567,151.762561,152.435118,152.829583,153.820868,154.471479,155.013251,156.006208,157.089293,157.932013,158.751681,159.707106,160.347656,161.887460,162.678948,163.599952,164.132408,165.240491,166.996155,168.449615,170.133325,171.313362,172.507790,173.961249,175.270802,175.958644,176.980383,178.232373,179.901693,182.448845,182.916506,183.738218,185.004599,185.868041,186.616357,187.868347,188.76,189.105946,189.940606,190.300374,191.433365,192.283301,193.060398,194.168482,195.147049,196.053662,197.391996,198.557642,199.046027,200.111837,200.982629,202.392916,202.925372,204.033455,204.623473,205.091076,205.990589,206.911593,209.487527,209.962420,210.739517,211.732475,213.134338,213.349227,214.846829,216.041257,216.294907,216.919089,218.358158,219.178428,220.804576,223.553197,224.397086,225.001495,226.037625,227.260833,228.484042,229.071801,230.395744,231.518218,232.698505,233.601767,234.422036,235.386212,236.393561,237.415300,237.998168,238.981769,239.811354,240.510962,241.250423,242.266164,242.535679,243.287903,244.852579,245.387984,246.720401,247.828485,249.382679,250.721013,251.598845,252.563022,253.484763,254.217951,254.748213,256.000203,256.519440,258.474489,259.512704,260.304192,261.653262,262.793782,263.221434,263.840233,265.034661,265.659200,266.537032,268.076835,269.328825,270.367353,271.192144,272.517578,273.798350,274.315263,275.006016,275.768722,277.049494,278.638581,279.275927,280.930856,281.799155,283.345049,285.273401,287.014675,287.347279,288.799121,289.401572,289.999086,291.020825,292.421483 diff --git a/data/torah/labels/Mishpatim-3.txt b/data/torah/labels/Mishpatim-3.txt deleted file mode 100644 index 674dc9bd5..000000000 --- a/data/torah/labels/Mishpatim-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.984820,2.886103,3.459514,4.423690,5.718852,6.049331,7.114750,8.496256,8.798461,9.992888,11.374394,12.180273,13.360309,14.597908,16.209666,17.231405,18.123628,19.490743,20,20.776887,21.985705,23.295258,24.201871,25.468252,26.432428,27.228175,28.321867,28.745395,30.069339,31.206203,32.429412,33.537495,33.799357,35.523411,36.560460,37.884403,38.373686,38.662789,40.183321,40.874074,41.161914,41.959909,43.154337,44.406327,45.125861,46.377852,46.933502,47.609865,48.746729,49.760302,50.977286,51.600317,51.977112,52.869335,53.991809,55.027939,55.500725,56.421729,56.939794,58.278128,58.870444,59.474853,60.942704,62.180303,62.885078,64.080964,64.683493,64.928134,65.410432,68.418087,69.108840,72.030150,72.706512,75.325618,75.901246,76.462482,76.807859,78.390835,78.836947,79.025781,81.292720,82.621096,83.671616,84.138877,84.966778,85.830220,86.753636,88.063188,89.329569,89.796490,91.307512,92.473158,93.552460,94.761278,95.826189,96.683875,98.050990,98.736327,100.060271,100.463210,100.765415,102.290828,103.355738,103.686724,104.550166,104.823589,106.190705,106.874466,107.910596,109.018679,110.889468,111.364134,112.213184,112.493648,113.558559,114.106301,115.743696,117.187478,118.856798,120.180742,120.972230,122.195439,122.735239,123.325257,124.922624,126.174614,127.038055,128.174920,129.153486,130.189616,130.985417,132.525222,133.096106,133.858813,134.909334,136.132542,137.341360,138.895554,139.481640,140.103301,141.198065,142.717271,143.658500,145.196228,145.616839,147.041517,147.817882,148.903215,150.112034,151.004256,151.997214,153.421892,153.718257,154.645101,155.704173,156.079226,156.941772,157.722008,159.703744,160.558290,161.234653,162.190973,162.645359,163.881190,164.345676,165.295462,166.058168,166.979172,168.562148,169.235084,170.328776,171.609548,173.753761,174.574030,174.749014,175.984959,177.150605,178.301860,180.230212,181.367077,181.931815,183.479724,184.390629,185.669267,187.340721,188.495450,189.786207,190.578626,191.657928,192.866746,193.917266,195.269991,196.982483,197.520762,198.997180,199.488106,200.079751,200.338784,201.360522,201.812467,203.490345,205.325223,206.382874,207.821942,208.687116,209.711969,211.151037,212.085729,212.315980,213.438454,214.229942,215.539495,215.923411,216.514495,217.565015,218.155034,219.464587,220,220.758231,221.837533,222.368640,223.735756,224.335254,224.838928,225.687979,226.983141,227.990489,228.393429,229.041010,229.890060,230.868627,231.732069,232.624292,234.207268,235.646337,236.725639,237.977629,238.812289,240.150623,241.174705,242.095709,243.333308,244.674754,246.142604,246.822247,248.448394,249.490581,249.767707,251.398486,251.792472,252.549742,253.600262,254.144296,254.852252,255.456661,256.809386,257.231280,258.051549,258.756693,259.864776,261.078416,261.725997,262.718955,263.582396,264.906339,265.493970,265.858422,266.736254,267.678997,268.655404,269.333927,269.851991,270.864218,272.234867,273.735452,274.872317,276.185515,277.423114,278.804621,279.130527,279.4,280.065922,281.116442,282.929669,283.327387,284.548238 diff --git a/data/torah/labels/Mishpatim-4.txt b/data/torah/labels/Mishpatim-4.txt deleted file mode 100644 index 28f1e92f1..000000000 --- a/data/torah/labels/Mishpatim-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.706943,3.248915,3.914850,5.368309,6.274923,7.383006,7.682928,8.965982,10.242436,11.595160,12.444211,13.782545,14.631596,15.552600,16.115630,17.079807,17.636419,18.355953,19.564771,20.960668,21.996798,22.903411,23.853197,24.116044,25.011599,25.873729,26.934912,27.605310,28.539956,29.500049,30.334709,31.557917,32.464531,33.526477,34.332355,35.522599,36.404688,37.475315,38.635172,39.469832,40.577915,43.175346,44.197085,45,46.072814,46.481376,47.090136,47.939180,48.181586,49.218546,50.184134,50.669615,51.637594,52.309224,52.891672,53.315882,54.194604,55.594324,56.203217,57.167393,57.407530,58.664025,60.410887,61.331891,62.065816,63.116337,65.591535,66.109660,67.072430,68.397779,69.311320,71.203562,72.585069,74.355124,74.896762,75.880537,76.959839,77.909624,78.988926,80.111400,80.643855,82.313175,83.392477,85.435955,86.558429,87.407480,88.616298,90.069757,91.259624,92.108675,92.986507,94.310450 diff --git a/data/torah/labels/Mishpatim-5.txt b/data/torah/labels/Mishpatim-5.txt deleted file mode 100644 index 618fcb863..000000000 --- a/data/torah/labels/Mishpatim-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.088373,2.582434,4.405356,5.196844,6.348099,7.571308,8.434453,9.197160,10.593057,11.542842,12.463847,12.838821,13.931697,14.550497,14.783814,15.478089,16.672516,18.125976,18.715994,19.908121,20.621908,21.723649,22.975639,24.155675,25.494009,26.112809,27.580659,28.832649,29.408277,30.458797,32.559839,33.754266,34.084124,34.847959,35.898479,36.228927,36.789659,37.841050,38.459850,39.870138,40.733579,41.841662,42.790160,42.977239,44.157275,45.466828,45.719793,47.262696,49.635379,50.964589,52.993677,54.159322,55.238624,56.361098,58.807516,60.059506,60.850993,62.261281,62.742910,63.508957,64.732166,66.271970,68.070806,68.833513,69.797689,71.064070,71.771473,72.890466,74.057630,75.136932,76.791861,78.098932,79.509280,80.602973,81,81.839302,83.059312,85.232307,85.858196,86.461777,87.566338,89.192486,90.183566,90.946273,91.896058,92.960970,94.155397,94.553828,95.535292,95.825171,96.755604,98.050766,99.158849,99.935946,100.468402,101.677220,102.267958,102.868987,105.056372,107.344492,108.423794,109.949207,110.827039,112.237327,113.546880,115.676702,116.899911,117.734571,118.871435,119.458077,120.065863,120.989279,122.270051,122.777655,123.559448,124.463939,125.689270,127.459325,128.610580,129.704273,130.913090,131.776532,132.697536,134.122215,135.100782,136.194474,137.331339,138.511376,139.705803,140.030114,141.189810,141.679093,142.945474,144.067948,144.988952,146.341677,147.708792,148.018900,150.011303,150.418992,151.220121,152.336107,154.019818,154.539633,155.182580,155.513566,156.305053,156.780859,157.916811,158.522115,159.155306,159.714196,160.404949,160.663982,161.628158,163.614073,164.894845,166.889089,169.168880,169.989149,170.982107,172.392394,172.863987,173.741819,174.835511,176.274580 diff --git a/data/torah/labels/Mishpatim-6.txt b/data/torah/labels/Mishpatim-6.txt deleted file mode 100644 index a9aee64eb..000000000 --- a/data/torah/labels/Mishpatim-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.773946,2.791199,4.659660,5.582950,6.491557,7.876101,9.361601,10.558655,12.996029,13.463199,14.516029,15.035233,16.535156,18.199903,20.299384,21.308948,22.520424,23.071052,24.109460,25.147867,25.704766,26.209547,27.087394,28.601739,29.189804,29.878680,31.501730,32.359349,32.726988,33.347788,34.270817,35.511138,38.063891,38.958075,39.751304,41.308916,42.565424,42.868293,44.541283,45.969094,46.243119,47.959376,48.560207,49.396703,51.704276,54.285873,56.809782,57.316737,58.484945,60.388694,61.903039,63.561607,64.902883,66.345117,68.869025,69.454271,70.521524,71.963757,73.210083,74.790534,75.497229,76.665437,78.453807,79.211309,80.091071,81.980397,83.206295,84.446616,86.263830,88.931961,89.552121,90.662641,92.018340,93.066145,93.294581,94.556671,95.057819,96.518108,98.032453,99.604487 diff --git a/data/torah/labels/Mishpatim-7.txt b/data/torah/labels/Mishpatim-7.txt deleted file mode 100644 index c3ac9d7d1..000000000 --- a/data/torah/labels/Mishpatim-7.txt +++ /dev/null @@ -1 +0,0 @@ -1.864634,2.786137,4.635193,5.889936,7.260058,8.673447,9.097362,9.807371,10.643866,11.970721,12.628035,13.810666,14.863496,16.118240,17.531628,17.794426,18.2,19.146929,19.997847,20.892031,21.988129,24.021678,24.247087,24.601012,26.358095,27.517687,28.801275,30.223550,30.398669,31.608093,32.934948,35.458856,35.886510,37.593361,37.852963,39.799978,40.322893,41.299081,42.8,44.260189,46.394694,47.923461,48.846491,49.884899,50.485398,51.255201,52.088958,53.314857,54.209041,54.987847,55.579783,56.833906,58.030959,59.516460,61.117339,62.530727,63.439334,64.521009,65.631529,66.972805,67.294476,68.573684,70.154722,70.387374,72.423711,73.054183,73.952478,74.585366,75.351748,76.673391,78.288693,78.649250,80.028730,81.677940,82.716348,84.605674,85.427747,86.707199,87.648786,89.475548,91.206227,92.199778,93.079540,94.565041,96.324565,97.550463,98.444648,99.483056,101.026245,101.448627,102.328389,103.395642,104.304248,105.097476,106.006083,106.251263,108.169434,108.805680,109.342832,109.907354,111.591771,112.059381,112.709437,114.247944,115.286352,115.484150,117.361580,118.630745,119.871066,121.154653,122.510353,123.851630,124.933304,126.231314,128.091795,129.418650,130.452650,131.173766,132.111218,132.398870,133.466122,134.706442,135.240069,136.509234,138.946608,139.581191,140.446530,141.629162,142.984861,144.643429,145.834920,146.907735,147.744230,148.176901,149.215309,150.484474,151.508459,151.840173,153.412207,154.479460,154.836484,156.253407,156.988945,157.984086,160.156679,160.591033,162.451514,163.144832,163.721725,164.673599,166.577347,168.408983,170.038706,170.831935,171.206915,172.101100,173.312576,174.711542,175.894173,176.856274,178.021694,178.944724,180.084088,181.021540,181.858035,183.055088,184.006962,185.002103,185.737642,187.208720,189.386492,189.862429,191.045060,191.968089,193.641080,194.838134,195.991920,198.587940,200.361887,202.034878,203.304043,204.356873,205.568348,206.491378,207.688432,208.712417,210.024849,211.481505,212.952583,213.933301,214.885175,215.202732,216.628648,218.200683,219.311202,220.335188,221.647620,222.628339,223.623480,225.801252,227.402130,228.059998,228.511405,229.607502,230.487265,232.405435,233.963047,234.770697,234.929343,235.953329,237.208071,237.597474,238.693571,240.712698,241.621305,241.990249,242.745992,243.624314,244.185864,245.136180,246.397845,247.160977,247.453727,248.442463,249.824740,250.947841,251.854960,253.136446,254.317141,255.541033,256.923310,257.859227,259.880212,263.489127,264.180266,265.173778,266.786435,268.341497,269.968552,271.566810,272.776303,274.086587,275.123295,276.139163,277.542280,278.823766,279.954870,280.775597,281.999488,282.668442,283.359580,284.511478,286.138534,286.700650,288.370336,289.723815,291.768434,293.207646,294.717406,294.969122,296.544830,297.690481,299.346333,300.483833,301.224403,302.082091,303.253935,303.816954,304.808997,305.306219,306.160315,307.990996,309.400027,310.911893,311.862209,312.752546,314.410782,315.793060,316.901762,318.298437,319.839100,320.760619,321.653340,321.926915,322.268814,323.856344,324.688950,325.668064,326.603980,327.198368,328.019095,329.055804,329.703746,330.156877,330.963206,332.259091,333.367792,333.986937,334.865259,336.146745,337.557820,338.623326,339.242471,340.538356,341.575063,342.410190,342.712563,343.691676,344.757181,345.563510,345.823799,347.089774,348.025691,348.477834,349.592642,350.108460,350.799599,351.879503,353.608285,354.574941,355.366082,356.689288,358.316080,358.479139,359.859472,360.694598,361.918490,362.681621,364.006304,365.431777,366.355849,367.649180,368.193417,369.258923,370.281232,371.418731,372.570629,373.160976,374.687241,376.631068,378.229326,378.963661,380.129958,381.281855,381.596909,382.785588,383.533637,384.417319,385.367634,386.749912,387.585038,389.629656 diff --git a/data/torah/labels/Nasso-1.txt b/data/torah/labels/Nasso-1.txt deleted file mode 100644 index 78617d32f..000000000 --- a/data/torah/labels/Nasso-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.902494,4.249252,4.458372,5.340730,6.664267,8.870163,9.357782,10.611660,11.099279,12.120957,12.467714,13.141093,13.788168,14.693746,16.365583,18.246399,19.082317,20.220095,21.682952,23.144624,23.650481,24.297555,24.924494,25.385809,26.291388,26.918326,27.475605,28.125764,28.752703,29.472521,30.262000,30.912159,31.771297,32.769755,33.930753,34.580911,35.254290,36.229528,37.669165,39.433882,39.782181,40.243496,41.102635,41.587170,42.028349,42.887487,44.257465,45.697102,46.718780,47.110435,47.737374,48.689392,49.502091,50.407669,50.964948,51.381365,52.658462,54.516059,55.073338,56.327215,56.556331,57.879868,59.273066,59.873701,61.568757,62.729755,63.379914,64.030072,64.421728,65.141546,66.163224,67.092023,68.415560,69.437238,69.689574,70.290208,71.632340,72.558054,73.068893,74.531750,75.739188,76.366127,77.875424,80.224752,80.967791,82.455559,83.324536,84.290447,84.801286,85.335345,86.055163,87.332261,87.982420,88.911218,89.654256,90.675934,92.205367,93.180605,93.920560,94.496433,94.914392,96.354030,97.001104,98.603281,99.833939,100.225594,101.084732,101.804551,102.451626,104.193122,104.703961,105.609540,105.838655,106.488814,107.437748,108.691829,109.667067,110.783167,111.058722,111.778541,112.379176,113.354414,115.444210,116.187248,117.278586,118.602124,120.213915,120.405570,121.102169,121.752328,122.611466,123.114595,123.552690,124.318949,125.921126,126.478405,127.337543,127.682758,128.983076,130.027974,130.863892,131.792690,132.068246,132.738541,133.315956,134.337634,135.213824,135.933643,137.048201,137.884119,139.370196,142.063711,142.829969,143.990967,145.778904,147.799040,149.331557,150.004935,150.817634,151.467792,152.350151,154.300627,155.508065,156.506523,157.272781,157.913906,159.104074,159.663362,161.381639,162.310437,163.030256,164.075154,164.742511,165.624869,166.411264,167.270402,167.972616,168.669214,168.828670,169.401915,170.599625,171.616677,173.009874,174.101212,175.169330,175.842709,176.048604,176.208060,177.647697,178.739035,179.551734,180.643072,182.198808,183.127607,183.597370,184.324196,184.881475,185.249911,185.946509,186.706600,186.982156,187.350591,188.116850,188.836668,189.458981,190.689639,191.638573,192.590591,193.983788,195.353766,195.887825,196.561203,197.791861,198.813539,199.603017,200.485376,201.228414,201.855353,202.598391,203.155670,204.107689,205.129367,205.849185,206.217621,207.053539,207.726918,208.002473,208.908051,209.626328 diff --git a/data/torah/labels/Nasso-2.txt b/data/torah/labels/Nasso-2.txt deleted file mode 100644 index b36e28e53..000000000 --- a/data/torah/labels/Nasso-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.583220,3.043764,4.320862,5.597959,6.352608,7.629705,8.798388,10.005826,10.655984,11.538343,12.095622,12.583241,13.442379,14.394397,15.090996,15.787594,16.530633,17.389771,17.947050,19.479567,20.965644,23.125100,24.286098,25.005916,26.050814,27.583331,28.535349,29.185508,30.462606,31.832583,33.388320,34.386778,35.129817,36.081835,36.403830,37.216529,38.122107,39.167005,40.397662,41.442560,42.835758,43.555576,43.784692,43.967368,45.267685,46.637662,48.216619,48.889998,49.958116,51.119114,51.955032,53.092810,54.509227,55.484465,56.041744,56.784783,57.411721,57.921018,58.664057,59.267776,60.173354,60.986052,61.636211,62.634669,63.308048,65.072764,66.512402,67.626959,69.275576,70.645554,71.783331,73.502940,74.801925,75.753944,76.496982,76.991070,78.082408,79.220185,80.102544,80.729482,81.588621,81.840956,82.305355,83.234154,83.766671,85.183088,85.853383,89.127396,90.868893,91.728031,93.701727,95.234244,96.534562,97.370480,97.741999,99.111977,100.621274,101.271433,102.757510,103.964947,104.940185,105.636784,106.588802,107.262181,107.420095,108.138371,109.229709,109.780820,110.971206,111.870616,113.797872,115.028530,115.881501,116.647759,117.344358,118.830435,120.219006,121.588984,122.884819,123.833462,124.576501,125.064120,126.695407,127.200356,127.687975,129.127612,129.681807,130.494506,130.839721,131.768519,132.349018,134.141820,134.861639,135.578374,135.948351,137.364768,138.734746,139.663544,140.380278,141.494836,142.073793 diff --git a/data/torah/labels/Nasso-3.txt b/data/torah/labels/Nasso-3.txt deleted file mode 100644 index 9e6b5ecee..000000000 --- a/data/torah/labels/Nasso-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.347787,3.415905,3.549057,4.197674,5.381892,6.171370,6.493365,7.306064,8.072322,9.535180,9.737991,11.015089,11.292186,11.988785,12.278309,12.871143,13.880486,14.295361,15.688558,16.756676,16.916132,17.447107,18.631325,18.908422,19.300077,20.298536,21.459533,22.504431,23.526109,23.940985,25.636041,26.564839,27.377538,28.120576,29.606653,30.623453,31.320052,31.874247,32.849485,35.111163,36.156061,36.572478,37.152977,38.476514,39.776832,40.541548,40.888306,41.002863,42.024541,42.626718,43.276877,43.716514,45.040052,46.224269,46.758328,46.917784,47.357421,48.680959,51.745993,51.859009,52.275426,53.831163,54.315698,54.569575,56.102092,56.752251,58.052569,59.120687,60.188805,61.280142,62.208941,62.743000,63.555698,65.529394,66.342092,67.572750,69.708986,70.215199,72.746174,73.091390,74.461367,75.575925,75.713702,76.267897,77.312795,78.497013,78.959870,79.701367,81.466083,81.998600,82.692115,83.969213,84.407308,84.661185,86.240142,87.586900,88.724678,90.466174,91.371752,92.788170,93.970845,94.667444,96.060641,97.871798,99.056015,100.240233,100.631888,101.197086,101.668334,103.015091,103.707064,105.703980,106.632778,108.252338,108.623857,110.481454,111.733789,112.661045,113.589844,114.145581,115.561998,116.955195,117.232293,118.718370,119.366986,120.736964,122.083721,123.151839,123.520274,124.704492,125.336156 diff --git a/data/torah/labels/Nasso-4.txt b/data/torah/labels/Nasso-4.txt deleted file mode 100644 index 90b024a05..000000000 --- a/data/torah/labels/Nasso-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,3.413333,3.760091,4.317370,5.664127,6.964444,7.171882,7.868481,8.750839,9.557370,10.880907,11.670385,12.436644,12.713741,13.874739,14.687438,16.150295,17.148753,18.170431,19.331429,19.980045,22.418141,23.159637,24.483175,25.829932,26.712290,27.432109,28.593107,29.336145,30.706122,31.681361,32.517279,33.074558,33.956916,34.607075,36.696871,37.602449,39.158186,39.435283,40.758821,42.105578,42.334694,43.193832,43.580862,44.579320,45.049977,45.607256,46.396735,46.814694,47.488073,48.323991,48.741950,49.601088,50.088707,50.808526,51.737324,53.293061,54.198639,54.546939,56.799274,57.124354,58.703311,59.957188,60.282268,61.071746,62.464943,63.811701,64.856599,65.553197,66.598095,67.248254,68.014512,69.384490,71.079546,71.869025,72.403084,73.378322,74.191020,74.864399,75.584218,76.977415,77.650794,79.369070,80.181769,81.040907,82.341224,83.548662,84.825760,85.708118,86.683356,87.426395,88.680272,90.909388,92.163265,92.627664,93.417143,93.858322,95.832018,96.644717,98.558060,99.231439,99.788718,101.483774,102.459012,103.945089,104.664908,105.315067,105.568944,106.938922,108.030259,108.725316,109.002414,111.463729,111.903366,113.459103,114.782640,114.966858,115.637153,116.589171,117.377108,117.768763,119.208400,120.137198,121.089216,122.180554,122.877153,123.968491,125.036609,126.035067,126.870985,127.753343,128.287402,129.100101,130.725498,132.420554,133.767312,135.323049,136.344727,136.432981,137.454659,137.9,138.375747,139.878876,140.529035,141.829352,142.316971,142.781371,145.335566,147.189559,147.983261,149.074598,151.811469,152.763487,153.599406,154.690744,156.130381,158.382716,160.083048,161.725144,162.325779,163.045598,163.367593,164.412491,165.573489,166.293308,167.126142,167.729861,169.982197,171.793353,173.140110,174.719067,175.480700,175.599884,178.127775,179.285689,181.514804,182.211403,182.954441,183.790360,184.951358,185.694396,187.157253,188.852310,191.313625,191.917344,192.939022,193.960700,195.028818,195.655757,196.747094,197.466913,198.395711,199.208410,200.810587,203.596981,204.386460,205.942197,207.126414,208.287412,209.819929,210.655847,213.279702,215.485598,217.250314,218.364872,219.200791,220.663648,223.659022,224.169861,225.145099,226.607956,227.467094,228.767412,230.021290,230.179203,230.499657,232.380473,235.445507,236.002786,237.419203,238.231902,238.673081,239.323240,240.762877,242.597253,243.735031,244.849589,246.173126,247.357344,248.471902,249.470360,250.120519,250.956437,251.394532,252.091131,253.298568,254.831085,255.177843,256.199521,256.639158,257.405416,258.357435,258.891494,259.657752,261.445689,262.560246,263.187185,264.046324,265.849654,266.264646,268.470541,269.817299,271.326596,272.092854,274.066550,274.250768,275.202786,275.922605,277.455122,281.074351,281.979929,283.883965,284.975303,285.274079,287.990813,288.966051,289.569770,291.311267,292.216845,293.772582,294.654940,295.839158,296.628636,298.323693,299.531131,300.947548,302.154986,303.939725,305.233988,306.394986,307.138024,307.997163,308.786641,309.131856,310.104011,310.963149,312.704646,313.540564,315.467820,316.953897,318.718614,319.693852,320.506550,321.830088,322.944646,324.059203,325.266641,325.777480,326.497299,328.447775,329.164509,330.534487,331.463285,332.087140,333.526777,334.084056,334.803875,335.820927,336.011312,337.121244,338.212582,338.418478,339.416936,339.855031,341.085689,342.432446,342.827185,343.709543,344.475802,344.868999,345.635258,347.074895,349.512990,350.023829,350.813308,352.229725,353.019203,353.739022,353.853580,354.991358,356.198795,356.754532,356.983648,357.657026,358.957344,359.955802,360.231358,360.695757,361.531675,362.409407,363.523965,364.267004,364.426460,366.191176,366.794895,367.654033,368.745371,369.604509,370.393988,371.787185,373.157163,374.387820,376.407956,377.150995,378.404872,379.055031,380.239249,381.655666,382.000881,383.440519,385.042695,385.994714,387.364691,388.038070,388.897208,390.545825,391.381743,393.471539,394.377117,395.816754,396.675893,397.279611,398.231630,400.182106,400.809045,402.155802,403.316800,404.593897,407.403512,407.867911,408.680609,409.261108,411.118704,413.394260,414.044419,414.764237,415.437616,416.018115,416.617208,417.313807,417.823104,419.169861,420.145099,420.888138,423.117253,423.535212,424.185371,425.299929,426.809226,427.691584,428.364963,429.200881,430.872718,432.567775,433.030632,433.564691,434.818568,436.374305,436.931584,437.604963,438.185462,438.671539,439.716437,440.783013,442.478070,443.476528,445.543104,446.262922,447.052401,447.656119,448.747457,450.396050,451.363602,452.571040,452.984373,454.122151,455.842930,456.809819,457.738617,458.551315,458.870227,460.216984,460.932177,461.466236,462.161293,462.997211,463.879569,465.388866,466.851723,467.407460,468.336259,469.357937,470.147415,470.840930,472.164467,473.279025,474.788322,476.762018,477.923016,479.478753,480.152132,481.057710,481.800748,482.543787,483.217166,483.681565,484.354943,485.028322,486.026780,486.375079,486.885918,487.418435,488.625873,489.437029,490.876667,491.898345,492.803923,493.732721,494.591859,495.808938,496.760956,497.801228,498.637146,498.937464,500.052022,501.863178,502.117056,502.906534,503.206852,504.460729,505.644947,506.504085,506.733201,507.171296,507.959233,509.259550,510.234788,510.558326,511.231704,512.253382,513.669800,514.784357,515.759595,516.338552,517.197691,518.196149,521.052203,521.702362,522.468620,523.838598,525.022815,525.603314,526.508892,527.089391,528.018190,528.366489,529.039868,529.481047,530.688484,532.567759,532.751976,533.586353,537.069346,538.810843,539.391341,540.087940,540.993518,541.574017,542.084856,543.617373,545.451750,545.846489,547.425446,548.5,549.631341,550.999777,552.439414,553.019913,554.529210,556.154607,558.476602,559.289301,560.380639,561.262997,562.377555,563.654652,564.374471,565.721228,566.789346,568.043224,569.459641,570.667078,571.201137,571.735196,572.292475,573.244493,573.419459,574.371478,575.131568,576.362226,577.453564,578.707441,579.613019,580.588258,582.074335,583.003133,584.8,584.326670,585.441228,586.555786,587.229165,588.274063,589.086761,590.085219,591.130117,592.546534,594.079051,595.170389,595.658008,596.563586,596.958326,597.585264,598.212203,600.139459,600.534199,601.509437,602.159595,602.925854,604.365491,604.853110,605.596149,606.106988,606.803586,607.430525,608.846942,609.868620,611.308258,611.586897,612.562135,615.464629,615.766489,617.043586,618.367124,619.295922,619.969301,620.176738,620.850117,621.802135,622.452294,623.288212,625.331568,625.865627,626.585446,627.537464,628.675242,630.161319,631.113337,632.552974,634.967849,635.734108,636.570026,639.551345,640.108624,641.571481,642.430619,642.730937,643.659735,644.356334,645.517331,646.887309,647.978647,649.000325,650.114882,651.833159,652.576198,653.156697,653.992615,655.153613,655.871889,658.611844,659.262003,660.515880,661.491118,662.234157,662.675336,663.464814,664.347173,664.765132,665.693930,666.251209,667.690846,668.549985,669.084043,670.036062,670.616560,671.545359,672.543817,673.565495,674.912252,676.630529,678.093386,678.229622,678.763681,680.040778,681.178556,681.385994,682.384452,682.684769,683.427808,684.217286,685.285404,686.562502,686.677059,687.350438,688.302456,688.999055,689.742093,692.064089,692.900007,694.525404,695.918601,698.530444,700.225500,700.922099,702.593936,703.801373,704.730172,705.796748,706.864866,707.793664,708.420602,709.953119,711.648176,712.182235,713.157473,713.923732,714.411351,715.293709,717.244185 diff --git a/data/torah/labels/Nasso-5.txt b/data/torah/labels/Nasso-5.txt deleted file mode 100644 index 9ceab1653..000000000 --- a/data/torah/labels/Nasso-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,6.155667,8.966916,9.914379,11.286467,12.334911,12.510792,14.530252,16.007886,17.569955,18.667626,19.828624,20.058020,20.436581,21.597578,22.270265,23.030190,23.473480,23.853443,25.246641,26.977583,28.096362,29.700650,31.159637,32.155011,33.316009,34.244807,34.662766,35.916644,36.799002,37.983220,39.399637,40.305215,41.512653,41.907392,44.131770,45.176668,45.333039,46.958436,47.583833,49.139570,50.695307,51.670545,53.458482,54.131860,54.712359,55.525058,57.242855,57.628522,58.232241,59.300359,59.927298,61.181175,62.551152,63.154871,63.596050,65.012468,66.150245,66.939724,67.450563,68.031062,69.284939,71.932014,73.139452,75.113148,76.947524,77.435143,78.317502,78.874781,79.664259,81.080676,81.846935,82.241164,83.443217,83.961843,84.385954,86.227807,87.613527,88.356566,89.192484,90.608902,91.282280,92.559378,93.488176,94.416974,95.043913,96.855069,98.317926,99.386044,101.057881,102.056339,102.958833,103.934072,104.536248,105.070307,105.646180,105.859786,107.246815,109.034752,109.745319,111.370716,112.601373,113.623051,114.667949,115.154026,115.641645,116.524004,117.731441,118.985319,119.403278,120.192756,120.421872,121.024049,122.208267,123.531804,124.251623,124.692802,125.319741,125.550398,126.293437,127.129355,128.081373,130.008629,132.722480,134.204559,135.690636,136.294355,137.037394,137.803652,138.453811,139.080750,139.707689,141.704605,142.586963,142.769639,143.512677,144.093176,144.929094,145.738709,146.388868,146.594763,147.500342,147.916759,147.998845,149.090183,150.413720,151.412178,151.876577,152.480296,153.409094,153.988051,155.102609,156.495806,157.656804,159.885920,160.977258,161.464877,161.994310,162.115035,163.364287,164.203627,164.445976,165.377594,166.074193,167.119091,169.510746,170.066483,170.693422,171.854419,172.922537,174.664034,176.034011,177.171789,177.821948,178.425667,179.168705,179.702764,180.236823,181.003082,182.164079,183.487617,184.509295,185.252333,186.157912,187.504669,188.410247,189.455145,190.058864,190.569703,190.961358,191.936596,192.633195,194.026392,194.280270,195.510927,196.973785,197.972243,198.715281,199.319000,199.479998,200.199816,201.221494,201.941313,202.309748,202.890247,203.888705,206.860859,207.184397,208.484714,209.436732,210.272651,211.015689,211.689068,212.780406,212.870202,213.427481,214.333059,215.215417,216.139590,216.975508,217.113286,218.158184,219.110202,220.062220,221.083898,221.896596,221.938410,223.378048,224.167526,225.792923,226.560048,226.717575,228.017413,228.518302,229.084642,230.387225,231.434955,233.022958,234.720099,235.881096,236.302091,237.010016,237.746259,238.312599,238.593889,239.698253,240.915995,242.246895,243.209673,243.974233,244.425425,245.671374,246.322665,247.653565,248.127432,248.750407,249.222394,250.326758,250.947852,252.561922,252.728063,254.285499,255.588082,256.579177,257.428688,257.823246,258.104535,258.925729,260.058410,260.649417,261.098728,261.750020,262.797749,263.588745,265.825790,266.276982,267.862735,269.561756,270.496217,271.026719,271.876229,272.363917,272.591491,272.983146,274.001741,275.000199,275.650357,276.532716,276.713849,278.037387,279.028712,280.166489,280.675786,280.928122,282.298099,283.203677,283.411115,284.757872,286.963768,287.380185,287.983904,289.284222,290.025718,291.651115,293.206852,294.623269,295.157328,295.734743,296.197600,296.824539,297.239414,298.144993,298.951523,300.205401,300.901999,301.668258,302.179097,303.293655,304.013473,305.290571,305.706988,306.171387,306.609482,307.515061,308.211659,309.535197,309.812294,311.112612,312.320049,313.364947,314.247306,314.781365,314.894380,315.498099,316.705537,316.912975,317.227260,317.854199,318.922317,320.361954,322.382090,322.798507,324.354244,325.538462,326.211841,326.628258,327.464176,327.998235,328.089573,328.646852,329.645310,331.042800,331.493655,332.181002,332.620639,333.619097,334.266172,335.264630,335.845129,336.122226,337.306444,338.119142,338.419460,340.857555,343.086671,343.527850,344.015469,345.222907,346.198145,347.777102,349.448938,350.656376,351.026353,351.815832,352.162589,352.812748,353.323587,354.229165,355.459823,357.038780,358.014018,358.640956,359.267895,360.544993,361.218371,362.263269,362.750888,363.026444,363.882498,365.345355,365.715333,367.178190,367.478507,368.848485,370.055922,371.054380,371.913519,372.424358,372.608575,373.258734,374.489392,375.255650,375.555968,376.066807,377.181365,378.133383,380.269619,380.709256,382.148893,383.425990,384.145809,384.726308,385.469346,386.026625,386.234063,386.814562,387.720140,389.230817,389.707804,390.659823,390.936920,392.306897,393.073156,393.792975,394.161410,394.763587,395.529845,398.710979,399.059278,401.265174,403.517510,404.026807,404.514426,406.023723,406.952521,409.111977,410.644494,411.712612,412.246671,412.943269,413.570208,414.057827,414.520684,415.449482,416.215741,417.585718,418.955696,419.489755,420.000594,421.022272,421.765310,422.926308,423.432333,423.913972,424.420185,425.348984,426.115242,427.438780,427.739097,429.039414,430.432612,431.547170,432.406308,432.753065,433.030163,433.703541,434.748439,435.259278,435.606036,436.163315,437.161773,438.578190,440.807306,441.293383,442.709800,443.777918,444.358417,444.867714,445.796512,446.377011,446.468349,447.304267,448.209845,449.603043,450.926580,453.712975,454.177374 diff --git a/data/torah/labels/Nasso-6.txt b/data/torah/labels/Nasso-6.txt deleted file mode 100644 index a121e7774..000000000 --- a/data/torah/labels/Nasso-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.572505,2.733503,3.430102,4.289240,5.345022,6.575680,7.040079,8.874455,11.382211,12.032369,12.633004,14.328061,15.465839,17.694954,19.157811,20.179489,20.759988,21.456587,22.292505,22.919444,23.569603,24.382301,26.030918,27.842074,28.933412,29.931870,30.651689,32.393186,33.647063,35.040260,35.690419,36.526338,37.425748,38.540306,39.286053,41.097209,41.793808,43.604964,45.044602,46.089499,47.087958,47.622016,47.806234,48.572493,49.756710,50.522969,50.891404,51.680883,52.911540,54.072538,56.766053,57.252130,58.784647,59.992085,61.292402,62.592719,64.171676,65.480978,65.916462,67.004511,68.467368,70.348184,71.275441,72.389998,72.783196,74.826552,75.904397,77.367254,78.179953,79.039091,80.223309,82.173785,82.684624,84.286801,86.330157,86.887436,87.444715,89.186211,90.254329,92.483445,94.014420,95.173876,95.754375,96.497413,97.170792,97.728071,98.401449,99.144488,100.421585,102.557821,103.811699,104.554737,105.320996,106.807073,107.525350,109.057867,109.588842,110.355100,111.119817,112.420134,113.662452,115.171749,115.379187,117.190343,118.629980,119.814198,120.417917,121.114515,121.693472,122.575831,123.597509,124.386987,124.990706,125.756964,126.492293,127.630071,130.207486,130.623903,131.993881,133.085218,133.851477,134.548076,135.221454,135.911885,136.142543,136.862361,137.837599,139.346896,139.950615,141.018733,141.272611,142.944447,143.687486,144.616284,145.196783,145.777282,146.517237,147.701454,148.560593,149.512611,150.905808,152.826689,153.382426,153.823606,155.356123,156.540340,158.467596,159.907234,160.812812,161.370091,161.997030,162.716848,163.274127,163.831406,164.783424,166.292721,167.894898,168.916576,169.497075,170.170454,171.586871,172.353129,173.932086,174.419705,175.162744,175.882562,176.927460,177.670499,178.994036,179.319116,180.967733,182.430590,183.475488,183.916667,184.520386,184.771179,185.630318,186.698435,187.509772,187.950951,188.485010,189.669228,190.853445,193.523740,194.033037,195.449454,196.768366,197.581064,198.276121,199.367459,199.947958,200.246733,200.804012,202.034670,203.497527,204.147686,204.960384,205.494443,206.070316,207.324194,208.933409,210.687093,211.403828,212.030767,213.145325,215.208340,216.016889,217.430223,219.264599,220.021108,220.415847,222.018024,223.016482,224.874078,226.360155,227.312174,227.776573,228.542831,229.262650,229.750269,230.400428,231.073806,232.420564,234.254940,235.137298,235.741017,236.367956,237.645053,238.318432,239.456210,239.943829,240.731765,241.405144,242.496482,242.996699,244.552436,244.899194,246.292391,247.778468,250.216563,251.098922,251.561779,252.047856,252.976654,254.044772,254.648491,255.041688,255.668627,256.736745,257.688763,260.033978,260.496835,261.797153,262.958151,263.794069,264.769307,265.907085,266.626903,266.927221,267.530940,268.738377,270.154795,270.804953,271.408672,271.801869,273.496926,274.168067,275.514824,276.072103,276.559722,277.279541,279.601536,280.158815,282.039631,284.152647,284.617046,285.081446,286.613963,287.682080,289.795096,291.304393,292.279631,292.836910,293.394189,294.114008,294.601627,295.135686,295.994824,297.434461,299.199178,300.035096,300.662035,301.265754,302.542851,303.193010,304.493328,305.120266,305.816865,306.467024,307.465482,308.184559,309.438437,309.644333,311.037530,312.500387,313.545285,313.870364,314.543743,314.696669,315.585557,316.670365,317.575943,317.874719,318.478438,319.592995,320.939753,323.493948,324.000161,325.370138,326.275716,326.832995,327.576034,328.551272,329.664288,329.956896,330.560614,331.675172,332.764968,333.949186,335.574583,335.874900 diff --git a/data/torah/labels/Nasso-7.txt b/data/torah/labels/Nasso-7.txt deleted file mode 100644 index 67f8b0bee..000000000 --- a/data/torah/labels/Nasso-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.193118,2.950609,3.655975,3.910098,4.486537,5.067036,5.693975,6.506673,6.850347,7.732705,9.450982,9.868941,10.426220,11.912297,13.050075,14.814791,16.161549,17.090347,17.577966,18.297784,18.924723,19.412342,19.920097,20.756016,21.819508,23.630664,24.582682,25.279281,26.231299,27.438737,28.020171,29.274049,29.806566,30.387065,30.990784,31.803482,32.427337,33.936634,34.212190,35.953686,37.323664,38.322122,38.995500,39.529559,39.783437,40.480035,41.873233,42.360852,42.778811,43.195228,44.097722,45.023437,47.391872,48,49.063709,50.015727,50.735546,51.455364,52.407382,52.939899,53.263437,53.890376,55.074593,56.596044,57.034140,57.777178,58.054276,59.099174,60.004752,60.910330,61.579083,62.136362,62.619355,63.130194,64.080670,65.288108,65.494004,66.608561,68.651917,69.185976,69.577632,71.295908,72.364026,74.407382,75.963119,76.845478,77.286657,78.029695,78.586974,79.025069,79.605568,80.673686,81.927564,83.599400,84.478675,85.104072,85.870330,87.054548,87.684110,88.845108,89.516945,90.143884,90.676401,91.581979,92.184156,93.484473,93.808011,95.456627,96.826605,97.894723,98.614541,99.032500,99.427240,100.193498,101.354496,101.865335,102.306514,102.933453,104.094451,105.209008,107.948963,108.831321,110.317398,111.037217,111.780256,112.616174,113.730732,114.774088,115.119303,115.769462,117.116219,118.416537,119.041934,119.808192,120.060528,121.291185,123.495804,124.784065,126.743514,127.602653,128.531451,129.344149,129.971088,130.783786,131.573265,132.780702,134.406099,134.892176,136.378253,137.399931,138.026870,138.746689,139.303968,139.930906,140.441745,141.184784,142.183242,143.088820,144.737437,145.689455,146.502154,147.036213,147.965011,148.754489,149.683287,151.122925,151.610544,152.513038,153.836575,155.229773,155.923287,156.571904,157.640022,158.615265,159.381523,159.935718,160.492997,161.375355,162.373813,164.951228,166.181886,167.133904,167.737623,168.712861,169.455900,171.058076,173.308870,173.959029,175.259346,175.955945,176.559664,177.929641,179.694358,180.808915,182.550412,183.548870,184.059709,184.616988,186.436642,186.719210,187.880208,188.832226,189.177442,190.686739,191.590775,192.867872,193.377169,193.744063,194.788961,197.068726,198.508363,199.181742,201.178658,202.293216,205.056391,206.519248,207.448046,208.283964,209.398522,210.373760,211.604418,212.253035,212.924871,214.085869,215.359883,216.520880,217.542558,218.256300,219.274894,220.528772,221.432808,222.733125,222.894123,223.637162,226.005597,227.213035,228.165053,228.954531,229.090767,230.530404,232.527320,234.083057,235.011856,236.010314,236.962332,237.169769,237.796708,239.375665,241.210041,242.045960,243.415937,245.227094 diff --git a/data/torah/labels/Nitzavim-1.txt b/data/torah/labels/Nitzavim-1.txt deleted file mode 100644 index ff9d59526..000000000 --- a/data/torah/labels/Nitzavim-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.706920,5.052136,6.445333,7.931410,9.138848,10.276626,11.971682,13.782839,16.592453,18.542929,21.700843,22.954721,24.022839,25.903655,27.714811,29.177669,31.546104,32.799982,33.844880,35.447056,37.281433,38.721070,39.765968,40.717986,42.204063,46.012136,48.566331,50.005968,51.329505,53.976580,55.834177,57.227374,58.458031,59.572589,61.105106 diff --git a/data/torah/labels/Nitzavim-2.txt b/data/torah/labels/Nitzavim-2.txt deleted file mode 100644 index 4f5df2c84..000000000 --- a/data/torah/labels/Nitzavim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.600819,3.244810,6.704584,7.981681,10.048257,12.532792,13.740230,14.669028,15.388847,16.410525,17.734062,18.709300,19.382679,20.938416,22.331613,23.422951,24.955468,26.046806,27.950842,29.158280,30.342497,31.921454,35.149028,36.449345,36.913745,37.935423,38.864221,39.723359,40.506670,41.969527,44.593382,45.220321,45.916919,47.495876,50.398370,51.977327,53.370525,54.368983,55.692520,56.923178,58.200275,59.779232,61.427849,62.844266,64.167804,65.139958 diff --git a/data/torah/labels/Nitzavim-3.txt b/data/torah/labels/Nitzavim-3.txt deleted file mode 100644 index fabfb8d7d..000000000 --- a/data/torah/labels/Nitzavim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.086712,3.340590,4.640907,5.569705,5.868481,6.774059,7.633197,8.840635,11.065125,11.921179,13.523356,14.498594,15.497052,16.495510,18.190567,20.257143,20.651882,22.509478,23.531156,25.295873,26.340771,27.176689,28.244807,29.289705,29.963084,31.449161,32.633379,33.048254,35.764989,36.484807,36.995646,38.876463,41.455054,42.620688,43.105223,44.660960,47.586674,48.678012,50.071210,51.069668,52.695064,53.879282,55.086720,56.479917,57.710575,58.267853,59.173432,60.334429,61.356107,62.238466,63.097604,64.792661,66.968806,67.990484,69.035382,71.473477,76.210348,79.368262,80.784679,81.434838,83.269214,85.498330,86.891527,88.586584,89.631482,91.651618,91.897785,92.157831,94.730620,96.123817,97.006175,97.981414,99.769350,101.092888,102.300325,102.691980,104.967536,105.757014,106.148670,109.979962,111.210620,112.812797,113.625495,116.110030,117.387128,118.199826,119.151844,120.823681,122.425858,123.517196,125.281912,126.280370,127.088443,128.713840,130.385677,131.871754,133.055971,134.449169,135.633386,136.144225,137.398103,138.559101,140.579237,142.761912,144.178330,145.664407,146.709305,147.754203,148.915200,150.331618,151.330076,152.537513,155.068488,157.042185,158.017423,160.525178,164.263590,165.494248,168.210983,169.557740,171.020597,172.483454,175.107309,177.220325,178.474203,179.356561,180.355019,181.748216,184.952570,185.695609,188.226584,189.619781,190.943318,192.359736,194.449531,195.401550,196.191028,197.444906,199.441822,201.624813,204.620187,205.688305,206.199144,207.615561,208.451479,209.775017,211.586173,212.840051,213.954609,214.651207,215.371026,216.067624,217.042863,222.151253,223.498010,224.960867,226.284404,228.072341,229.465538,231.114155,232.437692,234.179189,236.594064,238.871539,239.081301,240.456403,240.959416,241.516695,244.814777,247.422100,248.533574,249.462372,250.716250,251.293665,254.056839,255.052213,256.166771,257.954708,260.925421,262.597258,263.781476,265.012133,265.380569,266.402247,267.911544,268.512179,269.905376,271.902292,273.040070,274.247508,275.571045,276.987462,277.846601,279.820297,284.348188,286.229004,287.622201,290.176396,291.987553,293.078891,294.402428,295.377666,295.699662,297.046419,297.998437,298.950455,300.738392,301.989186,302.436991,303.449423,304.166158,305.327156,306.368970,307.191581,307.463494,307.741264,309.204122,310.388339,311.363577,313.337274,315.636049,316.704167,318.074144,319.420902,320.396140,321.696457,322.764575,324.018453,326.549428,327.153147,327.826525,328.662444,329.451922,331.216639,333.445754,334.606752,335.976729,338.647024,339.575822,340.955386,341.287279,342.199677,344.282653,345.466870,345.742426,346.973084,348.017981 diff --git a/data/torah/labels/Nitzavim-4.txt b/data/torah/labels/Nitzavim-4.txt deleted file mode 100644 index 237c0b658..000000000 --- a/data/torah/labels/Nitzavim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.726191,6.303606,7.000204,9.415080,9.995579,10.877937,12.387234,14.012631,15.243288,16.427506,17.425964,19.167461,20.675199,21.069938,22.532795,23.504949,24.689167,28.080434,30.577111,31.761328,32.852666,34.385183,37.682417,38.355795,39.470353,40.561691,42.419287,43.829537,46.639151,47.869809,48.682507,49.936385,51.538562,53.094299,54.232077,55.160875,56.298653,57.064911,58.481328,60.292485,63.078879,65.656294,66.260013,67.560331,69.928766,72.668721,75.455115,76.964412,78.427269,80.284866,83.860739,85.021736,86.043414,88.187156,89.437949,90.366747,92.038584,93.037042,94.267700,97.541713,99.167110,100.653187,102.069605,103.462802,105.157858,109.105251,110.591328,113.006203,113.702802,115.351419,116.349877,117.255455,118.277133,119.786430,121.736906,123.153323,125.916498,127.425795,130.467609,132.580625,133.184344,134.298902,134.945976,135.828335,137.523391,141.610103,142.004843,144.419718,146.184434,147.020353,148.042031,148.526566,149.996541,151.196861 diff --git a/data/torah/labels/Nitzavim-5.txt b/data/torah/labels/Nitzavim-5.txt deleted file mode 100644 index ddf9522ab..000000000 --- a/data/torah/labels/Nitzavim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.406457,3.892534,5.099972,5.750130,6.493169,7.630947,8.791944,10.928180,11.996298,12.387953,13.804371,14.547409,16.219246,18.703781,19.679019,21.025777,21.908135,23.278112,24.624870,24.825182,25.037599,26.330578,28.025634,29.299648,30.414206,32.248582,36.172755,37.356972,39.307448,41.892494,43.308911,45.212947,46.652585,48.626281,51.386648,54.218434,55.449092,57.120929,58.723105,60.905781,62.484738,65.178253,66.545146,67.659704,68.797482,69.865600,70.724738,71.116393,72.927550,75.240755,77.934270,79.536446,80.999304,82.322841,83.739258,85.016356,86.432773,89.265607,90.960664,92.005562,93.096900,94.165018,95.279576,96.324474,97.346152,98.507149,99.412728,100.643385,101.665063 diff --git a/data/torah/labels/Nitzavim-6.txt b/data/torah/labels/Nitzavim-6.txt deleted file mode 100644 index 60d609e16..000000000 --- a/data/torah/labels/Nitzavim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.788173,3.367130,4.435248,6.749883,7.841221,9.280858,10.697275,11.509973,12.624531,13.201946,14.339724,15.454282,16.290200,18.333556,19.866073,21.677230,22.327388,25.113783,25.654053,26.329159,27.082163,28.692033,30.658036,31.819034,34.350009,35.487787,37.647242,39.063660,39.946018,40.735496,41.989374,45.007968,45.794363,47.335363,48.975496,49.761891,50.644249,51.526607,53.407424,54.521982,55.938399,56.867197,59.073093,59.447352,60.443070,62.071206,63.928803,65.043361,66.222952,69.102227 diff --git a/data/torah/labels/Noach-2.txt b/data/torah/labels/Noach-2.txt deleted file mode 100644 index 291738a31..000000000 --- a/data/torah/labels/Noach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.930971,2.743205,3.417513,3.769992,4.352348,4.750803,5.210558,5.440435,5.777589,6.605148,7.003603,8.122340,8.658721,9.195102,9.654857,10.283189,11.524528,12.413388,13.869279,14.650863,15.876876,16.658460,17.194841,17.486019,18.083701,18.758008,22.788528,24.474297,25.010678,25.470433,26.558520,27.355429,27.830509,28.734694,29.454977,30.726966,32.305459,33.041067,33.592773,34.221105,35.002688,36.198052,36.872359,37.194188,37.577317,37.883820,38.450852,40.818562,41.967950,42.795509,44.4,45.400788,45.83145,46,46.688103,47.362410,47.776190,48.373871,49.002203,50.779923,51.668783,52.021262,52.496342,52.971422,53.584429,54.136135,54.611216,55.576701,56.741414,57.446372,57.967428,58.411858,58.902263,59.760473,60.572707,61.507542,62.043923,62.427052,62.917458,63.928919,64.511275,65.078307,65.492086,66.135743,67.867488,68.924924,70.411466,71.024473,72.357762,73.599101,74.334709,74.610562,75.054992,75.821251,76.250356,77.031939,78.334579,79.177463,80.005022,80.602704,81.414938,81.859368,82.487700,83.100707,83.683063,84.265420,84.709850,85.169605,85.522084,85.889888,86.502894,87.453055,89.000897,90.334187,90.656016,91.544875,92.111907,92.755564,93.154018,93.858976,95.590720,96.341654,96.893360,97.245839,97.659618,98.747705,99.314737,99.927743,100.724652,101.383635,101.843390,102.103918,102.563673,103.268631,103.605784,104.034889,104.418018,105.260903,105.690007,106.571901,107.142416,107.669044,108.020130,108.298073,108.751558,109.453730,111.253044,112.262416,112.496473,113.066987,113.491216,113.886187,114.632244,115.188130,116.358416,117.353158,118.113844,118.4,118.976930,120.015558,120.644587,121.229730,121.931901,122.590187,123.189958,123.687330,124.213958,124.711330,125.735330,126.364358,127.183558,127.651673,128.149044,128.763444,130.182416,131.893958,132.303558,133.386073,133.883444,134.176016,134.819673,136.487330,136.867673,137.496701,138.725501,139.237501,139.968930,140.568701,141.212358,142.250987,143.128701,143.494416,143.904016,144.767101,145.366873,145.849616,146.507901,146.976016,147.400244,147.707444,148.482758,149.360473,149.638416,150.018758,150.501501,151.115901,151.920473,152.681158,153.237044,154.070873,154.729158,155.036358,155.577616,156.396816,158.517958,159.307901,159.922301,160.419673,161.034073,161.619216,163.096701,163.798873,164.354758,165.056930,165.934644,166.622187 diff --git a/data/torah/labels/Noach-3.txt b/data/torah/labels/Noach-3.txt deleted file mode 100644 index 34e78b978..000000000 --- a/data/torah/labels/Noach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.893206,4.443138,5.001114,5.290434,5.621087,6.261725,7.171019,8.390298,9.340923,9.630244,10.353546,11.056181,11.696820,12.399456,13.722064,14.941344,15.375325,15.891969,16.243287,16.821928,17.586561,18.413192,18.702512,18.950502,19.529143,21.161738,22.773667,23.228314,23.724292,23.992947,24.530257,26.679496,27.237471,27.836778,28.994061,29.283381,29.882688,30.358001,31.267294,32.279917,32.796561,33.375202,34.201832,35.111126,35.772430,36.599060,37.487688,39.471601,40.091574,40.566886,41.476180,41.765500,43.005446,44.121397,45.196016,46.311967,46.890609,47.324590,48.006560,48.275215,48.605867,49.432497,50.259127,55.652891,57.554141,58.442768,58.918081,60.158026,61.728624,63.402551,64.146518,64.890485,65.758447,68.424330,68.6,68.8,69.250961,69.808936,70.325580,70.759561,72.082170,73.342781,73.735430,74.190077,74.686055,75.078705,75.554017,75.884669,76.566639,77.579262,77.971911,78.343895,80.286476,81.092441,82.043066,84.006313,84.626286,85.783568,87.085511,87.643487,87.912141,88.366788,89.214084,89.710063,90.371367,92.665266,93.326571,93.657223,93.987875,94.421856,94.752508,95.310483,95.579138,95.889125,96.323106,98.017698,98.513676,99.774288,101.055565,101.510211,101.840863,102.192181,102.378173,104.052100,104.940727,107.069301,107.875265,108.722561,109.301203,110.417154,111.161121,111.760428,112.091080,112.814382,114.984287,116.120903,116.596216,117.092194,117.629504,118.042819,119.530754,120.274721,121.039354,122.134639,122.568620,123.147262,124.573199,125.193172,125.771813,126.433117,127.549068,127.921052,128.272370,128.851011,129.264327,129.718973,130.648932,132.529517,133.397478,133.996785,134.782084,135.278063,135.753375,136.146024,137.179312,137.737288,138.605250,139.059897,139.597206,140.589163,141.746445,142.263089,142.862396,143.275712,144.247002,144.701649,145.073633,145.590277,145.982926,146.437573,146.912885,148.566146,149.041459,149.558102,150.591390,151.314692,151.893333,152.223985,152.637301,153.236608,153.629257,154.083904,155.675167,156.088483,156.336472,157.328428,158.113727,159.229678,159.704990,160.283632,160.655615,161.502912,162.288210,163.714148,164.850765,166.070044,166.628020,168.033292,169.417898,170.017205,170.265194,170.905832,171.567137,172.063115,172.517761,172.972408,173.365058,173.695710,174.584337,175.059650,176.010275,176.692245,177.828862,178.552163,178.841484,179.626783,181.052720,181.548698,182.230668,182.747312,183.263956,184.772557,185.599187,185.867842,186.322489,186.735804,187.335111,188.637054,189.339690,190.104323,190.682964,191.509595,192.150233,192.584214,193.183521,193.741497,194.196143,195.394757,195.911401,196.386714,196.820695,197.254676,197.688657,198.411958,199.672570,200.354540,200.995178,201.656483,202.379784,203.289078,203.661061,203.888385,204.549689,205.148996,205.644974,206.037624,206.636931,208.786170,209.654132,210.088112,210.976740,212.506006,213.229308,213.890612,214.448588,215.316550,216.019185,216.391169,216.845816,218.106427,218.519742,218.850395,219.243044,219.945680,220.627650,221.578275,222.115585,222.508234,223.396862,224.678139,225.546101,227.075367,228.315312,229.059280,229.555258,231.208519 diff --git a/data/torah/labels/Noach-4.txt b/data/torah/labels/Noach-4.txt deleted file mode 100644 index 807303d8b..000000000 --- a/data/torah/labels/Noach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.026721,2.632065,2.925566,3.164034,3.769379,4.741598,5.053442,5.530380,6.337506,7.933413,8.520414,8.942320,9.309195,10.153009,11.051853,11.510447,11.877322,12.941261,13.326480,14.702262,16.408232,18.114202,18.664515,19.838516,20.425517,20.719017,21.122580,22.645112,23.177081,27.469522,28.093210,28.551804,28.992054,29.395617,30.037649,30.881462,31.486806,33.192776,33.761433,34.220027,34.550215,35.394028,36.457966,37.797061,38.384062,39.319594,39.686469,40.255126,40.713720,41.245689,41.667595,42.181221,43.446941,44.125660,44.400816,45.061192,46.400287,47.354162,47.977850,48.821663,50.711071,51.206353,52.453729,53.811167,54.673324,55.462106,56.122482,56.801201,57.461576,58.397108,61.460517,64.230425,64.652332,65.147614,66.615115,67.495615,68.742991,69.036492,70.302211,70.815837,71.989838,72.686901,73.383964,73.732495,74.447902,74.924840,75.897059,76.392341,78.043280,79.492437,80.941595,81.491907,82.317377,83.069471,83.454690,84.371878,85.179004,85.545879,85.894411,86.132880,86.664849,87.416943,88.535913,89.288007,89.508132,90.058445,94.644386,96.533794,97.285888,98.386514,100.000766,101.449923,102.183673,103.009143,103.504424,104.128112,105.907458,106.659552,106.971396,107.301584,107.613428,107.888584,109.502835,110.750211,111.282180,111.630712,112.181025,112.474525,112.841400,114.363933,114.950933,115.831434,116.785310,117.170529,117.610779,118.106061,118.582999,118.894843,119.206687,119.885406,123.315690,123.847659,125.260129,126.782661,127.553099,127.846600,128.250162,128.892194,129.534226,130.910008,131.515352,132.102353,132.450884,132.671010,133.386416,133.808323,134.413667,135.367543,135.954543,136.614919,137.000138,137.348669,137.550451,138.284201,138.742795,141.384298,141.989642,142.484923,143.090268,144.502737,145.254832,145.750113,146.850739,147.566146,147.988053,148.409959,148.648428,149.455554,150.354398,151.711837,152.390556,152.885838,153.344432,153.931432,154.261620,154.665183,155.215496,156.095996,156.426184,156.994841,157.600185,158.150498,158.994311,159.874812,160.590219,161.177219,161.745876,162.222814,162.828158,163.690315,164.258971,164.717566,165.451316,166.221754,167.193974 \ No newline at end of file diff --git a/data/torah/labels/Noach-5.txt b/data/torah/labels/Noach-5.txt deleted file mode 100644 index 6fd871898..000000000 --- a/data/torah/labels/Noach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.889408,2.623158,2.971690,3.356909,3.778815,4.090659,4.659316,5.374723,6.567068,6.915599,7.924506,8.676600,9.116851,9.850601,10.327539,10.859508,11.868415,13.354260,13.739479,14.088011,14.528261,15.023543,15.720606,17.004669,18.527202,19.224265,19.591140,20.104766,20.710110,21.315454,21.994173,22.489455,22.948049,23.369956,24.048675,25.516176,25.717957,26.158208,26.873615,27.277177,28.451178,29.074866,30.267211,31.092680,31.532931,32.009868,32.651900,33.110494,34.247808,34.889839,35.330090,36.155559,37.494654,38.723686,39.402405,39.842656,40.319594,40.778188,41.383532,41.823782,43.217908,44.061722,45.107316,45.694317,46.079536,46.501442,46.886661,47.363599,48.372506,49.051225,49.473132,50.023445,51.252477,51.839478,52.775010,53.215260,53.710541,54.169136,54.536011,55.196386,56.920700,57.929607,58.314826,58.608327,58.938514,59.819015,60.607797,61.213141,63.762924,64.203175,65.248769,66.202645,66.606208,67.394990,68.440584,69.064272,69.504522,69.963117,70.311648,70.715211,71.467305,71.870868,72.201056,72.769712,73.393400,73.907026,74.365620,75.025995,75.998215,76.603559,77.190560,78.896530,79.777030,80.382375,80.914344,81.427969,81.904907,82.455220,82.730376,83.060564,83.684252,84.362971,84.821566,85.298503,85.610347,86.032254,87.499755,88.068412,88.398600,88.637068,89.187381,89.590944,90.012851,90.691570,91.553727,92.177415,93.186322,93.479822,94.250260,94.837261,95.149105 \ No newline at end of file diff --git a/data/torah/labels/Noach-6.txt b/data/torah/labels/Noach-6.txt deleted file mode 100644 index 550875dc1..000000000 --- a/data/torah/labels/Noach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.428343,2.794522,3.777422,4.432689,4.741050,5.511953,5.858859,6.263583,6.533399,7.285029,7.921023,8.325747,9.096649,9.906097,10.387911,10.734817,11.255176,11.929716,12.488620,12.816254,13.375158,14.300241,14.762783,15.225324,15.784229,16.362405,16.979127,18.058391,18.366752,18.655840,19.253290,19.889284,20.236190,21.142001,22.972894,23.820887,24.495427,24.996513,25.401237,25.825234,26.422683,27.058678,27.579037,27.964488,28.639028,29.718291,31.529912,32.763356,33.360805,34.555704,35.634968,36.020419,36.540778,37.273136,38.082583,39.026939,40.125475,40.877105,41.436009,42.206912,43.054904,44.076350,44.712345,45.136341,45.541065,46.215605,47.198505,47.622502,48.354859,49.376305,50.609749,50.995200,51.342106,51.669740,52.093736,53.076637,54.155900,54.907530,55.370072,55.986794,56.584243,57.104602,57.856232,58.993313,59.648580,60.168940,60.785662,61.171113,61.768562,62.231104,62.886371,63.445275,64.852172,65.314714,65.873618,66.663793,67.280515,67.723784,68.533232,69.072863,69.593223,70.152127,71.115755,71.674659,72.349199,73.004466,73.640461,74.083730,74.642634,75.413537,76.203712,76.916796,77.263702,77.649154,78.053878,78.824780,79.287322,79.634228,80.385858,80.790581,82.313114,84.568004,85.338906,85.724357,86.032718,86.379624,86.707258,87.034892,88.191245,89.309054,89.848686,90.330500,91.062857,91.775942,92.257756,93.067204,93.761016,94.474101,95.187185,96.170086,97.191532,98.328613,99.735510,100.313687,101.084590,101.662766,102.395124,103.898384,104.534378,105.286008,106.037638,107.598716,108.677979,110.756302,112.452287,113.203917,114.263908,115.227536,115.612987,116.229709,117.328245,118.330419,119.236229,119.563863,120.064949,120.816579,121.298393,122.146386,122.917289,123.572556,124.208550,124.979453,125.788900,126.656166,127.523431,128.275061,128.988146,129.662685,130.587768,131.493579,132.148846,132.669205,133.208837,133.825559,134.365191,135.001185,135.521544,136.446627,137.140440,137.545163,137.988432,138.393156,138.913515,139.433875,139.934961,140.301140,141.361131,142.980026,143.577475,144.040017,144.579649,145.234916,146.487632,147.277807,148.048710,148.703977,149.205064,149.744695,150.611961,151.402136,152.481399,152.982486,153.522118,153.946114,154.350838,154.813379,155.873370,156.451547,157.010451,157.530811,158.051170,158.417348,158.802800,159.477339,160.961327,161.655139,162.214043,162.811493,163.139126,163.755848,164.526751,165.008565,165.933648,170.539790,172.447774,172.910315,174.240122,174.625573,176.263741,176.803373,177.477913,177.901909,178.807719,180.792793,182.681504,183.086228,184.955667,185.688024,186.304746,187.210557,188.077822,188.463273,189.677445,192.857417,194.399222,194.784674,195.266488,195.825392,196.172298,196.692657,197.521377,198.369370,198.716276,199.390816,199.756995,200.508625,201.491525,202.069702,202.378063,202.859877,203.187511,204.035504,204.632953,205.558036,205.943487,206.598754,206.964933,207.735836,209.007825,210.009998,210.915808,212.033617,216.273581,216.851757,217.526297,218.316472,219.145192,219.800460,220.147366,220.686997,222.286620,223.789880,225.254595,226.179678,226.854217,227.181851,228.029844,228.935654,229.417468,229.841465,230.843638,231.903629,233.079255,234.274154,235.893049,236.606134,237.010858,237.357764,237.935941,238.244302,238.571935,238.957387,239.458473,240.094468,241.038823,241.520637,241.983179,242.696264,243.370803,244.565702,245.143879,245.914782,246.570049,247.032590,247.552949,248.034763,248.998392,249.827112,254.182711,254.606707,255.049976,255.454700,256.129240,256.649599,257.459046,257.728862,258.461220,258.923761,259.289940,259.675391,260.215023,261.294286,262.527730,263.182997,263.780447,264.532077,265.418615,266.305153,266.998965,268.116773,269.138219,269.870577,270.178938,271.026930,271.296746,271.836378,272.433827,273.281820,273.590181,274.206903,274.842898,275.401802,275.710163,276.076342,276.481065,277.232695,277.695237,278.061416,278.446867,279.371950,279.757401,280.316305,281.029390,281.357024,281.800293,282.089381,282.609740,283.014464,283.727549,284.190090,284.556269,285.038083,286.117347,287.042430,287.986785,288.854050,289.412955,289.894769,290.530763,291.320938,291.802753,292.246021,293.113287,293.980552,295.059816,295.888536,296.813619,297.565249,299.319052,300.205590,301.304126,302.441207,304.561189,306.623353,308.222976,309.282967,310.227322 \ No newline at end of file diff --git a/data/torah/labels/Noach-7.txt b/data/torah/labels/Noach-7.txt deleted file mode 100644 index 80995e2eb..000000000 --- a/data/torah/labels/Noach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,2.029424,2.470603,3.017665,3.458844,4.147084,4.958854,6.158861,6.864747,7.641223,8.258873,9.017702,10.341239,11.082420,11.717718,12.600076,13.253021,15.511859,16.023626,16.305981,17.664813,18.882467,19.694237,20.347182,21.211893,22.235429,23.364847,24.000145,24.882503,25.782509,27.106046,27.600167,28.129582,29.153117,31.394307,32.806081,33.353143,33.741380,35.170801,36.176689,36.847282,37.923759,38.700234,39.388473,39.776711,40.500245,41.170837,41.576722,42.035548,42.459080,43.129673,45.247332,46.094396,46.676753,47.082638,47.400287,47.735583,48.441469,49.182650,49.747360,50.294422,51.247369,53.047380,54.688566,55.253275,55.870926,56.453283,57.247405,57.759173,58.676825,59.329771,60.370953,61.165076,62.435672,63.000381,63.635679,64.200388,65.418043,66.194518,66.847463,67.835704,69.106300,70.059247,70.923958,71.400432,72.159260,73.076912,73.782799,74.629863,75.335750,75.865165,76.765170,77.735764,78.529887,79.976954,82.094614,82.553440,82.924031,83.241680,83.806389,85.076985,85.676989,86.506405,87.477000,88.324063,89.065244,89.665248,90.212310,90.777020,91.906438,92.506442,92.947621,93.424094,93.741743,94.218217,95.329988,96.088816,96.688820,97.006469,97.482942,97.818239,98.488831,99.653544,100.871198,101.330024,101.947675,103.024152,103.447684,103.906511,104.753575,105.141812,105.759463,106.730057,107.294766,108.071242,108.635951,110.294785,110.894788,111.671263,111.918324,112.606563,113.312450,113.771276,114.300691,115.165402,115.624229,116.700706,117.812477,118.253656,118.765424,119.400722,120.000726,120.494846,120.830142,121.500735,123.900749,125.577230,126.141939,126.741943,127.147828,127.553712,127.994892,128.312541,129.053722,129.583137,130.094904,131.771385,132.265506,133.130217,133.800809,134.259635,134.859639,135.583173,136.218471,136.589061,137.118476,137.877304,139.306725,140.118494,140.912617,141.194971,141.618503,142.059683,142.606745,143.312631,143.683222,144.177342,145.024406,145.536174,146.595004,148.447956,149.259726,149.930318,150.512675,151.042090,151.659741,151.977390,152.577393,153.406810,154.571523,155.330351,155.895060,156.124473,156.495064,157.218598,157.748013,158.277428,158.665665,159.071550,159.953908,160.377440,161.471565,162.071568,162.636278,163.236281,163.800990,164.612760,164.930409,165.530413,166.183358,167.648073,168.565725,169.359848,169.783380,170.189264,170.648091,171.053976,171.759862,172.183394,172.871634,173.330460,174.512820,175.342237,175.871652,176.595185,177.389308,177.954017,178.765787,179.048141,179.789322,180.777564,182.295220,183.212873,183.901112,184.218761,184.783470,185.259944,185.701123,186.195244,186.654070,187.465839,188.012902,188.912907,190.324680,190.977625,191.454099,191.948220,192.565870,192.918814,193.465876,194.224704,194.877649,197.577665,198.371788,198.742378,199.201205,199.712972,200.260034,200.895332,201.424747,202.501224,204.742415,205.289477,205.854186,206.524778,207.054193,207.513020,207.918904,208.554202,209.207147,210.442449,211.289513,211.924811,212.207166,212.630698,213.107171,213.495409,213.813058,214.307178,214.677769,215.330714,215.718951,216.389544,217.607198,218.330732,218.860147,219.301326,220.254273,220.571922,220.977807,221.277809,221.630752,221.913107,222.530757,223.607234,224.524887,225.124891,225.689600,226.324898,226.677841,227.171962,227.454317,227.842554,228.266086,228.954326,229.695507,230.260216,230.630806,231.142574,232.271993,232.871996,233.119057,233.542589,233.913179,234.354358,234.936715,235.783779,236.207311,237.213199,237.866144,239.154387,240.654396,241.077928,241.730873,242.454407,242.983822,243.619120,244.166182,244.677950,245.172071,245.630897,246.354431,246.866199,247.377966,247.766204,248.172089,248.807387,249.636804,250.519162,250.995635,251.913288,252.513292,252.813293,253.554474,254.225067,255.601546,255.866253,256.572140,257.613322,258.266268,258.654505,259.060390,259.730982,260.172161,260.701576,261.195697,261.654523,262.183938,262.731000,263.189827,263.701595,264.742777,266.013373,266.525141,267.901620,269.436923,270.566342,271.219287,271.872232,272.225176,272.666355,273.389888,274.060481,275.066369,275.736961,276.319318,276.795791,277.325206,277.925210,278.542861,279.284042,280.325224 \ No newline at end of file diff --git a/data/torah/labels/Noach-H.txt b/data/torah/labels/Noach-H.txt deleted file mode 100644 index f766af236..000000000 --- a/data/torah/labels/Noach-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.182676,3.274014,3.947392,5.340590,6.246168,6.849887,7.732245,8.173424,8.753923,9.427302,10.704399,11.192018,13.026395,13.955193,14.930431,15.487710,16.486168,17.786485,18.529524,20.526440,22.291156,24.334512,25.634830,26.052789,27.840726,29.373243,30.302041,31.393379,32.716916,33.761814,34.295873,35.015692,36.548209,37.662766,38.684444,39.520363,40.425941,41.076100,42.446077,43.839274,44.744853,45.116372,45.650431,46.486349,47.066848,47.809887,48.367166,48.901224,49.876463,50.410522,51.176780,51.943039,52.918277,53.916735,54.891973,55.449252,56.354830,56.981769,58.305306,59.443084,60.279002,60.905941,61.440000,62.693878,63.994195,64.806893,65.735692,66.687710,67.152109,67.616508,68.870385,69.613424,71.169161,72.910658,73.932336,74.837914,75.836372,77.183129,78.971066,80.666122,82.245079,83.057778,83.870476,84.985034,85.983492,86.563991,88.189388,89.582585,90.209524,91.324082,92.647619,94.180136,95.573333,96.316372,97.012971,97.802449,98.731247,99.311746,101.030023,101.958821,102.817959,103.862857,105.047075,105.372154,105.906213,106.463492,106.974331,107.578050,108.855147,109.969705,110.364444,110.782404,111.920181,112.384580,113.800998,114.520816,115.844354,116.726712,117.400091,118.444989,119.234467,120.650884,121.719002,123.042540,124.273197,125.921814,128.568889,130.333605,130.751565,132.214422,132.957460,133.537959,133.932698,134.629297,135.395556,136.370794,138.065850,141.664943,142.709841,143.220680,144.335238,145.403356,146.889433,147.748571,148.398730,149.211429,150.233107,151.579864,152.531882,153.251701,154.505578,155.341497,156.107755,157.059773,157.779592,158.267211,158.708390,159.567528,160.171247,160.937506,161.587664,162.632562,163.422041,163.979320,164.792018,165.511837,166.208435,168.414331,169.157370,169.528889,169.923628,170.527347,171.432925,172.129524,172.431383,172.942222,173.871020,175.449977,175.867937,177.028934,177.980952,179.652789,180.163628,180.535147,181.069206,181.603265,182.392744,183.367982,184.505760,185.550658,186.316916,187.361814,188.313832,189.126531,189.985669,190.566168,191.912925,193.724082,194.513560,195.024399,195.953197,196.626576,197.694694,198.762812,199.273651,199.784490,201.038367,201.827846,203.035283,204.173061,204.660680,205.287619,206.657596,209.374331,210.953288,211.765986,213.182404,214.854240,216.038458,216.572517,217.454875,218.244354,218.731973,219.219592,219.916190,220.566349,221.471927,221.866667,222.214966,223.236644,224.165442,224.792381,225.605079,226.232018,227.648435,228.345034,229.320272,230.156190,230.899229,231.549388,232.501406,233.430204,234.219683,234.684082,235.427120,236.030839,237.191837,237.749116,239.211973,239.955011,240.674830,241.301769,242.160907,242.764626,244.111383,245.040181,245.922540,247.617596,248.499955,249.126893,249.893152,250.659410,251.263129,252.656327,253.863764,254.583583,255.233741,255.837460,256.441179,256.975238,258.136236,260.226032,260.969070,261.874649,263.383946,264.243084,265.009342,266.309660,266.866939,267.284898,267.749297,268.051156,268.840635,269.421134,269.792653,270.349932,271.023311,272.323628,272.973787,273.716825,274.413424,275.365442,276.201361,277.315918 \ No newline at end of file diff --git a/data/torah/labels/Pinchas-1.txt b/data/torah/labels/Pinchas-1.txt deleted file mode 100644 index ae154c056..000000000 --- a/data/torah/labels/Pinchas-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.857596,3.416463,3.828209,4.803447,6.544943,7.754711,8.172670,10.726865,11.446684,12.584462,15.068997,16.617675,16.967305,18.476602,20.055559,20.728938,22.586534,23.956512,24.232067,25.393065,27.088122,28.063360,28.806398,29.314153,29.941092,31.032430,33.679505,34.817283,35.746081,37.208938,38.277056,40.111432,40.575831,41.690389,43.501546,45.616612,46.568630,48.867406,50.260603,51.073301,52.118199,52.814798,55.160013,56.924730,58.132168,59.873664,61.452621,61.917020,62.497519,64.355115,67.722009,68.441827,70.949583,74.014617,75.848993,77.102871,77.590490,79.169446,80.353664,80.818063,81.886181,83.000739,83.604458,84.161737,86.846486,88.341329,90.756204,93.101419,94.982236,96.236113,96.511669,97.510127,98.392485,99.178880,99.550399,101.129356,102.685093,103.962190,105.401827,106.516385,107.212984,107.793483,109.233120,110.417338,110.716113,112.109310,113.572168,115.151124,115.987043,117.031941,117.728539,119.052077,122.186771,123.278109,124.137247,124.996385,125.484004,126.110943,127.434480,128.665138,130.708494,132.148131,132.705410,134.075388,135.143505,136.885002,138.394299,139.090898,140.414435,140.902054,141.575433,143.200830,144.713874,145.805212,147.337729,149.056005,150.402763,150.820722,151.981720,154.489475,156.718590,157.322309,158.227888,159.226346,161.060722,163.707797,164.218636,165.588613,166.169112,166.935370,167.539089,170.046844,171.277502,172.392060,174.179996,175.526754,176.200132,177.500450,178.127389,178.893647,180.054645,182.864259,184.280677,186.254373,189.203307,191.548522,192.755960,194.056278,195.101175,195.658454,196.471153,197.516051,199.211107,201.625983,202.578001,203.506799,204.969656,208.243670,209.497547,211.239044,211.657003,212.883035,214.345892,215.971289,217.944985,219.477502 diff --git a/data/torah/labels/Pinchas-2.txt b/data/torah/labels/Pinchas-2.txt deleted file mode 100644 index 4797518dc..000000000 --- a/data/torah/labels/Pinchas-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.600635,3.599093,5.201270,6.200498,8.708253,10.171110,11.959047,13.863083,16.486938,17.810475,20.039591,22.895645,24.126303,25.798140,28.352335,29.629432,31.784262,33.572199,34.451473,35.914330,37.446847,39.954602,41.742539,43.414376,44.412834,45.573831,46.456190,48.197686,49.405124,50.450022,52.028979,53.863355,55.349432,56.858729,57.926847,59.296825,60.132743,60.852562,63.035237,64.358775,66.657550,67.911428,69.978004,70.465623,71.696280,72.160679,73.507437,74.923854,75.991972,78.267528,78.848026,80.844943,82.377460,84.722675,85.349614,87.253650,88.995147,91.015283,92.083401,93.105079,94.080317,95.612834,96.913151,98.910067,99.722766,101.255283,102.956598,104.047936,105.626893,107.136190,108.552607,109.434965,110.224444,111.617641,112.825079,116.075872,119.373106,122.368480,123.738457,126.826711,129.486361,130.624139,132.458515,135.128810,136.522007,139.145862,141.676837,142.861055,144.440012,147.226406,148.457064,151.522098,152.386309,153.570527,155.265584,157.355380,159.909575,160.977692,162.904949,164.274926,167.107760,170.497874,173.353928,174.677466,176.697602,179.321457,180.505674,182.014971,184.662046,185.939144,187.936060,190.676014,191.929892,193.532069,196.016604,197.363361,199.360277,202.262772,203.493429,205.142046,207.719461,209.089438,211.295334,213.460363,214.630648,215.274306,215.917963,217.410077,218.521848,219.721391,221.096477,223.115220,224.490306,225.543563,226.245734,227.474534,229.171448,230.663563,232.214191,233.091906,234.730306,236.339448,237.100134,240.347677,243.741506,246.667220,248.130077,251.048248,253.213277,254.559106,256.051220,258.479563,259.796134,261.814877,264.235956,264.951131,265.796337,268.527004,269.632274,271.420210,274.183385,275.418687,277.791766,279.872274,281.140083,282.440401,283.838242,286.243829,288.389353,289.462115,290.957480,292.550369,296.321290,297.914179,300.059702,302.370338,303.657290,305.445226,308.110877,309.313671,311.524210,314.333725,315.471503,317.324455,320.120137,321.355439,323.728518,325.874042,326.979312,328.312137,329.612455,332.083058,334.521153,335.463884,336.699185,337.966995,339.364836,342.940709,346.289026,349.247249,350.580074,352.335503,355.163693,356.333979,358.121915,360.657534,361.892836,364.786042,366.864110,368.066904,370.049888,371.610269,372.813063,373.593253,374.958586,376.518967,377.819285,378.827031,380.810015,382.305380,383.963285,385.003539,387.441634,389.099539,391.212555,393.032999,394.728110,395.472745,395.910840,397.081126,399.486713,400.722015,402.802523,404.094375,405.817296,407.150121,409.133105,410.270883,412.058819,414.334375,415.602184,417.682692,420.413359,421.551137,423.566629,426.752407,427.890184,429.970692,432.636343,433.839137,435.854629,438.130184,439.430502,441.348470,443.221908,443.594987,445.447940,446.228130,446.844257,448.274606,449.509908,450.290098,450.540892,451.451114,452.718924,454.311813,455.579622,457.335051,458.700384,459.838162,460.910924,462.958924,463.901654,465.039432,466.144701,468.907876,470.825844,473.393971,474.401717,475.474479,476.709781,477.945082,478.530225,481.168926,484.555114,487.350797,488.651114,491.604765,493.847813,494.985590,496.545971,498.951559,500.121844,502.592447,503.730225,505.160574,506.330860,508.801463,510.036765,512.279813,513.547622,515.188511,515.611114,516.553844,519.414543,521.430035,523.868130,524.810860,526.126670,527.101908,528.157654,528.677781,529.718035,532.481209,534.361407,537.872264,541.025534,543.886232,545.284073,547.072010,549.835185,551.037978,552.858423,555.816645,557.116962,559.685089,562.643312,563.813597,565.731565,568.397216,569.502486,571.908073,573.370931,573.776518,574.556708,575.360137,576.920518,578.253343,580.008772,582.284327,583.487121,585.697661,586.832866,587.222961,588.490770,590.376231,593.301945,595.967596,598.210643,599.088358,600.226135,601.884040,603.184358,603.639469,604.484675,606.435151,609.230834,610.336104,611.831469,613.749437,614.789691,615.667405,618.105500,618.820675,619.730897,621.063723,622.624104,624.932167,627.272739,628.020421,629.320739,630.848612,632.209944,635.340435,638.637245,641.400420,643.058325,644.716229,647.219340,648.552166,650.275086,652.875721,654.046007,656.224039,658.109499,659.312293,661.587848,662.693118,664.123467,666.691594,667.829372,670.462515,671.665309,672.038388,672.818579,674.476483,676.264420,677.337182,677.685499,678.391404,679.984293,683.004102,685.442198,686.449944,687.847785,689.375658,690.968547,692.236356,694.219340,696.754960,697.925245,700.103277,702.866452,704.036737,706.084737,708.652864,709.725626,711.253499,713.659086,715.056928,717.299975,719.282960,720.388229,721.623531,723.476483,726.272166,728.677753,730.953309,731.882107,733.089545,734.622062,736.874397,738.383694,740.032311,741.634488,742.306325,742.979703,743.722742,745.185599,746.063331,747.502969 diff --git a/data/torah/labels/Pinchas-3.txt b/data/torah/labels/Pinchas-3.txt deleted file mode 100644 index e2fc47988..000000000 --- a/data/torah/labels/Pinchas-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.025477,3.420067,4.084158,4.894101,6.653942,9.111077,10.605282,12.929599,14.822257,16.216848,18.043097,20.732665,22.094051,23.953505,27.107935,28.037662,29.930321,30.992866,32.762483,34.829136,36.157318,38.780476,39.702475,42.358838,44.052269,44.609018,45.804382,46.859199,47.781198,49.208993,51.201265,52.202262,53.131989,54.692602,56.220010,58.212283,59.075600,59.698759,61.757440,63.583689,64.945075,68.830006,72.548914,75.670140,77.263958,80.418389,83.008342,84.170501,86.029955,88.819136,90.180522,92.604453,94.961975,96.323361,98.680883,100.141883,102.831450,104.657699,106.649971,108.472334,110.165765,112.324060,114.083901,115.744127,117.404354,118.666126,119.761876,120.418239,121.945648,124.774571,125.637888,128.220114,129.847137,130.403886,131.864885,133.226271,134.410043,136.601542,138.527405,140.154427,141.947472,144.404608,145.002289,146.529698,147.326607,148.488766,149.850151,150.945901,153.137400,155.528127,157.354376,157.918854,159.014603,159.711898,161.106489,161.670966,162.866329,163.729647,165.489488,166.743532,167.905691,169.499508,170.993712,171.284825,172.513393,173.368983,175.195233,176.783961,179.639551,181.366187,182.727573,183.624096,184.421004,185.583163,186.413276,186.966162,188.327548,190.353024,190.942978,193.532932,194.927522,196.454931,198.247976,202.166111,202.730588,204.025565,205.154519,206.914359,208.209336,209.039450,210.832495,212.924380,214.717425,215.912788,218.129764,219.225514,220.752923,222.778399,223.376081,224.604649,225.999239,227.958307,229.386102,230.581465,231.544397,233.470260,235.202382,235.725927,237.153722,238.083449,240.175335,241.403903,243.030925,244.491924,245.886515,247.812378,248.310446,249.074150,250.302718,251.630899,253.423944,254.254058,255.416216,256.943625,258.371420,259.400761,260.529715,261.990714,263.418509,264.481055,265.875645,266.506531,267.901122,268.657098,269.852461,270.549757,272.043961,274.102642,274.700323,276.360550,279.382163,280.710344,283.233889,284.130411,285.052411,285.638500,286.734250,287.423817,288.785203,289.275543,290.603725,292.455451,293.576677,293.971268,295.133426,296.461608,297.888544,299.591284,301.483943,302.911738,304.239919,305.402078,307.892418,311.212871,312.308621,314.632938,316.392779,318.252233,319.713232,321.174232,322.602027,323.365731,325.059162,326.154912,326.608184,327.670729,329.895433,334.344840,335.108545,338.030544,339.225907,339.823589,342.181111,343.343270,345.833610,348.788813,349.652131,351.113131,352.397960,353.460505,354.257414,356.116868,356.980186,358.773231,359.370912,360.089820,361.550820,362.912206,364.506023,364.963159,366.324545,367.984772,369.811021,371.570861,372.234952,373.065065,373.895179,375.024133,376.252701,377.514473,378.743041,379.639563,380.967745,382.503697,384.628787,385.126855,386.953105,387.949241 diff --git a/data/torah/labels/Pinchas-4.txt b/data/torah/labels/Pinchas-4.txt deleted file mode 100644 index 660132577..000000000 --- a/data/torah/labels/Pinchas-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.025012,3.446073,3.943445,4.963200,6.739527,8.942171,10.007967,13.063249,15.656686,17.255380,18.392229,20.133029,22.086988,23.756735,25.319902,26.243592,27.558073,31.004147,31.452931,32.518727,33.975314,35.751641,36.659559,37.476669,38.826678,40.247739,41.171429,42.049078,42.535935,44.809633,46.088588,47.509649,48.433339,50.778090,51.193894,52.792588,54.924180,55.697313,56.088105,57.082847,57.534178,58.974994,59.177639,60.882913,62.978978,63.938194,64.247419,65.018488,65.926407,67.169835,67.397492,68.925133,70.204088,71.767256,72.467272,73.142276,75.973884,78.744954,80.264840,80.459468,83.458010,86.577284,87.924041,90.153157,91.987533,93.520050,94.495288,97.490663,99.023180,100.625357,102.575833,103.992250,106.430345,107.544903,108.822001,109.351434,110.976830,112.724040,114.145102,114.784579,116.028008,118.315810,118.985951,119.579387,121.249134,122.208351,123.878097,124.339942,125.512318,126.649167,127.608383,128.567599,130.297885,133.129493,134.443975,136.326881,136.778212,137.950587,138.620334,139.863763,141.071665,142.101934,143.203257,145.192742,148.379616,150.013836,152.180955,153.602016,155.911240,157.545461,159.321787,161.027061,162.448122,164.508661,166.541082,167.109506,168.352935,169.418731,170.555580,172.047694,174.463498,175.635874,176.275351,177.305621,179.010894,181.142486,182.776706,183.700396,185.317857,186.393882,187.637311,188.692592,189.179449,190.955776,192.488293,193.273145,195.943440,197.754597,199.101354,200.842851,202.282488,203.931105,205.463622,206.671059,208.250016,209.619994,211.175731,212.870787,215.517862,216.516320,216.977635,217.976093,219.903350,221.784166,223.990062,224.477681,227.055096,227.751694,228.634053,229.144892,231.095368,231.675867,232.883304,234.160402,235.228520,236.389517,237.434415,239.338452,239.753327,240.891105,243.677499,247.206083,249.728467,251.185055,253.494279,255.270606,256.975879,257.579830,259.107471,260.919324,261.985120,264.365398,266.756585,268.355279,269.705287,271.765826,273.648732,274.288210,275.282953,276.277695,278.125075,279.972455,281.784308,283.383002,285.230381,287.006708,288.685072,290.060716,291.588357,292.760732,294.075214,294.846283,295.485761,297.759459,298.576569,299.063426,301.514757,303.433189,304.356879,304.950316,306.335851,307.295067,308.396389,310.670087,312.801679,314.435900,317.206969,318.130659,319.480667,320.617516,322.322789,322.596487,325.509663,328.209679,329.488634,331.833385,333.645238,335.208406,335.847883,338.157108,340.928177,341.567655,343.521614,344.587410,346.825581,349.454544,350.520340,352.261140,353.646675 diff --git a/data/torah/labels/Pinchas-5.txt b/data/torah/labels/Pinchas-5.txt deleted file mode 100644 index 2654d3b13..000000000 --- a/data/torah/labels/Pinchas-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.272097,3.629303,4.094631,5.064064,6.615157,8.088695,8.631578,9.756120,11.539877,13.129747,14.719618,15.378832,16.619707,18.713682,21.389317,22.746524,24.375171,27.012029,28.097794,28.795786,31.859195,34.379721,35.969591,37.210466,38.761559,39.808546,41.088198,42.561736,43.996497,44.927153,46.969392,49.676682,50.956334,51.997386,53.069005,54.852762,55.589531,56.597742,57.630584,59.142899,60.344996,61.857312,63.796178,65.308494,66.859587,67.596356,69.767886,72.559853,75.002825,75.933481,77.717238,80.309669,81.821698,83.101350,84.358645,86.413843,87.399697,88.601794,90.463106,92.208086,93.604069,95.698045,97.132806,98.179794,100.312546,102.367745,104.229056,105.702594,107.214910,108.494562,111.557970,113.845833,114.854043,116.017363,118.344002,119.739986,121.795184,123.423832,124.819815,125.634139,127.030123,128.852657,130.248641,132.109952,133.971264,136.104017,137.422446,138.663320,141.222624,142.967603,144.712583,145.643238,146.612672,147.310663,148.141408,149.847610,151.104906,153.664209,155.952071,158.472597,160.160993,161.285535,163.728507,164.659162,165.977591,167.683794,168.304231,169.196109,170.204320,173.112619,175.012708,176.835242,178.425112,179.239436,181.023193,182.419177,183.117169,184.978480,186.452019,188.429662,190.097087,193.438847,194.485834,196.618587,198.169680,200.806538,202.551518,205.110821,206.661914,208.019121,210.113096,211.509080,212.982618,214.533711,215.890917,218.333889,219.574763,221.009524,223.142277,224.654593,226.205686,228.726212,230.665078,233.573377,235.046916,236.365345,238.614429,240.165522,241.794170,243.422818,245.167797,247.339327,248.774088,250.208849,252.186493,256.103003,257.368508,260.393140,261.711569,263.844321,266.752621,267.932361,270.336555,271.679616,273.928701,275.828789,276.798223,277.883988,278.670019,279.396303,281.384432,283.223387,286.054132,287.644002,288.807322,290.693265,292.105669,293.734317,294.603839,296.465150,298.830567,301.234761 diff --git a/data/torah/labels/Pinchas-6.txt b/data/torah/labels/Pinchas-6.txt deleted file mode 100644 index 1743dc171..000000000 --- a/data/torah/labels/Pinchas-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.092916,6.139374,7.857669,10.086785,10.904127,12.353052,13.616218,15.771029,18.185905,19.263311,20.972299,22.161161,23.164263,24.204517,26.396481,27.771102,29.220027,31.486295,32.860916,34.124082,35.090032,36.018830,36.724717,37.616363,38.730921,39.371810,41.266558,43.848363,45.483048,46.783365,48.715265,51.464508,52.356154,54.659574,55.959891,57.334512,58.597678,60.938249,62.498630,64.356227,65.582240,67.365533,68.480091,70.003320,73.272689,74.312943,75.799020,76.913578,78.436807,80.665923,83.452317,86.238712,89.025107,90.696943,92.898213,95.313088,97.096381,99.065433,100.746576,102.418413,104.350313,106.690884,108.095195,109.302633,110.486850,112.205127,114.341363,116.106079,117.986896,119.333653,120.610751,121.818188,123.211386,124.999322,125.273336,126.736193,130.370170,132.153463,133.528084,135.088465,136.648846,138.840810,140.141127,140.741762,141.930624,143.453853,144.393088,146.473596,149.037079,150.746067,153.346702,155.237739,157.281095,158.321348,158.962237,160.268759,161.457621,162.021104,163.024206,164.361675,165.148070,167.154274,168.528895,172.058328,175.179090,176.999534,178.337004,180.417512,183.758679,184.968732,185.860378,187.643670,188.683924,189.352659,190.095698,191.284559,192.033802,194.485829,196.900705,199.204124,201.321784,202.547797,204.405394,206.968877,207.563308,209.680968,211.092741,212.095843,213.284705,214.510718,215.699580,216.888441,218.746038,222.349775,223.315725,224.801802,225.885412,227.557249,229.117630,230.927280,232.746183,233.978401,235.687389,236.876251,239.291126,241.223027,242.969167,244.195181,245.829866,247.204487,249.656514,251.004525,252.054085,253.057187,254.766176,256.883836,259.781686,262.164468,264.595999,266.596071,268.044997,269.493922,270.348416,271.314366,274.323672,276.181269,278.707600,280.045069,282.311337,283.723110,284.512606,286.407355,287.633368,288.271155,289.014194,290.128752,291.020398,292.357867,293.107110,294.258820,295.373377,296.859455,298.679899,300.611799,302.172180,303.472498,305.441550,307.567877,308.135101,309.918393,311.255863,312.481876,313.559282,316.048461,316.865804,318.872008,320.209477,322.364289,325.485051,326.525305,327.937078,328.977332,330.426257,332.395309,333.769931,334.921641,335.708035,337.714239,340.166266,341.392280,342.655445,344.104371,345.664752,348.005323,349.921491,350.590226,351.667632,352.930797,354.206371,355.878208,359.110425,360.262135,362.119731,365.336511,367.045500,368.271514,369.906199,371.615187,373.695695,375.924811,377.150824,378.302534,380.494498,384.618362,385.547160,387.962035,390.674126,391.825836,392.680330,394.537926,395.801092,397.510081,397.955904,399.441981,400.370779,401.448185,402.414135,404.420339,406.815498,408.784550,410.382083,411.868160,413.057021,415.397593,416.103479,417.855824,419.081838,420.084940,421.050890,422.648423,423.397665,424.623679,425.923996,427.818745,428.784695,430.159316,433.317230,434.357484,435.769257,436.772359,438.444196,439.967425,441.453502,442.679516,444.091289,445.317303,447.397811,449.329711,451.001548,452.376169,453.750790,455.348323,457.503135,458.825167,459.648713,460.763271,461.989284,464.401798,466.233910,468.017203,470.172015,471.769548,474.333030 diff --git a/data/torah/labels/Pinchas-7.txt b/data/torah/labels/Pinchas-7.txt deleted file mode 100644 index fcaa1d263..000000000 --- a/data/torah/labels/Pinchas-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,6.408707,8.010884,9.682721,11.075918,14.384762,15.390204,16.469932,18.385578,19.639456,20.301224,21.276463,22.704490,23.401088,24.933605,27.088435,28.760272,30.362449,31.302857,33.218503,35.168980,37.467755,39.035102,40.184490,41.612517,43.458503,46.244898,46.941497,49.205442,50.285170,51.295238,52.634286,53.679184,56.395918,57.087891,59.317007,60.570884,61.615782,62.332517,64.352653,66.955195,67.965263,69.219141,70.264039,71.587576,73.572882,74.896420,77.439005,79.354651,80.399549,81.757916,83.325263,84.857780,86.668937,88.619413,89.803631,91.893427,94.018052,95.689889,97.048257,98.545944,99.939141,100.914379,103.282814,104.676012,105.546760,106.646624,107.761182,109.293699,110.861046,112.498052,114.096420,116.255876,117.802406,120.484311,122.852746,123.444855,125.639141,126.669345,127.644583,128.759141,129.769209,132.242134,133.008393,134.924039,136.247576,137.396964,139.556420,141.297916,147.915603,152.826624,155.647848,158.643223,160.524039,162.544175,163.909243,164.791601,165.929379,166.904617,168.646113,170.225070,171.827247,173.870603,176.378358,179.095093,181.742168,182.996045,183.808744,184.783982,186.014639,187.175637,189.451193,190.356771,192.400127,193.723664,194.884662,197.322757,199.157134,205.403302,210.279492,213.251646,216.432780,218.522576,220.565932,222.136078,223.250636,224.400023,225.932540,227.708867,229.241384,231.191860,233.525466,236.207370,238.819615,239.969003,241.397030,242.511588,243.800295,246.238391,246.865329,248.955125,250.174173,251.149411,253.517846,255.642472,261.598391,265.534173,268.216078,270.897983,272.778799,274.659615,275.600023,276.470772,277.446010,278.456078,279.744785,281.346962,282.809819,283.889547,286.280707,288.701520,291.278935,292.149683,293.264241,294.239479,295.354037,297.304513,297.931452,299.603289,300.787506,301.727914,303.364921,305.280568,310.853357,314.649819,317.087914,319.804649,321.580976,323.496622,324.715670,325.760568,326.596486,327.989683,329.487370,330.950227,332.656894,334.537710,336.906146,339.274581,340.528459,341.533901,342.334989,343.310227,345.643833,346.447864,348.431044,349.645466,350.620704,352.362200,354.068867,359.850636,364.274037,366.781792,369.394037,371.240023,373.051180,374.200568,375.175806,376.081384,377.439751,378.972268,380.365466,381.828323,384.197574,387.262608,389.700704,390.641112,391.546690,392.089275,393.238663,395.398119,396.094717,397.975534,398.950772,399.891180,401.737166,403.478663,408.668323,413.022064,415.599479,418.351044,420.197030,422.600295,423.819343,424.759751,425.665329,427.789955,429.078663,430.402200,431.934717,434.442472,436.230344,437.762861,438.912249,440.061637,440.932385,441.579460,442.310888,443.341092,443.858915,445.565582,447.351537,449.336844,450.695211,451.949088,453.133306,454.665823,455.452218,456.531946,457.388000,458.467728,460.836163,461.497932,463.622558,464.702286,466.304463,468.220109,471.145823,472.678340,474.837796,477.693850,479.679156,481.376987,482.668614,483.609022,484.723580,486.186437,487.788614,489.390791,490.958138,492.804124,495.010581,496.159969,497.413846,499.468812,500.687860,502.986636,506.643778,509.221193,512.669357,515.664731,518.137656,520.122962,520.854391,521.585819,522.421738,523.681057,525.975207,526.776295,527.652132,529.649048,530.667642 diff --git a/data/torah/labels/Pinchas-H.txt b/data/torah/labels/Pinchas-H.txt deleted file mode 100644 index aeb6a6cb4..000000000 --- a/data/torah/labels/Pinchas-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.169407,5.582740,7.370676,7.788636,11.039429,14.638522,18.284055,20.048772,22.254667,24.042604,24.715983,27.943556,32.146368,33.984869,35.384336,37.500603,39.753403,40.367803,41.425936,44.054203,47.194469,48.969403,49.655803,50.512869,53.209403,53.759269,54.251003,57.459536,61.555536,63.603536,65.040869,66.747536,67.5,70.447803,73.383269,74.155536,76.094736,77.699003,79.985936,81.897403,82.593936,83.870736,85.372603,87.591269,88.083003,89.755536,92.554469,93.953936,97.299003,101.224336,103.169936,105.286203,105.781669,107.522469,110.765136,112.301136,114.724603,115.864869,118.697936,120.135269,120.592869,123.255269,126.293136,127.491536,128.928869,130.779536,133.032336,133.851536,136.752869,139.278736,141.838736,142.999269,145.661669,147.504869,147.894203,149.054736,150.556603,152.365669,155.505936,157.041936,158.475536,160.250469,161.684069,163.715221,164.415803,164.692603,167.798736,171.689936,173.840336,175.342203,177.765669,178.926203,181.349669,182.524069,183.752869,185.186469,187.623803,188.511269,190.129403,192.416336,193.147003,196.492069,198.403536,202.206203,206.165669,207.374203,210.446203,212.494203,215.020069,217.272869,219.013669,222.529403,226.147536,230.704869,232.377403,233.776869,235.824869,237.023269,238.252069,241.051003,242.075003,244.805669,247.160869,247.980069,250.301136,254.636069,258.322469,260.043003,263.183269,266.767269,268.269136,270.112336,273.116069,274.749062,275.701080,278.232055,279.903892,282.179447,282.876046,285.708880,289.238313,291.046983,291.900316,292.405916,295.443783,296.881116,299.236316,300.892316,301.544583,303.217116,304.855516,307.726449,308.989383,309.744049,310.482183,312.816049,316.694449,321.200049,322.531249,325.261916,327.070983,328.333916,331.440049,332.225116,333.351516,334.546183,336.499976,338.250183,338.663516,341.223516,343.066716,344.041642,346.874708,348.547242,351.175508,353.299242,354.528042,356.268842,358.009642,358.218175,360.778175,364.362175,368.116842,369.359508,371.379644,374.839418,375.977195,378.856470,381.642864,382.919962,385.776016,387.145994,392.370483,395.087218,399.081050,400.822547,402.540823,403.887581,406.023817,407.858193,409.506810,412.014565,415.009939,416.774656,418.144633,419.537830,420.280869,423.136923,426.689576,428.709712,430.288669,431.380007,432.239145,434.468261,437.451428,439.597101,441.233828,443.418361,444.582628,447.825295,449.668495,450.901028,453.973028,455.543161,456.874361,459.366095,462.301561,465.817295,466.738895,469.947428,471.619961,472.917028,474.043428,476.910628,477.490895,478.514895,480.395961,484.150628,488.383161,489.649828,492.243961,493.575161,494.681295,497.582628,498.279161,499.234895,500.293028,502.204495,503.672228,504.525561,506.846628,508.553295,509.611428,512.342095,513.516495,516.008228,517.987961,518.875428,520.445561,522.099702,522.268409,524.955756,528.647729,531.178704,532.548682,534.174078,536.263874,537.308772,540.118387,541.762378,544.246913,547.056527,550.098341,550.585961,552.977616,556.065870,556.925008,559.920382,561.522559,563.589135,564.192854,565.795031,566.956029,569.649543,570.343058,573.129453,574.101607,575.584600,576.141879,577.418976,579.740972,581.552128,583.007752,585.887027,589.439680,592.992333,595.175009,596.521766,599.610111,600.655009,603.348523,606.506437,607.969294,610.639589,611.661267,615.330020,617.251108,620.594782,621.500360,624.983353,625.749612,629.046845,630.556142,631.043761,632.297639,634.155235,635.896732,637.266709,638.358047,638.961766,641.910700,644.859635,646.248968,649.798835,652.977435,653.639368,655.243635,655.598835,656.998301,659.046301,660.821235,661.756701,662.999368,664.706035,666.480968,669.348168,670.747635,673.444168,675.560435,677.164701,678.837235,680.304968,683.513501,686.687901,689.213768,689.623368,692.388168,694.163101,696.347635,697.986035,701.296968,702.355101,703.113501,705.028701,706.974301,710.046301,712.845235,715.063901,715.726301,717.515101,718.709768,719.235635,719.918301,722.307635,725.174835,727.137206,730.248680,731.711537,732.219292,734.378748,735.934485,739.696117,741.298294,742.807591,744.943827,746.662104,748.008861,750.725596,754.022829,757.482602,759.943918,761.429995,762.637432 diff --git a/data/torah/labels/Shemot-1.txt b/data/torah/labels/Shemot-1.txt deleted file mode 100644 index 9c69e3036..000000000 --- a/data/torah/labels/Shemot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.509119,3.799354,5.153328,6.219224,7.529987,8.696710,10.079494,10.972541,12.326517,12.911296,13.861959,14.798218,16.238618,17.174877,17.909480,19.162628,20.329351,21.150379,22.519188,23.121008,24.417367,24.877594,26.145847,28.118025,28.548578,30.033756,31.074557,31.542179,32.435226,33.384951,34.235725,35.591685,36.094724,37.754101,39.347673,40.145173,40.569817,41.595495,42.408337,43.071948,44.156423,45.265216,47.051312,48.707770,50.738733,51.712798,53.066773,54.060648,55.126544,56.149227,56.855023,58.353038,60.153537,60.717766,61.567601,61.808540,62.895844,63.578978,63.703105,64.325467,64.565458,65.702197,66.850345,67.185184,68.201020,69.915095,70.937779,71.830826,73.069569,73.705100,74.796107,76.036792,76.829011,77.931939,78.702831,79.092605,80.669258,82.651100,83.066863,83.769034,84.878142,86.131289,86.436305,86.865893,87.104245,88.718516,89.737037,90.389379,91.004435,91.210407,92.3,93.565912,94.372536,95.222371,96.259458,97.123698,98.002341,99.399529,102.078671,102.623853,103.588920,104.741239,105.223979,105.958583,106.333087,107.643850,109.098653,109.969443,111.006455,111.423308,112.287548,113.007518,114.049485,116.671012,117.751312,118.428299,119.767870,121.741217,123.152809,123.675877,124.252351,125.203014,126.830665,128.775204,129.048880,130.676531,131.886466,133.557329,134.651124,135.904272,136.676511,137.558463,138.956521,139.727413,139.956067,141.758928,142.432067,143.000437,143.647202,144.816606,146.423719,147.114639,148.187624,149.566079,150.773253,151.741082,152.317241,153.066249,154.088932,154.794728,155.702179,156.796883,158.784634,160.138609,160.371635,162.011127,163.048178,163.320134,164.501261,165.042717,165.521749,166.090747,167.286278,168.121710,168.759984,169.072373,169.550474,171.088931,172.695039,173.751181,174.045166,175.521620,176.700457,177.492677,179.387722,180.199235,181.025457,181.644829,182.739532,184.772322,185.046707 \ No newline at end of file diff --git a/data/torah/labels/Shemot-2.txt b/data/torah/labels/Shemot-2.txt deleted file mode 100644 index f70bc8654..000000000 --- a/data/torah/labels/Shemot-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.606277,2.529010,3.023992,3.882991,5.433408,6.571769,7.582671,8.445175,9.568687,10.461734,11.397994,12.766373,13.011241,14.278792,15.603960,16.612239,16.942735,17.966214,18.677771,19.645471,21.155258,22.447716,23.787288,24.184951,25.040435,25.861462,26.845758,28.019065,29.485666,30.619604,32.448910,34.108951,34.802527,36.113291,37.726538,39.109320,40.261640,41.226708,43.893276,44.340675,44.945643,45.881902,46.253805,47.466341,48.272964,48.906740,50.332353,51.694197,52.674974,52.874462,53.565860,54.620416,55.053412,55.772745,57.474164,58.511251,59.749994,60.284290,60.856962,63.000994,64.111420,64.739963,65.501191,66.466258,67.445730,67.701101,67.924583,68.895333,69.921948,70.814995,71.895295,72.615495,73.609370,74.228742,74.685786,75.309041,76.025358,77.595393,78.320422,79.386318,80.079909,81.131401,82.787860,84.919651,85.831516,86.633726,87.368330,88.463033,89.749402,90.700066,91.982021,92.990301,93.548199,93.834536,94.805286,95.722342,96.485754,96.802657,97.292377,98.920028,100.597010,101.705295,102.878576,105.479963,105.848441,106.789513,107.778576,108.786855,109.101155,109.882896,110.819156,111.265679,112.504422,113.728762,114.765849,115.077988,115.514857,116.619215,117.699514,118.047422,119.009871,119.787687,120.810370,121.703418,121.937407,122.737487,124.077058,125.863153,127.007657,127.196220,128.166970,129.060898,129.542782,130.683749,132.182663,133.218852,135.629155,136.695050,137.458462,138.610781,140.425684,142.672707,143.119318,143.433589,145.186526,146.973933,148.049452,148.625612,149.619488,150.541343,151.333562,152.575403,153.518218,153.970853,154.273336,155.634313,156.410386,156.814578,157.128850,157.817187,158.767850,159.862554,160.957257,162.123981,162.368848,162.747756,164.356599,166.927142,167.429977,167.765200,169.168494,170.900933,171.173302,171.736803,172.673062,174.190309,174.776950,175.924035,176.644234,176.962884,178.294160,179.878599,181.391018,182.212046,183.753273,185.164864,186.605263,187.887219,188.332534,189.533751,190.071939,190.518463,191.627570,192.662500,193.278380,194.301064,196.735338,197.201539,197.456883,198.652415 diff --git a/data/torah/labels/Shemot-3.txt b/data/torah/labels/Shemot-3.txt deleted file mode 100644 index 2ba7c73f8..000000000 --- a/data/torah/labels/Shemot-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.522471,3.533810,4.554312,5.994711,7.046669,7.975516,9.148797,9.518940,10.2,11.341701,12.983756,14.121672,14.827467,15.907767,16.728794,16.960189,17.578262,19.009944,20.141322,20.618803,21.627082,22.678574,23,23.570375,24.464669,25.680337,25.972807,27.125137,28.452062,29.619217,31.077976,31.853179,32.851865,34.681596,35.156524,35.809067,36.514862,37.724798,38.848309,40.058244,40.8,41.383412,42.982255,46.712889,47.5,49.492859,50.371503,51.048490,51.855114,52.877797,54.347004,55.138519,56.046675,56.932059,57.767930,58.012798,59.150714,60.130185,60.936808,62.074724,63.025388,63.630355,65.027542,66.276403,66.939425,67.156364,68.015803,68.980870,70.075574,71.004445,71.248879,72.337001,73.429130,74.250158,75.301649,76.425161,77.347016,77.756045,78.758607,79.678343,79.929761,81.738569,82.921878,83.872541,84.532095,85.579667,87.088171,88.737212,90.356596,90.681751,92.353514,93.534642,94.026586,95.345646,96.399334,97.326443,98.861543,99.927439,100.734062,102.505753,103.248719,103.674731,104.994672,107.950462,108.402774,109.304437,110.427948,112.568602,114.282677,115.204533,115.651974,117.055720,120.178336,121.028172,122.094067,123.476850,124.249050,125.579833,126.183566,126.777181,127.468572,128.289600,129.067415,129.340251,130.954338,132.425295,132.632238,133.519998,134.801953,135.570652,136.051697,137.270800,137.501264,138.322291,138.999299,139.522644,140.410890,141.582878,142.461524,143.262880,144.055100,144.264663,145.178611,147.186033,147.805404,148.511200,148.950803,150.585375,152.638257,153.585807,154.399043,154.653953,155.263282,156.382432,157.203460,158.240547,159.032766,159.983430,160.545186,161.999989,163.512408,164.189395,165.716218,167.214234,168.294533,169.129965,170.181456,171.984719,172.253605,173.852448,174.350497,175.329968,176.626327,178.138747,179.751993,180.343050,181.209043,181.485770,182.738917,184.202040,185.080683,185.354359,186.751546,187.759825,188.480025,188.724893,189.733172,190.2,190.928703,191.213789,191.804353,192.178857,193.417600,194.200242,194.992462,195.309350,195.957529,197.340312,198.954917 diff --git a/data/torah/labels/Shemot-4.txt b/data/torah/labels/Shemot-4.txt deleted file mode 100644 index cb4361845..000000000 --- a/data/torah/labels/Shemot-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.677293,4.020497,5.040404,6.552645,7.013518,8.424943,9.245873,10.153219,10.844528,11.910298,12.947263,13.185801,14.078743,15.130111,16.210283,18.183397,18.727639,19.061937,19.995040,21.262442,24.358935,25.367096,26.275924,27.842804,28.613624,29.204118,30.082658,31.335657,33.078335,33.991472,34.921256,35.770991,36.635129,37.844921,38.435416,40.009700,41.788236,42.868407,43.680762,44.415279,45.437842,45.907764,46.534481,47.485033,48.493193,49.544560,49.712966,50.393897,51.542249,52.698526,53.692284,54.093956,54.639701,55.670171,57.532778,58.195284,59.635513,60.672478,62.703202,64.373867,65.324419,66.390189,67.513568,68.694556,69.803532,70.093543,70.854900,71.891865,72.591958,73.750830,74.802675,75.710020,76.544649,76.679834,78.279594,79.158134,80.137490,81.246467,82.182616,83.622845,84.832638,87.021787,88.217177,89.191940,90.286514,91.841962,93.426214,94.261548,95.197697,96.177053,97.314834,98.470608,99.161918,100.069263,101.163837,102.085584,103.295377,103.666730,104.980445,106.380370,107.546956,108.493329,109.975355,110.374526,110.849802,111.569916,112.405249,113.715858,114.379088,115.430456,116.253798,117.449189,118.702188,119.187950,120.033236,120.274435,121.969831,124.879094,127.125852,128.270367,129.804679,132.734371,133.071721,133.670521,135.462502,135.835710,136.384249,137.022332,138.296221,138.674591,140.016426,140.781480,141.588009,142.855410,143.379972,144.007594,145.130973,146.873650,148.172558,149.555179,150.851385,152.939717,156.065016,157.750084,158.556613,158.928699,160.112060,161.060239,162.255629,162.794045,163.503537,163.708817,164.720200,165.442727,166.393278,167.128493,168.161112,169.737059,170.667111,172.349569,172.691097,173.667432,175.519137,175.910499,176.322601,176.956302,177.883196,179.385250,180.305020,180.996330,181.257810,182.917478,183.940041,185.049018,185.518260,186.195168,186.540031,187.561428,188.470731,190.011776,190.345233,190.880592,191.946361,193.645832,195.230084,195.407154,196.281452,197.238910,197.905814,198.765554,199.528875,200.078166,201.143936,202.670579,204.239229,204.479558,205.204435,206.385423,207.552010,207.854171,209.491409,210.341370,210.960669,212.055244,213.495473,214.993311,215.284329,217.052840,217.983019,218.839190,220.797436,221.222448,221.742106,223.787232,225.299473,226.379644,227.200576,228.410368,229.504943,230.829953,231.763023,232.486217,232.778246,233.681608,234,234.745937,236.423230,237.757889,238.535613,238.766050,239.774210,240.839980,241.617704,242.784290,244.843818,245.520726,246.413668,247.393024,248.588414,249.769402,250.527513,251.872138,253.773240,254.242592,255.731952,256.240323,257.993112,258.814043,260.974387,261.447442,262.148400,264.013271,266.074784,267.111749,269.185680,270.280254,271.806897,272.998234,274.420483,275.414241,276.523217,277.646597,278.971607,279.590906,280.354228,281.549618,282.384951,283.681158,285.207801 diff --git a/data/torah/labels/Shemot-5.txt b/data/torah/labels/Shemot-5.txt deleted file mode 100644 index f6c497684..000000000 --- a/data/torah/labels/Shemot-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.578511,2.295033,4.902306,5.332856,6.240055,7.939251,9.004849,10.080713,11.856043,12.864042,14.116839,15.225637,16.190435,17.542437,19.198433,19.904032,20.940830,22.179228,23.129626,24.054265,25.114628,25.670345,26.344778,27.064776,28.475974,30.405570,31.290091,33.493286,34.429284,36.042081,36.524426,36.941649,38.252046,40.311242,41.688249,43.081280,44.339157,45.831675,46.309983,47.677980,48.513179,49.247577,51.105173,52.804370,54.245563,57.959560,59.817157,60.709421,62.278177,62.808359,63.353066,65.088866,66.136066,67.122439,67.122439,69.145660,70.110458,71.392055,72.529653,73.609651,75.539247,76.578409,78.032807,79.012005,79.861603,80.602124,81.807743,83.313694,83.976092,85.606166,87.432086,88.468884,91.507278,91.926758,92.767249,94.357630,94.948029,95.927227,97.093625,98.112641,98.683261,100.137658,101.390455,101.613292,102.499349,103.887377,104.147996,105.240974,106.245282,107.613280,108.339932,109.376731,110.715928,112.199125,112.875924,114.416721,117.080716,117.526002,117.887114,118.346694,119.222832,120.285851,121.462419,122.846574,123.537772,124.790570,125.217266,126.014567,127.339365,128.612347,129.298938,130.647890,132.059087,132.995085,133.656595,135.039882,135.873563,136.708761,138.091158,140.251154,140.650634,141.719951,142.132237,143.935730,145.202927,145.429531,147.027338,148.545255,149.417647,150.656044,151.707242,151.966016,153.171634,153.824038,154.544905,155.524103,156.733700,157.770498,158.922496,159.328196,159.875395,160.652993,162.150590,163.864187,165.289784,166.571382,167.087674,167.675368,168.924563,169.953268,170.990066,172.343664,173.679035,174.629433,175.933128,176.817157,177.753155,178.933952,179.985150,180.719549,182.591545,184.031542,184.809141,185.026105,186.106247,186.927046,188.093444,189.216641,190.541439,191.765436,192.571835,193.414594,194.344228,194.983351,195.881779,197.422576,198.588974,199.928171,200.241589,200.908238,202.377035,203.572233,204.551431,205.804228,207.431425,209.260221,210.109820,211.045818,212.169016,213.594613,216.258608,217.338130,218.587325,220.261800,220.992660,221.427064,222.475857,223.823776,224.819759,225.626158,226.850155,229.154150,230.075748,230.896547,231.861345,233.229343,235.202138,236.119630,236.882220,237.129154,238.291196,239.293525,240.128723,240.470024,241.501336,242.945728,244.328125,245.010989,245.710522,247.173553,248.711781,249.011031,249.345118,250.550737,251.320589,252.467150,253.662348,254.655945,255.419144,256.643142,258.212739,259.263937,259.687290,261.035133,266.003124,266.390819,267.002378,270.343171,271.826369,272.462487,273.986365,275.781154,276.550398,277.515196,279.027193,280.395191,281.604788,282.583986,284.023983,285.319981,286.443302,287.380198,287.955176,288.833574,289.083307,290.273571,291.063906,291.755104,293.511901,294.824529,295.553297,295.841296,298.001292,298.588378,300.402774,301.842771,302.188969,303.772251,305.730764,306.467595,307.662793,308.584391,309.937988,311.478785,312.074447,313.048382,313.266795,314.617979,316.495238,316.961425,318.165635,318.831576,319.508375,320.876373,321.913171,323.554767,325.153164,326.089162,326.606372,328.632682,330.898753,331.877951,332.216594,333.224592,334.318990,335.154642,336.120589,336.687085,337.674184,338.136373,339.129971,339.761725,340.582523,341.864120,343.129154,343.710175,345.007176,345.957575,346.173575,347.051973,348.477570,349.096768,350.306367,351.587964,352.235962,353.359160,353.939137,354.583158,355.105534,356.833531,358.354393,358.777527,360.413589,362.386385,363.754383,364.474409,365.180259,366.101857,367.196255,369.586650,370.015249,370.585762,371.536160,372.184159,373.350556,373.666177,374.243355,375.250174,376.531772,377.813369,378.576567,379.786165,381.528562,382.565360,383.504456,383.706056,384.742854,385.909251,387.853248,388.702847,389.018901,389.652500,390.111956,390.876497,392.330344,393.439141,394.179103,394.770505,396.138503,397.100848,397.388847,398.152045,398.459612,399.424410,400.475608,401.080407,401.710943,402.646941,403.683740,405.015142,405.607424,405.938624,407.681020,408.524794,409.273593,410.051191,410.771190,412.052788,412.924289,413.555628,414.534826,415.038825 diff --git a/data/torah/labels/Shemot-6.txt b/data/torah/labels/Shemot-6.txt deleted file mode 100644 index f06411d5a..000000000 --- a/data/torah/labels/Shemot-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.358009,2.438499,4.225720,5.967830,6.378309,7.062489,8.589141,9.582906,10.418244,11.345017,12.670036,13.793422,14.229311,15.122259,15.544870,16.792935,17.934731,18.827678,19.907857,21.655911,23.022757,24.174948,24.736641,26.248891,27.213851,27.876360,28.184443,29.071758,30.151937,31.017506,31.660393,32.845039,33.155647,33.943004,34.5,35.791818,36.958411,37.208004,38.571478,40.545239,41.956038,42.336655,43.145682,43.463515,45.031004,46.230097,46.468470,47.568583,48.908005,49.545662,50.797511,51.920897,53.496890,53.829169,54.435939,55.396658,57.173627,59.137048,61.210992,61.637721,63.609724,65.068861,65.957345,67.101566,68.743438,69.193453,70.221821,70.754709,71.618852,72.742238,74.081659,75.061021,76.184407,77.552633,78.690422,78.952337,80.087453,80.570390,81.498887,81.791154,82.992306,84.446947,84.821408,85.901587,86.751328,87.673080,88.782064,89.487781,90.308716,92.051405,93.707679,95.320746,96.170487,96.433092,97.095334,98.953242,100.422285,101.862523,102.813081,103.706029,104.555769,104.978437,105.742075,107.110301,108.106191,108.949154,110.576623,112.418593,113.376774,114.370539,115.709960,116.962967,118.748863,120.088285,121.283683,121.592378,122.478636,123.429194,124.595787,125.848794,128.383613,129.795047,130.244382,131.569401,132.606373,133.571332,134.593902,135.717288,136.509419,137.632805,138.367326,139.029836,140.398062,141.492643,142.299177,142.439262,143.551673,145.002396,145.708113,146.586658,147.782057,150.576119,152.794086,153.470998,154.421555,155.2,156.106634,157.143605,157.878127,159.594962,160.898711,161.298094,161.874189,162.810344,163.536251,164.774856,165.480573,165.790636,166.726791,167.504520,168.800734,169.664877,170.543422,171.738820,174.086409,174.482498,174.9,175.613775,176.261882,177.745327,179.214371,180.337756,181.173094,181.489247,182.688340,183.281475,183.719290,184.425006,184.770664,185.649209,186.542157,187.435105,188.112017,189.336219,191.006896,192.000661,195.212392,195.624029,196.206156,197.747212,198.294502,199.086633,200.685297,201.424061,202.100973,202.386695,203.412425,205.168681 diff --git a/data/torah/labels/Shemot-7.txt b/data/torah/labels/Shemot-7.txt deleted file mode 100644 index ae618d278..000000000 --- a/data/torah/labels/Shemot-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.361433,4.459560,5.304068,6.297666,7.320064,8.457661,8.755467,9.918019,10.313999,10.947598,11.912396,12.992394,14.201992,15.234271,15.512799,17.686528,19.198783,19.642280,20.952173,22.190571,23.155369,23.729376,24.814302,25.309719,26.269782,27.392979,28.429777,28.761044,30.068915,30.675033,31.473665,31.667423,32.729101,33.607500,33.827531,34.773897,35.037129,36.491526,38.651522,39.400320,40.537918,41.171517,42.193914,43.051520,45.873914,47.256312,47.918711,49.358708,51.302704,52.901101,54.053099,55.262696,56.141095,57.278692,58.301090,58.623238,59.789636,61.460033,62.410431,63.332029,64.455227,65.348025,66.298424,67.392821,68.170420,68.445230,69.165771,70.481408,71.374318,73.476713,74.729511,75.636709,76.040903,76.616902,77.365700,77.703882,78.711880,79.888246,80.737844,82.451441,83.344239,84.179438,84.942636,85.821034,86.210473,87.560729,88.523467,88.983643,89.782705,91.309102,92.313870,94.145896,94.952295,96.046693,97.429090,98.206688,99.344287,100.510684,101.562745,102.354744,103.434742,104.351124,104.918622,106.272220,107.139161,107.945559,109.702356,110.566354,111.588752,112.308750,112.870350,113.763148,115.030345,116.139143,116.630576,117.584428,118.693225,119.258427,120.229473,121.064672,121.613805,122.903511,123.599067,124.491865,125.528663,126.724189,127.517388,129.037182,130.845879,132.530675,132.948684,133.947752,134.711803,135.619002,136.173493,136.979891,137.677724,138.858522,141.565716,142.588114,143.293713,145.136909,146.188107,146.420963,147.095305,148.218503,149.057129,150.029717,150.925851,152.685921,153.353888,154.159198,155.570002,157.682712,158.589910,159.118207,159.832692,160.695875,161.919873,163.187070,163.683645,164.252811,165.619488,167.073886,168.240283,169.273614,170.095844,170.661052,171.165051,172.173049,173.166647,173.670646,174.678644,176.305841,176.998494,178.062638,178.790762,179.886709,180.317077,180.878676,181.944274,183.110672,183.686671,184.925069,187.099464,188.323462,189.216260,190.339458,191.070213,191.070213,192.842418,193.735217,194.556015,195.578413,198.996152,200.373604,201.108002,202.126564,202.864799,203.996383,205.061980,205.577890,206.346869,206.734386,208.503574,210.649170,211.786767,212.650766,213.817163,214.850941,215.066941,215.865261,216.936989,218.508534,221.244528,222.367727,223.620524,225.521320,226.147704,226.758128,227.950955,229.819697,230.554096,231.216494,232.397292,234.068402,235.825199,236.804398,237.466796,238.618794,240.533990,241.354788,242.175587,243.241185,243.760447,244.269063,245.245082,246.339479,247.635477,248.269075,250.083472,251.813539,252.761867,253.611465,254.864263,255.028721,255.983389,257.120986,257.953265,258.896756,260.250353,262.586129,264.177761,264.650047,266.245302,267.210100,267.973299,269.038896,269.649774,270.211373,271.622570,272.186801,272.569931,273.932296,275.196395,275.464200,276.424262,276.697862,277.777194,278.987457,280.254655,281.493052,282.027773,283.230152,284.601130,285.775792,287.218944,288.572542,289.681340,290.948537,292.705334,293.843402,294.059402,295.672198,296.680197,297.630595,298.883392,299.934590,300.679759,301.399758,302.311878,303.933524,305.920720,307.375118,307.747057,308.812656,309.979053,311.908649,312.729448,313.755746,314.624673,315.488672,316.179870,316.608371,318.033969,319.862765,320.662125,320.935724,321.655723,322.721320,323.656690,324.607088,325.298287,326.410606,327.398653,327.613526,328.405524,328.566171,329.867986,330.758843,331.507641,331.738041,332.717239,333.898037,334.776435,335.525233,336.490032,337.714029,338.491627,339.182826,340.058478,341.328422,342.410017,343.576415,345.462811 diff --git a/data/torah/labels/Shemot-H.txt b/data/torah/labels/Shemot-H.txt deleted file mode 100644 index a158ff5ed..000000000 --- a/data/torah/labels/Shemot-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.048950,3.515677,5.042055,6.496435,7.466250,8.598804,10.600376,11.752359,12.142581,12.992168,14.576145,15.987325,17.124909,19.313677,19.941245,20.580859,21.646444,22.942426,24.894773,26.161955,28.048329,30.193898,31.216283,32.294248,32.860813,34.312239,37.091399,38.430579,40.312877,40.794398,42.162379,45.071137,45.690035,46.422566,47.156955,49.640473,52.752703,53.055389,53.846545,56.193712,57.964886,59.779260,60.257759,61.251189,62.151486,64.182883,65.219667,65.4,65.810059,66.803645,67.811630,70.648389,71.857972,73.156832,75.756825,76.480306,77.617889,79.345865,80.281851,81.174638,82.341022,84.140996,85.838591,87.088140,89.051325,91.837978,92.784842,93.592004,95.473633,96.153191,96.843936,97.332890,98.171097,99.144729,99.638463,100.473651,100.941836,102.664817,103.860038,105.403430,105.901227,108.240189,110.040164,111.192147,112.300931,114.115305,116.246474,117.643255,118.680040,119.207886,119.942276,121.799849,123.830220,125.990189,127.170972,128.063759,128.942147,130.698922,133.348484,134.428468,136.732435,140.073187,140.958452,142.996345,145.588308,147.057087,148.494553,149.807447,151.305026,152.111414,153.925788,156.460152,158.317725,159.412110,160.420095,163.380485,166.416054,167.582437,168.792021,171.153586,172.175972,173.136282,174.177543,174.867024,176.768511,178.918357,179.425718,179.972909,180.392980,181.293276,182.472975,183.970882,184.961759,185.624150,186.488137,188.028915,189.008101,189.843289,190.966473,193.400038,196.697591,197.847862,199.004277,200.781585,201.658598,202.527850,204.113484,205.812660,208.375823,209.412608,210.190197,211.230914,212.843691,216.187517,217.158013,218.180398,219.591578,221.045957,222.130487,222.375283,223.095273,223.863319,225.960832,227.472810,229.315984,230.323969,231.375154,232.123944,233.059930,234.456710,235.810291,237.495067,239.618503,240.881485,243.444648,244.841428,246.425405,247.706987,249.995193,251.177738,252.632117,254.861450,255.924731,257.795174,259.702415,261.652885,263.121664,263.9,264.806440,267.081607,268.296043,270.076764,272.153347,273.038120,273.894637,275.320217,276.414601,277.883380,279.697754,280.835338,283.104364,284.105555,286.350458,287.502442,287.792114,290.209603,291.289588,291.526071,292.908451,294.103634,295.370816,296.508399,298.553170,299.849152,300.272082,301.620326,302.829908,303.578698,305.335472,306.300259,307.970635,309.199098,310.015406,311.544251,312.710634,313.251360,313.819417,314.467408,316.281783,317.543832,318.839813,320.193394,322.036567,323.027846,323.546432,324.684016,326.023197,327.419976,328.251659,329.374842,330.181231,332.082004,333.466626,334.169974,335.116640,336.493483,337.727510,339.537377,340.775759,342.330937,344.231375,345.513291,345.751152,346.298344,347.810323,350.805480,351.842265,354.376629,355.427814,357.069390,358.628354,359.777007,360.988932,363.264099,364.171286,364.977675,366.374454,367.677883,369.556809,370.247568,372.853930,373.703518,376.079484,376.986671,378.153054,378.941302,380.194084,381.475666,382.598850,383.549236,384.643621,385.666006,387.350781,388.401966,390.633934,391.858877,392.708466,394.306843,395.761222,397.820392,400.786749,401.232325,401.975153,403.141536,403.697494,404.822864,406.258682,407.375075,408.239062,408.699856,410.975023,411.490352,412.152743,412.901532,414.269512,415.054783,416.091568,417.113954,419.115525,420.757101,423.968255,426.473819,427.971398,429.944169,431.542546,432.896127,434.724901,436.337678,436.755272,438.137652,439.390434,439.923928,440.499571,441.968350 diff --git a/data/torah/labels/Terumah-H.txt b/data/torah/labels/Terumah-H.txt deleted file mode 100644 index 33e967c28..000000000 --- a/data/torah/labels/Terumah-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.918828,6.377837,7.430449,8.730766,10.170403,10.739881,12.342057,13.712035,16.289450,17.148588,18.147046,19.400924,20.747681,22.117658,22.860697,24.648633,25.832851,27.435028,29.292624,30.174983,31.107959,32.942336,34.519330,35.610668,37.084301,37.979630,39.449738,41.382682,43.960097,45.074655,46.235653,47.326991,48.952388,50.229485,51.645902,53.224859,54.246537,55.361095,57.543771,59.053068,59.522790,60.748125,62.978189,65.021545,66.298642,67.273880,68.458098,70.524674,72.173291,72.893109,73.891567,75.772384,79.580456,80.889096,82.181091,83.295649,84.972732,85.227765,86.644182,87.735520,88.942958,90.011076,91.868672,93.865588,95.026586,96.210804,98.091620,99.647357,102.898151,105.359466,106.450804,108.447720,110.444636,112.395112,113.625770,114.763547,115.773762,117.178423,120.266677,122.170713,124.121189,125.235747,126.164545,128.834840,130.994296,132.294613,133.711030,134.616609,136.149126,138.401461,139.632119,140.677017,141.760406,142.534147,145.390668,146.309168,146.750347,148.073885,149.002683,151.069259,152.230257,154.134293,155.527490,157.570846,158.499644,159.939281,161.146719,162.354157,163.468715,163.756757,165.953250,167.067808,168.182365,170.132842,173.197876,174.205755,176.156231,177.247569,178.408567,179.546344,180.469563,181.181590,182.156828,183.317826,185.268302,186.638280,187.474198,189.633654,193.523679,193.965817,194.791718,196.184915,197.253033,198.530131,199.505369,200.503827,200.929486,201.850584,202.790035,204.717292,206.389128,208.200285,209.430943,209.705920,210.269645,211.672860,213.646556,214.853994,216.247191,217.199210,218.917486,221.267821,221.770869,222.351368,223.071186,224.162524,225.532501,226.184686,226.834845,227.810083,229.063961,230.457158,232.872033,234.033031,234.961829,236.494346,238.003643,240.209539,242.110594,243.385761,245.640027,247.683383,248.652919,249.697817,251.137454,253.505890,254.550788,255.595686,257.917681,261.307794,263.490470,264.535368,265.371287,266.369745,267.600402,268.784620,269.759858,270.804756,272.221173,274.264529,277.236683,278.142262,279.117500,279.884229,282.182534,283.784711,285.177908,285.775946,286.913724,288.237261,288.894053,289.653678,290.681989,293.096865,296.512874,297.859631,300.274506,300.885771,301.608929,302.328747,304.673963,307.855096,309.294734,309.894327,312.499087,313.116599,314.300816,314.746788,316.744895,318.091652,318.504959,319.415189,321.833931,323.296788,323.578489,324.409955,325.617393,327.010590,329.030726,330.366802,330.575782,331.783220,332.189353,332.444773,333.605770,334.673888,335.533026,337.646042,338.923140,339.329645,340.200237,341.314795,342.777652,344.979531,345.482347,346.318265,347.022842,348.086353,349.293791,350.454788,352.405264,353.092527,354.067765,356.273661,356.898250,357.664509,359.011266,359.579553,361.054622,362.610359,364.209383,364.532763,364.788182,365.972400,367.110178,369.153534,370.848591,371.030920,371.884493,373.184810,374.578008,375.692565,376.189770,376.863149,378.581426,381.716119,382.784237,383.689816,385.895711,386.785570,388.201987,388.639054,389.474896 diff --git a/data/torah/labels/Tzav-1.txt b/data/torah/labels/Tzav-1.txt deleted file mode 100644 index 8d26d3ac0..000000000 --- a/data/torah/labels/Tzav-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.934945,2.965805,3.256052,3.797847,4.997534,6.003724,6.216572,7.300161,7.648457,8.654647,9.757585,10.357430,11.054022,12.234360,12.969653,15.736674,17.071810,18.561745,18.917759,19.962649,20.178649,21.049390,21.289063,22.411352,23.243393,24.307632,24.907476,26.126513,27.092658,28.911539,29.879029,31.485063,32.631767,34.141052,34.992443,35.207275,37.080883,38.001058,38.271955,40.013437,41.232475,42.141915,43.728599,44.138892,45.157970,45.351468,46.435057,48.718333,49.337527,50.653314,52.104548,52.355679,53.574653,54.603409,55.532199,56.731887,57.871159,58.109826,58.930006,59.082608,60.105945,61.406781,61.768865,62.450416,63.688803,64.965890,65.153841,66.126879,66.697433,67.403966,68.365909,69.391448,70.629835,72.141990,73.922171,74.889662,75.876501,76.998790,78.004979,78.953120,79.998009,80.946150,81.623392,82.590883,83.945368,85.532052,87.215485,88.066876,88.296078,89.247214,89.564479,90.795198,91.874538,92.609831,93.519271,94.525461,95.512301,95.951749,96.899889,97.788790,98.970318,99.429166,99.990310,101.325446,102.623888,104.094346,106.281001,107.171092,108.235331,109.551117,110.499258,110.761079,111.965004,112.856165,113.030313,114.055853,115.062043,116.958323,118.196710,119.725345,120.992357,122.579041,124.301173,125.346062,126.216803,127.315046,128.151784,129.134954,130.199193,131.321481,132.347021,133.449960,133.836687,134.591329,136.081264,137.164853,138.248442,139.177232,141.286360,142.078173,142.989768,144.245237,145.234345,146.279234,147.104559,148.098115,150.031601,150.513171,152.198666,153.155393,154.117421,155.351444,155.915783,156.833804,158.710735,159.896260,160.949694,162.600045,163.161189,163.702983,164.438276 diff --git a/data/torah/labels/Tzav-2.txt b/data/torah/labels/Tzav-2.txt deleted file mode 100644 index 3d43885aa..000000000 --- a/data/torah/labels/Tzav-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.001197,3.099705,3.361193,3.953898,5.069581,8.259733,10.090149,10.996640,12.652731,13.177712,14.170756,15.984350,17.012869,18.268011,19.505721,20.795727,21.837111,23.236282,24.242799,25.149291,27.154032,28.374309,29.838641,31.233243,32.007629,33.745952,35.646098,36.744347,37.742903,39.067775,40.444945,41.508329,42.536849,43.384570,43.872681,44.569982,46.173775,47.742702,49.329063,51.054883,52.153132,53.233949,54.140440,54.865720,56.535957,57.672648,58.230489,59.607659,60.492596,61.468817,62.915717,63.857074,64.571808,64.876639,66.515363,67.814258,68.651019,68.786813,69.309789,70.303443,71.349395,71.590649,72.619168,72.967818,73.996338,75.077154,75.704725,76.349729,77.517709,80.184886,81.788678,83.081176,84.490720,85.554105,86.669787,87.629683,88.837716,89.508434,90.380061,91.269119,93.378329,94.494010,95.121581,96.551048,97.631866,98.520924,99.601741,100.856883,101.275264,102.234054,103.855278,104.269028,104.901230,106.034345,107.411514,108.899511,109.875732,110.817089,111.149566,112.336590,113.401327,114.360117,115.371203,116.626346,117.473357,118.578789,119.544961,120.887266,121.584567,122.610125,123.118630,124.416923,124.905710,125.777337,126.736126,127.973835,128.967489,129.978576,131.373178,132.125521,132.700795,133.833909,134.810131,135.594595,136.588249,137.442443,138.401232,139.299286,141.914165,143.639986,144.407017,146.080540,146.445147,147.562305,149.260389,150.267030,150.981763,151.696497,152.725017,153.640823,155.153491,156.168831,156.761537,157.790056,158.469925,159.341551,160.265476,162.339946,163.194140,164.284018,164.562939,166.306191,167.359880,167.548963,168.717168,169.240209,171.120539,171.755940,171.982564,172.801893,174.144197,175.164825,175.479061,176.385553,177.431505,178.616917,179.523408,180.743685,181.256612,182.006210,182.982432,183.158853,184.450924,185.428950,186.226207,187.623324,188.083724,188.885620,189.809544,190.803198,191.674825,191.814674,193.086122,193.684500,194.612001,194.840010,195.867143,196.268641,197.224304,198.618906,200.083239,200.658512,201.510454,202.792020,203.587891,204.703573,205.627497,206.464259,206.971964,207.547237,208.422506,209.551978,210.736844,211.451578,212.724153,213.438886,214.205917,215.147274,216.454714,217.692423,218.454434,219.174188,220.220141,222.477965,223.122968,224.029460,224.604734,225.056695,226.242107,227.967928,228.944149,229.345097,230.513077,231.332406,232.151735,233.389444,234.208773,235.167562,236.335542,236.661645,237.812192,239.102199,240.705992,241.595051,242.623570,243.861280,244.441553,245.278314,246.550889,247.258149,248.434668,250.661652,251.571458,252.408219,252.845714,254.048558,255.053911,255.803510,256.376175,257.210036,258.587206,259.136187,260.408761,261.925391,263.215399,263.718916 diff --git a/data/torah/labels/Tzav-3.txt b/data/torah/labels/Tzav-3.txt deleted file mode 100644 index abd9cb9cd..000000000 --- a/data/torah/labels/Tzav-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.008333,2.998008,3.814051,5.056663,5.742881,6.577471,7.931360,8.640347,8.942358,10.921558,13.054399,15.052907,15.407454,16.093466,17.762645,18.875431,19.728567,20.655889,21.768675,22.677451,23.400762,24.513548,25.737613,27.035864,28.185743,29.038879,29.613819,31.041894,31.553354,32.313759,33.166895,34.335321,35.262642,36.449615,36.964663,37.559802,38.194360,39.622435,40.846500,41.498509,42.500017,42.830336,43.906029,45.018815,46.057416,48.097524,50.193272,50.545375,50.850591,52.093202,52.408491,53.576917,55.542839,56.414522,57.434576,58.677188,59.381952,60.216542,61.366421,61.680805,62.555584,63.175520,63.423494,64.468089,65.120567,66.672531,67.150750,68.894116,69.673066,70.878584,72.696136,73.716189,73.978922,74.789334,76.050492,78.442982,79.370304,79.982336,81.354773,82.690117,83.691624,84.618946,85.546268,86.900157,87.716201,88.903173,89.795017,90.759432,93.263201,93.871453,94.409299,96.134118,97.061440,99.305558,99.754894,101.702271,102.629592,104.168947,105.570814,107.530280,108.179405,109.199459,110.386431,112.315261,113.224036,114.169905,114.985948,116.395477,118.695236,119.144450,119.923400,120.516886,121.314383,122.130426,123.335944,124.337452,125.413145,127.341975,127.775961,128.554912,129.074211,130.316823,132.468210,133.022730,133.579124,135.229756,136.286903,137.622247,138.512475,139.996191,141.345203,142.113923,144.518039,145.352629,145.927569,147.281458,149.080463,149.366647,149.941587,150.412787,151.999821,153.166438,154.371957,155.911311,156.894272,158.897288,159.657691,160.204302,161.067221,162.161461,164.228879,164.951093,165.544579,166.842829,167.751605,168.957123,171.034325,171.859082,172.415475,173.769365,174.972242,175.639913,175.973749,176.401449,177.747792,179.350333,179.475345,179.918444,180.678848,181.798035,182.161731,183.467727,184.388136,186.224233,187.133009,187.575830,188.989282,189.950906,190.915320,191.749910,192.973975,194.049669,194.486040,195.551930,196.683263,196.990577,198.478422,199.577774,199.875342,200.791401,201.811455,202.553313,203.925749,204.853071,205.817486,207.635037,208.506719,209.545320,211.889597,212.631852,213.633360,215.005796,215.721040,216.370166,217.130570,218.521552,219.319049,220.858404,221.804272,223.436358,223.934456,224.583581,225.129950,225.908900,226.168857,226.928955,229.037090,229.896384,230.452778,232.066318,233.535807,234.314757,234.467721,234.950341,236.007488,237.787946,238.063345,238.487898,239.229755,240.119984,242.122999,242.510346,243.112304,244.113812,245.312452,246.723064,247.038353,248.850215,249.894505,250.487990,252.131738,253.622339,254.660939,255.328611,256.107562,257.461451,257.856479,258.672522,259.198173,260.292413,261.572117,262.095233,263.801506,264.840106,266.305274,267.399514,267.753278,269.309797,270.977766,272.630991,272.928495,273.624994,274.923245,276.110217,277.167363,278.224510,279.596946,280.450083,281.119284,282.176431,282.881196,283.697240,284.847119,285.707423,287.517634,289.687739,290.212285,291.222884,293.077529,293.576466,294.380215,295.418815,296.624333,297.978223,299.665949,300.138067,300.879925,302.437826,304.115364,304.462527,305.225359,307.209828,309.120110,309.824875,311.716612,312.866491,313.849452,314.215140,315.346473,316.551992,317.627685,318.944482,321.336972,322.635223,323.581091,324.545506,325.069170,326.003205,326.896069,327.309202,328.608278,329.405775,330.500015,331.871924,333.170702,334.246396,335.306005,336.492978,337.475938,338.421807,339.386221,340.350636,341.889990,344.560678,345.209803,346.934622,347.699076,349.256976,350.110113,351.519642,352.484057,353.392832,354.208875,355.321662,356.082065,356.749738,358.270545,359.086589,360.514664,361.664544,362.777330,364.001395,365.262552,367.358300,368.415447,369.973347,370.974855,372.310198,374.109203,374.432535,375.203633,375.889851,377.039730,377.670309,379.506407,379.904496,380.502424,382.394161,384.100434,384.392826,386.511471,387.823134,388.674511 \ No newline at end of file diff --git a/data/torah/labels/Tzav-4.txt b/data/torah/labels/Tzav-4.txt deleted file mode 100644 index 58ecf3ebb..000000000 --- a/data/torah/labels/Tzav-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.142865,3.093970,3.335074,3.891467,5.078439,5.683577,6.138717,7.142354,7.494736,8.533337,9.590484,10.480713,11.871696,12.687740,13.391032,14.523836,16.309661,16.977357,18.757815,19.648044,20.593912,21.817977,22.634020,22.995541,24.275246,25.054196,25.320262,26.154851,27.119266,27.545127,28.120066,28.565181,29.752153,31.087497,32.070457,33.888009,34.558429,35.355925,36.153422,37.637137,38.787017,39.149977,39.796809,40.241924,41.465989,42.652904,43.302029,43.506040,44.674465,45.694520,46.918585,47.474977,47.884528,48.682025,50.091554,51.909105,53.040437,53.355727,54.301595,54.783803,55.562753,56.508621,57.176293,58.400358,59.383319,60.774302,61.143564,63.022763,64.215093,64.994043,66.199561,67.442173,68.291480,68.460406,69.670957,70.616826,71.284497,71.479158,72.711077,73.764044,75.453315,76.490371,77.715314,78.884593,79.336790,80.638512,82.041163,82.875753,83.018831,84.104590,85.324070,85.538349,86.749389,87.034749,87.957688,88.310070,89.749147,90.850933,91.070774,92.000812,92.217408,93.145625,94.105413,94.416808,96.030348,96.444460,96.815388,98.336197,98.804101,99.467529,100.605927,101.588889,102.548579,104.426494,105.019979,105.768358,105.935276,107.252073,108.401952,109.343543,109.510462,110.270866,111.476384,112.329520,112.570973,113.479399,113.865532,114.034215,114.505852,115.391553,116.503371,117.790970,118.879648,120.456096,120.679369,121.764396,122.580439,123.741767,124.563046,124.841446,126.443440,126.981287,127.249605,128.725124,129.281639,131.006458,131.488242,132.214050,133.901776,135.125840,136.053162,137.314320,138.130363,138.835128,139.910821,140.930876,141.709826,143.212087,144.436152,146.012599,146.402074,147.106839,148.720380,150.238472,151.564683,152.751656,153.586246,154.569207,155.811818,156.627861,157.814833,159.799302,160.633892,161.709586,162.265978 diff --git a/data/torah/labels/Tzav-5.txt b/data/torah/labels/Tzav-5.txt deleted file mode 100644 index 19d0927e5..000000000 --- a/data/torah/labels/Tzav-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.263753,4.047100,4.752698,5.867257,7.204726,8.263556,9.210930,9.435842,10.604127,10.967707,11.617866,11.875190,13.215399,15.680239,16.980557,17.946506,18.284023,19.370642,22.039109,22.459651,23.332722,24.298672,25.078862,26.546363,27.883833,28.064306,29.308895,30.040700,31.452473,32.567030,32.851090,33.885924,35.111938,36.638495,37.275462,38.408595,40.749166,41.122753,41.324313,43.107605,43.691618,43.914530,45.883582,47.053868,48.075546,49.301560,49.918748,50.383147,51.516282,51.962104,53.280998,54.628537,55.390151,56.801924,57.562914,58.343730,58.739400,59.522690,59.949734,60.989987,61.268627,62.513216,63.702078,64.630876,65.466794,66.674232,68.476101,68.996228,69.832146,70.147938,71.318223,74.123194,74.866232,75.479239,76.649525,78.878641,80.513326,82.278042,82.742441,83.522631,83.669522,84.115346,85.397087,87.217531,88.462121,89.781014,90.034074,91.571096,91.911015,92.846794,93.961352,94.964454,96.097588,97.026386,98.122368,99.404110,100.332907,100.574395,101.856137,102.361245,103.475802,103.903050,105.147639,105.891483,106.745978,107.024617,108.102022,108.975093,110.074488,112.165726,113.118975,113.409210,113.826208,115.275133,117.485673,118.693110,119.192030,119.823613,120.826715,121.535654,121.919910,123.250026,125.061086,125.731563,127.013304,127.552007 diff --git a/data/torah/labels/Tzav-6.txt b/data/torah/labels/Tzav-6.txt deleted file mode 100644 index 64934f152..000000000 --- a/data/torah/labels/Tzav-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.540083,2.789899,3.819654,5.212851,5.919545,7.252169,9.473208,11.128892,12.724002,13.149538,13.977380,14.219843,14.559363,16.006515,23.528180,24.849494,25.798483,27.151298,29.230998,29.582502,30.168048,30.713212,31.601628,32.836517,33.429416,33.893815,34.842804,36.135045,36.637788,37.155522,37.963172,39.538090,41.880277,42.269846,42.778361,44.494618,45.685903,46.614701,46.800435,47.789807,48.213823,48.940709,49.849316,51.080983,51.621619,52.252077,53.035008,54.165719,54.725077,55.242697,55.949391,57.059910,58.453108,60.028027,60.268903,61.820124,62.053370,63.103316,64.395557,66.455065,66.783269,67.631302,67.937620,69.837578,70.415431,70.652015,72.644164,73.227389,73.469683,75.307089,76.558947,77.447363,78.779986,79.297319,79.877493,80.907248,81.250499,82.441783,83.310008,83.748670,84.919764,86.355774,88.017451,90.108919,91.046139,92.883544,95.346878,96.396824,97.406388,98.214038,99.607236,100.576417,101.747510,102.979177,104.130079,105.180024,106.431883,106.691475,108.750983,109.570509,109.933952,111.347340,112.659772,112.935264,113.931823,114.868309,115.822388,117.134820,117.982853,118.669356,119.981788,121.536516,123.373921,124.444057,124.849460,126.242657,127.656046,128.504079,129.291538,130.179954,131.472195,132.415241,133.344039,133.586277,134.616031,135.519434,136.185745,137.119748,138.230268,139.153861,139.514756,141.183786,142.366303,143.436441,143.638353,145.394993,146.667043,147.555459,148.423683,149.493820,150.402427,152.239832,153.431117,154.319532,155.450243,157.428987,158.135682,159.407731,160.053852 diff --git a/data/torah/labels/Vaera-1.txt b/data/torah/labels/Vaera-1.txt deleted file mode 100644 index 1680f0351..000000000 --- a/data/torah/labels/Vaera-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.467699,3.557125,4.687163,4.996763,6.420920,7.365198,8.350695,8.725785,10.199824,12.498658,12.884681,14.752945,15.111157,15.786695,16.135463,17.293833,18.453506,19.645463,20.868381,22.246099,22.656708,23.554547,25.056103,26.572315,27.605329,27.857209,28.730601,29.756855,30.582301,31.349652,31.678679,32.159057,33.415939,34.903139,35.653319,36.894991,37.469546,37.930183,38.969907,41.227030,42.306237,44.148982,44.773813,45.810971,46.770729,48.272286,49.139164,50.129882,51.317371,52.385489,53.592927,53.802425,55.129879,57.482835,58.626965,59.428780,61.769399,62.496313,64.895708,66.733170,68.315698,69.538615,70.513853,71.597451,72.793839,73.698281,75.354637,76.530520,77.412878,78.465516,79.533634,80.973271,82.366469,83.974168,84.694703,85.408718,86.249723,87.326297,88.146736,89.524453,91.614249,92.635927,93.301565,94.199404,95.995081,97.434717,98.569781,99.679313,100.313992,101.954869,103.476292,104.312210,104.571226,105.689916,106.584869,107.412325,107.664076,108.611672,109.851260,110.996778,112.000646,113.009174,114.588131,115.962126,116.847679,118.426636,119.711473,120.170409,121.517167,122.755565,124.334521,125.306481,125.628927,126.379107,127.676483,128.589801,129.317359,129.595999,130.695077,132.433196,133.295246,134.611352,135.841911,136.917801,137.769199,138,138.558677,139.735155,140.818753,141.670151,142.026191,142.753749,143.326508,144.564905,145.648503,145.974555,146.455809,147.598979,149.520843,151.099800,152.229838,153.112196,154.025515,155.279392,156.006951,156.532798,157.662954,157.978819,158.904985,159.911183,160.948341,162.202218,163.254856,164.369414,165.004093,166.737849,168.582189,170.795825,171.251751,171.475489,171.903853,172.159865,174.272788,175.836265,176.141087,177.043501,178.328338,178.943831,179.922775,180.495534,181.714746,182.695425,183.469423,185.017421,186.286778 diff --git a/data/torah/labels/Vaera-2.txt b/data/torah/labels/Vaera-2.txt deleted file mode 100644 index b28e8fc0d..000000000 --- a/data/torah/labels/Vaera-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.911193,3.011435,3.955713,4.266185,5.689470,6.633573,8.351849,9.389007,11.215643,12.067042,13.320919,14.559317,15.875115,16.804142,17.572961,19.068989,20.147815,21.773212,22.812405,23.601883,24.700961,26.094159,27.270636,28.739485,28.997174,30.351150,31.441322,32.323680,33.670437,34.692115,35.295834,35.722346,36.689031,37.905022,39.050539,41.480895,42.440653,43.818370,45.174319,46.016526,47.146564,48.545751,50.247093,51.129451,52.445249,53.543744,55.277501,56.190819,57.166057,59.333253,61.159889,62.212527,63.543805,64.813162,66.190879,67.599557,68.776034,69.642913,70.525271,72.150668,73.856540,74.689383,75.834901,76.716027,77.536465,78.527183,79.858461,81.514818,82.505536,83.276273,84.886190,86.000748,87.796424,88.301442,89.251541,90.291025,92.133142,93.686841,94.429879,94.836722,95.878187,96.218221,97.348783,98.633621,99.495551,100.625589,102.053237,103.740554,104.721959,106.060511,107.212953,108.384545,109.112103,110.133781,111.790139,113.492935,114.607493,115.623637,116.079365,116.822404,118.293001,119.453999,121.156795,121.574755,123.060831,123.308511,125.026788,125.909146,127.023704,127.779251,129.218887,130.565645,131.835003,132.350903,133.341621,133.720240,134.803837,135.208004,136.204367,136.560406,137.953603,139.315841,140.244639,141.173437,142.380875,143.975311,145.074389,145.786468,147.334465,148.557383,148.779743,150.399499,151.263462,151.649995,152.326808,153.596165,154.577629,155.801652,156.698850,157.178729,157.565729,158.680287,160.429523,162.163279,162.828918,163.804157,165.445033,166.900150,168.324307,169.161327,169.826966,170.802204,171.731002,173.703882,174.025993,175.337309,177.458065,178.216584,179.129902,179.487569,180.894619,183.170174,184.563371,184.891881,185.843899,186.223274,187.354243,188.227522,188.478053,188.893219,189.986361,191.330674,191.817303,192.684181,194.108339,195.996895,196.910213,198.195051,199.866887,200.374697,201.827777,202.922955 diff --git a/data/torah/labels/Vaera-3.txt b/data/torah/labels/Vaera-3.txt deleted file mode 100644 index 8999c6009..000000000 --- a/data/torah/labels/Vaera-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.946349,3.860866,5.769957,6.266518,6.907722,7.954341,8.976855,10.307297,12.381613,12.928672,13.929609,14.688128,15.895566,17.371624,17.739975,18.331797,19.121276,19.724995,21.459868,23.178883,24.154121,24.928119,26.104597,27.002435,27.869314,28.813592,30.113909,32.466865,33.364703,34.154181,35.469979,36.491657,37.374015,37.575255,38.689813,40.516449,41.787397,42.862589,44.131947,45.231025,46.314623,46.889743,48.336961,49.884959,51.076916,51.897355,52.178539,52.988002,54.497989,55.643507,56.634225,58.073863,58.413224,59.431874,60.468757,60.716437,61.268667,62.166505,63.621623,64.760896,65.612294,65.907579,66.457832,67.631099,69.513247,69.791886,71.386323,71.919434,72.928666,73.516905,74.848182,75.2,76.225899,77.170177,78.284735,79.335285,79.521045,80.387923,82.183599,83.917356,84.195995,86.053592,86.444295,87.122429,87.586828,88.778785,89.862383,91.007901,92.278796,93.546616,94.927806,95.903044,96.044164,96.921517,98.190605,99.109209,99.332039,100.163917,100.377975,101.546694,102.592629,102.983719,103.374807,104.398005,106.344355,108.154595,109.160793,110.399191,111.529229,112.736667,114.439463,115.698656,115.996359,117.141877,118.704584,119.018365,120.076331,121.144449,123.194385,123.626359,124.307477,125.391075,126.366313,128.378709,128.791040 diff --git a/data/torah/labels/Vaera-4.txt b/data/torah/labels/Vaera-4.txt deleted file mode 100644 index 920d105b8..000000000 --- a/data/torah/labels/Vaera-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.978185,3.304435,4.511873,4.768553,5.323409,5.532486,6.349705,7.619063,9.175241,9.907009,10.747750,11.547455,12.577573,13.212026,13.951254,15.112251,16.505449,16.726119,18.511311,19.850027,20.159627,21.785023,22.884101,23.408526,24.289474,24.970593,26.441190,27.341989,28.007627,28.967385,29.318957,30.316091,31.3,32.233659,33.487537,34.261535,35.577333,36.769290,38.503047,39.041015,40.778603,42.001520,43.564997,44.447355,45.376153,46.085897,47.649375,48.996132,49.358135,50.459033,51.987675,54.110605,55.421354,55.815383,57.102007,58.306420,60.024697,61.573027,62.749171,65.169774,65.928293,67.058330,68.424303,69.903921,70.981470,71.375499,72.234131,72.517378,74.048893,75.658811,76.448289,77.593807,78.429725,79.296603,80.519521,81.788879,82.287683,83.630995,84.892527,85.728445,85.938481,86.903449,88.131211,88.719449,89.834007,91.072405,91.769003,92.976441,93.936199,94.301540,96.087915,98.330283,99.508989,100.608066,101.908383,103.227498,104.247389,104.587949,105.300027,106.538425,108.891380,109.556083,110.193980,111.525258,112.330216,114.063973,116.238489,117.886977,120.070201,120.968039,122.221917,123.228115,124.271851,125.565590,126.563651,126.829018,127.792608,129.356085,130.749283,131.586321,131.895920,132.871158,133.165644,134.146695,135.058399,136.076632,137.256554,138.396797,139.511355,140.258162,141.028392,142.344190,143.202930,145.060527,147.243203,148.374759,148.916557,150.743194,151.250567,152.922403,153.789282,154.764520,155.644198,156.867115,158.970508,159.8,161.170547,162.247848,163.401321,164.486911,165.921381,166.958539,167.801185,168.559704,168.941849,170.815495,172.584604,174.192885,174.426086,176.207315,177.104325,177.265917,180.754671,181.739629,182.498147,183.665659,185.441032,185.776737,186.674575,188.594091,188.996313,191.290341,191.808995,193.047393,193.548543,195.474508,197.115385,197.512762,198.255800,199.261998,199.941459,201.049591,202.282563,203.021317,203.487719,204.224535,205.478412,206.747770,208.682465,209.823354,211.061751,211.711910,213.554027,215.473543,216.723869,218.460812,219.618774,220.945605,221.866771,222.076892,223.021170,223.949968,225.141926,226.550603,227.479401,228.810679,230.049077,232.587791,233.030436,233.586703,234.203081,234.945689,236.264479,238.355245,238.781439,239.625786,240.638841,242.078479,243.301396,244.1,245.004193,245.963951,246.830829,247.602859,247.964722,249.178974,250.049695,250.901093,251.414484,251.824606,253.279723,254.542590,255.802959,256.759046,257.827164,259.483521,260.762233,261.091113,262.143751,262.7,263.461927,264.607445,266.000643,266.427785,268.031678,269.610635,270.554913,271.746871,271.979071,273.109109,273.656613,274.151973,275.049811,275.5,276.319168,278.594724,278.787422,280.319535,281.248333,282.208091,282.820186,284.189527,285.148172,285.664038,286.607687,287.612862,289.007712,290.246109,291.825066,292.846744,293.945822,294.908676,295.388754,296.249330,296.530779,298.307929,300.110145,300.930583,301.162783,302.354741,303.299019,303.686018,304.800575,306.047780,307.567605,308.500289,309.475527,310.682964,311.534363,311.859442,312.602481,314.057597,314.7,315.480347,316.454175,317.692572,318.861757,320.267823,322.063500,322.621113,322.966893,324.075896,326.134732,327.626488,329.762724,332.131159,333.354077,334.422195,335.737993,337.614310,338.816500,339.8,340.677945,341.653183,342.685475,344.233472,346.122028,349.264462,350.962049,352.602926,353.578515,355.002672,356.024350,357.897426,359.213223,361.426859,361.951623,363.902099,364.970573,365.248593,366.821317,367.827515,368.063085,368.973033,370.273351,371.140229,372.425067,373.004527,374.096903,374.599147,376.007825,376.983063,377.282554,378.693244,378.927021,379.421567,380.620565,381.750603,382.690398,382.943702,383.964239,384.724873,385.666535,386.904933,388.065931,389.567488,390.728485,391.084525,391.517964,392.926641,394.037637,394.362495,395.568313,397.240149,398.383197,398.568149,399.873494,400.163167,400.558397,402.138533,403.228201,404.776199,405.968156,407.748353,409.172510,410.287068,410.561903,411.651513,413.228262,414.729819,415.813417,417.160175,418.893931,419.188051,420.085889,421.303027,423.086389,424.598173,425.414784,427.628420,428.731454,430.507695,432.705387,433.866385,435.414382,437.024299,438.510376,439.655894,441.265811,442.519688,444.191525,444.818282,445.614795,447.394992,448.927509,450.243307,451.667464,453.808571,455.018803,456.295975,456.840181,457.883771,458.982849 diff --git a/data/torah/labels/Vaera-5.txt b/data/torah/labels/Vaera-5.txt deleted file mode 100644 index 3fee39947..000000000 --- a/data/torah/labels/Vaera-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.712970,3.008744,5.114020,6.259538,8.225494,9.926537,11.551933,12.124269,13.095694,14.709847,16.076707,17.678445,18.939073,19.736892,21.068169,22.244647,22.936003,23.165883,24.359771,24.794784,25.205133,26.434914,26.932204,27.281461,28.774321,29.842438,30.877956,31.248729,31.738149,32.938432,34.300669,36.049906,36.372809,37.367145,37.640851,38.744863,39.425202,40.833879,42.138983,43.160661,44.259739,45.327857,46.687707,48.005891,49.490749,51.199965,51.803684,52.732482,54.125679,55.333117,55.630747,56.705987,57.506857,58.329972,59.709247,60.992121,61.442257,63.083134,64.772624,66.815980,67.288865,69.199895,70.183619,70.385750,71.592296,72.847065,73.183129,74.286703,75.138101,75.637645,76.375767,77.599416,78.527483,79.564641,80.046141,81.888258,83.073043,84.234041,85.828477,86.456795,86.654983,87.398022,88.589980,89.720017,90.045875,90.945385,91.920623,93.112580,94.397418,95.651295,97.245732,97.764350,98.677668,100.241145,101.154463,102.010712,102.521365,102.954803,104.456361,105.694758,106.004357,107.985794,110.364223,111.235458,111.459585,112.815031,113.689600,114.989017,116.259275,117.479352,118.644983,120.688339,122.620494,123.781491,124.112477,125.081809,125.903309,126.923925,127.682444,128.954908,129.314419,130.252474,130.903744,131.735565,132.921868,134.230411,134.690624,136.093175,137.254173,138.956970,139.189169,140.799087,141.929124,142.935322,144.405919,145.535957,146.557635,147.672193,148.570031,149.792949,151.232586,152.827023,153.740341,154.731059,155.876577,156.681535,157.471014,159.328610,160.706327,161.124287,163.245043,164.375081,164.708387,166.410235,168.167673,169.003056,170.582013,172.857568,175.086684,176.572761,176.932765,178.127231,180.659032,181.504394,182.468785,182.747424,184.357341,185.146819,186.307817,187.018255,187.312375,188.674613,190.803375,191.417381,192.934418,193.432154,194.032806,195.844653,196.850851,197.624849,198.584607,199.621765,200.720843,201.215145,201.881841,202.934479,204.320006,205.527444,207.199281,207.799599,209.372625,210.657463 diff --git a/data/torah/labels/Vaera-6.txt b/data/torah/labels/Vaera-6.txt deleted file mode 100644 index c9ce8bed5..000000000 --- a/data/torah/labels/Vaera-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.855311,3.440473,4.353791,5.171649,5.883728,6.533887,8.019964,9.072602,9.877560,10.450319,11.766117,12.865195,13.824953,14.784711,15.868309,16.843547,18.004545,18.867342,19.734221,20.508219,21.839496,22.649158,23.732756,25.203353,26.286951,27.169309,27.918292,29.203129,30.904033,31.801871,32.232403,32.990922,34.492479,36.458435,38.114792,38.919457,40.297175,41.504612,43.114529,44.631566,45.406284,46.307845,47.437883,48.366681,49.278399,50.422415,51.583413,52.837290,53.858969,55.097366,56.103564,58.208840,58.761515,59.803277,61.304834,62.713511,63.313411,65.572735,66.950453,67.956651,68.978329,70.024827,71.424163,73.318795,74.510753,75.872991,77.111388,77.777027,79.030905,80.253822,81.739899,83.783255,84.789453,85.960217,88.303406,89.267837,90.366914,91.636272,93.168789,94.159507,94.6,95.382425,96.512462,97.644167,98.989257,100.315605,101.941001,102.875842,104.655222,105.574582,106.899818,109.011135,109.196373,110.326411,111.502889,113.205685,115.357401,116.487439,117.571037,118.824915,120.527711,121.120327,122.044748,122.877141,123.991699,125.293551,126.313694,126.570486,127.501897,128.728569,130.353967,132.309310,133.281903,134.244306,135.405304,136.597261,136.812251,138.160739,139.321736,140.389854,141.396052,142.479650,144.600406,145.714963,147.108161,148.330950,149.538516,150.140441,151.053759,152.354077,153.731794,154.521273,154.830872,155.914470,156.796828,157.756586,158.793744,159.676397,160.450396,160.775475,162.137713,163.221311,164.010789,164.242989,165.373026,166.253099,166.618577,167.748615,169.073622,170.720769,171.258682,171.908841,173.007919,174.206963,175.407314,176.296759,176.603779,177.411317,179.098634,180.971710,181.506162,182.318467,183.119900,184.393079,185.778633,186.521672,188.069669,189.927265,190.278865,191.857821,193.405819,194.891895,195.990973,197.368691,198.630897,199.727559,201.083883,202.569961,203.730958,204.876476,205.511155,206.703113,208.302875,209.463873,210.299791,211.414349,212.699186,213.922104,214.498685,215.840837,216.862515,218.441472,219.317561,220.290219,221.249977,222.271655,224.632057,225.638255,226.458693,227.526811,229.477287,231.222769,232.944801,233.904559,234.755957,236.520673,238.393750,240.112027,240.576425,241.381384,242.155383,243.502140,245.870575,246.907733,247.666252,248.994691,250.312938,251.022763,251.923243,252.1,252.774642,254.353599,256.195715,257.279313,258.811830,259.4,260.638467,262.023177,262.999657,263.320066,264.444715,266.013581,266.803059,267.747337,268.598735,269.310814,269.602158,270.796891,272.997301,275.130533,275.521125,276.207207,276.437513,278.443051,279.090663,280.127821,281.304298,282.620095,283.471494,285.019491,286.408182,287.940699,289.055257,290.100711,291.733292,293.4,294.581606,295.561809,295.835648,296.395246,297.852845,298.843563,299.223901,300.802857,301.497007,303.234356,304.577521,306.264837,307.921195,308.524913,308.973832,310.459909,312.905745,313.478503,314.113182,316.326818,317.720015,318.710733,319.763371,321.063689,322.642645,323.788163,325.351640,327.240197,328.261875,329.871791,332.255707,333.525065,335.692260,336.7,337.869323,339.778972,341.747089,342.507599,343.386431,344.276529,345.679001,346.109469,347.010279,348.202236,349.731782,350.221785,351.795419,353.098382,354.120060,354.371822,355.100426,356.271775,357.107694,357.943612,359.212970,361.504005,362.216084,363.129402,363.340408,364.630959,365.946757,366.746819,366.987183,368.160392,369.476190,370.652667,372.262584,373.144943,374.290460,375.696626,377.307098,377.789721,378.470839,379.568742,380.591595,381.765820,382.602391,382.896511,383.593109,385.264947,387.834621,388.964659,390.605536,391.518854,393.376451,393.980169,394.5,395.512687,395.930645,397.153563,398.812894,400.280517,401.797554,403.144311,404.645869,405.311507,406.162905,406.613461,407.825,408.623179,409.610501,411.355231,411.525510,412.732948,413.684379,415.371695,415.928974,416.904212,418.127130,419.566833,419.885315,421.139193,423.213509,424.329047,424.931785,426.913222,428.027779,429.343577,429.564478,430.736774,432.718211,433.832768,435.102126,436.091866 diff --git a/data/torah/labels/Vaera-7.txt b/data/torah/labels/Vaera-7.txt deleted file mode 100644 index c5c4e1cf8..000000000 --- a/data/torah/labels/Vaera-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.572735,4.103941,5.444409,6.665572,7.873009,9.374566,10.225964,11.309562,12.331240,13.476758,14.854476,15.597514,16.712072,17.996910,18.254243,18.801868,19.678400,20.978718,21.646714,22.250433,23.395951,23.760604,24.789148,26.856022,27.707420,28.558819,28.930338,30.215176,31.856052,32.089520,32.605242,33.301840,34.648598,35.088352,36.041795,38.058847,38.709737,39.746895,41.635451,42.659612,43.592111,44.826613,46.479680,47.999941,49.191899,50.770856,52.636296,52.848227,53.796622,54.755612,56.127870,57.199534,59.088091,59.614410,60.558688,60.986404,61.781606,61.993079,63.190283,64.583944,64.976018,66.233662,67.200823,67.679520,68.283238,69.382316,71.503072,71.981733,72.771211,73.173690,73.978649,75.402806,76.656684,78.297560,78.529760,80.201597,81.161355,81.379530,82.232554,82.400345,83.716142,84.598500,85.480859,86.015535,86.608944,88.081869,88.523096,89.513814,89.886832,91.713468,93.540104,93.953845,94.588524,95.641162,96.275840,97.932198,99.421396,100.303754,100.535954,102.687670,103.224388,105.427624,107.656740,108.709378,109.492267,110.969454,112.006818,112.703210,113.941815,116.031610,117.579608,118.725126,119.106401,119.586280,121.072358,122.496515,123.595592,125.902108,127.558465,128.363423,129.555381,130.907963,131.819269,135.097210,135.702216,136.289168,137.265693,137.666733,138.456212,139.710089,140.778207,141.605214,142.852523,144.063622,145.824677,146.559118,147.216106,149.090951,149.833989,150.119570,151.289106,153.239582,154.570860,155.116083,156.474896,157.279670,157.527349,158.131068,159.276586,160.545943,161.892701,162.457441,162.736080,163.020911,164.064674,165.708235,167.596791,168.479150,169.500828,170.243866,170.878545,171.698983,173.076700,173.633390,174.290091,175.497529,176.968126,178.701883,179.955760,181.178678,182.540915,183.454234,184.568791,185.698829,187.092026,188.345904,189.544160,190.548380,191.244978,192.777495,194.155212,194.402694,195.679582,197.978765,200.022121,200.845417,201.824995,203.412234,205.110542,206.223184,206.874874,207.865654,209.247557,210.346634,211.074193,212.126831,213.375878,213.693775,214.642170,215.374196,215.813092,216.666884,216.978716,218.202688,219.410125,221.329642,222.645439,223.636157,224.180373,224.936474,226.192769,227.384726,227.848226,228.792504,230.351605,232.391609,233.908646,236.726000,237.747678,238.660997,239.760074,240.828192,241.540271,243.026348,244.404066,245.580543,247.205940,247.719406,248.698474,249.627272,251.237189,252.537506,253.611107,254.947172,255.884074,257.126973,257.490926,258.435204,259.487842,260.668432,262.220420,263.133738,263.863302,264.128440,266.202756,267.177994,268.091313,268.398640,269.659634,271.063681,272.001478,273.251876,274.682414,274.873153,275.478531,276.866750,279.141887,280.705364,281.186866,281.837025,283.292142,285.134258,286.666776,287.765853,289.190010,290.174620,291.117716,291.68,293.276722,294.994999,295.830918,296.883556,297.750434,298.555392,298.880472,299.716390,301.156027,303.261303,304.190101,305.722618,306.775256 diff --git a/data/torah/labels/Vaera-H.txt b/data/torah/labels/Vaera-H.txt deleted file mode 100644 index d02e11eb3..000000000 --- a/data/torah/labels/Vaera-H.txt +++ /dev/null @@ -1 +0,0 @@ -1.883449,2.517873,5.266011,5.977470,8.345692,11.364286,12.029925,12.726523,15.853477,16.361219,17.757513,18.599199,20.445327,21.624961,23.600362,24.343401,25.396039,27.872833,29.420831,29.668443,31.371240,32.640597,33.940915,35.117393,37.331028,39.012163,41.789259,44.436139,45.752925,46.927603,48.863410,50.380447,51.928444,54.560039,56.262835,59.560069,61.077106,62.376835,63.447427,66.665375,69.776849,71.557045,72.501323,73.600401,75.808796,77.485874,79.111271,82.863553,84.056317,85.131437,87.733998,88.831150,89.260582,90.332707,91.456287,93.026592,93.7,96.664385,98.320960,99.609635,100.110236,101.205610,101.978815,104.203130,106.290920,107.495336,108.119848,109.274699,110.704717,112.563375,115.303329,115.772596,117.923692,119.232193,122.291874,123.421912,124.706749,126.488425,126.934505,128.500821,130.373898,131.658735,132.974533,133.764011,135.884767,137.333123,139.290361,140.188199,141.395637,142.349043,144.366507,146.907687,148.858163,151.545411,154.303984,154.829367,156.013457,159.513794,161.417830,163.043227,164.730543,166.294021,166.630657,167.899507,169.401309,171.473103,173.507687,175.854598,178.894716,180.829712,181.928790,182.174063,183.551954,185.083495,185.720148,186.649731,187.527021,189.001902,189.760420,190.813058,191.896656,193.940012,195.582360,197.423005,198.554537,199.700054,201.232571,203.167567,205.465975,205.816296,207.385491,208.764056,209.630934,210.381648,212.208285,214.003961,216.155677,217.394074,218.322873,218.926591,220.753228,222.517944,223.539622,225.257899,226.635616,228.264026,229.250359,229.632005,231.406411,233.210557,234.315843,235.817645,238.363465,239.152944,239.684607,241.242740,245.102597,245.725972,246.995329,248.496886,249.952003,252.335919,253.357597,254.379275,256.561951,257.939668,258.791066,259.797264,261.592941,263.295737,263.622934,264.890174,266.749888,268.235965,269.818845,269.947712,270.605881,272.525397,274.336553,276.070310,277.446810,278.091148,279.390601,281.139837,283.848832,284.885990,286.155281,286.764923,289.049496,291.851370,292.430137,293.133953,296.078079,298.107297,299.748174,301.033011,302.947709,304.423945,305.177071,305.894542,307.163900,308.404753,309.106991,309.911949,311.284344,312.662061,313.723017,314.848138,315.636204,316.379853,318.036209,319.135287,320.156965,321.063509,322.912262,324.644940,324.845275,326.889535,328.314785,330.654226,332.943296,334.460333,337.215767,339.011444,340.002077,340.993366,343.536021,345.146691,346.379909,347.933086,350.053842,351.886050,352.110668,353.178389,354.525147,356.367263,358.395139,361.320853,362.094851,363.132009,364.153687,366.026764,368.673839,370.020596,371.258994,373.147550,373.418416,374.806220,375.495166,376.553143,377.224965,378.312297,379.705495,381.522201,381.879065,383.177653,384.659629,386.231075,387.314673,388.785271,390.116548,390.860139,391.626271,393.979226,395.514239,396.317183,397.693180,399.659136,400.521254,401.914451,403.710128,405.025925,406,407.424572,408.113517,408.738029,410.877354,414.128147,415.937593,416.549383,418.417963,419.916973,420.355931,422.123,423.030619,424.335955,425.507414,427.411451,428.618888,430.074005,432.380521,435.275275,436.173113,437.287671,438.293869,439.903786,443.123620,444.501337,445.600415,446.714973,448.247490,449.485887,451.761443,452.814081,453.440189,454.485917,455.313724,457.148473,457.8,460.461186,462.705781,463.204381,466.663979,467.891571,468.359082,470.399327,471.622244,472.566522,472.958661,474.217598,474.836186,476.167463,477.334353,478.219462,478.962501,481.174621,484.735228,485,485.973625,486.469925,487.981640,489.227445,489.904740,491.079417,491.743580,492.376967,494.188123,497.919308,498.578515,499.695230,501.190561,502.519284,503.819601,505.770078,508.014673,508.479073,509.500751,509.988247,510.701079,512.862984,514.404946,516.733966,517.925923,519.102401,521.145757,522.446075,523.792832,524.737110,526.579227,528.405863,529.100291,530.750787,531.703097,533.362832,534.026639,534.562291,535.171506,537.369662,538.917659,540.500110,541.357575,542.3,543.375,545.134384,546.886888,549.351247,550.671382,551.646620,553.395857,554.897413,557.234889,558.297048,559.086526,559.829565,562.259920,564.194916,564.556099,564.947231 diff --git a/data/torah/labels/Vayechi-1.txt b/data/torah/labels/Vayechi-1.txt deleted file mode 100644 index cf16a6f12..000000000 --- a/data/torah/labels/Vayechi-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.274014,4.318912,5.479909,6.524807,7.360726,8.010884,9.287982,10.750839,11.168798,12.167256,13.119274,14.233832,15.627029,16.277188,17.670385,18.343764,19.667302,21.130159,22.105397,24.404172,26.261769,28.653424,30.116281,31.648798,32.879456,33.483175,33.980136,34.514195,35.347029,35.973968,37.181406,37.994104,38.365624,39.108662,40.269660,41.662857,42.870295,43.799093,44.983311,46.167528,46.724807,47.328526,48.419864,49.627302,51.345578,51.553016,52.737234,54.176871,55.384308,56.916825,58.704762,61.259997,62.622766,63.502041,64.941678,68.192472,69.701769,70.280726,71.766803,72.322540,73.573333,74.618231,74.964989,75.242086,76.542404,78.307120,79.653878,80.721995,81.766893,82.997551,84.065669,84.901587,85.621406,86.759184,88.895420,89.429478,90.242177,90.961995,91.821134,92.285533,93.144671,93.655510,94.770068,96.349025,97.463583,99.971338,101.643175,102.734512,103.732971,104.428027,105.635465,107.191202,108.305760,109.489977,109.791837,110.906395,113.414150,114.133968,114.386304,115.407982,116.239274,117.702132,118.582948,119.024127,119.813605,120.695964,121.671202,122.600000,123.737778,125.038095,126.199093,127.383311,128.335329,129.798186,131.144943,132.143401,133.118639,135.556735,136.067574,137.600091,138.946848,140.200726,141.129524,142.058322,143.288980,147.050612,147.816871,149.419048,150.254966,151.671383,152.832381,154.527438,155.038277,155.897415,157.476372,158.823129,159.310748,160.169887,161.586304,162.886621,164.024399,164.953197,165.487256,166.299955,169.666848,170.549206,171.244263,172.405261,173.426939,174.866576,175.888254,177.049252,178.535329,179.974966,181.600363,183.875918,185.338776,186.987392,189.170068,189.843447,191.213424,192.188662,192.978141,194.115918,195.184036,195.693333,196.413152,197.411610,198.781587,200.499864,201.057143,202.078821,203.123719,203.959637,204.376054,205.722812,206.953469,207.789388,208.041723,208.806440,209.804898,210.896236,211.289433,212.334331,213.448889,214.191927,214.445805,215.374603,216.512381,217.185760,218.068118,218.507755,218.806531,219.758549,220.965986,223.520181,224.332880,224.774059,225.818957 diff --git a/data/torah/labels/Vayechi-2.txt b/data/torah/labels/Vayechi-2.txt deleted file mode 100644 index 303d5c8a3..000000000 --- a/data/torah/labels/Vayechi-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.622313,4.945850,5.897868,7.082086,7.848345,8.637823,9.705941,11.075918,11.749297,12.654875,13.583673,14.187392,15.255510,16.300408,17.322086,18.366984,18.596100,19.617778,20.382494,21.264853,22.077551,23.470748,24.817506,25.723084,27.069841,28.161179,28.602358,28.925896,30.249433,31.828390,33.128707,33.964626,34.846984,35.891882,37.006440,37.842358,38.887256,40.280454,42.300590,42.484807,44.365624,44.876463,45.735601,46.780499,48.057596,49.125714,49.659773,50.518912,51.587029,52.771247,53.955465,55.093243,56.347120,58.639304,59.545306,59.822404,61.354921,62.585578,62.791474,63.302313,64.231111,65.438549,66.622766,67.133605,68.085624,68.480363,69.084082,70.036100,71.359637,71.638277,72.427755,73.263673,74.053152,75.567285,76.681843,76.819621,77.701979,79.071956,82.787149,84.714405,85.736083,86.804201,87.825879,89.242296,90.519394,91.819711,92.934269,93.746967,94.954405,95.349144,95.929643,96.835221,99.760936,100.527194,101.827512,102.593770,104.126287,106.680482,107.121661,109.302795,110.649553,111.485471,112.483929,113.366287,114.504065,116.129462,117.220800,118.544337,119.891094,121.098532 diff --git a/data/torah/labels/Vayechi-3.txt b/data/torah/labels/Vayechi-3.txt deleted file mode 100644 index 7735d26d0..000000000 --- a/data/torah/labels/Vayechi-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.993832,5.851429,6.501587,7.267846,8.846803,9.054240,10.772517,11.260136,11.701315,12.792653,14.023311,15.579048,17.018685,17.390204,18.667302,20.199819,21.639456,22.637914,22.961451,23.867029,24.238549,24.456137,26.111655,27.946032,29.246349,29.826848,30.685986,31.103946,31.754104,32.799002,33.333061,34.145760,35.237098,36.003356,36.908934,37.138050,38.554467,40.110204,41.573061,42.943039,44.011156,44.754195,45.799093,46.356372,46.820771,47.470930,48.144308,48.678367,49.235646,50.512744,52.277460,53.368798,54.367256,55.458594,56.503492,57.618050,58.407528,58.895147,60.218685,63.074739,64.305397,66.348753,68.577868,70.365805,71.642902,72.757460,73.802358,75.311655,76.310113,77.494331,79.444807,81.511383,81.694059,82.599637,83.319456,84.547029,85.568707,86.474286,86.635283,87.564082,88.655420,89.468118,90.071837,91.627574,92.277732,93.322630,94.506848,95.551746,95.946485,96.384580,97.963537,99.774694,101.585850,102.862948,103.745306,104.488345,104.835102,105.903220,106.924898,107.714376,108.619955,109.943492,111.777868 diff --git a/data/torah/labels/Vayechi-4.txt b/data/torah/labels/Vayechi-4.txt deleted file mode 100644 index 0198b0fdf..000000000 --- a/data/torah/labels/Vayechi-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.274014,4.318912,4.620771,5.665669,7.755465,9.264762,10.634739,11.192018,12.817415,13.490794,14.094512,14.930431,15.812789,17.066667,18.645624,19.620862,20.247800,21.524898,22.801995,23.103855,23.846893,25.077551,26.470748,27.538866,28.676644,29.812880,30.811338,31.786576,32.576054,33.365533,34.108571,34.990930,35.989388,36.918186,37.125624,38.054422,38.656599,39.399637,40.351655,41.466213,42.186032,43.091610,43.950748,45.088526,47.062222,47.805261,48.780499,49.593197,50.220136,52.356372,53.424490,53.817687,54.583946,55.814603,57.022041,57.370340,58.206259,59.367256,60.272834,61.108753,62.525170,63.105669,64.568526,65.172245,66.286803,67.401361,68.144399,68.655238,69.607256,71.116553,71.557732,72.765170,74.320907,75.435465,76.805442,78.755918,80.590295,81.751293,82.819410,83.724989,84.885986,85.861224,87.207982,88.392200,89.042358,89.924717,91.387574,92.177052,92.966531,94.127528,95.265306,96.078005,97.262222,98.446440,99.584218,101.047075,102.533152,103.252971,104.762268,105.827302,106.384580,107.104399,108.149297,109.472834,110.424853,111.446531,112.305669,112.746848,113.629206,114.627664,115.556463,116.392381,117.483719,118.830476,119.619955,120.479093,122.243810,123.265488,124.333605,125.448163,126.400181,127.445079,128.373878,129.093696,130.533333,131.996190,132.808889,133.923447,134.805805,135.664943,137.313560,140.069887,140.860045,141.672744,142.880181,144.087619,145.062857,146.154195,147.918912,148.267211,149.103129,151.634104,152.493243,153.561361,154.490159,154.977778,156.719274,157.531973,158.367891,159.227029,159.900408,160.620227,161.502585,162.059864,163.429841,164.335420,165.194558,166.146576,167.145034,167.748753,168.863311,170.047528,171.021224,171.973243,173.018141,173.737959,175.131156,175.733333,176.406712,177.521270,177.939229,178.888163,180.233379,180.883537,181.673016,183.205533,184.041451,184.688526,185.847982,186.939320,188.123537,190.352653,191.467211 diff --git a/data/torah/labels/Vayechi-5.txt b/data/torah/labels/Vayechi-5.txt deleted file mode 100644 index e99533fd3..000000000 --- a/data/torah/labels/Vayechi-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.111474,4.086712,5.340590,6.362268,7.035646,8.173424,9.427302,10.472200,11.493878,12.306576,13.026395,13.769433,14.930431,16.300408,17.066667,18.274104,19.435102,19.922721,20.897959,21.873197,22.709116,23.661134,24.404172,25.007891,25.565170,26.284989,28.633277,29.644172,29.898050,31.035828,32.684444,33.938322,35.401179,36.283537,37.630295,38.744853,39.580771,40.532789,42.088526,43.035918,44.104036,45.334694,46.286712,47.401270,48.260408,49.049887,49.816145,51.279002,52.184580,53.717098,55.876553,56.991111,57.803810,59.777506,60.799184,61.588662,62.378141,63.237279,64.026757,65.257415,66.209433,67.022132,67.718730,69.158367,70.969524,72.432381,73.477279,73.963356,74.938594,75.890612,76.447891,77.562449,78.560907,79.582585,80.785397,81.690975,82.782313,84.663129,85.940227 diff --git a/data/torah/labels/Vayechi-6.txt b/data/torah/labels/Vayechi-6.txt deleted file mode 100644 index 2b8bb6cfe..000000000 --- a/data/torah/labels/Vayechi-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.413333,4.342132,5.433469,6.803447,7.801905,8.521723,9.798821,10.704399,12.027937,12.421134,13.767891,14.696689,15.927347,16.647166,17.529524,20.537350,21.257649,21.954248,22.743727,23.714339,25.037876,26.036334,27.499191,28.567309,29.751527,30.308806,31.446584,33.071981,34.534838,35.579736,36.392434,37.530212,38.621550,39.037967,39.757786,40.756244,41.336742,41.777922,42.892479,43.472978,44.819736,46.003953,46.839872,47.559690,48.627808,51.065903,52.134021,53.434339,55.199055,56.081414,56.406493,56.821368,57.819826,58.725405,59.932842,62.092298,62.669713,64.225450,64.643409,66.570665,68.055200,68.878679,69.881867,70.694566,71.878783,74.104815,75.962411,76.380371,78.261187,78.934566,80.303001,81.417559,82.392797,83.530575,83.761232,84.736470,85.595609,86.570847,87.499645,88.544543,89.450121,89.680779,91.166856,92.606493,93.999690,95.300008,95.577105,96.250484,96.993522,97.433160,98.338738,100.358874,101.218012,102.516788,102.865087,103.747445,105.024543,105.790801,106.021459,107.205677,108.552434,109.574112,110.105087,111.312525,112.450303,113.239781,113.611300,114.261459,115.097377,116.140733,116.837332,117.673250,118.578829,119.995246,120.715064,120.945722,121.874520,122.292479,124.219736,125.380733,125.729033,126.727491,127.911708,128.817287,129.119146,130.698103,132.043318,132.739917,133.877695,134.574293,136.130030,136.803409,137.616108,138.475246,139.914883,141.122321,142.538738,143.630076,144.442774,145.464452,147.786448,148.645586,149.783364,151.385541,152.221459,152.732298,153.150257,153.846856,155.054293,155.588352,156.238511,156.958330,157.376289,159.210665,159.953704,161.788080,162.809758,163.483137,164.528035,166.408851,167.778829,169.241686,170.588443,172.724679,174.441217,176.388806,177.387264,178.269622,178.662820,179.498738,180.450756,181.518874,182.912071,185.001867,186.040597,187.317695,188.474067,188.658284,189.401323,191.049940,193.000416,194.068534,195.833250,196.715609,196.923046,197.921504,198.641323,200.057740,201.056198,201.938557,202.865813,203.073250,204.025269,205.186266,206.602683,207.183182,207.856561,208.646039,209.598058,210.735835,211.618194,212.314792,212.825631,214.033069,215.612026,216.215745,217.098103,218.421640,219.095019,220.186357,221.660287,223.059464,224.174021,225.358239,226.403137,227.146176,228.376833,229.886130,230.791708,231.418647,232.022366,232.626085,233.903182,234.785541,235.714339,236.434157,237.618375,239.963591,240.520869,241.287128,242.889305,244.119962,245.118420,246.232978,247.719055,248.369214,250.319690,251.132389,252.177287,253.059645,256.078239,257.471436,258.191255,259.073613,260.281051,264.065903,266.039600,266.596878,268.408035,268.825994,270.428171,271.542729,272.494747,274.189804,275.443681,276.070620,276.600053,277.877151,278.411210,279.850847,280.733205,281.429804,282.590801,283.798239,284.796697,285.679055,287.095473,288.279690,288.906629,289.603228,290.671346,291.553704,292.691482,294.154339,294.711618,295.338557,296.917513,297.683772,299.285949,300.168307,301.561504,302.420643,303.720960,304.835518,306.437695,307.575473,307.900552,309.293749,310.454747,311.824724,313.403681,314.355699,315.330937,315.677695,316.211754,317.349532,318.882049,319.625087,320.577105,321.575563,322.597241,323.293840,324.036878,324.617377,325.499736,325.800053,326.728851,327.820189,328.563228,328.793885,329.745903,331.998239,332.414656,333.227355,333.831074,334.574112,335.735110,337.964225,338.519962,339.611300,340.586538,341.863636,342.583454,343.233613,343.837332,344.533931,345.973568,346.670166,347.598965,348.713522,351.323348,351.866810,352.679509,353.701187,355.117604,355.953522,356.975200,357.764679,358.856017,359.713613,360.712071,362.244588,366.006221,367.143999,369.489214,370.743092,371.671890,372.809668,373.366947,374.272525,375.456742,376.803500,377.546538,378.336017,379.404135,380.193613,381.029532,382.329849,383.326765,384.093024,385.184361,386.206039,387.901096,387.992434,388.851572,390.082230,391.359327,393.542003,394.470801,394.981640,396.328398,398.394974,399.764951,401.065269,401.483228,402.412026,403.828443,404.687581,405.825359,406.754157,410.074611,411.189169,411.862547,412.907445,414.022003,415.345541,416.506538,418.201595,419.501913,420.268171,421.611844,423.144361,423.607219 diff --git a/data/torah/labels/Vayechi-7.txt b/data/torah/labels/Vayechi-7.txt deleted file mode 100644 index 254c8389b..000000000 --- a/data/torah/labels/Vayechi-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.457546,3.731559,4.869337,6.796593,7.702172,8.514870,9.002489,10.395686,11.928203,13.178997,14.293555,14.547432,15.894190,16.892648,17.542807,18.657364,19.446843,20.166662,21.095460,22.326117,23.487115,24.346253,25.019632,26.273510,27.248748,27.945346,29.083124,30.035142,31.497999,33.146616,34.028974,34.748793,35.002671,36.047569,37.092466,37.440766,38.067705,39.159042,40.227160,40.946979,41.200857,42.013555,43.058453,43.801491,46.216367,47.911423,48.933101,50.256639,51.324757,52.160675,52.787614,53.553872,54.505891,55.016730,57.013646,58.104983,59.730380,60.844938,61.773736,63.306253,66.139088,66.998226,67.532285,68.136004,69.088022,70.179360,71.363578,72.036956,72.779995,73.871333,75.241310,75.402308,76.191786,77.213464,78.908521,79.744439,80.371378,80.848203,81.684122,82.868340,84.586616,85.468974,86.767750,87.998408 diff --git a/data/torah/labels/Vayechi-H.txt b/data/torah/labels/Vayechi-H.txt deleted file mode 100644 index 0b8fb2012..000000000 --- a/data/torah/labels/Vayechi-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.086712,4.687347,5.825125,8.356100,10.863855,11.374694,12.373152,13.092971,14.904127,16.795378,18.079093,19.518730,19.888707,21.862404,24.207619,24.973878,26.274195,29.362449,29.850068,32.009524,33.542041,36.328435,37.837732,39.184490,40.624127,41.878005,42.969342,45.221678,46.916735,48.333152,49.145850,50.887347,52.257324,54.672200,55.898052,56.405986,57.868844,58.960181,61.258957,61.793016,62.536054,63.488073,65.159909,68.364263,69.618141,71.522177,72.009796,74.610431,75.794649,76.816327,79.416961,81.669297,82.435556,83.550113,85.639909,86.057868,89.030023,90.307120,91.491338,92.698776,93.372154,94.324172,95.183311,97.296327,100.640000,101.197279,102.311837,103.031655,103.867574,105.257687,105.861406,107.997642,109.460499,110.296417,114.197370,116.263946,116.937324,117.980680,119.559637,120.720635,121.092154,124.017868,126.177324,127.129342,128.151020,129.242358,130.542676,133.723810,134.954467,135.511746,137.021043,138.692880,139.203719,139.900317,142.895692,144.590748,145.031927,146.192925,148.607800,151.254875,152.369433,155.713107,157.779683,159.428299,160.775057,162.400454,163.097052,164.374150,166.022766,169.111020,169.923719,171.502676,173.360272,174.776689,175.937687,178.515102,179.467120,180.720998,181.649796,182.508934,184.273651,185.248889,187.245805,187.872744,188.569342,190.357279,191.355737,194.536871,195.581769,196.696327,197.973424,200.197914,203.262948,204.493605,204.888345,205.910023,206.374422,209.323356,211.854331,212.992109,214.153107,215.615964,216.939501,218.007619,219.168617,220.956553,221.629932,222.303311,223.208889,224.602086,227.551020,227.968980,228.781678,229.803356,230.360635,231.382313,233.936508,236.026304,236.444263,237.698141,239.538831,240.247710,241.130068,243.103764,244.724535,245.583673,246.977925,247.577046,248.412965,250.406797,250.595641,252.473373,253.495051,254.865028,256.327885,257.047704,257.372783,259.137500,260.832557,261.320176,262.597273,265.871287,266.846525,267.566343,268.262942,268.704121,269.679359,271.188656,273.092693,274.416230,275.252148,276.784665,277.806343,280.592738,281.684076,282.891514,283.773872,285.677908,289.578860,292.759994,293.363713,294.199631,295.198089,296.939586,298.077364,299.377681 diff --git a/data/torah/labels/Vayera-2.txt b/data/torah/labels/Vayera-2.txt deleted file mode 100644 index 6ae064059..000000000 --- a/data/torah/labels/Vayera-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,4.040272,5.387029,6.315828,7.221406,7.685805,8.405624,9.613061,10.031020,10.565079,11.331338,13.235374,13.699773,14.512472,15.836009,16.207528,16.509388,16.927347,18.227664,19.156463,19.713741,21.060499,22.662676,23.127075,24.566712,24.915011,25.820590,26.633288,27.144127,27.515646,29.466122,31.114739,32.554376,33.250975,33.738594,34.551293,35.874830,36.083810,36.826848,37.268027,38.034286,40.054422,42.074558,43.978594,44.512653,46.045170,46.648889,47.113288,47.531247,47.995646,48.785125,49.830023,50.480181,51.130340,51.873379,52.639637,53.452336,54.659773,56.378050,56.935329,57.213968,57.957007,58.514286,58.932245,59.419864,60.093243,62.415238,63.320816,65.108753,65.898231,66.455510,66.780590,67.314649,69.032925,69.474104,70.054603,70.704762,73.026757,73.467937,74.094875,75.534512,77.067029,77.461769,78.065488,78.460227,79.133605,79.481905,80.875102,82.291519,82.709478,83.545397,84.172336,84.822494,85.960272,86.656871,86.981950,87.608889,88.259048,89.257506,89.884444,90.743583,91.742041,92.531519,93.065578,93.390658,94.087256,95.132154,96.316372,97.268390,97.918549,98.452608,98.986667,99.915465,100.565624,100.937143,101.749841,102.353560,103.584218,104.652336,105.465034,105.952653,106.951111,109.760726,111.153923,112.477460,113.475918,114.636916,115.821134,116.610612,117.075011,117.609070,118.305669,119.164807,120.093605,121.533243,121.974422,122.671020,122.996100,123.506939,124.017778,124.621497,125.480635,127.013152,127.779410,128.197370,128.731429,129.335147,131.123084,131.773243,132.237642,132.632381,133.561179,134.118458,134.629297,135.581315,137.462132,138.089070,138.785669,139.668027,140.039546,140.805805,141.479184,141.711383,142.338322,142.988481,143.638639,144.404898,146.146395,147.771791,148.886349,149.675828,150.674286,152.021043,152.647982,152.973061,153.367800,153.623220,154.877098,155.364717,155.921995,156.339955,156.990113,157.617052,158.661950,159.613968,161.773424,162.841542,163.909660,164.536599,165.581497,166.835374,168.089252,168.623311,169.853968,171.247166,171.711565,172.431383,173.151202,174.103220,176.053696,176.866395,177.864853,179.025850,179.884989,181.022766,182.206984,183.414422,183.878821,184.691519,185.898957,186.386576,187.013515,187.408254,188.151293,188.453152,189.289070,191.657506,192.655964,193.073923,193.677642,194.234921,194.513560,195.094059,196.533696,197.555374,197.950113,198.600272,199.761270,200.364989,200.852608,201.758186,202.756644,204.660680,205.380499,206.564717,207.586395,208.445533,209.443991,209.745850,210.326349,211.487347,212.555465,212.996644,213.693243,214.831020,215.457959,215.945578,216.595737,217.478095,218.824853,219.567891,220.403810,221.216508,221.889887,222.214966,222.725805,224.165442,225.256780 diff --git a/data/torah/labels/Vayera-3.txt b/data/torah/labels/Vayera-3.txt deleted file mode 100644 index b37e180d0..000000000 --- a/data/torah/labels/Vayera-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.965986,6.823583,8.007800,8.588299,9.540317,10.515556,10.910295,11.490794,11.862313,12.860771,13.557370,14.416508,15.229206,16.459864,16.877823,17.644082,19.873197,20.588384,20.836373,22.572297,23.502256,24.597541,25.155517,25.486169,26.932772,27.924728,28.606699,29.474660,30.983261,31.727228,32.595190,34.331114,34.744429,35.591725,36.418356,37.203655,38.815584,39.166902,39.972866,40.923491,41.543464,42.225434,42.514755,43.052065,44.312676,45.180638,45.945271,46.937227,47.433206,48.404496,52.151523,54.259431,55.458045,55.995355,56.697990,57.255966,58.123928,58.371917,58.847229,60.004512,60.355830,60.851808,61.492447,62.112420,63.125042,64.654308,64.984960,65.501604,66.266237,66.803547,68.374145,69.862079,70.523384,71.060693,71.660000,72.527962,73.809239,74.449878,75.235177,75.979144,79.864307,81.310910,82.096209,83.088166,84.245448,84.886087,85.816046,86.890665,87.593301,87.944619,88.626589,89.742540,91.519795,91.788450,93.069727,93.689700,95.012309,96.024931,96.458912,97.078885,97.636860,98.690814,99.042132,99.765434,100.757390,101.914673,102.555311,103.319944,104.063912,105.779170,106.853789,107.301550,107.632202,108.355504,108.934145,109.822773,109.988099,110.339417,110.711400,111.104050,111.992677,114.038587,114.534566,116.229158,117.303778,118.109742,118.585055,119.143030,119.845666,120.589633,122.077568,123.028193,123.524171,124.061481,125.280761,126.148723,126.851358,127.615992,128.897269,129.641236,130.509198,133.381739,134.311698,134.642350,135.406983,137.163573,137.556222,138.610176,139.726127,140.635420,141.338056,141.854700,142.825991,143.735284,145.078558,145.615868,146.256507,147.703110,148.901724,150.306996,151.112960,151.402281,151.960256,153.076207,153.737512,154.419482,155.948748,157.168028,157.849998,159.151941,159.813245,160.350555,160.949862,161.590500,162.458462,163.161098,164.070392,164.752362,165.186343,165.661655,166.322959,167.438910,167.728231,168.451533,169.546818,170.125459,171.055418,171.406736,171.902714,172.336695,173.142660,173.907293,174.733924,175.023244,175.415894,176.056532,177.172483,177.689127,179.342388,181.367632,182.338923,183.144888,183.392877,184.384833,185.438787,187.443366,188.786640,189.385947,189.943923,190.191912,190.584561,191.039208,191.803841,192.299819,192.692469,193.043787,193.539765,194.511056,195.585675,196.143651,197.052944,198.272224,199.140186,199.698161,200.772781,201.413419,201.826734,202.384710,203.066680,205.195253,205.567237,206.435199,206.869180,207.323826,208.150457,209.101082,209.803718,210.692345,211.456978,211.952957,218.421339,219.495959,220.694573,221.603866,222.037847,223.381122,224.517739,225.220374,225.923010,226.770306,227.328282,227.968920,229.105537,229.808173,230.428146,231.254776,233.837996,235.077942,236.255890,238.012480,239.169762,239.851732,240.203050,241.009015,241.773648,242.434952,243.199585,243.612900,244.253539,244.625523,245.390156,246.733430,247.580726,247.911378,248.944666,250.411935,250.866582,251.341895,251.899870,252.292519,253.222479,255.103063,256.549666,257.231636,257.892940,260.021514,261.736772,263.038714,264.526649,265.601269,266.386568,267.192532,268.163823,268.742464,269.011119,271.015698,271.780331,272.503632,273.164937,273.805575,274.404882,275.252178,276.161472,276.843442,278.021390,279.054678,279.777980,281.265914,282.712518,283.518482,284.035126,284.469107,285.068414,286.101702,287.072993,288.684922,289.532218,290.710167,291.516131,292.880071 diff --git a/data/torah/labels/Vayera-4.txt b/data/torah/labels/Vayera-4.txt deleted file mode 100644 index 05d3ef043..000000000 --- a/data/torah/labels/Vayera-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.656858,3.817856,4.444795,5.118174,5.884432,6.859670,7.556269,8.252868,9.367425,10.992822,11.364341,11.875180,12.293140,12.943298,14.638355,15.660033,16.170872,16.937131,17.308650,17.819489,18.399988,18.957267,19.677085,20.118264,20.861303,21.534682,22.068741,23.647697,24.158536,24.576496,25.389194,26.828831,27.362890,27.827289,28.245248,28.941847,29.475906,30.311824,32.819580,34.839716,35.466654,36.511552,37.138491,37.811870,38.554908,38.996087,39.855226,40.366065,40.760804,41.550283,42.989920,43.407879,44.127697,44.661756,45.335135,46.031734,46.658673,47.633911,48.121530,48.748468,49.491507,50.513185,51.465203,53.113820,53.740759,54.507017,55.621575,56.294954,57.014772,59.058128,59.917267,60.567425,61.356904,62.192822,62.703661,63.330600,63.748559,64.236178,64.770237,65.443616,66.883253,68.717629,69.135589,69.762527,70.668106,71.364704,71.759444,72.200623,72.665022,73.222301,74.220759,76.217675,76.821394,77.448332,78.307471,79.491688,80.536586,82.719262,83.996360,84.646518,85.064478,85.528877,86.179035,87.223933,87.757992,88.106292,88.733230,90.219307,90.614047,91.008786,91.496405,92.193004,93.168242,93.586201,94.306019,94.840078,95.234818,95.699217,96.465475,99.089330,100.180668,101.597085,102.595543,104.197720,105.219398,105.823117,106.589375,107.216314,107.703933,108.261212,108.725611,110.188468,111.279806,112.046065,112.789103,113.392822,115.529058,117.340214,117.920713,118.547652,119.406790,119.731870,120.776768,121.450146,122.193185,122.959444,123.609602,124.468741,124.979580,125.536858,126.837176,128.555453,129.321711,130.018310,130.691688,132.270645,132.688605,134.058582,134.708741,135.451779,140.351190,140.769149,141.814047,142.858945,143.601983,144.136042,145.761439,147.317176,148.153094,148.571053,149.058673,149.778491,150.242890,150.800169,151.728967,153.493684,154.376042,155.420940,156.303298,156.860577,157.510736,158.369874,159.136133,159.670192,160.088151,160.506110,162.642346,164.058763,164.499942,165.916360,167.054137,167.959716,168.633094,169.631552,170.212051,170.955090,173.486065,174.368423,175.715180,177.410237,178.060396,178.756995,179.383933,180.823570,181.636269,182.727607,183.354546,184.004704,184.515543,185.188922,186.117720,189.113094,190.065112,190.506292,190.901031,191.853049,193.780305,194.593004,195.219942,196.288060,196.775679,197.472278,198.284976,198.749375,199.236995,199.678174,200.281892,201.744750,202.162709,202.534228,203.137947,203.509466,204.624024,205.204523,205.552822,206.063661,206.829920,207.874818,208.385657,208.803616,209.360895,210.359353,214.562165,215.862482,216.768060,217.789738,218.323797,219.229375,219.647335,220.111734,220.552913,220.994092,221.853230,222.735589,224.686065,226.056042,226.566881,226.938400,227.402800,227.936858,228.470917,230.885793,232.023570,232.673729,233.184568,234.833185,235.344024,236.040623,238.014319,239.430736,239.918355,240.452414,241.125793,241.892051,243.006609,244.446246,245.491144,245.955543,246.234183,246.861122,247.232641,247.952459,248.672278,249.461756,250.019035,251.992731,252.758990,253.432369,254.221847,255.313185,257.194001,258.076360,258.494319,259.074818,260.050056,261.629013,262.232731,262.697131,263.045430,263.695589,264.299307,264.949466,265.344205,265.715725,266.342663,266.783843,267.155362,268.037720,268.618219,270.406156,271.149194,271.683253,272.286972,274.353548,275.584205,277.070283,278.742119,279.670917,280.274636,280.924795,281.691053,282.155453,282.805611,283.502210,284.013049,285.243707,286.427924,287.449602,288.703480,289.330419,289.701938,290.421756,290.700396,291.629194,292.186473,292.674092,293.626110,296.946564,298.130781,298.548741,299.152459,299.686518,300.359897,301.195815,301.962074,302.542573,303.123072,304.214409,304.771688,305.328967,305.955906,306.652505,307.024024,307.604523,308.254682,308.695861,309.137040,309.554999,310.855317,312.364614,314.268650,315.406428,315.963707,316.474546,317.287244,318.564341,318.912641,319.284160,319.818219,320.421938,322.070555,322.581394,323.208332,324.531870,325.971507,327.852323,328.920441,329.965339,330.801258,331.683616,332.264115,332.774954,333.657312,334.052051,334.864750,335.979307,337.442165,338.185203,338.579942,339.671280,341.064478,341.598536,342.202255,342.596995,343.641892,344.361711,346.312187,346.869466,347.380305,347.891144,348.936042,349.655861,350.213140,350.793639,351.234818,351.606337,352.047516,353.696133,354.485611,355.251870,355.855589,356.784387,357.364886,357.898945,358.409784,359.013502,359.477902,360.754999,361.126518,361.567697,362.055317,363.959353,364.3,366.513548,367.883525,368.301484,368.626564,369.230283,370.089421,370.646700,370.925339,371.366518,372.550736,372.945475,373.781394,376.149829,378.216405,379.609602,381.072459,383.580214,384.671552,386.064750,387.388287,387.899126,388.572505,389.338763,389.872822,390.615861,391.242800,392.264478,392.798536,393.355815,393.750555,394.377493,394.888332,395.677811,396.026110,396.560169,397.163888,398.394546,399.834183,400.693321,402.597357,403.688695,404.687153,405.499852,406.335770,407.403888,407.937947,408.425566,408.936405,409.609784,412.442618,413.232097,413.928695,414.416314,414.973593,416.111371,416.575770,417.318809,419.780124,421.219761,421.986019,423.263117,423.959716,424.540214,425.492233,426.397811,427.117629,427.489149,428.023208,428.464387,429.509285,430.205883,430.693502,431.552641,431.877720,433.410237,435.035634,435.500033,436.057312,436.452051,437.543389,439.122346,439.795725,441.003162,441.490781,442.535679,443.859217,445.298854,446.390192,447.040351,447.527970,448.085248,449.083707,449.432006,449.826745,450.384024,450.941303,451.684341,452.032641,452.543480,453.031099,454.238536,457.930509,458.952187,459.323707,459.648786,460.020305,460.368605,462.249421,463.503298,464.362437,465.082255,465.848514,468.100849,469.122527,470.538945,471.885702,472.698400,473.464659,474.625657,476.042074,476.552913,477.017312,477.783570,479.687607,480.709285,481.127244,481.405883,482.288242,483.008060,483.658219,484.308378,484.772777,485.167516,485.631915,486.421394,487.559171,488.232550,488.743389,489.231008,489.788287,490.554546,491.088605,491.599444,493.039081,493.735679,494.571598 diff --git a/data/torah/labels/Vayera-5.txt b/data/torah/labels/Vayera-5.txt deleted file mode 100644 index b906b0fef..000000000 --- a/data/torah/labels/Vayera-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.021678,1.346757,1.648617,2.321995,2.948934,3.738413,4.295692,4.852971,5.619229,6.826667,7.476825,8.196644,9.055782,9.404082,10.007800,10.727619,11.517098,12.144036,12.770975,15.000091,15.696689,16.741587,17.623946,18.761723,19.156463,19.713741,20.456780,21.130159,21.478458,22.593016,23.614694,24.473832,25.216871,26.540408,27.469206,28.281905,28.746304,29.489342,30.162721,30.394921,31.114739,32.415057,33.692154,34.388753,34.713832,35.735510,37.407347,38.127166,38.591565,39.218503,40.054422,41.633379,42.422857,43.955374,44.768073,45.232472,45.650431,46.021950,46.695329,47.043628,47.670567,48.065306,48.785125,49.342404,49.922902,50.271202,50.689161,51.385760,53.429116,54.891973,55.727891,56.192290,56.679909,57.446168,58.003447,58.514286,60.046803,61.231020,61.625760,63.042177,63.738776,64.296054,64.992653,65.689252,66.223311,66.594830,67.198549,67.964807,69.799184,70.356463,71.633560,72.423039,73.119637,73.793016,74.884354,75.580952,76.532971,76.950930,77.670748,79.737324,80.132063,80.433923,80.875102,81.269841,82.012880,82.639819,83.313197,83.963356,86.889070,88.491247,94.481995,95.248254,96.873651,98.336508,99.288526,100.078005,100.449524,101.749841,103.584218,104.025397,105.325714,106.022313,106.556372,107.322630,108.715828,109.714286,110.526984,110.921723,111.711202,112.732880,113.220499,113.499138,114.218957,115.403175,115.821134,116.471293,117.121451,117.725170,118.561088,121.045624,122.624580,123.785578,125.573515,126.595193,127.895510,128.684989,129.288707,130.078186,130.472925,131.030204,131.796463,132.376961,133.537959,134.257778,135.047256,135.325896,135.743855,136.394014,137.856871,140.811650,141.067069,141.508249,142.437047,144.735822,145.455641,146.361219,146.546979,147.011378,147.382897,148.056276,148.590335,149.054734,149.356593,149.751332,150.122852,150.935550,151.794688,152.444847,153.048566,155.184802,155.672421,155.997500,156.415459,156.903078,157.367478,157.785437,158.946435,159.712693,159.944893,160.455732,161.407750,161.918589,162.174008,162.591967,163.474326,163.776185,164.240584,165.239042,166.516140,167.305618,167.630698,168.327296,169.209654,169.720493,170.208113,172.019269,173.528566,173.853645,174.480584,175.200403,176.477500,176.825800,177.383078,179.588974,180.842852,181.469791,181.957410,182.700448,183.815006,184.650924,185.393963,185.928022,186.740720,188.180357,188.830516,189.318135,190.339813,190.688113,191.756230,193.102988,193.846026 diff --git a/data/torah/labels/Vayera-6.txt b/data/torah/labels/Vayera-6.txt deleted file mode 100644 index abd712b7a..000000000 --- a/data/torah/labels/Vayera-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.990748,4.640907,5.267846,6.730703,8.123900,9.354558,9.679637,10.561995,11.188934,11.653333,12.280272,13.510930,14.161088,14.834467,15.298866,15.740045,16.413424,18.596100,19.896417,20.384036,21.034195,21.707574,22.357732,23.007891,23.449070,24.470748,25.376327,27.396463,28.162721,28.975420,29.857778,30.763356,31.552834,32.319093,32.783492,33.178231,33.874830,34.432109,35.639546,36.475465,37.334603,38.495601,39.819138,40.353197,40.678277,41.467755,42.117914,42.628753,43.023492,43.580771,44.207710,44.741769,45.159728,46.158186,48.433741,49.269660,49.896599,50.593197,51.173696,51.707755,51.986395,52.381134,52.799093,53.658231,54.842449,55.631927,56.212426,57.814603,58.580862,60.809977,61.669116,62.342494,63.015873,63.828571,65.453968,66.220227,66.893605,67.636644,68.751202,69.656780,70.771338,71.235737,72.118095,74.347211,75.833288,76.576327,77.644444,78.759002,79.339501,80.546939,81.824036,82.590295,82.961814,83.519093,84.424671,85.910748,86.909206,88.093424,88.929342,89.695601,90.624399,91.692517,93.085714,94.641451,95.082630,95.639909,96.499048,97.195646,98.008345,98.867483,99.633741,100.051701,100.678639,101.491338,102.234376,102.582676,103.070295,103.906213,104.695692,105.879909,107.319546,108.039365,108.619864,109.037823,109.525442,110.361361,111.592018,112.427937,113.356735,114.378413,114.982132,115.818050,116.421769,118.441905,120.090522,121.065760,121.506939,122.389297,123.201995,123.527075,123.991474,124.804172,126.290249,126.940408,127.428027,127.869206,128.705125,129.633923,130.260862,130.655601,131.143220,131.932698,133.999274,135.601451,136.367710,137.435828,138.178866 diff --git a/data/torah/labels/Vayera-7.txt b/data/torah/labels/Vayera-7.txt deleted file mode 100644 index 5c31dd186..000000000 --- a/data/torah/labels/Vayera-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.482993,4.667211,5.479909,6.222948,7.848345,8.405624,8.637823,9.264762,10.681179,11.377778,11.888617,12.306576,13.514014,18.738503,20.085261,20.921179,21.710658,22.267937,22.593016,23.475374,23.846893,24.636372,25.077551,25.681270,27.585306,28.281905,28.653424,29.280363,30.093061,31.486259,31.997098,32.879456,33.645714,34.551293,35.201451,35.944490,36.594649,37.360907,38.707664,40.449161,42.446077,43.699955,44.048254,45.023492,46.764989,47.368707,47.972426,48.738685,49.342404,49.876463,50.456961,50.851701,52.152018,52.871837,53.452336,54.288254,54.961633,55.449252,55.960091,56.424490,57.121088,57.469388,58.119546,59.675283,61.811519,62.809977,64.179955,64.597914,65.549932,66.432290,66.757370,67.175329,68.080907,69.288345,70.797642,71.145941,72.632018,74.025215,74.675374,75.000454,75.395193,75.998912,76.509751,77.508209,78.320907,78.645986,79.203265,80.410703,81.293061,82.337959,84.218776,86.192472,87.655329,88.212608,89.768345,90.790023,91.370522,91.951020,92.531519,93.390658,94.040816,94.690975,95.108934,95.480454,96.177052,97.221950,98.011429,98.940227,102.005261,103.421678,104.025397,104.791655,105.139955,105.882993,106.626032,107.508390,108.181769,108.692608,110.364444,111.432562,111.989841,112.988299,113.708118,114.218957,115.124535,117.028571,117.771610,119.675646,120.465125,120.813424,122.020862,122.856780,123.506939,124.296417,124.993016,125.945034,128.568889,129.195828,131.448163,131.982222,132.284082,132.887800,134.606077,135.743855,136.277914,137.020952,137.462132,138.158730,139.319728,139.737687,140.480726,141.711383,142.222222,142.686621,143.151020,144.451338,144.892517,145.310476,146.007075,146.796553,147.702132,150.024127,150.929705,151.417324,151.974603,152.764082,153.112381,153.832200,154.784218,155.155737,155.736236,156.920454,158.429751,159.172789,159.846168,160.287347,161.030385,162.098503,162.841542,163.491701,164.374059,165.511837,167.949932,168.785850,169.644989,170.504127,170.852426,171.525805,172.222404,172.733243,173.104762,173.778141,174.474739,175.380317,176.866395,177.609433,178.143492,178.747211,179.443810,180.210068,181.580045,182.137324,182.648163,183.042902,183.600181,184.598639,186.711655,188.290612,188.708571,190.055329,191.030567,191.843265,192.516644,193.468662,194.467120,195.303039,196.278277,197.462494,198.553832,199.296871,199.645170,200.225669,201.200907,201.897506,202.431565,203.197823,205.543039,206.959456,207.748934,208.120454,208.584853,208.979592,209.583311,210.442449,211.255147,211.789206,212.416145,212.973424,213.902222,216.595737,217.315556,217.803175,218.314014,218.917732,219.614331,220.101950,221.007528,222.214966,222.981224,223.840363,224.188662,224.653061,225.396100,227.578776,228.228934,228.855873,229.436372,229.923991,230.318730,231.108209,231.781587,232.106667,232.524626,232.872925,233.406984,235.752200,236.239819,238.050975,238.910113,239.629932,239.931791,240.558730,241.301769,242.044807,243.368345,244.134603,244.529342,245.040181,245.597460,246.944218,247.919456,248.639274,249.428753,250.148571,251.448889,252.725986,253.515465,253.956644,254.467483,255.303401,256.232200,256.859138,257.880816,259.134694,259.877732,260.318912,261.317370,263.918005,264.823583,265.357642,265.752381,266.216780,266.727619,267.377778,267.981497,268.538776,269.351474,272.671927,273.856145,274.575964,275.179683,276.201361,276.921179,277.501678,279.127075,280.009433,280.729252,281.170431,281.495510,282.586848,283.306667,284.235465,284.676644,285.024943,285.489342,285.860862,286.209161,286.696780,287.207619,287.648798,288.229297,288.902676,289.738594,290.156553,290.597732,291.015692,291.851610,292.269569,292.687528,293.407347,294.080726,295.032744,297.610159,298.283537,298.655057,299.096236,300.048254,300.512653,301.162812,301.882630,302.718549,303.484807,304.297506,305.969342,306.619501,307.478639,308.778957,309.173696,309.521995,309.893515,310.265034,310.682993,311.100952,311.913651,312.447710,313.399728 diff --git a/data/torah/labels/Vayera-h.txt b/data/torah/labels/Vayera-h.txt deleted file mode 100644 index d995d2d9d..000000000 --- a/data/torah/labels/Vayera-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.370590,1.023536,1.482362,1.747069,3.547080,4.800029,5.082384,6.688276,8.276521,9.723588,10.217709,10.747124,11.753012,12.529488,13.482434,14.258910,15.229504,16.005979,16.288334,17.735401,19.588354,20.206005,23.382494,23.894262,24.282500,25.376624,25.976628,27.053105,28.076640,28.906057,29.188412,30.211947,30.970776,31.394307,32.629609,32.964905,33.741380,34.464914,34.747269,36.017865,37.729640,38.647293,39.476709,39.900241,40.659069,41.453192,42.035548,42.512022,43.164967,45.953219,46.853224,47.312051,47.753230,48.335586,48.600294,49.129709,49.884209,50.237152,50.854803,52.672461,53.166582,53.413642,54.525413,56.696015,57.825433,58.372495,59.519561,60.225448,60.737216,61.690162,62.801934,63.172524,63.701939,64.760769,65.890188,67.072548,68.413733,69.278444,70.196096,70.954924,71.837283,72.843171,74.007884,76.072602,76.884372,77.572611,78.066732,78.860855,80.572630,81.419694,83.237352,84.349123,84.596183,85.002068,85.990309,86.413841,86.907962,87.596201,88.584443,89.272682,89.696214,90.260923,91.602108,92.890351,93.666826,94.743304,96.913905,97.460967,98.096265,99.313919,101.325696,101.996289,102.225702,102.808058,104.590422,104.943365,106.337491,107.166908,107.996325,108.843389,109.531628,110.572811,111.896348,113.555182,114.543423,115.072838,115.866961,117.102262,117.878738,118.708154,119.837573,120.172869,120.984639,122.237587,123.155240,123.914068,124.796426,126.719967,127.214088,128.061152,129.067040,131.255289,131.537644,132.331766,133.390596,133.920011,134.837664,137.608269,139.214161,140.078872,140.696523,141.825941,142.814182,143.449480,144.296544,145.937731,146.396557,147.067149,147.367151,147.931860,149.025985,149.325986,150.596582,151.320116,152.008356,152.502476,153.914250,155.467200,156.437794,157.108386,157.655449,158.378982,159.420165,159.949580,160.584878,161.908416,162.879010,163.267247,163.831957,164.467255,165.208435,167.396684,167.855510,169.302578,170.061406,170.996706,171.949653,173.220249,174.384962,175.055554,175.937912,176.820270,178.214396,179.608523,180.490881,180.879118,182.661482,183.808548,186.049738,186.543859,186.773272,187.355628,188.414458,189.261522,190.090939,190.390941,191.361535,192.173304,192.455659,192.808602,193.408606,194.008610,194.255670,194.767438,196.214505,197.626279,198.967463,199.390995,199.867469,200.732180,202.161600,203.485138,204.102788,204.579262,206.291037,208.408697,210.279296,210.949889,211.267538,211.620481,212.238132,212.996960,215.273444,215.785212,216.755806,217.814636,218.308757,219.138173,220.338181,225.208798,226.108804,226.532336,227.344105,228.102933,228.861762,229.373529,229.902944,232.991198,233.538260,234.226500,234.844151,235.850039,236.308865,236.891222,238.355937,240.138300,240.650068,241.214777,242.344196,243.367732,243.897147,244.620680,245.255978,245.997159,246.350103,246.738340,247.726582,249.350121,250.903071,251.997196,252.456022,253.056025,253.356027,253.850148,254.414857,255.350157,256.744283,257.026638,257.697230,258.244292,259.479594,260.626660,260.997250,261.597254,262.867850,263.273734,263.979621,266.097281,266.944345,267.191405,268.391412,269.909069,270.667897,272.026728,272.732615,273.720856,274.514979,276.067929,277.285584,277.762057,278.203236,278.573827,279.967953,281.132666,281.644434,282.932677,284.238567,286.303285,287.732706,289.479775,290.538605,290.997431,291.809201,292.479793,292.779795,293.397446,294.685689,296.468053,298.444535,299.009245,299.344541,299.979839,301.162199,303.279859,304.532807,305.079869,305.873992,306.615173,307.303412,307.832827,308.326948,308.768127,309.915193,310.956376,311.979911,323.079978,324.138808,325.285874,325.532934,326.274115,327.138826,328.374128,329.274133,329.803548,330.491788,331.250616,332.027091,332.697684,333.456512,334.127104,336.191822,338.291835,338.856544,339.227135,339.862433,340.127140,340.638908,341.821268,343.109511,344.380107,344.838933,345.721292,346.250707,347.327184,348.597780,348.897782,349.974259,350.750734,351.933094,352.691922,353.644869,356.944889,357.633128,357.986072,359.468434,360.915501,361.197856,363.103750,364.127285,365.380234,366.068474,366.739066,368.274369,369.809673,371.097916,372.386159,373.674402,374.292053,375.139117,375.527354,376.003828,377.415601,379.109729,380.150912,382.021511,384.703880,386.803893,387.509780,388.268608,388.833317,389.221555,389.750970,390.368621,390.827447,391.198037,392.592163,393.598052,394.180408,395.098061,395.680417,396.774542,399.068673,400.621624,400.939273,401.415746,402.633401,403.833408,404.786355,405.686360,406.409894,407.045192,408.192258,410.151093,411.139334,412.692285,413.804056,414.915828,417.068782,418.851146,419.609974,420.580568,420.880570,421.868811,422.945288,423.933529,424.674710,425.186478,425.751187,427.057078,428.362968,429.104149,429.368856,429.739447,430.692394,432.810764,432.905185,433.996523,434.507362,434.902102,435.412941,435.877340,436.434619,437.015117,439.313893,439.847952,440.799970,442.425367,443.702464,445.536841,446.628179,447.046138,447.742736,448.300015,448.926954,449.484233,450.273712,450.854210,451.550809,453.060106,454.592623,455.289222,455.916161,456.310900,457.077158,457.913077,458.540015,459.399154,460.560151,461.163870,462.696387,463.857385,464.646863,465.250582,465.970401,466.318700,467.317158,468.362056,469.824913,470.405412,470.962691,472.889947,474.306365,474.654664,475.328043,477.185639,478.416297,478.671716,479.763054,481.620650,482.386909,482.851308,483.872986,484.732124,485.010764,485.451943,485.846682,486.311081,487.030900,488.215117,489.585095,490.746092,491.442691,492.255390,494.321966,495.111444,496.295662,497.363780,497.758519,498.455117,498.919517,499.523235,500.126954,501.311172,502.402510,503.447408,503.749267,504.329766,505.003145,506.187362,506.907181,507.209040,508.114619,510.111535,510.436614,511.922691,512.874709,513.571308,513.803507,514.825185,515.336024,516.288043,517.077521,517.402600,519.306637,519.956795,520.606954,521.791172,522.627090,522.998609,523.555888,524.507907,526.086863,527.549721,527.898020,528.315979 diff --git a/data/torah/labels/Vayeshev-1.txt b/data/torah/labels/Vayeshev-1.txt deleted file mode 100644 index 0b8418514..000000000 --- a/data/torah/labels/Vayeshev-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.820463,4.879293,6.216762,7.275592,8.139374,9.337524,10.591401,12.569741,13.628571,15.523320,16.777197,18.783401,19.396408,20.232327,21.012517,22.071347,23.241633,23.631728,24.328327,25.275701,26.613170,28.201415,29.037333,29.566748,31.154993,31.963048,32.492463,33.467701,34.860898,36.086912,37.452245,39.319129,40.294367,41.381061,42.579211,43.470857,44.780463,47.427537,48.904327,49.378014,50.046748,51.161306,51.830041,52.888871,53.223238,54.031293,54.950803,55.814585,57.068463,57.848653,59.018939,60.244952,62.028245,64.090177,65.065415,66.625796,67.963265,69.245007,70.554612,71.279075,73.229551,74.344109,75.597986,76.740408,78.077878,79.610395,81.867374,82.870476,83.873578,85.211048,87.245116,89.418503,90.365878,91.452571,92.678585,94.183238,95.632163,97.499048,99.003701,100.369034,101.483592,102.542422,103.935619,107.864435,109.396952,111.208109,112.239075,113.409361,114.579646,116.195755,118.341279,120.068844,121.852136,123.050286,124.471347,126.143184,128.873850,131.660245,133.777905,135.756245,136.452844,137.260898,138.904871,140.186612,141.356898,142.415728,143.084463,144.282612,145.369306,148.072109,148.629388,149.994721,150.858503,152.000925,153.338395,154.230041,155.511782,157.350803,158.186721,158.939048,159.970014,161.558259,162.477769,163.648054,166.072218,167.158912,168.412789,169.220844,169.945306,171.199184,173.400435,175.434503,177.301388,178.193034,179.319894,180.963867,182.162017,183.694534,184.084629,184.753364,186.118697,187.149663,188.710044,189.434507,190.214697,191.970126,192.750316,193.502643,195.285935,196.539813,197.877282,198.824656,200.580085,202.363377,203.756575,205.094044,206.542969,208.214806,209.134316,210.165282,211.669935,212.171486,212.979541,214.400602,215.515160,215.849527 diff --git a/data/torah/labels/Vayeshev-2.txt b/data/torah/labels/Vayeshev-2.txt deleted file mode 100644 index ab9e1be1f..000000000 --- a/data/torah/labels/Vayeshev-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.940974,4.912033,6.597105,7.568163,8.053693,9.224675,10.995429,12.394895,14.222770,14.879663,16.650416,18.164125,19.135184,20.420408,21.477148,22.962297,24.533127,25.618427,26.932212,27.703347,28.760087,30.159554,31.958868,32.787124,33.244093,34.443635,35.043407,35.871663,36.557116,37.642416,38.499233,39.298928,40.669834,42.154982,44.182781,45.667929,46.867472,48.466863,49.809208,51.551401,52.208294,53.579200,54.892985,56.349573,58.920022,60.547973,61.976000,62.889937,64.003799,67.116898,68.173638,68.973333,70.058634,71.172495,72.771886,73.371657,74.314155,75.513698,76.427635,77.541497,79.140887,80.111946,81.597094,82.539592,84.024740,85.081480,86.281023,87.937535,89.165638,90.450863,91.307679,92.650024,93.649644,95.620321,97.505317,98.819102,99.990084,101.303869,102.874699,104.131363,105.016740,107.101660,107.815673,109.557867,111.242939,111.956952,112.328239,112.928011,115.155733,116.840805,118.240272,119.582618,120.753600,123.209807,124.352229,127.094041,128.807673,130.435624,131.635167,134.634024,135.747886,136.833186,138.432577,140.945905,141.745600,142.688098,144.515973,146.315287,147.429148,149.285584,150.970656,153.541105,155.226177,156.140114,157.625263,159.053290,160.624120,162.223510,162.823282,163.651537,164.251309,165.450852,167.392969,168.249785,169.078041,169.677812,170.934476,172.276822,173.733410,174.475984,175.332800,175.904011,178.017491,179.502639,180.388016,181.701801,183.729600,184.672098 diff --git a/data/torah/labels/Vayeshev-3.txt b/data/torah/labels/Vayeshev-3.txt deleted file mode 100644 index 37323c0c2..000000000 --- a/data/torah/labels/Vayeshev-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.090315,6.451701,6.916564,7.779882,8.510382,9.406904,11.399176,11.963654,12.461722,13.125812,14.387585,15.084880,15.881789,16.944334,17.840856,18.770583,20.563628,22.489491,23.386014,24.880218,26.573649,27.237740,28.001444,28.765148,29.694875,32.782897,34.077874,34.974396,36.202964,37.165896,38.759713,40.021486,41.283258,42.677849,44.736530,46.463166,48.090188,50.115664,51.543459,52.705618,54.332640,55.494799,56.656958,57.785912,59.014480,60.243048,60.774320,61.438411,62.368138,63.762728,64.725660,65.987432,66.651523,67.348818,69.407499,69.905567,70.503249,73.059998,74.919452,77.409792,78.970405,79.534883,80.099360,80.597428,81.427541,81.958814,82.855336,84.050699,85.179654,86.541039,88.699334,90.791220,92.418242,94.875378,96.900854,98.262240,98.693899,98.926331,99.822854,100.453740,101.881535,103.110102,104.371875,105.965693,107.725533,108.356419,109.584987,110.149464,110.581123,111.942509,113.469917,114.200417,115.229758,115.993462,116.889985,117.620484,118.417393,119.679166,121.173370,121.638233,122.202710,124.095369,124.726255,125.489959,126.950959,128.544776,129.507708,130.769480,131.832025,132.894571,133.857502,135.584138,136.082206,137.011933,137.642819,139.303046,140.764045,141.760181,143.221181,143.719249,144.516158,145.844339,147.869816,149.729270,150.492974,152.452042,154.012655,154.444314,155.374041,156.934654,157.797972,158.926926,160.155494,160.487539,162.944675,164.970151,166.198719,167.028833,167.593310,170.282877,171.279013,172.540785,173.536922,174.865103,175.695216,177.587875,179.048874,180.111420,181.672033,183.431873,184.195577,185.988622,187.848076,188.711394,190.105985,191.832620,192.629529,193.326824,194.123733,195.153074,198.008664,198.838777,199.735300,200.432595,201.495140,204.184707,205.878139,207.637979,210.460365,211.556114,213.083523,213.648000,214.876568,216.370772,218.163817,219.491998,220.620952,222.115156,224.207042,225.601633,226.431746,227.195450,228.191586,230.117449,231.179995,232.142926,233.537517 diff --git a/data/torah/labels/Vayeshev-4.txt b/data/torah/labels/Vayeshev-4.txt deleted file mode 100644 index 832558145..000000000 --- a/data/torah/labels/Vayeshev-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.569687,4.935020,6.077442,7.470639,8.919565,9.978395,11.176544,13.489252,14.325170,14.798857,16.414966,17.640980,18.922721,20.538830,21.012517,23.520272,24.579102,25.080653,26.334531,27.281905,28.786558,30.486259,31.628680,32.603918,34.164299,35.055946,35.641088,36.950694,37.563701,38.343891,39.346993,40.768054,41.576109,42.802122,43.387265,44.669007,45.142694,45.978612,47.232490,48.820735,49.517333,50.687619,51.634993,52.944599,53.669061,54.365660,55.508082,57.040599,58.600980,60.412136,61.582422,63.198531,65.678422,67.155211,68.632000,69.830150,71.251211,72.616544,75.068571,76.461769,77.715646,78.969524,80.502041,82.341061,82.954068,85.127456,86.910748,88.889088,89.808599,91.201796,92.232762,93.625959,94.238966,95.130612,96.802449,97.749823,98.975837,99.978939,101.316408,103.573388,104.158531,105.746776,106.749878,107.557932,108.672490,109.452680,111.988299,112.768490,113.270041,114.217415,114.830422,115.638476,116.975946,118.034776,119.511565,120.598259,121.183401,122.715918,124.415619,125.836680,126.839782,128.149388,128.957442,130.573551,131.353741,132.189660,133.582857,135.672653,136.731483,138.264000,139.545741,141.746993,142.360000,143.753197,144.728435,145.313578,146.149497,147.208327,148.601524,149.521034,150.440544,150.969959,151.555102,152.084517,152.948299,154.425088,155.428190,156.542748,157.544346,158.658903,160.052101,161.027339,162.281216,162.699176,163.618686,164.315284,165.179067,166.432944,168.494876,169.553706,170.306033,171.002631,171.950006,172.897380,175.683774,177.188427,178.971720,180.838604,182.398985,183.485679,184.488781,185.854114,187.581679,188.696237,190.312346,191.315448,192.318550,194.826305,195.940863,198.086386,200.510550,202.321706,203.714903,205.498196,206.863529,208.312455,209.231965,211.182441,211.823312,212.464182,213.216509,214.637570,215.612808,216.448727,217.173189,218.120563,220.990550,221.937924,222.634523,223.358985,224.696455,226.563339,227.984400,229.879148,231.049434,232.136128,233.083502,234.253788,235.786305,237.346686,238.099012,239.659393,241.275502,242.417924,242.835883,243.643938,244.535584,245.761597,246.736835,247.600618,248.575856,249.857597,250.888563,252.086713,252.978359,253.396318,253.786414,254.510876,255.458250,256.795720,259.359203,261.393271,262.730740,263.455203,263.984618,264.597625,265.210631,268.052754,268.888672,269.445951,270.560509,271.145652,272.678169,274.990876,276.384074,278.195230,279.031148,279.672019,280.145706,282.430550,283.656563,285.105489,287.195284,287.808291,289.006441,289.842359,290.817597,292.656618,293.492536,294.830006,296.000291,297.226305,298.201543,299.483284,300.932210,302.408999,303.997244,304.805298,306.170631,307.535965,308.817706,309.960128,310.489543,312.300699,313.693897,315.031366,316.452427,318.235720,319.712509,320.604155,321.607257,322.805407,324.198604,326.204808,327.040727,327.737325,328.545380,329.520618,330.941679,333.616618,334.898359,336.180101,336.960291,337.851938,339.105815,340.777652,341.418523,342.310169,343.703366,345.403067,346.043938,346.684808,347.938686,348.802468,349.917026,351.003720,351.895366,353.065652,354.040890,354.960400,355.461951,356.381461,357.941842,359.446495,360.282414,361.592019,362.065706,362.734441,363.876863,364.601325,366.273162,367.527040,368.808781,369.728291,370.954305,372.040999,373.211284,375.356808,376.582822,378.338250,380.037951,381.236101,381.904835,383.548808,384.524046,385.666468,387.700536,388.787230,389.846060,391.099938,392.716046,393.802740,395.307393,397.034958,398.929706,400.629407,402.022604,403.304346,403.589435,404.592537,405.567775,406.487285,407.769026,408.382033,409.134360,410.304645,411.586387,412.979584,414.066278,414.456373,415.626659,418.078686,420.725761,422.091094,423.289244,425.434768,427.719611,429.029217,430.673190,431.787747,432.456482,432.846577,433.236673,433.821816,434.824918,435.911611,436.942577,437.889952,438.419367,439.255285,441.122169,443.267693,444.326523,445.301761,446.221271,447.307965,448.896210,450.289407,451.821924,452.964346,453.465897,455.082006,457.951992,459.428781,460.320428,461.100618,462.075856,462.967503,464.332836,465.530986,466.366904,468.958251,470.184264,472.357652,473.667258,475.199775,476.258605,479.156455,480.661108,481.441298,482.918088,483.670414,485.063611,486.122441,487.041952,488.574469,489.605435,490.524945,491.778822,492.698333,493.450659,494.788128,496.655013,498.048210 diff --git a/data/torah/labels/Vayeshev-5.txt b/data/torah/labels/Vayeshev-5.txt deleted file mode 100644 index eb7b5f50f..000000000 --- a/data/torah/labels/Vayeshev-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.482482,5.396038,6.424218,9.423075,11.565116,13.078824,13.907080,15.734955,16.734574,17.848435,18.819494,19.961916,21.561306,22.560925,23.646226,24.874329,26.559401,27.387657,27.787505,28.472958,30.386514,31.186210,32.014465,33.071205,35.470291,36.384229,37.755135,39.211722,40.297023,41.268082,42.039216,43.210199,44.409741,45.409361,45.952011,46.694585,47.808446,49.122231,50.378895,51.749801,52.720860,53.634797,55.091385,56.662215,57.233426,58.804256,59.346906,60.118041,60.860615,61.346144,62.088718,62.659929,63.545306,66.401361,68.086433,69.400218,70.714003,71.799303,73.655739,74.312631,75.140887,76.140506,76.483233,77.882699,80.110422,80.967238,81.452767,82.309584,83.109279,84.365943,86.650786,88.307298,89.049872,89.821007,90.734944,91.191913,91.763124,93.134030,94.504936,96.418493,96.875461,97.446672,97.903641,99.160305,100.245605,101.245224,101.844996,102.616131,104.158400,105.129459,106.043396,106.785970,107.557105,108.185437,108.756648,110.213235,111.527020,113.097850,113.783303,115.154210 diff --git a/data/torah/labels/Vayeshev-6.txt b/data/torah/labels/Vayeshev-6.txt deleted file mode 100644 index e936c7bd7..000000000 --- a/data/torah/labels/Vayeshev-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.712490,5.997714,7.340060,8.054073,9.624903,11.395657,12.766563,13.509137,14.565878,15.337012,16.165268,17.593295,18.935641,20.249426,29.503042,30.674024,31.416599,32.387657,33.558639,35.158030,36.271891,37.043026,37.642797,38.585295,39.442112,40.213246,41.355668,42.155363,42.469529,42.840816,44.068920,45.582629,47.067777,48.295880,49.552544,51.237616,52.579962,53.465339,54.350716,55.236093,56.521317,57.463815,58.206389,59.006084,60.519793,61.176686,61.947820,63.318727,64.918117,66.717431,67.916974,68.888033,70.887271,72.886509,75.685442,77.656120,78.141649,78.998465,79.712479,80.397932,81.626035,82.225807,82.968381,85.453148,86.538449,87.623750,88.851853,90.051396,91.450863,92.336239,93.678585,94.821007,96.363276,97.677061,98.848044,100.047586,101.504174,102.989322,104.274547,105.302727,107.730373,109.615369,111.129078,112.385741,113.328239,114.813388,115.727325,117.012550,118.583380,119.725801,120.982465,122.153448,123.381551,124.124125,124.866699,125.837758,127.094422,128.522449,129.721992,131.864033,133.320620,135.519782,137.090612,138.004550,138.718563,141.289012,142.574237,143.630977,144.630596,145.915820,147.372408,147.857937,149.028920,150.028539,151.199521,152.056337,153.884212,154.826710,155.997693,157.882688,159.596321,160.881546,161.824044,162.766541,164.680098,166.507973,167.479031,168.650014,169.963799,171.106220,172.191521,173.733790,174.847652,175.990073,176.875450,177.360980,178.360599,178.931810,179.874307,181.787864,182.758922,184.244071,185.158008,186.214748,187.442852,187.871260,190.303962,192.674488,193.674107,194.273878,195.444860,196.615843,197.644022,199.928866,201.356893,202.442194,203.955903,205.640975,207.354607,208.754074,209.953617,211.238841,213.780730,215.151636,216.094134,216.922390,217.636403,219.378596,220.578139,221.806243,222.577377,223.348512,225.090705,226.118885,227.289867,227.918199,229.032060,230.574330,231.745312,234.401443,235.600986,236.800528,239.113932,240.570520,241.113171,241.627260,242.598319,244.997405,246.082705,246.996643,248.139064,249.452849,250.795195,251.423527,252.023298,252.965796,254.907913,255.850411,256.278820,257.249878,258.363739,259.277677,260.762825,262.076610,262.933426,264.618498,265.446754,266.017965,266.703418,269.045383,269.930760,270.359168,271.073181,271.758635,272.758254,273.615070,274.414765,275.614308,276.928093,278.184757,279.184376,280.469601,281.069372,281.669143,282.725884,283.354215,284.325274,285.239211,286.324512,287.381252,289.323369,289.951701,291.436849,292.750635,293.264724,293.636011,294.321464,294.978357,296.891913,297.720169,298.891152,300.633345,301.118874,302.032811,303.218 diff --git a/data/torah/labels/Vayeshev-7.txt b/data/torah/labels/Vayeshev-7.txt deleted file mode 100644 index d4247025c..000000000 --- a/data/torah/labels/Vayeshev-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.103151,6.357029,7.332267,8.140321,10.313709,11.316811,11.929818,12.905056,14.744076,16.443777,17.279695,18.477845,20.205410,21.124920,22.239478,23.103260,24.329274,25.248784,26.084702,27.338580,28.453138,29.149736,30.208566,31.350988,32.465546,34.945437,36.617274,37.481056,38.818525,39.403668,39.877355,40.991913,43.527532,44.642090,45.728784,46.648294,47.539940,51.588174,52.272473,53.470623,54.585180,56.340609,57.761670,59.544963,60.157970,61.439711,62.359221,64.198242,66.538813,67.597643,68.795793,70.161126,71.108500,72.223058,72.947521,74.424310,75.733915,76.514106,78.130214,80.387194,81.501752,82.839221,83.870187,85.096201,86.600854,87.715412,88.913561,91.142677,92.786650,94.291303,95.545180,97.049833,97.997208,99.501861,101.006514,103.486405,104.461643,105.687657,107.638133,108.780555,110.619575,112.681507,113.684609,114.687711,115.774405,117.585561,118.923031,120.149044,121.375058,123.409126,124.022133,125.498922,126.641344,128.313180,129.232691,129.929289,131.043847,132.576364,134.805480,136.421589,137.480418,138.845752,140.350405,140.768364,141.437099,142.830296,144.669316,146.341153,147.288527,148.347357,149.434051,150.994432,151.607439,154.143058,155.564119,156.149262,157.486731,159.660119,160.969725,162.307194,163.505344,164.759221,166.040963,166.876881,169.301044,170.833561,172.171031,173.508500,174.734514,175.849072,177.047221,177.688092,179.443521,181.561180,182.369235,182.954378,183.623112,184.737670,185.796500,186.660282,187.301153,187.942024,188.415711,189.363085,190.951330,191.536473,192.651031,194.629371,195.883248,197.248582,199.254786,200.341480,201.456038,202.514867,204.493208,205.579901,207.391058,209.090759,209.731629,210.679004,211.152691,213.022786,213.830840,214.304527,215.809180,217.202378,217.731793,218.846350,220.323140,221.270514,222.385072,223.527493,225.366514,227.010487,228.069316,229.378922,231.524446,232.750459,233.669970,234.282976,236.094133,236.512092,237.487330,238.406840,239.800038,240.385180,241.221099,242.502840,243.394487,244.146813,244.899140,245.902242,246.598840,247.518350,248.577180,250.026106,251.447167,251.920854,252.868228,253.564827,254.512201,255.180935,255.682487,256.546269,257.744418,259.137616,259.889942,260.809452,261.394595,261.840418,262.759929,263.679439,264.320310,264.682541,265.323412,265.824963,266.995248,269.670187,271.676391,272.763085,273.682595,274.239874,274.880745,276.246078,278.224418,279.951983,281.512364,282.431874,283.936527,284.688854,287.085153,288.283303,289.787956,290.484555,291.153289,292.156391,293.410269,294.998514,295.778704,296.809670,298.230731,299.428881,300.627031,301.741589,302.828282,303.831384,304.667303,306.562051,307.314378,308.874759,309.989316,311.215330,311.772609,312.246296,313.611629,314.893371,315.896473,316.927439,317.373262,318.655004,319.992473,320.828391,321.942949,323.280418,325.119439,326.150405,327.850106,328.853208,329.689126,330.218541,330.831548,331.834650,332.698432,333.478623,334.481725,335.874922,337.323847,338.243357,339.302187,341.391983,342.478677,343.342459,344.345561,345.404391,346.106375,347.290593,349.148189,349.496489,349.891228,351.214765,351.864924,352.677622,353.908280,354.837078,355.603337,355.974856,356.833994,358.529051,359.481069,360.549187,361.477985,362.638983,364.055400,365.053858,366.191636,367.329414,368.467191,369.070910,370.556987,371.230366,372.182384 diff --git a/data/torah/labels/Vayeshev-H.txt b/data/torah/labels/Vayeshev-H.txt deleted file mode 100644 index 293121d1e..000000000 --- a/data/torah/labels/Vayeshev-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.021678,2.298776,3.397079,4.572009,5.363810,6.794159,8.250050,9.169560,10.037986,10.778703,13.154104,14.073615,14.916499,15.887093,17.138649,18.671166,19.743927,21.506322,23.141007,23.600762,24.239311,24.852317,25.925079,27.048925,28.198313,29.219991,31.339973,32.438277,34.839220,35.860898,36.652698,37.802086,38.670512,39.487855,40.075320,40.535075,41.735546,43.140354,44.162032,45.183710,46.384181,47.584653,48.376454,49.960054,51.364862,52.360998,53.714721,54.557605,56.498794,59.078531,60.815383,61.326222,62.041397,63.599456,64.799927,66.409070,67.073161,68.503510,69.882776,70.649034,72.513596,74.582494,75.757424,76.906812,78.745832,80.687020,83.445551,84.875900,85.744327,86.791546,88.656109,90.009832,91.031510,92.359692,94.147628,95.169306,96.523029,97.340372,97.723501,99.307102,101.095039,102.218884,104.006821,105.845841,107.352816,109.600508,110.647728,111.873741,112.716626,113.687220,114.504562,116.088163,117.518512,118.029351,118.770068,120.583546,121.937270,122.575819,124.440381,124.951220,126.330485,127.965170,130.085152,131.311166,132.358385,134.708245,136.240762,137.211356,138.948209,140.301932,141.068190,142.549624,144.260934,144.976109,146.202122,147.658014,148.398730,149.139447,150.952925,152.383274,153.302785,154.043501,155.499392,157.389497,158.462259,159.611646,160.939828,161.987048,163.136435,163.902694,165.869424,167.325315,168.934458,169.751800,170.952272,172.152744,173.787429,174.553687,177.261134,178.538231,180.428336,181.245678,181.858685,182.650485,184.285170,185.409016,186.864907,187.605624,189.904399,190.926077,192.560762,194.450866,195.549170,196.545306,198.358785,199.431546,200.351057,201.551528,203.186213,205.255111,206.608834,207.502803,208.677732,209.827120,211.155302,212.304689,213.122032,214.296961,216.391401,217.183202,217.591873,218.434757,219.992816,221.116662,221.704127,223.236644,224.820245,225.944091,228.140698,229.315628,230.337306,231.869823,233.632218,234.628354,235.982077,237.514594,238.050975,239.532408,240.835048,242.393107,243.031655,245.560308,247.118367,247.986794,249.008472,250.540989,251.281705,252.175673,253.222893,254.065778,255.419501,256.287927,257.820444,259.480671,259.863800,260.349098,261.753905,263.107628,264.078222,265.431946,266.862295,267.756263,268.496980,269.544200,270.770213,271.587556,273.784163,274.678132,275.316680,275.980771,276.874739,278.075211,278.841469,280.195193,281.446748,282.034213,284.256363,285.405751,286.504054,288.624036,290.054385,290.871728,291.561361,292.812916,293.732426,294.524227,296.158912,297.640345,298.789732,299.453823,300.015746,301.522721,302.927528,303.770413,305.124136,306.503401,307.116408 diff --git a/data/torah/labels/Vayetzei-1.txt b/data/torah/labels/Vayetzei-1.txt deleted file mode 100644 index bd6e10b86..000000000 --- a/data/torah/labels/Vayetzei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.063492,5.433469,6.292608,7.221406,8.823583,10.147120,11.702857,13.281814,14.767891,15.325170,15.603810,16.393288,17.275646,18.645624,20.224580,21.246259,22.941315,24.450612,26.052789,27.028027,28.165805,30.952200,32.600816,33.529615,34.620952,35.433651,37.059048,38.080726,39.241723,40.774240,41.865578,42.910476,43.839274,44.837732,46.021950,47.740227,49.226304,50.503401,52.662857,54.241814,56.029751,58.049887,59.419864,60.604082,61.532880,62.926077,63.994195,65.875011,67.268209,68.011247,69.241905,70.240363,71.238821,72.585578,74.048435,75.673832,76.672290,77.995828,78.901406,81.269841,82.337959,83.475737,85.031474,86.053152,87.237370,88.653787,89.280726,90.070204,91.347302,93.158458,94.876735,96.687891,99.265306,101.076463,102.539320,103.166259,104.187937,106.997551,107.833469,109.017687,110.085805,111.014603,112.013061,113.313379,114.311837,115.379955,115.728254,116.517732,117.433395,118.037114,118.919472,120.103690,121.705867,122.216706,124.956661,127.348316,128.509314,129.438112,130.436570,132.224506,133.548044,135.080561,135.800379,137.100697,138.401014,139.399472,140.351491,141.187409,142.185867,143.184325,144.298883,145.088361,147.131717,147.712216,148.362375,149.476933,150.800470,151.729268,152.913486,154.701423,156.164280,158.184416,159.809813,160.274212,160.692171,161.226230,161.853169,163.594665,165.196842,166.357840,167.751037,169.492534,170.723191,171.210810,171.512670,173.765005,174.415164,174.833123,175.576162,176.713940,177.364098,177.758837,179.987953,180.847091,181.404370,181.938429,183.796026,185.374983,186.535980,187.487998,188.440017,189.066955,189.508135,191.133531,193.153667,194.848724,196.195481,196.938520,197.936978,199.144416,200.119654,201.721831,202.046910,203.463327,204.763645,206.087182,207.248180,208.664597,209.941695,210.406094,210.893713,211.776071,213.703327,215.932443,217.093441,219.206457,220.901513,223.107409,224.152307,224.732806,226.009903,227.658520,228.355119,229.353577,230.421695,231.466593,232.418611,232.836570,234.020788,235.367545 diff --git a/data/torah/labels/Vayetzei-2.txt b/data/torah/labels/Vayetzei-2.txt deleted file mode 100644 index eccd61ab3..000000000 --- a/data/torah/labels/Vayetzei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.975238,1.794244,2.660956,3.717735,4.356364,4.713651,5.534788,7.895095,9.125752,11.145888,13.189244,14.536002,15.534460,16.997317,17.949335,18.227975,19.272872,20.178451,21.432328,21.919947,22.825526,23.452464,24.520582,26.378179,27.515956,28.537634,29.071693,29.373553,30.209471,31.811648,32.229607,32.833326,34.807022,36.594959,36.896818,37.639857,38.638315,39.427793,40.844210,42.957226,43.398405,44.095004,46.765299,47.322578,48.715775,49.319494,49.807113,51.084210,52.593507,54.451104,55.403122,56.726659,58.259176,59.164755,59.907793,61.742170,63.739086,64.969743,66.641580,67.542935,69.211688,69.885067,70.372686,70.976405,71.603343,73.298400,74.552278,75.806155,76.340214,77.594092,78.840313,80.496586,81.676131,82.865021,84.095679,85.187017,86.812414,87.392913,88.321711,91.038445,92.129783,92.617402,93.592640,94.498219,95.427017,95.961076,97.540033,98.538491,100.256767,101.278445,102.184024,103.298581,106.410055,107.385294,108.290872,109.173230,110.194908,111.286246,112.098944,113.654681,115.187198,115.814137,116.441076,117.718173,118.345112,119.297130,121.015407,122.060305,123.708922,124.893139,125.636178,127.261575,129.072731,129.885430,130.535588,131.835906,132.927244,134.018581,134.993820,135.899398,139.034092,141.379307,142.470645,143.770962,144.676541,146.255498,147.277176,147.834455,149.018672,149.854591,151.224568,151.572867,152.594545,153.476903,154.266382,155.984659,158.283434,160.489330,161.046609,161.580668,162.532686,163.624024,164.738581,168.105475,168.593094,169.057493,169.893411,171.333049,172.354727,174.142663,175.698400,177.509557,179.065294,179.761892,180.435271,182.037448,184.336223,185.427561,188.074636,189.189194,190.141212,191.395089,192.184568,193.392006,193.972504,194.970962,195.783661,197.618037,199.104114,200.822391,203.423026,204.909103,206.441620,207.416858,209.274455,211.155271,211.805430,213.988105,215.892142,217.726518,219.537674,219.909194,221.488151,221.952550,224.042346,224.901484,225.528423,227.478899,228.918536,230.056314,230.776133,231.751371,233.539307,235.327244,235.901575,237.317992,238.432550,240.661665,242.565702,243.657040,245.328876,246.489874,247.581212,248.649330,250.878445,251.760804,253.386201,254.663298,255.824296,256.660214,258.750010,260.212867,261.652504,262.581303,263.881620,265.785656,267.968332,269.222210,269.942028,271.033366,272.287244,273.448241,274.632459,276.025656,277.325974,279.113910,280.251688,281.552006,283.130962,284.129420,285.197538,285.870917,287.426654 diff --git a/data/torah/labels/Vayetzei-3.txt b/data/torah/labels/Vayetzei-3.txt deleted file mode 100644 index fd76d403b..000000000 --- a/data/torah/labels/Vayetzei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.688889,5.942766,6.662585,7.289524,10.029478,11.770975,13.001633,14.232290,15.764807,16.972245,18.411882,20.292698,22.266395,23.729252,24.750930,25.540408,26.724626,28.233923,29.673560,31.089977,31.925896,33.388753,35.014150,38.125624,40.029660,41.933696,43.001814,43.768073,45.741769,46.786667,48.412063,49.619501,51.569977,53.195374,54.774331,56.492608,56.910567,57.560726,59.093243,59.511202,60.834739,61.879637,63.412154,64.666032,66.941587,68.241905,70.308481,72.142857,73.048435,73.443175,74.186213,75.556190,77.042268,78.296145,80.478821,81.500499,82.940136,83.752834,84.635193,85.680091,87.328707,88.675465,90.161542,92.042358,93.574875,95.339592,96.221950,97.243628,98.218866,99.078005,100.656961,102.119819,103.350476,104.882993,107.228209,108.273107,109.944943,110.548662,111.570340,113.195737,113.869116,115.657052,116.701950,117.027029,118.420227,119.047166,120.765442,121.926440,124.109116,125.200454,126.686531,128.451247,130.471383,131.562721,132.514739,133.327438,134.209796,135.788753,136.880091,138.830567,139.736145,141.384762,143.335238,144.798095,145.703673,147.352290,148.397188,149.674286,150.231565,152.135601,153.668118,154.898776,156.640272,157.870930,159.542766,160.703764,161.493243,162.840000,164.535057,165.672834,166.740952,168.761088,170.061406,170.641905,172.290522,173.126440,174.032018,174.612517,175.819955,176.771973,178.211610,180.162086,181.114104,182.762721,183.807619,184.736417,185.525896,186.872653,188.265850,189.868027,191.563084,192.886621,193.397460,194.535238,196.230295,196.950113,197.275193,197.902132,199.550748,201.849524,202.871202,204.032200,205.146757,205.495057,207.375873,208.838730,209.651429,210.371247,211.369705,212.553923,214.457959,215.177778,215.944036,217.499773,219.171610,221.168526,221.911565,223.490522,224.163900,225.858957,227.089615,228.575692,230.224308,232.453424,233.289342,234.380680,235.239819,236.958095,237.817234,238.792472,240.441088,241.811066,244.016961,245.572698,246.617596,247.569615,250.123810,251.331247,252.492245,253.421043,254.210522,255.278639,256.578957,258.111474,258.738413,259.736871,260.108390,260.596009,262.128526,263.521723,265.100680,267.144036,268.792653,270.000091,270.952109,272.809705,274.713741,275.619320,277.546576,278.196735,279.032653,280.704490,281.702948,282.515646,283.723084,285.139501,286.021859,286.439819,287.554376,288.274195,289.899592,291.780408,293.173605,294.868662,296.888798,298.398095,299.489433,301.207710,301.672109,302.182948,303.831565,305.271202,306.455420,307.639637,309.241814,311.424490,312.840907,314.582404,316.881179,317.879637,318.576236,319.365714,321.223311,323.057687,324.241905,326.145941,328.491156,329.025215,329.861134,331.091791,331.579410,332.577868,333.808526,334.481905,335.805442,336.920000,338.591837,338.986576,340.031474,342.005170,345.209524,347.067120,347.972698,349.296236,350.225034,350.944853,352.198730,353.545488,354.265306,357.864399,359.675556,361.800689,363.193887,364.169125,365.330122,367.025179,367.466358,368.441596,369.974113,370.601052,371.460190,373.526766,374.989624,376.382821,377.172299,377.799238,379.494295,380.887492,382.303909,383.743546,385.276063,387.249760,388.132118,389.478875,391.661551,392.706449,394.819465,395.794703,397.512980,398.859737,400.043955,401.669351,402.807129,404.061007,404.664726,405.477424,406.336562,407.660100,408.890757,410.237515,411.491392,413.534748,414.231347,417.412481,419.037878,420.547175,421.406313,422.660190,423.914068,425.887764,427.931120,430.137016,432.203592,434.595247,436.870803,437.962141,439.053478,439.866177,441.027175,442.257832,443.511710,445.531846,447.776072,448.937070,449.865868,451.282285,452.512943,454.463419,454.951038,455.949496,457.551673,458.991310,460.941786,462.915482,465.121378,467.838113,469.904689,471.228226,472.203464,473.550222,475.059519,476.731355,477.869133,478.6,479.355210,480.864507,481.607546,482.327365,483.395482,486.297977,487.528634,488.828952,489.780970,490.756208,492.033306,493.774802,495.911038,496.863056,499.788770,501.158748,502.296526,503.480743,504.920380,505.524099,506.197478 diff --git a/data/torah/labels/Vayetzei-4.txt b/data/torah/labels/Vayetzei-4.txt deleted file mode 100644 index ade16d9e8..000000000 --- a/data/torah/labels/Vayetzei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.436553,4.597551,6.501587,7.407166,9.125442,10.866939,12.051156,13.351474,15.116190,16.114649,17.020227,17.902585,18.831383,20.433560,21.269478,22.035737,22.569796,23.545034,24.264853,24.798912,26.633288,27.980045,29.466122,31.463039,32.902676,34.458413,34.899592,35.712290,38.475465,39.427483,40.007982,40.890340,42.144218,43.560635,45.464671,46.625669,48.065306,48.854785,49.969342,51.339320,52.639637,54.032834,55.449252,56.610249,57.190748,59.071565,60.255782,61.509660,63.135057,65.642812,66.873469,68.197007,69.334785,70.495782,71.610340,73.305397,75.070113,76.231111,77.717188,78.808526,79.946304,81.060862,82.454059,83.707937,84.497415,85.008254,87.051610,88.166168,89.327166,90.418503,91.672381,92.903039,94.946395,96.432472,97.384490,98.684807,99.706485,100.472744,101.935601,103.212698,104.559456,105.743673,107.554830,109.110567,109.714286,110.387664,111.548662,112.268481,112.872200,114.126077,115.705034,117.864490,119.164807,120.260632,122.025349,122.930927,123.604306,124.742083,126.251380,126.947979,127.969657,128.666256,129.409294,130.314873,131.243671,132.543988,133.263807,133.681766,135.028523,136.653920,137.675598,138.116777,139.277775,139.672514,140.345893,141.460451,143.039408,144.061086,144.525485,145.082764,146.731380,147.753058,148.774737,150.167934,150.585893,151.839771,153.163308,154.301086,154.719045,157.226800,158.364578,159.386256,160.175734,161.290292,162.683489,163.890927,164.889385,166.421902,167.582900,168.906437,171.135553,172.319771,173.155689,174.038047,176.731562,178.426619,179.959136,181.027254,181.468433,182.165031,183.418909,184.301267,184.974646,185.578365,186.901902,188.364759,189.456097,190.129476,192.033512,193.542809,194.332288,195.353966,196.189884,197.559861,198.604759,200.555235,201.971653,203.086210,204.758047,205.663625,206.638863,207.544442,208.287480,209.773557,210.539816,211.770473,213.140451,213.790610,214.603308,215.299907,216.414464,217.436142,218.248841,219.200859,221.987254,223.960950,225.098727 diff --git a/data/torah/labels/Vayetzei-5.txt b/data/torah/labels/Vayetzei-5.txt deleted file mode 100644 index b99e235a4..000000000 --- a/data/torah/labels/Vayetzei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.435011,7.523265,10.100680,11.865397,14.117732,16.068209,17.345306,18.993923,20.271020,21.524898,22.941315,24.543492,26.586848,27.747846,28.537324,30.093061,31.602358,35.158622,37.294858,38.386196,39.245334,40.777851,42.008509,44.005425,45.491502,48.393996,50.344473,52.387829,54.593724,57.287239,59.539575,61.002432,61.931230,63.069008,65.483883,67.504019,68.595357,69.547375,70.267194,71.822931,73.216128,74.191366,74.562885,75.398804,76.559801,77.627919,78.301298,78.928237,80.483974,81.575312,84.292046,85.778123,87.217761,88.819937,90.770414,91.467012,93.185289,96.134223,97.620300,99.013498,100.267375,101.915992,103.587829,106.095584,107.349461,107.906740,108.394359,109.903656,112.155992,113.734949,115.406786,117.194722,118.889779,120.724155,121.304654,122.744291,124.183928,125.461026,126.482704,127.179303,128.061661,129.106559,130.755176,131.869733,132.612772,134.307829,135.608146,137.860482,140.205697,141.947194,143.595811,145.151547,146.196445,147.798622,149.331139,150.770776,151.722795,153.301752,154.369869,156.390006,158.177942,161.080436,162.775493,163.216672,164.981389,167.419484,170.229098,171.018577,172.365334,174.037171,176.150187,178.007783,179.656400,180.724518,181.397897,182.605334,184.137851,184.741570,186.854586,188.712182,190.035720,191.753996,194.377851,195.724609,197.605425,198.743203,200.415040,201.692137,203.178214,206.289688,208.681343,209.540482,210.051321,211.607058,213.998713,215.351031,216.111716,218.803373,220.383259,222.460516,223.601545,225.737316,226.995373,229.482231,230.681773,232.466459,233.987831,235.801773,237.264631,239.166345,240.365888,242.121316,245.368859,246.188059,247.153545,248.587145,249.815945,252.127259,254.935945,256.106231,258.710116,260.290002,262.308745,263.274231,265.410002,266.434002,268.716059,270.617773,271.934345,274.157888,275.503716,276.703259,277.932059,280.067831,281.238116,283.081316,284.631945,286.985251,290.613137,291.929708,293.187765,296.865842,298.123899,300.376699,301.283671,303.126871,304.355671,305.028585,306.901042,307.895785,309.475671,310.762985,311.904014,313.571671,314.829728,316.585156,317.375099,317.813956,319.072014,321.953487,323.504115,325.405829,326.751658,329.209258,330.613601,332.690858,333.510058,335.587315,337.050172,338.600801,340.853601,343.194172,345.885829,348.109372,349.513715,351.620229,352.585715,354.194858,355.979544,357.588687,359.782972,361.830972,363.674172,364.873715,366.102515,367.506858,369.262287,369.788915,371.515087,372.422058,374.148229,375.757372,377.629829,379.765601,383.013144,383.920115,384.944115,385.909601,386.611772,387.723544,390.356687,391.585487,392.931315,394.423429,395.330401,397.115087,399.133829,400.655201,402.527658,405.014515,405.892229,406.974744,408.554629,410.163772,411.597372,412.504344,413.235772,414.289029,415.810401,417.799887,419.555315,421.018172,422.598058,425.172687,426.167429,427.074401,428.332458,430.409715,431.345944,432.048115,433.657258,436.085601,438.016572,439.596458,441.790744,443.136572,444.979772,446.442629,448.022515,450.333829,451.299315,452.732915,454.576115,456.975201,458.467315,459.871658,460.954172,461.831887,463.294744,464.611315,465.284229,466.864115,468.414744,469.585029,471.750058,473.066629,474.675772,476.197144,478.660514,480.298914,481.264400,482.610228,483.253886,485.067828,485.945543,487.145086,489.573428,490.948514,491.796971,494.137543,495.249314,496.507371,498.116514,498.994228,500.018228,501.130000,502.505086,504.406800,506.220743,507.508057,508.298000,510.667828,512.072171,513.564286,515.407486,517.455486,518.508743,519.386457,520.995600,522.195143,523.072857,525.530457,526.847028,528.543943,530.123828,531.732971,532.610686,533.693200,535.858228,537.672171,540.919714,541.768171,542.499600,543.991714,545.805657,546.917428,550.047943,551.364514,552.798114,554.056171,556.162686,558.327714,560.229428,561.780057,563.301428,565.115371,566.900057,567.572971,568.509200,569.942800,571.142343,573.980286,575.443143,577.023028,579.071028,581.031257,582.640400,584.220286,586.004971,587.409314,590.100971,591.154228,591.651600,593.377771,594.869886,596.040171,597.151943,598.527028,599.287714,600.077657,601.364971,602.681543,605.109886,606.602000,607.626000,609.352171,610.288400,611.019828,612.365657,613.711486,614.852514,616.812743,617.807486,618.802228,619.650686,621.289086,623.424857,624.302571,625.882457,627.140514,628.720400,630.329543,631.499828,632.699371,634.367028,636.941657,637.351257,637.936400,638.814114,639.779600,641.447257,642.383486,642.880857,644.841086,646.538000,647.444971,648.556743,650.575486,651.628743,652.828286,654.905543,655.988057,657.567943,659.060057,660.054800,661.605428,664.970000,666.666914,667.866457,669.066000,670.411828,672.372057,673.366800,674.273771,675.063714,676.292514,677.433543,678.428286,680.300743,681.617314,683.197200,684.426000,686.386228,687.527257,688.609771,690.248171,692.910571,694.256400,696.655486,698.557200,700.634457,702.594686 diff --git a/data/torah/labels/Vayetzei-6.txt b/data/torah/labels/Vayetzei-6.txt deleted file mode 100644 index c1bbd66b9..000000000 --- a/data/torah/labels/Vayetzei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.012408,5.154830,7.300354,7.996952,8.554231,9.585197,10.058884,10.671891,11.786449,13.430422,13.931973,14.210612,15.603810,16.411864,16.774095,17.721469,18.780299,20.034177,21.176599,22.374748,23.600762,24.771048,26.052789,26.944435,29.006367,29.563646,30.204517,31.374803,32.266449,33.269551,35.164299,35.888762,37.254095,37.783510,38.675156,40.124082,41.071456,41.823782,43.189116,44.303673,45.028136,47.182966,48.353252,48.938395,49.356354,50.359456,51.808381,52.560707,53.062259,54.037497,54.901279,55.737197,56.823891,57.771265,59.470966,60.390476,61.059211,61.644354,61.978721,63.399782,65.015891,65.517442,66.632000,68.136653,68.582476,69.390531,70.003537,71.006639,72.734204,73.904490,75.186231,76.356517,77.303891,78.418449,79.672327,81.483483,82.012898,82.598041,83.545415,85.161524,86.471129,87.808599,88.895293,89.842667,91.291592,92.294694,93.186340,94.523810,95.805551,98.201850,99.288544,99.901551,101.155429,102.687946,103.523864,104.917061,106.700354,108.818014,110.489850,111.465088,112.245279,112.830422,113.582748,114.808762,115.338177,116.062639,117.623020,118.765442,119.434177,120.047184,123.112218,124.477551,124.951238,125.842884,127.208218,129.214422,130.468299,130.969850,131.666449,132.558095,133.867701,135.455946,136.347592,137.545741,138.548844,139.886313,141.558150,142.199020,142.979211,144.483864,144.873959,145.598422,147.604626,148.858503,150.140245,151.449850,152.843048,154.598476,155.434395,156.883320,157.691374,158.443701,160.087673,162.539701,163.905034,164.796680,165.911238,167.722395,169.059864,170.397333,171.567619,173.183728,174.549061,175.914395,176.973224,178.199238,179.174476,179.871075,181.403592,182.852517,183.827755,185.360272,187.032109,188.258122,189.762776,191.183837,193.050721,195.447020,197.174585,198.484190,199.041469,199.738068,200.713306,201.326313,202.022912,203.471837,205.255129,206.286095,207.233469,207.985796,209.156082,210.326367,211.385197,212.360435,213.363537,214.199456,214.951782,216.205660,217.069442,218.379048,219.410014,220.524571,221.471946,222.335728,223.645333,224.843483,225.679401,226.125224,227.016871,228.632980,231.224327,232.115973,233.230531,233.704218,234.902367,235.682558,236.602068,238.190313,239.778558,241.283211,242.258449,243.150095,244.236789,245.267755,245.992218,246.939592,247.496871,248.360653,249.447347,250.255401,252.038694,253.348299,255.020136,256.106830,257.945850,259.478367,261.289524,263.128544,264.298830,265.775619,266.806585,267.837551,268.952109,270.205986,270.735401,272.156463,273.020245,273.884027,276.029551,277.896435,278.425850,280.125551,282.354667,283.385633,284.388735,285.419701,286.534259,288.038912,289.599293,290.490939,291.215401,291.884136,292.329959,293.583837,295.116354,295.785088,297.429061,298.209252,298.766531,300.104000,301.190694,302.165932,302.918259,303.586993,304.701551,305.816109,306.958531,307.460082,308.463184,309.299102,312.475592,313.590150,314.871891,315.596354,317.017415,318.494204,319.748082,321.336327,322.283701,323.760490,324.624272,325.850286,327.020571,328.218721,329.054639,330.587156,331.228027,332.231129,333.234231,334.599565,336.048490,337.023728,338.054694,338.416925,339.392163,340.339537,341.008272,341.872054,342.819429,343.348844,344.797769,345.410776,346.413878,347.389116,348.559401,350.593469,351.512980,352.376762,353.909279,355.553252,356.890721,357.670912,358.924789,360.540898,362.268463,363.215837,364.191075,365.640000,366.782422,367.479020,368.705034,370.014639,370.599782,371.435701,372.438803,373.915592,375.169469,376.869170,378.736054,380.268571,380.965170,382.414095,383.472925,385.674177,387.624653,389.435810,390.411048,392.082884,393.058122,395.017960,396.188246,397.832218,398.779593,399.866287,401.677443,403.405008,404.993253,406.497906,407.779647,408.504110,409.256436,410.844681,412.126423,413.380300,414.494858,415.915919,417.169797,417.922123,419.176001,420.374150,421.237933,424.386559,426.002667,427.563048,428.872654,430.182259,431.937688,432.968654,434.138940,434.863402,435.727184,436.674559,437.984164,439.070858,439.851048,441.690069,442.498123,443.417633,445.200926,446.399076,447.541497,449.742749 diff --git a/data/torah/labels/Vayetzei-7.txt b/data/torah/labels/Vayetzei-7.txt deleted file mode 100644 index f93da3e5c..000000000 --- a/data/torah/labels/Vayetzei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.705143,5.226514,6.396800,7.011200,8.737371,10.170971,11.546057,13.652571,14.208457,16.373486,17.485257,19.416229,20.352457,21.083886,22.107886,23.073371,23.629257,25.648000,27.257143,28.515200,29.392914,30.212114,31.177600,32.464914,33.430400,34.629943,37.029029,38.813714,40.305829,41.534629,42.558629,43.728914,45.279543,46.391314,47.181257,48.176000,49.843657,50.984686,52.184229,53.968914,55.314743,56.689829,58.181943,59.352229,60.493257,61.634286,63.009371,64.296686,65.730286,66.315429,67.924571,68.714514,69.299657,70.265143,71.523200,72.049829,72.869029,74.244114,76.145829,78.340114,79.451886,80.329600,81.353600,83.079771,84.103771,85.508114,86.883200,87.760914,88.872686,90.189257,91.388800,92.178743,92.617600,93.378286,94.080457,95.777371,97.708343,99.141943,100.136686,101.628800,102.565029,103.676800,105.110400,106.192914,107.392457,108.387200,109.762286,110.698514,111.400686,112.161371,113.682743,114.618971,115.584457,116.462171,116.988800,117.837257,118.656457,119.680457,120.645943,123.279086,125.239314,125.912229,127.024000,128.077257,129.598629,130.739657,131.997714,133.431314,135.508571,137.439543,138.785371,140.482286,141.652571,142.998400,144.051657,145.251200,146.801829,148.615771,149.230171,150.663771,152.097371,153.413943,154.730514,155.608229,156.690743,157.480686,158.299886,159.002057,160.026057,161.020800,164.122057,164.970514,165.848229,166.725943,167.984000,168.627657,170.178286,171.114514,172.080000,173.338057,174.800914,176.351543,177.872914,179.511314,180.506057,181.881143,182.846629,183.841371,185.743086,187.586286,188.756571,190.424229,191.783184,192.807184,194.504099,195.440327,196.083984,196.961699,198.307527,199.536327,200.589584,201.233241,203.164213,203.837127,205.680327,206.792099,208.342727,209.717813,211.882841,213.404213,216.037356,217.734270,219.431184,220.308899,221.888784,223.761241,225.077813,226.774727,228.676441,230.139299,231.104784,232.889470,233.679413,234.937470,236.195527,237.307299,238.389813,239.677127,240.671870,242.251756,243.480556,244.299756,246.523299,247.371756,248.103184,249.185699 diff --git a/data/torah/labels/Vayetzei-H.txt b/data/torah/labels/Vayetzei-H.txt deleted file mode 100644 index 84240b644..000000000 --- a/data/torah/labels/Vayetzei-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.170286,2.229116,2.897850,4.820463,6.408707,7.188898,8.693551,9.919565,11.284898,13.987701,16.021769,17.442830,18.139429,18.836027,21.065143,22.681252,24.213769,25.802014,26.442884,28.644136,29.870150,31.291211,32.405769,34.411973,35.665850,36.167401,37.588463,39.260299,40.319129,41.238639,42.325333,43.328435,44.972408,46.393469,47.563755,49.319184,51.854803,53.108680,55.532844,57.399728,58.932245,60.241850,62.025143,63.139701,64.365714,65.703184,66.817741,68.712490,70.077823,71.498884,72.808490,74.396735,75.455565,76.904490,78.687782,81.167673,82.839510,84.065524,84.539211,85.848816,86.824054,88.440163,89.582585,91.393741,92.313252,93.706449,95.851973,97.997497,99.279238,100.282340,101.591946,103.124463,104.852027,105.966585,107.248327,108.335020,109.561034,110.229769,111.400054,112.375293,113.461986,115.718966,117.056435,118.561088,120.511565,121.904762,123.715918,124.746884,125.972898,126.697361,127.171048,128.954340,130.709769,131.406367,132.214422,133.496163,135.223728,135.864599,136.644789,138.037986,139.709823,141.214476,142.579810,144.112327,145.310476,147.316680,148.626286,149.322884,150.576762,151.719184,152.443646,154.310531,156.093823,156.985469,157.542748,158.155755,159.465361,161.109333,161.973116,162.809034,164.257959,165.093878,167.295129,170.332299,171.502585,173.062966,174.149660,174.539755,175.375673,176.991782,177.994884,178.384980,179.388082,180.753415,181.895837,183.790585,185.044463,186.159020,187.607946,189.084735,190.645116,192.010449,193.208599,194.378884,195.799946,196.635864,196.998095,198.084789,199.004299,199.673034,200.090993,200.926912,201.707102,203.044571,204.465633,205.580190,206.304653,207.642122,209.063184,211.459483,212.462585,214.858884,217.199456,218.509061,219.735075,220.933224,222.103510,223.245932,224.862041,225.753687,227.091156,227.843483,228.623673,230.741333,232.190259,233.889959,234.976653,236.564898,238.264599,240.465850,241.970503,243.085061,244.701170,245.955048,247.348245,248.295619,249.660952,250.775510,251.054150,252.029388,253.366857,254.314231,255.400925,256.710531,258.995374,261.447401,262.171864,264.205932,265.543401,267.410286,269.500082,271.478422,272.788027,273.763265,274.459864,276.661116,277.580626,278.862367,280.729252,281.955265,282.846912,284.267973,285.605442,286.023401,286.775728,288.921252,291.401143,292.515701,293.184435,293.964626,294.800544,295.887238,297.447619,298.422857,300.317605,302.518857,303.549823,306.475537,307.088544,307.562231,308.871837,309.930667,310.933769,311.407456,313.357932,314.639673,316.088599,318.066939,319.070041,319.460136,320.518966,321.995755,323.333224,325.813116,327.289905,329.379701,331.051537,331.943184,332.890558,334.618122,335.872000,336.485007,337.488109,339.076354,341.138286,342.141388,343.311673,344.899918,346.961850,348.522231,349.608925,350.667755,352.896871,354.067156,354.596571,356.352000,357.773061,359.305578,360.392272,361.478966,362.119837,364.014585,365.797878,367.135347,368.277769,369.754558,371.732898,372.429497,372.875320,373.627646,375.940354,377.807238,379.284027,382.209741,383.519347,385.219048,386.361469,387.531755,388.757769,390.234558,391.488435,392.073578,393.438912,394.274830,395.277932,397.339864,398.203646,399.736163,401.101497,403.497796,404.974585,406.674286,407.175837,409.154177,410.965333 diff --git a/data/torah/labels/Vayigash-1.txt b/data/torah/labels/Vayigash-1.txt deleted file mode 100644 index 57b5d6d93..000000000 --- a/data/torah/labels/Vayigash-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.200811,5.313827,7.659042,11.374235,11.742670,13.948566,15.063124,15.547659,16.522897,17.335596,18.705573,19.727251,20.632829,21.306208,22.026026,23.372784,24.324802,25.230380,26.762897,28.341854,29.061673,29.711831,30.896049,32.126707,32.823305,33.659224,34.379042,34.584938,35.629836,36.976593,37.252149,38.436367,39.016865,39.643804,40.619042,41.663940,42.592738,43.498317,44.845074,46.540131,47.283169,48.722806,49.930244,51.834280,53.018498,54.016956,55.177954,57.476729,57.636185,58.657863,60.074280,61.258498,62.628475,63.371514,64.462852,65.693509,66.085165,67.153283,67.684258,68.264757,69.054235,70.192013,70.325165,71.462943,72.458317,72.640992,73.453691,74.614689,75.984666,76.167342,77.281899,77.953736,78.557455,80.020312,81.134870,82.086888,83.247886,83.929437,85.023999,85.647854,86.948171,88.016289,89.107627,89.873886,90.407945,91.359963,92.474520,93.844498,94.378557,95.284135,95.980734,96.955972,99.022548,99.881686,101.386357,101.940552,102.544271,102.911164,104.072162,106.487037,107.157332,108.132570,109.061369,109.781187,111.197604,111.987083,112.915881,113.705359,115.098557,115.795155,116.514974,118.186811,119.347808,120.323047,121.275065,122.343183,123.318421,124.270439,125.315337,127.428353,128.542910,129.262729,130.307627,131.631164,132.792162,133.558421,134.185359,134.782910,135.224090,136.408307,137.638965,138.405223,139.543001,142.041869,142.761688,143.549624,144.664182,145.380917,146.356155,146.654930,147.676608,149.905724,150.206042,150.342277,151.665815,152.569851,153.266450,154.822187,155.843865,158.670531,158.866434,160.631150,161.745708,162.999586,166.330995,167.491992,167.745870,168.883648,169.626686,170.973444,171.948682,172.854260,174.363557,175.779974 diff --git a/data/torah/labels/Vayigash-2.txt b/data/torah/labels/Vayigash-2.txt deleted file mode 100644 index a86926865..000000000 --- a/data/torah/labels/Vayigash-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.876190,6.757007,7.291066,7.667735,8.596533,9.734311,11.243608,12.892225,13.426284,14.143019,15.091953,16.717350,17.762248,19.109005,19.782384,20.896942,21.872180,22.076533,23.144651,24.047146,24.720524,25.881522,26.531681,26.876896,27.663291,28.703563,29.975366,30.761761,31.108518,32.339176,34.196772,35.172010,35.493041,36.645097,37.477932,38.476390,39.381968,40.705505,41.982603,42.795301,43.001197,44.231854,44.869421,45.403480,46.556768,46.739444,47.668242,48.898899,49.827698,50.847834,51.745306,52.729219,53.597181,54.552385,55.317018,55.548920,56.706202,58.281931,59.001750,60.603927,62.415083,63.367101,64.342339,65.155038,67.941432,68.986330,69.169006,69.814539,71.018893,71.710866,72.241841,72.842476,73.887373,75.138167,75.715582,76.012816,77.266693,78.285287,78.559301,79.557759,80.853451,82.502067,83.454086,84.661523,85.192498,86.516036,87.653813,88.324108,88.644562,89.364380,90.611805,91.587043,92.446181,93.046816,93.972530,94.666045,95.501963,96.169174,97.130535,98.175433,98.610444,99.512938,101.115115,102.856612,104.145465,104.453895,105.800653,106.395120,106.786775,107.645913,108.992671,111.198566,112.429224,113.497342,114.681560,115.331718,116.283737,117.000471,118.300789,120.785324,121.319383,123.687818,124.384417,125.057795,126.938612,127.565551,128.262149,128.981968,129.794666,131.179116,132.409774,133.434173,134.246871,135.640069,136.314885,137.615203,138.657017,139.585815,140.514613,141.675611,142.790169,143.881507,144.926405,145.762323,146.107538,146.850577,148.034795,150.310350,151.053389,152.144727,153.468264,155.000781,156.045679,157.345996,159.041053,160.085951,162.105923 diff --git a/data/torah/labels/Vayigash-3.txt b/data/torah/labels/Vayigash-3.txt deleted file mode 100644 index 6b035f06f..000000000 --- a/data/torah/labels/Vayigash-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.574331,4.941224,6.659501,7.955193,8.582132,9.418050,10.114649,11.716825,12.993923,14.526440,16.384036,17.730794,18.167347,19.072925,20.350023,20.800080,21.214375,22.657676,25.420851,26.459581,26.558628,28.340397,29.629921,31.255318,32.207336,32.973594,33.809513,35.063390,36.967427,38.499944,39.568062,40.125340,41.170238,42.075817,42.633096,42.978311,44.673368,46.809603,47.388113,48.825963,50.109494,51.429947,52.405186,54.402102,55.725639,56.700877,57.652895,58.860333,59.789131,60.225684,60.640560,61.824777,63.217975,64.004369,64.883644,65.626682,66.810900,67.600378,68.320197,69.295435,70.038474,71.640650,72.453349,73.335707,73.823326,74.331081,75.306319,76.366728,77.295526,78.177884,79.315662,80.012260,81.263054,81.749131,82.445730,83.255344,84.973621,86.976738,88.578915,89.134652,89.434969,90.383904,91.521681,92.613019,92.862271,93.442770,94.766307,97.065083,98.144085,98.318960,99.014108,100.128665,102.079142,102.890298,104.532581,105.269452,105.891765,106.911901,108.645688,109.508518,109.833598,111.366115,112.476047,112.889380,113.678858,114.712963,116.082940,117.986976,118.703711,119.648019,120.202214,121.705445,123.404610,124.612048,125.842706,126.608964,127.305563,128.211141,129.116719,130.254497,131.694134,132.739032,133.807150,134.921708,136.152365,137.545563,138.242161,138.424837,139.469735,140.444973,140.604429,141.463567,142.110642,143.132320,144.153998,144.429554,146.171050,146.914089,147.587468,148.539486,149.440438,151.254475,151.425067,152.995971,153.619826,154.708080,155.443409,156.604407,157.855200,159.294838,159.825813,160.681867,161.514702,162.629259,164.152525,164.497740,165.143273 diff --git a/data/torah/labels/Vayigash-4.txt b/data/torah/labels/Vayigash-4.txt deleted file mode 100644 index 36e904905..000000000 --- a/data/torah/labels/Vayigash-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.995374,4.040272,5.015510,6.037188,6.568163,8.170340,8.797279,10.167256,12.117732,13.743129,15.020227,16.051247,16.111565,17.189025,18.582222,20.738594,21.249433,22.155011,22.407347,23.707664,24.238639,25.446077,25.907392,26.418231,27.323810,28.017324,29.108662,30.057596,30.730975,31.842449,32.957007,33.975601,35.066939,36.460136,37.505034,37.944671,38.475646,39.636644,40.936961,42.446259,43.491156,44.489615,47.026463,48.442881,49.580658,50.602336,51.809774,53.063652,53.690590,54.407325,55.243243,56.195262,57.588459,58.189094,59.582291,61.509547,62.600885,63.367144,64.528141,65.596259,66.687597,67.569955,68.661293,69.822291,72.980205,76.091679,77.113357,78.692314,80.248051,81.223289,82.570046,84.566962,84.772858,85.678436,87.231089,88.577847,89.506645,89.994264,90.899842,92.176940,93.500477,94.777574,96.077892,96.913810,97.865828,98.423107,99.305466,100.745103,102.324060,103.368958,105.040794,105.923153,107.060930,107.757529,108.384468,108.642651,109.602679,110.158416,110.762135,111.807033,113.243586,114.427804,114.983541,115.189436,116.090389,117.297826,119.085763,120.478960,121.285552,121.677001,122.327160,123.348838,124.062489,125.060947,126.245165,127.382942,127.635278,129.469655,130.096593,130.932512,131.675550,132.975868,134.090425,136.574961,137.550199,138.639995 diff --git a/data/torah/labels/Vayigash-5.txt b/data/torah/labels/Vayigash-5.txt deleted file mode 100644 index 2f2a47055..000000000 --- a/data/torah/labels/Vayigash-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.178050,4.524807,6.126984,6.448980,7.052698,7.772517,8.329796,9.514014,10.675011,11.275646,12.390204,13.675748,14.581326,15.019421,15.457517,16.339875,17.338333,18.429671,19.451349,21.030306,22.144863,23.305861,23.909580,25.163458,26.185136,27.137154,28.878650,29.691349,30.922006,31.966904,32.918922,34.637199,35.635657,36.959195,39.466950,40.256428,40.976247,41.858605,42.949943,43.460782,44.366360,45.643458,46.781235,47.245634,47.733254,48.406632,49.405090,50.473208,52.533470,53.415828,54.109343,55.270341,56.405035,57.491747,57.722404,58.860182,61.135738,61.945352,62.641951,62.990250,64.615647,66.165216,66.977915,67.720953,68.881951,70.066169,70.203946,72.131203,72.592518,73.567756,75.286033,75.979547,76.978005,77.276781,78.484218,80.899094,81.526033,82.245851,82.942450,83.731928,84.869706,86.170023,86.445579,88.419275,88.902268,90.202586,90.827983,91.776917,93.030794,94.075692,95.167030,96.606667,97.674785,98.115965,98.882223,99.811021,101.970477,102.852835,103.642314,104.690731,106.699830,107.579105,108.391803,108.805137,110.128674,110.778833,111.309808,112.563685,114.315626,115.778483,116.102020,117.889957,118.911635,119.770773,120.696487,121.811045,122.739843,123.390002,124.806419,125.549458,126.153177,127.499934,128.428732,129.241431,130.704288,131.679526,133.421022,135.371499,136.880796,137.948914,139.133131,140.340569,141.385467,141.707462,143.239979,144.377757,145.260115,147.698211,148.580569,150.043426,151.924242,153.712179,155.221476,156.753993,157.938211,158.843789,160.213766,161.514084,161.928959,162.949095,164.086873,165.201431,166.292768,166.521884,167.264923,167.981657,169.212315,170.210773,171.603970,172.486329,173.461567,174.251045,175.806782,177.176759,178.268097,179.150456,180.032814,181.681431,183.422927,184.467825,185.930682,186.836261,187.695399,188.647417,190.156714,191.062292,191.851771,192.943109,193.639707,194.475626,195.774401,197.074719,198.189276,199.141295,200.557712,202.879707,203.735762,204.571680,205.245059,206.173857,207.613494,208.449412,209.540750,211.003607,212.118165,213.743562,215.415399,217.296215,218.364333,219.107372,220.384469,221.870546,222.985104,224.030002,224.889140,226.932496,227.617654,228.616112,229.614570,230.328221,230.885500,231.605318,232.580556,233.486134,234.531032,234.715250,235.388629,236.665726,237.292665,238.058924,238.987722,240.705998,241.565137,242.424275,243.445953,244.305091,246.023368,247.114706,249.715341,250.551259,252.385636,253.360874,253.822189,254.359392,255.401384,256.025239,256.590523,257.206514,258.126061,259.078079,259.446514,260.352092,260.790188,262.090505,263.311737,264.960353,265.865932,266.678630,267.793188,268.675546,269.650784,270.895803,271.917481,272.790588,273.789046,275.019704,276.084738,276.858864,277.859877,278.602916,279.322734,280.414072,281.087451,281.714390,282.736068,284.129265,285.099877,285.773256,287.166453,288.072031,289.418789,290.672666,291.531805,292.437383,293.877020,294.643279,295.653298,296.674976,297.255475,297.789534,298.435067,299.384001,300.498559,302.216836,302.469172,303.792709,305.046586,305.438242,306.111620,307.481598,308.012573,311.007947,312.040509,313.015747,313.921326,315.310479,316.530860,317.645418,318.481336,318.919431,320.126869,320.493763,321.283241,321.999976,323.160973,324.391631,325.993808,326.504647,327.267821,327.647233,328.644149,329.848503,331.009501,331.424376,332.840793,333.184467,334.879523,335.803696,337.104013 diff --git a/data/torah/labels/Vayigash-6.txt b/data/torah/labels/Vayigash-6.txt deleted file mode 100644 index 9cf0e10a4..000000000 --- a/data/torah/labels/Vayigash-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.089796,3.993832,5.085170,5.897868,6.339048,7.311202,8.216780,9.145578,9.958277,11.096054,12.094512,13.114649,14.438186,15.181224,16.435102,17.944399,18.873197,19.685896,20.336054,21.334512,22.750930,24.260227,25.444444,25.812880,26.973878,27.829932,27.944490,28.893424,29.961542,32.051338,33.699955,34.141134,35.046712,36.045170,37.159728,38.204626,39.342404,39.665941,40.757279,41.218594,41.915193,43.006531,44.678367,45.418322,45.639728,46.429206,47.076281,47.772880,48.701678,49.788390,50.853424,52.130522,53.311790,54.820952,56.768480,57.205033,58.876870,59.596688,60.246847,60.989885,61.663264,62.801042,64.403219,65.835146,66.740724,67.202040,67.640135,68.499273,69.567391,71.657187,73.421904,73.955963,74.559681,75.186620,76.324398,79.064353,80.454466,80.904113,81.623932,82.831369,83.825201,84.334498,85.727696,88.537310,89.326789,90.719986,91.532684,92.507922,94.040439,94.340757,95.455315,95.963070,96.798988,97.213863,98.398081,100.511097,101.532775,102.786653,103.622571,104.223206,104.879888,105.808686,106.037802,106.618300,107.779298,109.222019,111.172495,112.054854,113.866010,115.816486,116.838164,118.347461,119.670999,120.692677,121.342836,122.109094,123.177212,123.943471,124.872269,125.940387,127.008505,127.681883,128.633901,130.955897,131.698935,132.743833,133.742291,134.787189,135.878527,136.784105,138.223743,139.849139,141.311997,141.799616,142.380114,143.030273,144.330591,145.654128,145.929684,147.508641,148.390999,149.157257,150.248595,150.852314,151.592269,151.914264,153.377121,154.511815,154.835353,156.367870,157.525783,160.056758,161.519616,162.120251,162.677529,164.203879,165.245693,166.244151,167.381929,168.008867,168.443879,169.419117,170.185375,171.323153,173.203969,173.897484,174.338663,175.313901,175.940840,177.426917,179.237080,180.212318,180.534314,181.370232,182.577670,183.599348,184.432182,185.052953,186.306831,187.000346,187.905924,189.435357,190.178396,191.430731,192.498849,193.334767,193.635085,194.540663,194.862659,196.046876,197.277534,198.490874,199.396452,200.043527,201.831463,202.574502,203.131781,203.828380,204.432098,206.498674,207.264933,208.007971,208.376407,208.905840,210.368697,211.994094,212.644253,212.873368,213.941486,214.916724,216.532730,217.252549,218.529646,219.620984,220.477038,220.659714,221.936812,222.879578,223.576177,223.991052,224.943070,227.288286,227.868784,228.635043,229.633501,230.771279,231.583977,231.814635,232.975633,233.904431,234.740349,235.947787,237.039125,237.782163,238.803841,239.848739,241.567016,242.449374,243.494272,244.399850,245.328648,246.443206,248.161483,248.599578,249.365837,250.175451,251.076404,252.051642,253.003660,254.721936,256.208013,257.136812,257.365927,258.457265,260.082662,261.243660 diff --git a/data/torah/labels/Vayigash-7.txt b/data/torah/labels/Vayigash-7.txt deleted file mode 100644 index 71ae035ca..000000000 --- a/data/torah/labels/Vayigash-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.413333,5.549569,5.897868,6.548027,6.893243,8.588299,9.540317,10.144036,11.026395,12.117732,13.209070,14.230748,15.020227,16.158005,17.574422,18.503220,19.269478,20.546576,21.754014,22.543492,22.842268,23.863946,24.093061,25.021859,25.834558,26.202993,26.737052,27.596190,28.475465,29.009524,30.216961,31.285079,31.746395,32.138050,32.997188,33.435283,34.085442,35.135057,36.040053,38.431709,39.151527,40.033886,41.078783,42.123681,43.075700,44.352797,45.694929,47.297105,47.663999,47.939554,49.030892,49.975201,50.506176,51.481414,52.712071,53.733749,54.964407,55.495382,56.049577,57.210575,58.394793,59.811210,60.202865,61.178103,61.894838,63.218375,65.075972,66.678149,67.746266,69.882502,70.788081,72.715337,74.707627,74.828353,75.794339,76.093115,76.905813,77.881051,78.528126,79.271164,80.153523,81.175201,81.871799,83.172117,83.752616,84.518874,85.494112,86.678330,87.374929,88.164407,89.650484,90.648942,91.229441,92.970938,93.432253,94.221731,95.429169,96.744004,96.952984,99.066000,99.600059,101.364775,102.595433,104.035070,105.347480,106.722921,108.948952,110.179610,111.758567,112.803465,113.639383,115.357660,117.563556,118.436440,118.904927,120.015397,120.990635,122.221293,125.100567,126.075805,127.840522,129.024739,130.417937,131.602154,133.482971,134.713628,135.289501,135.654853,136.793491,137.977708,138.949863,139.341518,140.038116,141.106234,142.081472,143.056711,143.307504,144.352402,145.045917,146.044375,146.880293,147.901971,148.758026,149.126461,150.032039,151.863332,153.953128,154.785962,156.295259,156.968638,157.824692,158.077028,159.299976,159.797170,160.447328,160.794086,161.955084,162.999982,165.410231,166.339029,167.546467,168.568145,169.914902,170.472181,172.004698,173.142476,174.048054,175.069732,176.532589,177.038802,178.501660,179.732317,181.311274,181.843791,182.072907,182.839165,183.698304,184.882521,185.483156,186.342294,187.062113,187.874811,188.919709,189.382567,189.916626,190.636444,191.959982,192.865560,193.446059,194.978576,195.512635,196.464653,197.625650,198.299029,199.576127,200.504925,200.933217,201.792355,202.115893,203.392990,204.786187,205.645326,206.759883,207.293942,208.431720,209.987457,210.286233,212.046323,213.068001,214.530859,215.436437,215.781652,216.733670,217.592809,218.405507,219.032446,219.961244,221.331221,223.188818,223.699657,224.489135,224.671811,226.250768,227.081784,227.871262,228.077158,229.029176,230.422373,231.281512,232.024550,233.417747,233.905366,234.973484,236.343462,237.411580,238.386818,239.199516,240.314074,240.705729,242.145366,243.120605,244.211942,245.465820,246.348178,247.625276,248.623734,251.642328,252.594346,254.219743,255.032441,256.588178,258.956614,259.885412,260.814210,261.812668,263.438065,265.527861,266.944278,267.849856,268.383915,269.312713,270.496931,271.512252,272.310593,273.968800,275.163902,275.883721,278.879095,280.713471,280.894605,281.544764,283.007621,283.399276,284.281634,285.790932,286.905489,288.066487,289.761544,290.783222,291.804900,292.989117,293.453517,294.266215,295.612972,297.656328,299.235285,300.071204,301.023222,302.068120,302.927258,305.040274,305.690433,306.804990,308.298061 diff --git a/data/torah/labels/Vayigash-H.txt b/data/torah/labels/Vayigash-H.txt deleted file mode 100644 index 216f8aaa6..000000000 --- a/data/torah/labels/Vayigash-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.967528,3.289524,4.287982,5.263220,6.609977,7.817415,8.232290,10.763265,11.226122,12.015601,13.223039,14.337596,15.521814,16.334512,17.565170,18.888707,20.258685,22.603900,23.811338,24.972336,26.156553,27.410431,29.825306,31.288163,32.890340,34.051338,34.608617,35.398095,36.489433,38.347029,39.786667,41.551383,43.432200,43.734059,44.987937,46.172154,47.054512,48.827224,50.048345,50.953923,52.765079,55.226395,56.712472,57.618050,58.709388,59.591746,61.658322,62.305397,63.512834,64.042268,64.689342,65.293061,66.477279,67.777596,70.331791,70.912290,73.118186,74.348844,76.508299,78.598095,79.550113,81.477370,81.941769,82.661587,83.474286,85.402301,85.773821,87.050918,88.374456,89.535453,91.764569,95.108242,96.106701,98.173276,98.684115,99.403934,102.074229,104.024705,105.348242,106.346701,107.461258,108.459716,110.038673,111.919490,113.753866,114.427245,116.354501,118.003118,119.233775,121.300351,122.716769,124.945884,125.735363,127.941258,129.032596,131.006292,132.167290,133.583707,134.233866,134.860805,136.184342,137.507880,138.575998,139.597676,140.596134,141.315952,142.825249,144.357766,145.031145,146.354682,147.631780,148.490918,148.932097,150.534274,152.531190,155.665884,156.734002,157.616360,158.452279,160.356315,161.583889,163.557585,165.206202,166.111780,167.156678,169.617993,170.709331,171.285204,172.121122,173.491100,174.582437,175.836315,177.090193,178.390510,179.551508,180.573186,182.198583,185.101077,186.378174,188.073231,189.930828,192.763662,194.156859,196.293095,197.825612,200.194047,201.169286,202.980442,203.886020,205.093458,206.324115,208.019172,208.692551,209.598129,210.765142,211.958151,215.185724,216.323502,217.136201,219.411756,221.276048,222.088747,223.760583,225.153781,226.361218,227.290017,228.242035,230.703350,233.466524,234.790062,236.206479,237.274597,238.296275,239.480493,241.918588,242.290107,244.728202,246.121400,247.119858,249.116774,250.556411,251.438769,252.251468,253.017726,255.571921,257.243758,260.262352,263.234506,266.090561,267.158679,268.203577,268.528656,269.666434,271.779450,272.777908,273.822806,274.728384,276.446661,278.652556,279.418815,280.603032,281.787250,282.739268,283.412647,284.132466,285.990062,287.290379,289.154701,290.269259,292.451935,292.702728,294.490665,295.744542,297.486039,299.157876,300.225994,301.456651,302.780189,303.360687,305.729123,306.959780,307.609939,308.236878,309.513975,310.930393,312.021731,313.043409,314.831345,315.899463,317.130121,317.478420,319.428896,321.356152,323.027989,324.984171 diff --git a/data/torah/labels/Vayikra-H.txt b/data/torah/labels/Vayikra-H.txt deleted file mode 100644 index b49a2f35a..000000000 --- a/data/torah/labels/Vayikra-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.846863,2.566681,4.074436,4.887135,6.349992,8.161148,8.857747,9.411942,10.410400,12.376245,12.823742,13.4,14.189093,16.093129,16.627188,17.625646,18.088504,19.151996,20.568413,22.100930,22.563787,24.560703,25.277438,26.577755,27.715533,28.734127,30.104105,31.915261,32.517438,33.605692,34.205293,35.158345,36.365783,37.271322,38.362660,38.943159,40.429236,42.379712,43.726469,45.189326,46.536084,48.788419,50.263786,51.540883,53.073400,53.697255,54.835033,56.576529,58.201926,59.037845,60.222062,62.451178,63.890815,65.562652,66.468230,67.280929,67.951223,69.669500,70.946597,71.875396,73.595368,75.104665,75.703758,76.702216,78.443712,79.135685,80.273463,81.945300,83.059858,84.197635,85.614053,87.564529,88.768883,89.860220,90.600175,92.109472,93.462299,94.225473,95.223931,95.966970,96.756448,97.894226,99.960802,101.121800,102.143478,104.349374,104.813773,105.742571,107.321528,108.366426,109.597083,110.489821,111.590915,112.530093,113.291725,114.011544,114.474401,115.612179,117.191136,117.632315,119.118392,120.418710,121.254628,121.835127,122.787145,124.064242,124.760841,126.548778,128.801113,129.448188,131.027145,132.466782,132.954401,133.459724,134.533358,135.855354,136.760932,138.363109,139.291907,140.592224,141.240841,141.516397,143.072134,144.883290,145.951408,146.624787,147.623245,148.575263,149.295081,150.850818,151.661975,152.451453,154.100070,154.445286,156.581521,157.835399,158.620252,160.361748,161.220886,162.126465,163.458113,164.657440,166.558793,166.880789,168.436526,168.990721,169.803419,171.382376,172.983011,174.492308,175.444326,176.953623,177.510902,179.089859,181.436774,182.272692,183.271150,184.103985,185.316841,186.026148,187.280026,187.580343,188.625241,189.855899,191.643835,192.944153,193.942611,194.894629,196.380706,197.541704,198.540162,200.072679,201.210457,201.790956,202.160933,203.786330,204.619164,205.501523,206.407101,207.312679,208.868416,209.306511,210.908688,212.038756,213.664153,214.127010,215.891727,216.517123,217.608461,218.161114,219.623972,220.295808,220.942883,221.848461,222.495536,223.842294,225.258711,226.837668,227.702540,227.934740,228.956418,230.117415,231.173198,232.055556,233.732776,235.708880,236.614459,237.636137,238.890014,239.888472,241.119130,242.698087,243.510785,244.625343,245.693461,247.133098,248.990694,250.917951,252.543348,253.982985,255.004663,255.515502,256.258540,257.465978,258.557316,259.091375,259.615936,260.312535,261.958068,262.999882,266.157796,266.756889,268.451945,270.123782,271.377660,272.561877,274.256934,275.905551,277.972127,279.365324,281.129212,282.070929,283.231926,283.998185,284.973423,286.087981,286.790986,287.975204,289.298741,290.575839,291.527857,292.642415,293.634462,294.632920,295.440993,297.066390,298.038544,299.176322,299.894598,301.612875,303.119088,304.349746,305.417863,306.903941,307.786299,309.016956,309.783215,310.874553,311.616049,313.125346,313.588204,314.047977,314.744576,316.137773,317.272467,318.317365,319.171877,320.588294,322.048068,323.441265,323.972240,324.808158,325.130154,326.128612,327.425845,328.749383,329.466117,330.441356,332.484712,332.995551,333.901129,335.387206,336.176684,337.540443,338.459468,339.574026,342.128221,343.146815,344.098833,345.817110,346.673164,347.485863,348.623640,350.527677,351.595795,352.872892,354.173210,354.704185,355.609763,357.081531,357.848344,358.846802,359.331337,360.724534,361.185850,361.793810,362.885147,363.883605,365.509002,366.971859,368.039977,368.710272,368.875896,370.451769,371.427007,372.352721,372.674717,375.646871,377.109728,379.269184,380.148458,380.699569,381.959615,384.646961,386.179478,386.431814,387.732132,388.660930,389.470544,390.399342,392.164059,393.394717,394.741474,396.366871,397.058844,397.825102,399.334399,401.328231,402.373129,402.975306,403.880884,405.413401,406.083696,407.082154,407.241610,408.031088,409.470726,410.492404,411.441338,412.370136,413.949093,414.937222,416.167880,417.375317,418.791735,419.231372,419.596723,421.152460,422.801077,423.099853,424.005431,424.883163,426.137041,426.739218,428.736134,430.056587,430.915726,432.072098,433.604615,435.299671,436.228469,436.991644,437.336859,438.892596,439.864751,441.443707,441.836905,442.417404,443.996361,444.948379,446.408152,447.499490,448.425204,449.052143,449.864841,450.677540,451.347834,451.768603,453.063027,453.598354,454.248512,454.997632,456.056585,457.612708 diff --git a/data/torah/labels/Vayishlach-1.txt b/data/torah/labels/Vayishlach-1.txt deleted file mode 100644 index a9e784766..000000000 --- a/data/torah/labels/Vayishlach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.733769,5.405605,6.770939,7.662585,8.554231,9.390150,10.337524,11.591401,12.510912,13.374694,14.712163,16.411864,17.219918,18.195156,19.616218,20.730776,22.792707,24.269497,25.411918,26.164245,27.752490,28.811320,29.786558,30.761796,31.541986,33.102367,33.576054,34.690612,36.055946,36.501769,37.532735,38.424381,39.650395,40.681361,41.628735,43.189116,44.749497,46.532789,47.563755,48.037442,49.597823,51.604027,53.025088,53.777415,54.808381,55.922939,57.371864,57.817687,58.625741,59.238748,60.102531,61.105633,62.638150,63.947755,65.062313,65.981823,66.789878,67.932299,69.520544,72.139755,73.588680,75.678476,76.235755,77.545361,78.632054,79.440109,80.108844,81.808544,82.560871,83.257469,84.817850,86.266776,87.938612,89.136762,90.307048,93.232762,94.235864,95.127510,96.882939,97.579537,98.554776,100.003701,101.564082,103.681741,105.130667,106.774639,108.557932,111.511510,113.016163,114.242177,115.356735,116.331973,117.892354,118.979048,119.870694,122.099810,123.994558,125.889306,127.087456,130.152490,132.604517,134.471401,135.948190,137.480707,138.873905,140.099918,141.520980,142.802721,144.056599,145.366204,145.895619,146.870857,148.180463,149.712980,152.332190,152.805878,154.282667,155.285769,156.929741,158.378667,159.548952,161.137197,163.282721,164.703782,166.096980,167.406585,168.688327,169.552109,170.861714,171.781224,172.533551,173.620245,174.623347,175.570721,176.880327,178.384980,179.248762,180.419048,182.313796,183.205442,184.626503,186.075429,187.189986,189.307646,189.920653,190.951619,192.344816,193.515102,194.852571,195.744218,196.858776 diff --git a/data/torah/labels/Vayishlach-2.txt b/data/torah/labels/Vayishlach-2.txt deleted file mode 100644 index e8b7bd966..000000000 --- a/data/torah/labels/Vayishlach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.055216,5.197638,6.197257,7.196876,9.767325,10.567020,12.223532,13.365954,16.250569,17.392990,18.506852,19.906318,21.876996,23.476386,25.332822,26.932212,27.846150,28.988571,30.245235,32.330155,34.500756,36.385752,37.785219,39.298928,40.498471,42.126422,43.354525,45.410884,46.553306,48.866710,50.608903,52.551020,53.522079,54.464577,55.921165,56.920784,58.177448,59.833959,60.290928,61.147744,62.718574,63.889556,65.774552,67.431064,68.573486,69.458863,70.629845,71.658024,73.314536,73.942868,75.256653,76.370514,77.627178,79.369371,81.140125,83.253605,85.024359,86.252463,87.252082,87.880414,89.137078,90.308060,91.850329,93.278356,94.792065,96.962667,98.876223,100.361371,101.646596,102.617654,104.074242,106.359086,107.929916,109.272261,110.043396,111.100136,112.870890,116.069671,117.754743,118.268833,120.496555,121.524735,121.896022,123.181246,124.437910,125.094803,125.494650,127.151162,128.750552,130.578427,132.149257,134.205616,135.233796,136.947429,137.318716,138.461137,140.688860,142.259690,145.858318,147.743314,149.742552,151.941714,153.084136,154.455042,155.768827,157.253976,158.996169,161.538057,163.023205,164.822520,166.136305,167.707135,168.221224,169.820615,170.763113,172.333943,173.590607,174.932952,176.618024,178.160294,179.388397,180.359456,182.558618,183.615358,184.700659,185.586035,187.813758,190.755494,192.040718,194.268441,196.667527,197.467222,198.495401,199.466460,200.209034,201.322895,202.550999,203.464936,204.578797,206.320990,208.063184,208.977121,210.747875,212.604310,213.832414,215.517486,218.344980,218.944751,220.058612,221.800805,222.600501,223.228833,224.114210,225.770721,227.312990,228.598215,230.340408,231.368588,232.282525,233.339265,234.424566,235.681230,238.280239,239.422661,240.250917,241.650384,242.650003,244.335075,245.420376,246.277192,248.105067,249.190367,250.132865,251.446650,253.902857,255.245203,257.073078,258.386863,259.443603,260.700267,262.299657,264.013290,265.041469,266.412376,268.068887,269.011385,270.553654,271.953121,273.238346,274.066601,275.066220,276.408566,277.893714,280.549845,282.063554,283.205976,285.119532,286.404756,287.233012,288.632479,289.574977,290.460354,291.545654,292.459592,293.773377,295.572691,296.715113,297.971777,299.885333,301.313361,303.741007,305.883048,307.368196,308.053649,309.138950,312.309170,313.622955,314.793937,315.964920,316.764615,318.478248,319.592109 diff --git a/data/torah/labels/Vayishlach-3.txt b/data/torah/labels/Vayishlach-3.txt deleted file mode 100644 index 00def3bc6..000000000 --- a/data/torah/labels/Vayishlach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.325116,7.359184,8.306558,9.337524,10.507810,11.176544,12.179646,13.015565,15.049633,15.384000,16.359238,18.226122,19.758639,21.402612,22.099211,23.185905,24.634830,25.916571,26.418122,27.281905,28.452190,29.873252,30.541986,31.572952,32.548190,35.000218,36.031184,37.006422,37.981660,39.402721,40.350095,41.018830,43.944544,45.086966,45.839293,46.647347,48.040544,49.489469,50.631891,51.272762,53.111782,53.808381,54.950803,56.065361,57.179918,58.740299,60.607184,63.087075,64.229497,66.653660,67.991129,69.077823,70.303837,71.167619,74.316245,75.542259,76.824000,77.520599,79.164571,80.195537,82.341061,83.399891,84.040762,84.960272,85.684735,87.077932,88.081034,89.502095,92.316354,92.985088,94.935565,95.660027,96.997497,98.446422,99.756027,100.369034,102.013007,103.768435,104.855129,105.273088,106.025415,106.944925,109.006857,110.957333,112.099755,113.325769,115.276245,116.084299,117.366041,118.564190,119.818068,120.876898,121.824272,122.855238,124.777850,126.310367,127.341333,129.152490,130.657143,131.548789,132.663347,134.669551,136.731483,138.598367,139.462150,141.301170,142.973007,143.474558,144.449796,145.202122,146.316680,147.960653,149.242395,149.911129,150.496272,153.394122,156.180517,157.852354,158.604680,159.663510,160.610884 diff --git a/data/torah/labels/Vayishlach-4.txt b/data/torah/labels/Vayishlach-4.txt deleted file mode 100644 index 6e9030b6e..000000000 --- a/data/torah/labels/Vayishlach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.554213,8.301134,9.629315,11.289542,13.674231,16.119293,16.783383,18.232308,19.681234,21.432018,24.028009,25.235447,26.744744,28.344599,30.427429,33.536580,34.683646,36.253315,37.340009,38.517261,39.513397,40.660463,41.928272,45.097796,46.607093,47.120254,48.206948,49.535129,50.863311,52.131120,52.825397,53.308372,54.183764,56.930685,58.168308,58.892771,59.798349,61.005787,62.394340,64.658286,65.322376,65.865723,66.439256,66.922231,68.491900,69.035247,70.212499,71.933098,73.804626,75.495039,76.732662,77.306195,78.815492,80.354975,82.890594,85.365841,86.905324,88.414621,90.648381,91.342658,91.976562,92.519909,93.395302,94.451810,96.504454,96.987429,98.074122,98.708027,100.006023,101.515320,102.088853,102.481270,103.024617,105.107447,105.560236,107.703438,109.303293,110.842776,112.412444,114.163229,116.095129,117.694984,119.777814,121.438041,122.645478,123.158639,124.275519,125.301841,126.780952,128.260063,129.075084,129.980662,131.942748,132.999256,134.025578,135.806549,136.561197,137.587519,138.794957,139.247746,140.455184,141.360762,142.477642,145.858467,148.031855,150.054313,151.473052,153.404952,153.918113,154.763320,156.332989,157.600798,159.774186,160.709950,161.374041,161.887202,162.792780,164.845424,166.535837,167.743274,169.282757,169.977034,170.731683,171.667447,172.542839,173.297488,174.504925,175.893478,177.221660,178.006494,179.213932,179.757279,181.025088,182.202340,184.013497,186.307628,187.605624,189.145107,190.714776,192.435374,194.337088,195.816200,197.144381,198.442376,199.408327,200.676136,202.336363,203.815474,204.811610,205.717188,206.894440,207.981134,208.584853,209.188571,210.667683,213.565533,214.682413,216.523755,217.942494,219.964952,221.202576,222.530757,223.768381,225.307864,226.847347,227.481252,229.050921,229.715011,230.318730,231.465796,233.216580,234.182531,234.605134,237.291683,238.861351,239.827302,240.280091,241.608272,242.634594,243.540172,244.325007,245.592816,246.317279,247.434159,249.758476,251.297959,251.901678,253.380789,255.433433,256.037152,257.335147,258.602957 diff --git a/data/torah/labels/Vayishlach-5.txt b/data/torah/labels/Vayishlach-5.txt deleted file mode 100644 index 7d5fb7da5..000000000 --- a/data/torah/labels/Vayishlach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.517674,5.528207,5.944308,6.865676,8.084259,9.302843,11.026692,12.453326,13.434137,14.860771,16.317127,17.714039,18.813736,20.151205,21.785890,23.301689,24.490551,25.619969,27.373540,29.127111,30.553745,31.861493,34.150052,35.933344,37.092484,38.697448,39.381043,40.480740,42.115425,42.472083,43.304287,45.414516,46.038668,46.662821,47.762518,49.367481,50.496900,51.121052,51.834369,52.726015,53.706826,54.598473,55.727891,56.619537,57.481462,58.402830,59.740299,61.434427,63.633821,64.852405,65.744051,66.279039,67.140963,68.032610,70.380611,71.510030,72.163904,73.144715,74.274133,75.997983,77.632668,78.286541,79.356517,82.061177,83.309482,84.349736,84.825281,85.657484,86.459966,88.540473,89.759057,91.423463,93.682300,95.049491,95.495314,96.327517,98.051367,99.775216,101.082964,102.450155,103.312080,104.233448,105.481752,107.175880,108.394463,110.623579,112.109656,112.763530,113.120189,114.101000,115.527634,116.300394,117.489255,119.331991,120.639739,122.333867,122.958019,123.819944,125.870730,127.891795,128.813163,130.626177,131.815039,132.528356,134.133319,135.262737,136.897422,138.829322,140.345121,142.009527,142.841731,143.317275,144.208922,145.278897,146.438037,147.329683,148.964368,150.212673,151.847358,152.947055,154.225081,155.562551,157.018906,158.980528,160.080225,161.952682,162.814607,163.498202,164.568178,165.073444,166.173141,167.362003,168.105041,169.412789,170.988031,173.276590,175.267933,176.783732,178.150922,179.458670,180.380038,181.955280,183.322471,185.105763,186.740448,188.167082,189.088450,190.544805,190.960907,191.495895,192.536149,193.962783,195.805518,197.024102,197.826583,198.777673,199.312660,200.085420,200.947345,202.344258,204.097829,205.970286,207.099704,208.645224,209.566592,210.101580,211.498493,213.370950,215.867559,217.234750,218.304726,219.553030,221.187715,222.227969,223.624882,224.457085,225.408174,226.686200,227.904784,228.350607,229.182810,230.312229,230.995824,231.917192,233.016889,234.057143,235.127118,236.434866,237.504842,238.872033,240.387831,241.695579,243.478872,244.608290,245.499937,246.748241,249.244851,249.750117,250.730928,251.830625,253.019487,254.059741,255.664704,256.169970,258.934073,260.360707,262.262886,263.273419,264.700053,266.334737,267.048054,269.752715,271.536007,273.051806,274.805377,275.488972,276.529226,278.461127,280.452470,282.027712,283.335459,284.256827,286.099563,287.139817,287.555918,288.685337,289.785034,290.914453,292.073593,293.529948,294.897139,295.907672,297.245141,298.582610,299.741751,301.643929,303.011120,304.556640,305.804945,306.904642,308.569049,310.560392,311.838418,312.997558,313.918926,315.286117,315.880548,318.020499,319.506576,320.279336,321.170982,322.597616,324.648403,326.253366,328.423039,329.611900,331.484357,333.297371,334.486233,336.299247,337.428666,339.984718,341.203302,342.392163,342.986594,344.383507,345.215710,345.988470,347.207053,347.742041,348.930902,349.881992,350.922246,351.724727,352.764981,353.983565,356.628782,358.025694,359.155113,360.106202,361.562558,362.721698,364.534712,365.574966,366.377448,368.160740,368.963222,369.617096,370.241248,371.727325,372.618971,374.045605,375.918063,377.552747,378.533558,379.722420,381.149054,382.219029,383.080954,384.358980,386.053108,387.004198,388.876655,390.154681,392.383797,392.918785,393.572659,394.315697,395.118179,396.188154,397.020357,397.882282,399.071144,400.111398,401.835247,402.281070,403.113273,404.302135,405.134338,406.471808,407.541783,410.335608,411.405584,412.861939,414.437181,416.606854,418.538754,419.370957,419.905945,420.440932,423.353644,423.977796,425.642202,426.712178,427.960483,428.941293,430.516535,431.110966,432.032334,432.923980,434.410057,435.004488,436.015020,436.758059,437.382211,437.857756,438.630516,439.522162,440.978518,441.810721,442.405152,444.069558,445.436749,446.655332,447.784751,448.706119,450.192196,452.094375,453.907389,455.007086,455.690681,457.652303,459.138380,460.148912,461.397217,462.734687,464.607144,465.736562,466.360715,466.955146,467.727906,468.560109,469.630084,470.581174,472.245580,473.612771,474.742190,475.425785,476.347153,477.654901,478.695155,479.051813,479.913738,480.270396,480.775663,481.310650,481.964524,482.915614,484.253083,485.471666,486.868579,487.344123,487.819668,488.919365,490.316278,491.505139,492.456229,493.288432,493.853141,495.517547,496.944181,497.835828,499.529956,501.372691,502.442667,504.493453,506.811733,508.327532,510.021660,510.645812,512.696599,513.588245,515.133765,517.243995,518.403135,519.502832,521.553618,523.158581,526.517116,527.349319,528.151800,529.905371,530.856461,531.510335,532.253373,533.353070,535.255249,535.849680,536.414389,537.365478,538.078795,539.772923,540.486240,541.377887,542.953128,544.647256,545.836118,548.094955,549.432424,550.680729,551.631819,553.266503,554.247314,554.752580,555.584784,556.803367,557.516684,558.319166,559.091926,560.191623,560.726610,562.420738,564.412082,565.571222,566.700640,569.732238,571.753302,574.101304,576.003483,577.251788,577.905662,578.410928,580.134777,580.669765,582.631387,583.939135,586.316858,587.149061,588.456809,589.675392,591.488406,592.885319,594.371396,595.203599,596.511347,598.651298,599.067400,600.761527,601.742338,602.307048,603.109529,604.417277,605.695303,607.032773,608.102748,609.469939,610.539915,611.877384,613.749841,614.849538,616.068122,617.316426,618.743060,619.634707,620.199416,621.239670,623.587672,625.519572,627.421751,629.829195,630.928893,631.761096,632.771628,635.327681,636.902922,637.972898,639.132038,640.261457,641.628648,643.352497,645.254676,647.751285,648.791539,650.039844,651.169263,652.417567,653.160606,653.606429,654.646683,655.478886,656.132760,656.697469,657.648559,659.580459,660.323498,661.363751,662.820107,664.098133,665.346438,666.119198,666.594743,667.724161,669.715505,671.320468,672.449887,674.084571,676.075915,677.235055,678.513081,680.415260,681.396071,683.803516,684.665440,687.459265,688.796735,690.074761,690.461141,691.412230,692.511927,693.849397,694.770765,695.929905,697.267374,699.169553,700.417858,700.952845,701.576998,702.349758,703.657506,704.846367,705.440798,707.610471,708.650725,710.196245,710.642068,711.830930,712.811741,714.030324,715.516401,716.913313,718.399390,719.409923,721.906532,723.035951,723.808711,724.492307,725.918941,727.048359,728.534436,729.009981,729.723298,730.971603,734.151808,735.459556,736.588974,737.748114,738.461431,739.650293,740.868876,742.503561,744.167967,745.713488,746.842906,748.180376,749.131465,750.825593,752.787215 diff --git a/data/torah/labels/Vayishlach-6.txt b/data/torah/labels/Vayishlach-6.txt deleted file mode 100644 index efb4822f8..000000000 --- a/data/torah/labels/Vayishlach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.314286,4.806400,6.122971,8.024686,9.224229,10.511543,11.798857,12.442514,13.934629,15.017143,15.807086,16.245943,17.211429,18.791314,19.932343,21.102629,22.711771,23.267657,23.823543,24.906057,26.339657,28.007314,30.260114,33.042713,33.949685,34.359285,35.734371,37.314256,38.250485,39.947399,41.059171,42.258713,43.692313,44.774828,46.032885,47.759056,48.373456,49.602256,50.333685,52.176885,53.698256,55.892542,56.945799,58.145342,59.461913,60.456656,61.246599,62.826485,63.908999,64.552656,66.103285,66.571399,67.478371,68.034256,69.409342,70.462599,71.779171,72.744656,74.412313,76.811399,77.630599,78.917913,80.673342,82.048428,83.130942,84.271971,85.295971,86.583285,87.314713,87.665799,88.104656,88.660542,89.947856,92.668771,94.073113,95.155628,96.179628,97.028085,98.315399,99.368656,100.334142,101.065571,102.733228,103.698713,104.225342,105.190828,106.741456,107.794713,109.550142,110.720428,112.124771,113.207285,114.084999,114.845685,116.542599,119.087971,120.580085,121.633342,122.832885,124.412771,125.904885,127.221456,127.631056,128.450256,129.503513,131.229685,132.634028,133.921342,135.150142,137.051856,138.339171,139.421685,141.908542,143.780999,144.834256,146.384885,147.584428,149.222828,150.422371,154.138028,155.074256,155.513113,156.478599,157.619628,159.228771,160.662371,162.622599,163.617342,164.436542,165.372771,166.308999,167.596313,168.942142,170.112428,171.311971,172.716313,174.296199,175.788313,177.455971,179.503971,181.522713,182.868542,183.834028,185.472428,186.759742,188.134828,189.422142,190.855742,191.908999,193.313342,194.922485,196.473113,198.257799,199.545113,200.715399,201.797913,202.646371,204.079971,205.367285,206.683856,207.912656,209.199971,209.726599,210.779856,211.833113,213.822599,214.700313,215.665799,216.602028,217.626028,219.556999,220.698028,222.073113,223.301913,224.325913,225.554713,226.169113,226.666485,227.690485,229.358142,231.289113,232.634942,233.571171,235.151056,236.116542,237.754942,238.749685,241.119513,242.582371,243.694142,245.566599,246.005456,247.117228,248.550828,250.072199,251.008428,252.559056,253.729342,254.987399,256.830599,258.088656,260.370713,261.482485,262.506485,263.384199,264.144885,265.754028,266.836542,267.304656,268.065342,268.972313,269.615971,270.435171,271.078828,273.243856,274.209342,275.379628,276.052542,277.369113,278.042028,278.744199,279.475628,280.236313,281.640656,282.606142,283.279056,283.805685,284.595628,285.414828,286.380313,287.726142,290.154485,291.529571,292.407285,293.372771,295.332999,296.444771,297.117685,297.966142,299.458256,300.306713,301.038142,301.828085,302.471742,303.261685,303.876085,304.519742,305.894828,307.123628,308.293913,309.464199,310.692999,311.102599,312.009571,313.209113,314.467171,317.392885,318.095056,319.616428,320.552656,321.137799,321.693685,322.454371,323.946485,324.531628,325.555628,326.111513,326.989228,327.749913,328.715399,329.212771,330.646371,331.494828,332.109228,332.869913,334.566828,335.766371,337.258485,338.077685,339.511285,340.154942,340.944885,341.998142,343.139171,344.221685,345.391971,346.094142,348.639513,349.604999,351.301913,352.238142,353.349913,355.076085,356.246371,357.504428,359.025799,360.049799,361.337113,363.121799,364.613913,365.550142,366.749685,367.861456,369.353571,370.289799,371.021228,374.063971,375.146485,376.316771,377.574828,378.276999,379.476542,380.939399,382.314485,383.396999,383.923628,384.772085,387.141913,388.048885,388.809571,389.862828,391.003856,393.871056,394.748771,395.860542,396.767513,397.703742,399.722485,400.717228,401.858256,403.701456,404.666942,406.334599,408.265571,410.050256,412.244542,413.678142,415.930942,417.715628,418.593342,419.119971,420.758371,422.191971,423.215971,424.239971,426.873113,427.926371,429.184428,430.471742,431.495742,432.812313,433.894828,435.035856,436.381685,437.815285,439.073342,440.331399,442.145342,443.140085,444.515171,445.919513,446.855742,447.762713,449.225571,451.419856,452.619399,454.579628,456.627628,458.031971,458.675628,459.465571,460.314028,461.513571,463.210485,464.468542,465.434028,466.194713,466.633571,467.482028,468.125685,468.915628,469.764085,470.934371,472.075399,473.450485,475.001113,476.054371,477.517228,478.570485,480.091856,481.291399,482.666485,483.866028,485.299628,486.352885,487.640199,489.190828,490.741456,492.116542,493.228313,495.071513,496.271056,497.470599,498.640885,499.869685,501.156999,502.473571,503.848656,505.370028,506.394028,507.564313,509.904885,511.338485,512.420999,513.035399,513.913113,515.083399,516.312199,517.482485,518.594256,519.764542,521.256656,522.426942,523.187628,524.943056,526.054828,527.371399,528.980542,530.326371,533.398371,534.480885,535.972999,537.026256,538.108771,540.654142,542.263285,543.462828,544.837913,546.008199,547.383285,549.080199,550.338256,551.801113,552.678828,553.673571,555.399742,557.213685,559.700542,560.695285,561.660771,562.538485,563.445456,565.610485,566.429685,567.775513,568.916542,570.818256,571.988542 diff --git a/data/torah/labels/Vayishlach-7.txt b/data/torah/labels/Vayishlach-7.txt deleted file mode 100644 index 560ccb9b1..000000000 --- a/data/torah/labels/Vayishlach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.396615,3.973399,4.806531,6.216446,7.914754,9.068321,10.253932,11.631804,13.105807,14.451635,15.925638,17.303510,18.649339,20.507864,21.437127,22.814999,23.872435,24.929872,25.763004,26.724310,28.358531,28.999401,29.960707,31.274493,32.171712,33.773888,34.895412,36.241241,38.003635,39.125159,40.246683,42.041121,44.059864,45.469780,47.360348,49.026612,50.500615,51.493965,52.455271,53.929273,55.146928,56.364582,58.639673,59.953459,61.491548,62.420811,63.414161,64.759989,66.842819,67.868212,69.470389,70.944392,72.194090,73.443788,74.373050,74.949834,76.391793,78.282362,79.019363,79.884539,81.166280,81.903282,82.928675,84.306547,85.844637,87.254552,88.824686,90.490950,91.452256,92.509693,93.695303,95.521785,97.156005,98.373660,99.046574,99.911750,100.616707,101.834362,103.276321,104.493976,105.583456,106.961328,107.890590,109.044158,110.293856,111.896033,113.081644,114.139080,115.100386,116.350084,118.464958,119.554438,120.708005,121.829529,122.983097,124.393012,126.315624,128.238237,130.224936,131.698939,133.204985,134.646944,136.024816,137.018166,137.947429,138.876691,139.549605,140.478868,141.183826,141.696522,142.433524,143.394830,144.548397,145.605834,146.535097,147.432316,148.009099,149.066536,149.995799,151.181410,152.527238,153.360370,154.834373,155.731592,156.949246,157.558073,158.166901,159.480686,160.730384,161.755777,163.037518,163.934737,165.120348,165.889393,166.850699,168.292659,169.446226,170.375488,171.176577,172.778754,173.259407,173.772103,176.303543,177.072588,177.745502,179.155418,180.212854,181.494596,182.359771,183.160860,185.660256,186.653605,188.127608,189.281176,190.979483,192.838008,194.215880,195.369448,196.875494,197.932931,199.599195,201.265459,202.386982,204.021203,205.206814,206.616729,207.898471,209.308386,210.109475,211.134868,212.416610,213.890612,215.781181,216.582269,217.319271,218.857361,220.459537,221.613105,222.926890,224.400893,225.394242,226.643940,227.925682,229.111293,230.937774,232.059298,233.180822,234.078041,235.135478,236.128827,239.525442,240.903314,243.370667,244.267886,246.158454,248.049023,250.227984,251.445638,253.079859,254.233426,255.386993,256.604648,257.822302,260.225567,262.692920,264.198966,265.256403,266.345883,267.659668,269.197758,271.024239,272.145763,273.395461,274.420854,275.734639,277.304773,278.971037,280.124604,280.893649,283.168740,284.995222,287.078052,288.648185,289.865839,291.532103,292.685671,293.871282,295.345284 diff --git a/data/torah/labels/Vayishlach-H.txt b/data/torah/labels/Vayishlach-H.txt deleted file mode 100644 index 360f7c96c..000000000 --- a/data/torah/labels/Vayishlach-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.007746,2.210540,3.705905,4.811175,6.078984,7.574349,10.240000,11.800381,13.165714,14.140952,15.343746,16.286476,18.041905,19.082159,20.935111,22.332952,23.340698,24.836063,25.876317,27.371683,28.704508,30.687492,32.150349,32.995556,34.035810,35.433651,36.376381,38.066794,39.399619,40.634921,41.155048,42.032762,43.658159,44.600889,46.323810,47.819175,49.021968,50.419810,51.330032,52.402794,53.670603,54.450794,54.938413,55.978667,57.148952,58.839365,60.074667,61.374984,62.252698,63.975619,64.853333,65.731048,66.543746,67.063873,67.779048,68.494222,69.339429,70.444698,72.200127,73.337905,74.345651,76.101079,77.043810,77.758984,78.994286,79.774476,80.977270,82.277587,84.033016,85.105778,86.471111,87.771429,88.941714,90.859683,91.672381,92.452571,94.598095,95.573333,96.451048,97.751365,99.506794,100.872127,101.749841,102.757587,104.838095,106.398476,109.096635,109.779302,111.242159,112.282413,113.160127,114.330413,116.345905,117.256127,118.003810,118.621460,120.636952,122.684952,123.562667,125.350603,126.780952,127.691175,128.828952,130.356825,131.949714,134.127746,136.305778,137.248508,138.158730,139.589079,140.531810,141.864635,144.010159,145.375492,146.253206,147.878603,149.406476,150.771810,152.364698,153.567492,155.127873,156.428190,158.346159,159.613968,160.459175,162.377143,163.547429,165.497905,166.668190,168.553651,169.593905,170.471619,171.999492,172.909714,173.494857,174.632635,175.802921,176.843175,177.590857,178.176000,178.956190,180.614095,181.686857,182.662095,183.247238,184.124952,184.840127,185.847873,187.960889,188.903619,189.586286,190.333968,191.179175,192.739556,193.682286,194.462476,195.632762,196.217905,197.355683,198.428444,199.306159,200.671492,201.256635,202.556952,204.019810,204.962540,206.652952,207.888254,208.733460,209.708698,210.553905,211.886730,212.861968,213.772190,214.454857,215.267556,216.405333,217.218032,217.673143,219.396063,220.111238,221.379048,222.451810,224.012190,224.759873,225.475048,226.125206,226.742857,227.328000,227.685587,228.953397,230.611302,231.554032,232.756825,233.439492,234.999873,236.072635,237.730540,238.835810,241.631492,242.866794,243.581968,244.362159,245.369905,246.702730,247.385397,248.035556,249.758476,251.416381,252.749206,254.049524,254.992254,255.967492,256.910222,257.690413,259.478349,260.681143,262.013968,263.541841,264.939683,266.207492,267.150222,268.060444,269.425778,270.726095,272.253968,273.294222,274.171937,275.407238,277.162667,279.860825,281.811302,282.526476,283.534222,284.899556,285.679746,288.215365,288.963048,289.678222,290.393397,292.051302,292.961524,294.359365,295.172063,296.537397,298.715429,299.918222,300.893460,301.771175,303.494095,305.021968,305.639619,306.582349,307.915175,308.532825,309.378032,310.158222,311.068444,311.946159,314.091683,315.522032,316.334730,317.667556,319.292952,320.398222,322.023619,323.193905,324.624254,325.664508,326.834794,327.452444,328.232635,330.605714,331.841016,333.173841,334.994286,336.359619,337.529905,338.375111,339.545397,341.008254,342.211048,343.478857,344.454095,345.461841,346.112000,346.664635,347.899937,349.297778,350.760635 diff --git "a/data/torah/labels/Va\342\200\231ethanan-1.txt" "b/data/torah/labels/Va\342\200\231ethanan-1.txt" deleted file mode 100644 index ac8ee8d42..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.436553,4.110399,5.364276,6.432394,7.639832,9.265229,10.973063,13.886846,15.304110,16.855529,18.686172,19.101856,20.590208,21.953593,23.834409,25.250827,26.783344,28.966019,30.521756,31,31.798854,33.958310,35.862346,37.365051,38.479609,40.522965,44.122058,45.265904,47.442511,49.236633,49.584932,51.117449,52.696406,54.228923,55.575680,57.084977,58.385295,61.148469,62.541667,65.351281,67.557177,68.880714,70.064932,72.758447,74.274221,75.712517,77.296258,78.818855,80.281712,82.023209,82.499978,83.485776,84.665501,86.976470,88.391546,90.852861,92.060298,93.569595,95.427192,98.422566,99.630004,102.764697,104.349140,106.921069,108.917985,111.402521,113.236897,115.164153,116.510911,118.368507,119.136109,120.110004,121.576363,122.141985,123.547959,125.131700,126.909369,127.345705,128.800162,130.981846,132.969602,133.502903,134.407898,137.413773,139.251242,140.714099,142.316276,143.941672,145.776049,147.355006,147.998981,149.178707,150.187840,152.091877,154.274552,156.108929,157.362806,157.921603,160.135609,164.491332,168.160085,169.331003,169.767340,171.286438,171.690454,173.710531,176.231589,178.801128,180.207102,181.677718,183.424173,185.165670,187.766305,189.507802,191.458278,192.036677,193.297206,196.189957,198.935103,200.235421,202.185897,203.555874,205.576010,206.829888,209.685942,210.427466,211.497099,212.948523,214.580746,216.261451,218.695285,220.912968,222.515145,224.094102,226.973376,227.509244,229.012182,230.789850,232.842249,234,235.796959,237.329476,239.326392,241.485848,243.366664,245.386800,246.013157,247.306006,249.326084,251.306198,252.745835,253.953273,254.675250,257.050862,258.731567,260.153701,261.979852,262.917168,264.129215,267.135090,268.670349,270.334894,272.786349,274.806485,276.780181,278.498458,280.309614,282.167210,284.373106 diff --git "a/data/torah/labels/Va\342\200\231ethanan-2.txt" "b/data/torah/labels/Va\342\200\231ethanan-2.txt" deleted file mode 100644 index 532d1f1fa..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0.335804,3.096153,5.232568,8.042182,9.435380,11.292976,12.848713,14.265130,15.751207,17.306944,19.327080,20.627398,22.624314,24.226491,25.503588,28.266763,29.659960,30.937058,33.096513,37.183225,40.410799,41.687897,42.756015,44.961910,47.678645,49.396922,50.813339,52.485176,55.550210,57.036287,57.493522,59.208077,60.833474,63.875288,65.361365,65.953326,67.451161,69.215293,70.538830,72.071347,73.952163,75.600780,76.168812,77.504816,79.223093,80.085644,80.941370,82.596321,84.128838,85.545256,87.588612,89.353328,90.955505,92.232603,94.392058,96.365754,97.782172,99.152149,100.136321,102.040357,103.410335,105.337591,106.846888,108.356185,110.097682,111.490879,114.091514,116.738589,117.992466,120.035822,122.195278,126.607069,128.371786,131.181400,132.969337,135.407432,138.008067,138.498219,139.610244,140.214903,142.165380,143.188044,144.279381,147.228316,148.048210,149.394967,152.204582,153.690659,154.851657,156.337734,158.613289,160.378006,161.956963,164.046759,166.624174,168.465361,171.291385,172.847122,174.542178,177.955512,180.672246,182.367303,184.782178,187.684673,188.2,189.495829,189.957633,191.283765,193.334989,193.671510,195.035022,196.848839,199.170835,200.735360,203.614634,204.138162,205.531359,206.854897,208.178434,209.664511,210.162786,212.159702,213.069547,214.551358,217.035893,219.032809,220.983285,222.167503,223.467820,226.718614,228.227911,229.621108,230.162419,231.478705,233.192096,234.678173,235.834933,238.323706,241.530046,244.253073,245.785590,246.946588,248.154026,249.477563,250.824320,252.403277,253.703595,256.652529,258.068946,259.601463,261.157200,262.805817,265.336792,267.542688,268.308946,271.165001,272.720738,274.021055,275.553572,277.086089,278.734706,280.545862,283.030397,283.746201,284.887994,285.892900,287.796936,291.187049,292.649907,294.205643,295.738160,297.247458,299.058614,300.892990,302.425507,304.445643,306.790859,308.532356,310.668591,312.038569,314.546324,316.032401,317.332718,319.422514,321.767730,323.323467,325.738342,327.294079,328.594396,330.266233,330.877558,332.340415,335.567989,337.193385,340.444179,343.253794,345.111390,346.272388,348.176424,349.523181,351.520097,353.470574,356.071209,357.441186,358.834383,359.461159,360.598937,362.015354,363.454991,364.708869,367.123744,369.445739,369.943587,371.349776,372.799642,374.308939,375.702136,376.254122,377.629392,379.128786,380.638083,382.031280,384.306836,387.000350,387.574509,388.950827,390.848523,393.727797,394.318780,395.313165,396.220693,397.335251,399.007088,401.630943,402.459439,403.697519,405.803112,408.868146,411.700981,412.112242,413.372818,414.116078,416.066332,416.832819,419.642205,421.212369,422.941811,424.683308,428.003761,430.163217,431.695734,433.948070,435.759226,438.011562,439.892378,441.564215,443.328932,445.279408,446.997684,448.576641,449.160609,451.164445,453.620275,455.292649,457.164401,458.836238,461.413653,462.899730,464.525127,466.452383,467.938460,470.190796,471.769753,473.464810,474.881227,477.017463,478.898279,479.896140,480.920658,481.704112,483.481952,486.856834,488.664806,490.141317,490.571102,492.235552,493.787395,494.947510,495.444703,496.492,498.643205,500.315042,502.288738,504.146334,505.771731,507.188148,509.603023,511.274860,512.807377,514.386334,516.151051,517.799667,519.355404,520.980801,521.509638,523.166946,524.944786,526.677426,529.069770,529.599949,530.624832,532.061264,534.240777,536.226349,539.244943,540.026289,541.563065,541.984925,542.949177,544.485954,547.047248,548.267630,549.698941,551.145319,553.135473,554.233938,555.544718,557.458156,558.723737,559.718121,561.059034,562.565678,564.509248,566.092208,567.973024,569.737741,571.432797,572.942094,574.103092,575.449850,577.748625,578.988094,579.937279,581.097395,582.890301,584.321612,586.665088,587.942185,591.610938,593.514974,594.768852,596.417469,597.764226,599.668262,602.106358,602.898529,604.149714,605.943706,608.776541,613.443752,615.115588,617.298264,617.889633,619.179080,620.177538,622.824613,623.449148,624.790061,628.390940,631.012500,632.855634,634.411371,635.781348,637.894364,640.286019,640.805683,643.397493,644.512051,646.160668,646.937723,648.482663,650.116741,651.653518,652.477030,654.032767,657.097801,661.300613,663.761928,665.085466,666.571543,668.754218,670.449275,672.213992,674.559207,675.975624,678.715579,681.246554,682.593311,684.613447,687.480436,688.839479,690.382930,692.333406,693.378304,694.678622,696.304019,697.581116,699.090413,699.625052,700.950899,701.674088,703.376595,704.792840,706.646012,707.979101,710.005827,712.367673,715.154067,715.535209,716.733024,718.265541,720.169577,721.848046,723.675791,724.559116,725.905873,727.322290,729.528186,731.339342,732.593220,735.611814,736.935351,738.328549,739.953946,742.624240,744.388957,746.223333,746.692600,748.104150,749.751087,751.845322,754.078138,755.749975,756.725213,758.443489,760.115326,761.903263,763.598319,765.455916,766.918773,769.310428,770.912605,772.491562,772.998599,774.354578,776.300092,777.716509,779.156146,781.315602,783.428618,784.3,786.479503,788.151339,790.550997,791.409784,792.509634,795.402390,796,797.692488,799.946567,801.293324,803.058041,805.565796,806.039294,807.307293,809.158047,810.815355,811.553610,812.638393,814.084771,817.291873,818.731510,820.240807,821.726884,822.887882,824.490059,826.579855,828.507111,830.968426,832.315184,834.567519,837.214594,837.919874,839.884889,840.990401,842.244279,843.800016,846.238111,848.536886,850.371263,853.366637,856.083372,857.801648,859.055526,861.725821,863.049358,865.487453,868.482827,870.085004,872.639199,876.029313,877.515390,879.024687,880.859063,882.530900,884.411716,885.712034,888.150129,888.829364,890.004546,892.155848,895.081562,897.821517,899.516573,901.977889,904.067685,905.832401,907.481018,908.107310,909.570167,910.404501,911.729623,913.101393,914.382040,916.943334,917.500792,919.903047,922.062503,922.548049,923.768430,925.772266,927.067980,929.569008,932.813342,933.410950,934.992925,936.785831,938.383756,939.823393,941.170150,942.725887,946.185661,947.602078,948.972055,949.532037,951.309876,952.826568,954.568064,956.309561,959.630014,962.230649,963.832826,965.411783,967.640899,971.054232,973.515547,976.394822,979.041896,980.667293,982.617769,986.356182,987.286397,989.492293,989.910087,992.109787,993.671885,994.925762,997.503177,999.941273,1002.750887,1007.209118,1007.613150,1009.868498,1011.168815,1012.863872,1014.187409,1016.045005,1018.250901,1019.760198,1020.690817,1021.790667,1023.508241,1024.969685,1026.958384,1030.209178,1030.634665,1031.927454,1032.743966,1035.470991,1037.248831,1038.665076,1040.380871,1041.983048,1043.747765,1045.512481,1047.068218,1048.670395,1050.876291,1052.896427,1054.173524,1055.798921,1056.338006,1058.492507,1060.149815,1062.764908,1065.574522,1066.874840,1068.778876,1069.641670 diff --git "a/data/torah/labels/Va\342\200\231ethanan-3.txt" "b/data/torah/labels/Va\342\200\231ethanan-3.txt" deleted file mode 100644 index 4530b75ae..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.876608,2.538749,4.178121,5.965491,7.456864,8.885005,10.580061,12.530538,14.225594,16.106411,18.149767,21.121921,22.584778,24.349494,24.784111,26.253531,27.2,28.366547,30.827862,31.648980,32.871218,34.008996,35.495073,37.143689,40.266956,41.009995,43.123011,43.944267,45.048566,46.710706,48.611922,49.579607,51.923374,54.825868,56.451265,58.169541,59.911038,61.112130,62.479067,64.311182,66.098552,66.884085,68.022537,69.696062,72.301107,74.125209,75.773825,76.641863,77.872521,79.544358,81.448394,82.702271,84.792067,86.278145,88.089301,89.993337,92.176013,93.865409,95.482011,97.155537,97.621288,99.037706,100.941742,102.752898,105.074894,106.700291,109.115166,112.031517,113.285394,114.608932,116.141449,118.904623,120.831879,122.341177,124.082673,125.522310,127.240587,129.191063,130.677140,132.047118,133.626074,135.646211,137.550247,139.291743,141.567299,143.378455,143.877627,145.960995,146.541606,148.158209,149.500908,150.275730,152.837249,154.480905,156.268842,158.103218,159.728615,161.145032,162.584670,164.349386,166.137323,169.179137,170.874193,171.444411,172.117789,174.323685,176.970760,177.814896,178.572937,180.296723,181.389637,183.848695,184.798007,187.189663,188.675740,190.277917,192.158733,193.714470,194.782588,196.268665,197.940502,199.287259 diff --git "a/data/torah/labels/Va\342\200\231ethanan-4.txt" "b/data/torah/labels/Va\342\200\231ethanan-4.txt" deleted file mode 100644 index 5854b14a6..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-4.txt" +++ /dev/null @@ -1 +0,0 @@ -2.630160,3.949728,6.229799,6.597842,6.867141,9.504747,10.990824,13.034180,14.171958,15.356175,15.556544,16.831229,17.235178,18.839169,21.068284,23.181300,24.226198,25.484725,26.508063,28.285441,29.335710,30.564811,32.166988,33.629845,35.673201,36.373408,38.240552,39.165148,40.772279,42.181304,42.360837,43.514778,44.211376,45.349154,45.484713,46.122055,47.100511,48.275389,49.320287,50.736056,51.651675,53.267473,54.335695,55.4,56.534976,58.393143,60.870700,61.963595,63.890851,65.725227,66.979105,67.612169,68.883141,71.599876,72.784094,73.007138,73.979990,75.280307,76.418085,77.416543,78.484661,79.367019,79.658840,80.133539,81.131736,82.107235,83.245013,84.425444,85.265149,85.870686,86.766457,87.555935,88.902693,90.203010,91.038929,92.130266,93.895816,95.859108,96.741466,97.716704,98.500840,100.038700,100.762957,101.113047,103.142886,104.187783,106.045380,106.463133,108.528282,110.026865,110.592395,111.418247,113.191602,113.806037,116.837135,117.835593,119.832510,122.781444,125.312419,126.403757,128.122033,129.399131,131.233507,132.487385,134.600401,135.089687,136.242902,138.495237,139.326669,141.382323,142.118408,143.918201,145.102419,146.193757,147.238655,148.283553,150.187589,151.255707,153.206183,153.644434,155.143535,155.929901,156.719379,157.136353,158.247927,160.059084,161.283568,162.012363,163.173361,164.729098,165.610316,167.118394,168.330242,170.289695,170.684434,170.924496,171.499002,172.429123,173.823955,174.775481,175.796016,176.794474,177.955472,179.255789,180.107614,180.628260,180.825747,181.543879,183.215508,184.887344,185.314074,187.360752,188.419997,190.320814,191.412152,193.246528,194.477186,196.497322,197.867299,198.994497,201.466392,202.340403,202.639019,204.595930,205.547585,207.196202,208.751939,209.827893,212.033789,212.962587,214.146805,214.362531,217.606578,219.069435,219.865221,221.265579,222.620950,225.012605,226.157856,228.055199,228.850853,231.036408,232.429606,233.393041,234.681941,236.719462,238.460958,239.649769,240.874797,241.942915,244.032711,244.452280,244.910090,245.816732,246.413757,248.526773,251.382258,252.513317,253.494185,254.562302,255.653640,256.652098,257.944193,258.931625,259.613851,261.121929,262.402374,263.493711,264.585049,265.978247,266.301459,266.599972,267.877069,269.084507,269.308639,270.197328,270.556394,271.499382,272.504328,273.244254,273.985476,274.974127,276.901384,278.105761,280.036078,281.220295,282.258009,283.054672,283.836966,285.114064,285.735918,286.303134,287.092612,287.665899,288.572541,289.623900,290.738457,291.956741,293.199773,294.361420,295.592078,296.184745,296.765011,297.740249,298.132679,299.156018,300.113224,301.134902,301.612041,302.504311,303.469638,305.143447,305.646140,307.603051,309.694612,310.992903,312.270000,313.314898,314.661656,316.031633,316.651520 diff --git "a/data/torah/labels/Va\342\200\231ethanan-5.txt" "b/data/torah/labels/Va\342\200\231ethanan-5.txt" deleted file mode 100644 index 8f86b58b1..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.158643,2.533737,6.480763,9.358273,10.988014,11.866545,12.566824,14.540338,17.572364,18.988781,20.498078,22.193135,24.515130,25.560623,27.093140,28.300578,29.531235,33.223208,33.957163,35.179469,36.529097,38.273428,40.096315,41.961611,44.887325,46.861022,47.326125,48.459304,50.056219,51.495856,53.330232,54.491230,55.861208,58.229643,59.924700,60.542299,61.650013,63.521668,66.054768,69.769960,70.581422,72.833757,74.598474,76.130991,76.623251,78.127907,78.876876,80.481151,80.939515,82.026066,83.279944,84.440942,85.694819,87.041577,88.295454,89.801227,90.603365,92.544706,94.611282,95.250671,96.600300,98.230040,100.114427,101.514985,102.826416,103.959595,105.449279,106.855172,108.109050,109.432587,110.300302,111.638483,115.334616,117.540512,118.067033,118.980149,121.250119,123.600920,124.599378,126.782054,128.732530,130.032848,130.735716,134.630399,136.534435,137.904412,140.737247,142.223324,144.220240,146.611514,147.020385,148.904772,150.432653,152.317040,153.387366,154.571584,156.700903,158.604939,159.001521,159.816391,161.137057,162.437375,163.784132,165.897148,167.499325,170.146400,172.468395,172.930706,174.178476,176.555107,179.318282,181.895697,183.242454,185.053611,187.073747,188.743025,190.252323,190.768721,191.863703,193.735316,196.359171,198.007787,199.566771,201.703007,204.187542,206.718517,207.333502,207.982851,209.536197,210.745770,212.082666,213.368633,215.151161,216.488058,218.054136,218.512500,219.340103,221.186293,221.7,225.232855,227.972810,230.155486,231.641563,234.404737,235.751495,238.282470,239.582787,240.004698,240.513992,241.710832,242.283788,243.315108,244.870072,246.240050,248.538825,250.582181,252.579097,253.995514,255.295832,256.340730,257.524948,258.848485,261.263360,264.398054,267.393428,268.624086,271.108621,273.059097,276.124131,278.353247,278.647365,280.710004,282.319171,284.316087,285.732505,287.404341,289.459589,290.899226,293.244442,295.636097,296.889975,298.097412,300.233648,302.625304,304.436460,305.899317,308.337412,309.800269,311.472106,312.865304,314.165621,315.721358,317.044895,319.111471,320.625905,323.299698,324.980367,327.055739,329.445150,331.813585,333.462202,334.994719,336.550456,338.291953,339.940569,341.426646,343.702202,345.188279,346.883336,347.881794,349.971590,351.689866,354.453041,356.174612,358.164021,359.603658,361.879214,363.295631,365.013908,366.592864,368.171821,370.284837,371.770914,373.071232,375.230688,376.623885,377.738443,379.851459,382.583186,384.580102,385.089767,386.298379,388.899014,391.569308,392.270809,392.576385,393.989676,397.567203,398.508995,399.577113,402.200968,403.806313,405.449668,406.352782,407.600552,408.822857,409.663228,410.847446,412.426403,413.889260,415.677197,417.674113,419.462049,421.389306,423.037922,424.918739,426.590575,427.937333,429.632389,431.002367,432.209804,435.112299,436.482276,438.386312,440.081369,441.567446,442.798104,445.050439,446.164997,448.208353 diff --git "a/data/torah/labels/Va\342\200\231ethanan-6.txt" "b/data/torah/labels/Va\342\200\231ethanan-6.txt" deleted file mode 100644 index 37f2b6d8f..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-6.txt" +++ /dev/null @@ -1 +0,0 @@ -1.000446,2.431829,3.956046,5.612963,6.843620,8.469017,10.883893,13.461308,14.924165,16.317362,17.664119,18.395483,19.639825,20.448422,21.766928,22.761592,24.623693,27.119349,28.651866,31.391820,32.738578,35.176673,37.637988,39.216945,39.763390,41.671755,44.000256,45.764972,47.367149,48.435267,50.339303,51.964700,53.915176,55.378033,57.212410,59.627285,61.206242,62.785199,63.299894,64.491176,65.941497,67.520453,68.539223,70.585487,73.396880,74.194924,75.090159,76.669116,79.432290,82.265125,83,84.935419,86.560816,89.370431,90.190493,91.936937,93.342582,95.711018,98.273341,100.781096,102.243953,103.869350,104.914248,106.098466,108.327581,109.697559,111.299735,112.600053,113.2,114.991708,117.917422,119.496379,120.4,122.840053,124.165306,124.797544,127.003440,128.791377,130.439993,132.111830,132.650668,134.229625,135.924682,137.480419,138.780736,139.313480,140.753117,143.167992,145.164908,147.138604,148.601462,149.167142,150.281700,150.853373,152.148748,154.288430,156.527868,157.781745,159.151723,160.382380,162.495396,163.332925,165.542002,167.693250,169.066643,170.390181,171.876258,173.571314,175.568231,177.123968,178.563605,180.281881,181.442879,182.998616,184.740113,186.365509,187.851587,190.405782,191.822199,192.727777,194.803601,196.257210,197.534308,199.172046,200.057674,202.295266,202.876564,204.160373,205.699774,206.744672,209.654151,210.995790,211.909492,214.094815,216.397042,217.923734,218.432631,219.641569,221.406286,222.892363,224.517760,226.491456,228.395492,230.044109,230.680866,231.999372,233.364143,234.897079,236.688572,238.290749,239.753606,241.843402,244.560137,246.069434,247.625171,249.018368,250.388345,252.222722,253.848118,255.148436,257.841951,259.885307,260.231611,261.457591,262.903322,263.678234,264.490226,265.953083,268.298299,270.132675,270.478953,270.664007,271.711632,273.429909,275.566144,276.611042,278.422199,280.784,281.879607,283.946182,285.246500,286.407498,287.568495,290.424550,292.073167,294.000423,295.300740,297.553076,298.783734,300.107271,301.732668,304.008223,305.540740,308.048495,309.395253,310.718790,312.251307,314.898382,317.150718,318.660015,319.658473,321.260650,323.048586,327.042418,328.156976,330.641511,332.174028,335.146182,338.187997,339.697294,340.269759,341.299470,344.124272,346.399827,347.630485,348.861143,350.440100,351.786857,353.435474,355.200190,356.616607,357.211258,358.358104,359.593822,360.808237,363.350394,365.718830,368.760644,370.386041,370.662340,370.893657,372.466613,373.912344,375.584794,375.959499,377.127650,378.423025,379.926586,381.320123,381.824974,383.224159,385.052547,386.329645,388.140801,389.951958,390.674790,391.693454,392.350956,393.504893,395.783365,396.211302,396.454184,397.633901,400.363441,402.823155,404.239572,406.259708,408.047645 diff --git "a/data/torah/labels/Va\342\200\231ethanan-7.txt" "b/data/torah/labels/Va\342\200\231ethanan-7.txt" deleted file mode 100644 index ef5d0e9f4..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0.751890,1.785825,3.225462,4.850859,6.383376,6.941615,8.636671,9.163654,9.805893,10.111349,10.940440,12.519396,14.818172,15.602073,16.693411,20.942663,23.473638,25.308014,27.722889,29.580486,32.506200,34.108377,35.896313,37.335951,38.822028,40.075905,41.654862,43.582118,46.693592,49.062028,51.012504,52.730781,54.449057,55.842255,57.397991,58.976948,59.595082,60.602345,62.692141,64.038899,65.315996,67.429012,69.193728,70.842345,72.119443,73.814499,74.327419,75.658890,77.319313,78.995575,79.504492,80.435212,82.825338,83.624220,84.603243,85.112335,86.271498,88.157178,89.991554,91.129332,92.476089,94.078266,94.503123,95.732776,97.352280,99.279536,100.812053,102.692869,103.251672,104.191534,105.595364,106.942121,109.380216,110.796634,113.443708,114.953005,117.042801,118.784298,120.711554,122.336951,124.148107,125.378765,126.748742,128.095500,129.442257,130.974774,132.553731,135.015046,137.267382,139.310738,142.073912,143.513550,144.790647,146.090965,147.321622,148.807699,150.131237,151.640534,152.147991,153.087853,155.471826,156.573175,159.339116,160.927869,163.442000,166.096122,168.394898,170.415034,171.831451,173.062109,173.678663,174.641066,176.034263,177.092753,178.834249,181.458104,183.013841,184.964317,187.797152,189.701188,189.977436,191.269747,192.766222,193.996880,196.345001,198.725985,200.846766,202.030984,202.890122,204.190440,206.117696,207.394794,208.787991,210.274068,211.435066,212.001536,214.181446,216.735641,217.189848,218.234746,219.651163,220.487081,221.857059,223.296696,224.782773,227.104768,228.219326,231.098601,233.676016,235.115653,236.764269,237.902047,239.806084,242.429938,244.891254,245.625098,246.658947,248.374247,249.713498,251.099794,253.379499,254.078878,255.100556,256.200657,257.686734,259.521110,260.004987,261.767126,262.377949,263.538947,264.218701,266.967406,268.174843,270.705818,273.097474,274.815750 diff --git "a/data/torah/labels/Va\342\200\231ethanan-h.txt" "b/data/torah/labels/Va\342\200\231ethanan-h.txt" deleted file mode 100644 index 809816ae3..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-h.txt" +++ /dev/null @@ -1 +0,0 @@ -2.389395,4.065058,5.388595,7.339071,9.034128,11.657983,14.235398,14.703738,15.442836,17.486192,19.105881,20.615179,21.535815,22.743252,24.113230,25.111688,26.412005,28.548241,29.837116,31.218536,32.936813,34.585429,36.326926,37.213305,38.978022,40.556978,42.182375,44.829450,46.222647,47.072296,48.903762,50.759485,52.422375,53.862012,56.044688,56.775424,57.721478,59.455912,60.587076,61.260455,62.421453,64.673788,66.183085,67.831702,69.549979,71.454015,73.799230,75.865806,76.591334,78.518591,79.842128,80.269121,81.421367,83.185802,85.136278,85.884805,87.156414,89.036167,90.638344,92.240520,93.633718,95.189455,95.684964,97.557890,98.292679,100.160531,101.579614,102.850546,103.988323,105.048482,106.625240,108.165612,109.398573,111.391901,112.471374,114.363484,115.134219,116.388097,117.549095,118.919072,120.242610,121.333947,122.611045,124.422201,125.652859,126.837077,128.625013,129.718683,131.004347,132.089071,133.784128,135.261594,135.589075,136.571517,137.3,138.147685,139.819522,141.305599,142.582697,143.859794,145.438751,146.948048,149.316484,150.849001,151.587106,152.921286,154.405938,156.100995,157.424533,158.701630,160.837866,162.440043,163.926120,165.342537,167.130474,168.616551,170.102628,171.223810,172.812697,174.171135,175.462763,176.879180,178.597456,180.664032,183.543307,185.281216,186.700298,188.699290,190.556886,192.019743,193.714800,195.595616,196.779834,198.846410,199.3,200.541467,203.304641,205.603417,207.530673,209.063190,210.549267,211.617290,213.010488,214.078606,216.168401,217.886678,219.163776,220.533753,222.112710,224.736565,225.245971,226.147723,226.472803,227.285501,229.328857,230.279469,231.395328,233.341107,234.888454,235.755982,237.056300,239.029996,240.934032,241.777674,243.645526,245.990355,246.919153,247.964051,249.264368,250.982645,251.917442,253.118204,254.573673,256.089787,257.497514,258.821052,261.003728,262.071846,263.070304,263.906222,265.392299,268.155474,269.273911,270.013775,271.853789,274.477644,275.708301,276.235905,277.705218,278.266684,279.404462,280.542239,282.585595,283.653713,284.698611,285.793222,287.070319,288.134365,288.765376,289.577705,291.050088,292.052003,292.767608,294.029015,295.351066,296.988469,298.771418,300.372434,301.961321,302.713314,304.975764,306.805031,307.524849,309.498545,312.981539,314.606935,315.582173,315.958083,316.975371,318.841306,320.118403,321.325841,322.386404,323.684198,325.624823,326.449589,327.208195,328.578173,329.785610,331.039488,332.502345,333.918762,336.171098,337.215996,337.912594,339.839851,341.163388,343.965668,345.431332,346.947445,348.706137,349.082133,350.097910,351.495786,353.232603,355.392059,356.808476,357.783715,359.339452,361.336368,362.404486,364.447842,365.722997,366.753954,368.706708,369.724560,370.397939,371.544873,372.766374,374.043472,374.674132,377.108506,378.246284,378.810090,380.289816,381.915036,382.509407,383.079466,384.262645,386.166682,387.652759,388.953076,390.067634,391.971670,393.573847,394.572305,396.476342,397.464352,398.2,399.378836,401.569420,402.753638,404.425474,405.165558,405.981211,407.507089,408.622948,409.217265,410.459708,411.481386,413.013613,414.590371,416.644819,418.394803,419.857660,421.250857,422.597614,423.828272,425.523329,426.777206,427.938204,428.453715 diff --git a/data/torah/labels/Vezot Haberakhah-1.txt b/data/torah/labels/Vezot Haberakhah-1.txt deleted file mode 100644 index acec19af4..000000000 --- a/data/torah/labels/Vezot Haberakhah-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.213043,4.103927,5.568642,6.647906,8.575162,9.712243,11.003505,11.388956,12.102041,13.393303,14.646019,16.573275,19.541250,22.779040,24.320845,25.438654,26.672098,28.059723,28.888443,30.237522,31.297513,32.511684,33.937854,35.132753,36.038563,39.018291,39.962647,40.810640,42.371717,43.952067,45.108421,46.438228,47.209130,48.326939,50.042197,51.545457,52.836718,53.993072,55.457787,57.886130,59.254482,59.909749,60.642106,61.856278,63.359538,64.419528,65.961333,68.187565,69.324646,70.249729,71.984259,72.774434,73.853698,74.875144,76.012225,77.785301,78.941654,80.078736,80.522005,81.389270,82.641986,83.374344,84.704151,86.323046,89.984833,92.258995,93.530984,94.764428,95.805146,96.942228,97.982946,98.676758,99.929475,101.837458,102.935995,104.073076,105.152339,106.327966 diff --git a/data/torah/labels/Vezot Haberakhah-2.txt b/data/torah/labels/Vezot Haberakhah-2.txt deleted file mode 100644 index 23069db9f..000000000 --- a/data/torah/labels/Vezot Haberakhah-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.274162,3.237790,4.490507,5.434863,6.090130,7.554844,9.019559,10.060278,11.100996,12.392258,12.951162,13.432976,14.724238,18.347479,19.580923,20.930003,22.105629,23.512526,24.283429,25.247057,26.326320,27.347766,28.253576,29.043751,29.833927,30.759010,31.934636,32.801901,34.073890,35.326607,37.485134,39.007666,40.164020,41.127648,42.399637,43.922170,45.309794,46.485420,47.526139,48.933036,49.472668,50.918110,52.254251,53.256424,54.374233,56.012401,57.072392,58.363654,59.635643,61.639989,63.104704,65.359594,65.787937,67.753738,69.777357,70.586805,71.878066,73.265691,74.267864,75.058039,76.079485,77.197293,77.968196,78.225259,79.169615,80.171788,81.636502 diff --git a/data/torah/labels/Vezot Haberakhah-3.txt b/data/torah/labels/Vezot Haberakhah-3.txt deleted file mode 100644 index e5643548c..000000000 --- a/data/torah/labels/Vezot Haberakhah-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.586471,3.778815,5.613192,6.475349,7.741068,9.153538,10.162445,11.263071,12.730572,13.721136,14.895137,16.344294,17.481607,18.563889,19.627828,20.416610,22.012517,23.901925,24.598988,25.589551,26.965333,27.882522,29.386710,31.973181,33.165526,34.412902,35.862059,36.834278,37.898217,41.823782,43.181221,44.245159,46.978380,47.712131,49.434966,50.759533,52.300410,53.144223,54.666755,55.694006,56.537819,57.785195,60.188228,62.352792,63.636856,64.719138,65.434545,66.443452,67.727515,68.773110,70.203923,71.818175,72.478550 diff --git a/data/torah/labels/Vezot Haberakhah-4.txt b/data/torah/labels/Vezot Haberakhah-4.txt deleted file mode 100644 index c12246d46..000000000 --- a/data/torah/labels/Vezot Haberakhah-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.735311,3.723552,4.888265,5.929448,7.500045,8.894171,10.800065,12.229486,12.688312,13.694200,14.611853,15.723624,16.288334,17.294222,18.370699,19.005997,19.817767,20.664831,23.488377,24.900151,26.664867,28.553114,29.717827,30.653127,31.729604,32.611962,34.147265,35.188448,36.194337,37.217872,37.747287,39.141413,40.588481,41.453192,42.212020,42.917907,44.806153,46.006161,47.135579,48.529705,50.382658,50.982661,52.059138,53.400323,54.370917,55.429747,57.335641,57.829761 diff --git a/data/torah/labels/Vezot Haberakhah-5.txt b/data/torah/labels/Vezot Haberakhah-5.txt deleted file mode 100644 index 43e4070a8..000000000 --- a/data/torah/labels/Vezot Haberakhah-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.103509,3.125187,3.868226,4.611264,5.447182,7.374439,7.838838,9.232035,11.507591,12.436389,13.945686,15.013804,16.244461,17.567999,18.380697,19.611355,20.633033,21.910130,23.628407,25.578883,26.577341,27.924099,29.038656,30.083554,31.105232,32.335890,33.380788,34.843645,35.911763,37.142421,39.325096,40.323554,42.041831,43.597568,45.199745,46.546502,47.359201,48.845278,49.983055,51.051173,52.119291,54.394847 diff --git a/data/torah/labels/Vezot Haberakhah-6.txt b/data/torah/labels/Vezot Haberakhah-6.txt deleted file mode 100644 index 3c2425e65..000000000 --- a/data/torah/labels/Vezot Haberakhah-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.957506,4.304264,5.349162,6.626259,8.507076,9.644853,12.315148,14.056645,15.426622,16.982359,18.607756,21.672790,22.671248,23.878686,25.086123,25.991701,27.431339,27.922979,28.618327,29.521345,30.775223,31.448601,32.609599,33.724157,34.954815,36.231912,37.973409,38.553908,40.341844,41.665381,42.663840,44.010597,45.264474,46.402252,47.679350,48.445608,49.931685,52.300121,53.391459,54.204157,55.179395,56.131413,58.290869 diff --git a/data/torah/labels/Vezot Haberakhah-7.txt b/data/torah/labels/Vezot Haberakhah-7.txt deleted file mode 100644 index 2604ab135..000000000 --- a/data/torah/labels/Vezot Haberakhah-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.156062,4.152978,5.430075,6.544633,7.450211,8.355790,9.586447,11.049304,12.396062,13.626719,14.207218,14.694837,16.157694,17.620552,20.615926,21.173205,21.684044,22.914701,23.680960,24.888397,25.584996,27.280053,28.324951,28.859010,29.857468,30.786266,31.320325,32.411663,33.665540,35.058737,35.685676,36.405495,37.496833,38.611391,39.470529,40.956606,43.023182,44.393159,46.343635,48.410211,51.114868,53.204664,54.156682,55.294460,55.898179,57.700219,59.090439,60.622956,62.596652,63.641550,64.686448,66.172525,68.889260,70.375337,72.093614,73.649351,75.088988,77.178784,78.920281,80.986857,82.472934,84.075110,84.771709,88.045723,90.411074,92.199011,95.078285,95.960643,98.073659,99.211437,100.442095,100.860054,101.394113,103.530349,104.900326,106.247083,107.524181,108.592299,109.730076,110.937514,111.425133,112.493251,113.747129,114.466947,115.627945,116.231664,117.903501,119.708867,121.031391,123.036404,126.078218,126.867696,129.305792,130.768649,132.277946,133.740803,135.134000,136.178898,137.572095,138.408014,139.174272,141.078309,145.350780,146.302798,149.704255,150.191874,152.165570,153.535547,154.835865,156.136182,157.529379,159.851375,160.756953,161.523211,163.032509,165.609924,167.676499,167.998495,169.809651,171.388608,172.317407,173.826704,174.476862,175.684300,177.425797,178.006295,179.260173,180.583710,182.301987,183.323665,183.811284,184.647202,186.295819,188.455275,189.500173,191.218450,191.682849,193.795865,194.701443,195.607021,196.791239,199.020354,200.576091,202.178268,203.710785,204.918223,206.404300,208.067792,208.320127,210.131284,211.152962,213.033778,215.913052,217.027610,218.049288,219.070966,220.324844,221.207202,222.437860,223.761397,224.713415,225.688653,226.663891,228.893007,230.541624,231.702622,233.235139,234.651556,235.437950,236.715048,238.247565,239.153143,240.430241,244.230630,244.8 diff --git a/data/torah/labels/Vezot Haberakhah-h.txt b/data/torah/labels/Vezot Haberakhah-h.txt deleted file mode 100644 index f45232aea..000000000 --- a/data/torah/labels/Vezot Haberakhah-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.713208,5.617244,5.892800,7.100238,7.657516,9.120374,10.327811,11.581689,12.440827,13.741145,14.182324,15.041462,16.132800,17.084818,19.035294,20.776791,22.077108,23.686806,25.939141,27.239459,29.398914,29.790570,30.626488,33.227123,34.364901,34.898960,35.967078,37.128075,37.940774,39.705490,42.052869,44.050851,45.095749,45.908448,46.512167,48.044684,48.787722,51.156158,52.270715,54.732031,55.196430,57.030806,57.843505,58.586543,59.724321,61.024638,61.920141,62.195680,63.578833,66.906477,68.346115,70.180491,71.086069,73.199085,74.383303,74.940582,77.216137,78.330695,79.143393,80.443711,81.163530,81.720808,82.765706,83.415865,84.716183,86.527339,88.013416,89.197634,90.126432,90.894770,92.148647,92.894464,93.451743,95.100360,96.354237,97.396051,97.764487,98.739725,100.179362,101.618999,102.403852,103.634509,104.049384,107.811017,108.876051,111.824985,112.823443,115.586618,117.142355,117.490654,118.558772,120.068069,120.950428,122.831244,123.760042,124.619180,125.942718,126.592877,128.195053,130.981448,131.979906,133.837502,137.181176,138.295734,139.270972,140.733829,143.357684,144.704441,146.515598,148.628614,149.650292,150.254010,150.973829,151.856187,152.436686,154.015643,155.548160,156.871697,158.427434,158.984713,160.679770,161.4,165.138001,167.274237,168.528115,169.967752,173.195326,174.774282,175.656641,177.746437,179.023534,180.277412,181.670609,182.924487,183.946165,185.153602,186.929087,187.463146,188.740243,189.622602,189.689178,190.803735,192.707772,194.751128,196.306865,197.351763,199.070039,200.440017,201.113395,202.251173,202.738792,204.248089,205.269767,206.314665,208.172261,209.240379,210.772896,211.141332,213.068588,216.243283,217.288181,217.822240,218.518838,219.377976,220.771174,222.326911,223.139609,225.786684,227.156661,227.528181,228.410539,229.269677,230.500335,231.313033,233.193849,235.910584,237.001922,238.093260,240.577795,241.854893,242.876571,243.549949,244.989586,246.197024,247.288362,248.402920,248.668703,249.935437,251.537614,253.070131,254.672308,255.508226,256.390584,259.176979,261.754394,262.938611,264.842648,265.632126,267.257523,268.302421,269.231219,270.972716,272.343643,272.648586,273.969040,275.199697,276.639335,278.311171,279.681149,280.215208,281.074346,282.653303,284.139380,285.790383,287.041874,288.597611,289.805049,290.548087,290.759577,291.329656,293.489112,294.975189,297.552604,301.021009,304.558501,306.369657,307.623535,308.923852,310.479589,312.244306,312.914600,314.493557,316.792333,318.069430,320.670065,321.572559,324.730473,325.868251,327.467344,328.953421,330.834237,333.202673,335.803308,336.125303,336.961222,338.633058,341.071154,342.859090,344.860127,345.254866,346.508744,346.761079,348.479356,349.222394,350.035093,351.103211,351.660490,352.821487,355.387596,356.362834,358.452630,360.263786,361.401564,362.864421,363.653900,365.720476,367.136893,368.321111,369.737528,370.828866,371.896984,372.756122,373.940340,376.726734,377.794852,378.793310,380.674127,381.602925,382.183424,383.089002,384.412539,384.804195,385.109138,385.663333,387.140158,388.649455,390.316666,390.522562,391.637120,391.843015,393.050453,394.095351,394.603106,395.880204,398.457619,400.849274,401.917392,402.706870,403.798208,405.168186,405.888004,406.305963,407.908140,408.784850,410.433466,411.292605,411.682952,412.058863,414.264759,414.938138,416.888614,417.445893,419.417032,420.671207,421.065122,422.249339,423.874736,426.730791,427.422763 diff --git a/data/torah/labels/balak-4.txt b/data/torah/labels/balak-4.txt deleted file mode 100644 index d98fbf95f..000000000 --- a/data/torah/labels/balak-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.787937,2.763175,3.343673,4.783311,6.478367,7.569705,9.148662,11.261678,12.260136,13.328254,14.373152,16.393288,17.856145,19.574422,20.201361,21.849977,24.589932,25.565170,27.051247,28.026485,28.444444,29.535782,30.627120,31.811338,32.716916,34.202993,35.108571,35.944490,37.105488,39.450703,40.286621,40.634921,41.517279,42.237098,42.817596,44.048254,44.930612,46.138050,47.624127,47.922902,49.014240,50.314558,51.057596,51.707755,53.193832,54.749569,55.794467,56.769705,57.373424,58.418322,60.252698,62.992653,64.757370,65.709388,66.498866,68.031383,69.610340,71.676916,73.859592,77.226485,77.760544,80.059320,82.543855,85.516009,86.468027,87.420045,88.720363,89.881361,90.624399,91.599637,93.016054,93.805533,95.082630,96.545488,98.472744,99.494422,99.889161,101.026939,102.327256,104.091973,104.533152,105.531610,106.599728,107.807166,110.338141,111.383039,112.218957,113.867574,117.211247,119.324263,120.485261,121.205079,122.412517,125.175692,125.918730,126.754649,127.544127,128.287166,129.796463,131.863039,132.745397,134.208254,135.090612,135.344490,136.528707,137.596825,137.850703,138.500862,140.219138,141.914195,142.982313,144.212971,144.909569,147.765624,149.158821,150.737778,151.411156,152.757914,153.988571,155.033469,156.380227,157.076825,157.773424,159.027302,160.281179,162.672834,164.623311,165.993288,167.084626,167.711565,168.593923,169.592381,170.939138,171.751837,172.425215,173.307574,174.840091,175.652789,176.326168,177.324626,178.137324,179.994921,181.527438,182.107937,183.338594,184.755011,186.217868,187.773605,188.772063,190.374240,191.929977,192.928435,194.437732,195.598730,197.131247,197.525986,198.338685,199.290703,200.521361,201.566259,202.564717,203.702494,204.933152,206.233469,207.928526,209.577143,210.273741,210.645261,211.620499,212.549297,213.408435,214.081814,215.591111,216.473469,217.889887,219.027664,220.142222,221.465760,223.346576,224.855873,227.015329,229.012245,229.848163,231.125261,231.891519,232.959637,233.911655,234.724354 diff --git a/data/torah/labels/chayei sara-1.txt b/data/torah/labels/chayei sara-1.txt deleted file mode 100644 index f565d982e..000000000 --- a/data/torah/labels/chayei sara-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.639913,4.557101,5.437602,6.116321,7.143572,8.152479,8.867886,9.491574,10.041887,10.885700,11.509388,12.499951,13.747327,15.196484,16.150360,17.177611,17.801299,18.351612,18.791862,19.452238,20.571207,21.341645,22.093740,22.790803,24.093210,25.597399,26.386180,26.936493,27.431775,27.816994,28.789214,29.101058,29.376214,29.706402,30.531871,31.283966,31.925997,32.586373,33.246748,34.072218,34.347374,35.172844,35.649781,36.420220,37.484158,37.979439,39.336878,41.868317,42.675443,43.500912,43.904475,44.491476,45.133507,45.885602,48.692198,50.214730,50.985168,51.462106,51.939044,52.782857,53.589983,54.433796,55.020796,55.277609,55.974672,56.781798,57.405486,57.827392,59.074768,59.661769,60.230425,60.854113,61.532833,62.339958,64.247710,65.696867,67.054306,67.402837,67.733025,68.356713,69.072120,70.301152,70.833121,71.273371,72.025466,72.300622,72.722529,74.153342,75.088874,75.437406,76.024406,77.125032,78.464127,79.564753,79.949972,80.720410,81.050598,81.876067,84.242413,85.599851,86.040102,86.682133,87.617665,88.057916,88.516510,89.305292,89.855605,90.607699,91.506543,92.992388,94.624983,95.505484,96.477703,97.321517,98.018580,99.247612,99.706206,100.219831,100.494988,100.861863,103.118146,103.815209,104.530616,104.805772,105.557867,106.144867,106.530086,106.841930,108.309431,109.006494,109.648526,110.198839,111.244434,111.996528,113.042122,113.775873,114.674717,115.426812,116.013812,116.839282,117.187813,117.426282,117.848189,118.361814,120.012753,121.131722,122.158973,123.094505,123.516412,124.176787,125.093976,126.653195,127.460321,127.973946,128.285790,129.001197,129.698260,130.028448,131.220793,131.789449,132.082950,132.468169,133.238607,133.825607,134.632733,135.091327,135.604952,136.430422,138.356517,138.998549,139.750643,140.392675,141.034707,142.116989,142.447176,142.814052,143.511115,145.400522,146.739617,147.216555,147.895274,148.500619,149.142650,150.573464,151.197152,152.884778,153.600185,155.067686,155.709718,156.645250,157.525751,158.112751,158.497970,159.011595,159.671971,160.424065,161.176160,162.680348,165.192419,165.852794,166.935077,168.145765,168.983821,169.845978,170.102791,170.964948,171.845448,172.469136,173.056137,173.239574,173.624793,174.963888,175.514201,176.027826,176.596483,177.642078 diff --git a/data/torah/labels/devarim-1.txt b/data/torah/labels/devarim-1.txt deleted file mode 100644 index baec52db3..000000000 --- a/data/torah/labels/devarim-1.txt +++ /dev/null @@ -1 +0,0 @@ -3.026048,3.869366,6.399611,7.746368,8.952650,10.300563,10.889844,11.160465,12.779651,14.381828,16.169765,20.047497,22.415933,23.595544,25.205037,26.122012,27.766255,28.614864,30.193821,31.563799,33.467835,34.652052,36.045250,37.995726,39.179944,40.457041,42.221758,43.545295,44.183520,45.367738,46.482296,47.498361,49.118184,51.404926,53.181018,54.516400,55.908270,57.039003,58.183826,59.478896,60.988193,62.535779,63.913907,64.375624,65.697541,67.276498,69.528834,71.014911,73.174367,75.473142,76.866339,78.747156,80.790512,83.832326,85.295183,87.013460,88.313777,90.078494,91.285931,92.725568,94.443845,97.392779,98.878856,100.434593,102.129650,103.118597,104.355276,106.508345,108.946440,110.525397,112.220454,113.567211,114.821089,116.794785,118.605942,120.974377,121.524638,122.650333,123.927431,125.901127,128.617862,131.241717,132.309835,133.586932,135.189109,137.000265,137.612854,138.853327,139.902760,141.144599,142.866846,145.592451,147.194627,149.934582,151.722519,152.738993,156.036227,156.844473,157.156945,160.002387,161.511684,163.972999,166.016355,167.757852,169.114043,170.312047,171.728464,173.562841,175.582977,176.283507,177.421285,178.884142,179.929040,181.809856,184.805231,186.019520,187.575257,188.125883,189.472641,191.121257,193.002074,193.456906,195.068650,196.142701,197.460305,199.875180,203.242074,205.076450,206.446427,208.373684,209.975861,211.531597,213.456216,215.876466,218.217053,220.056722,221.062026,222.269463,223.930058,224.529430,225.354643,226.724620,228.064968,229.718933,231.323189,233.148253,234.699793,236.129719,238.382055,239.844912,241.493529,243.002826 \ No newline at end of file diff --git a/data/torah/labels/devarim-2.txt b/data/torah/labels/devarim-2.txt deleted file mode 100644 index f706b2c96..000000000 --- a/data/torah/labels/devarim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577157,4.122664,7.499787,9.659243,12.468858,13.862055,14.653408,16.13761,17.925547,19.295524,21.153121,22.384553,27.26476,28.51571,29.908907,31.325325,33.020381,35.063737,37.199973,38.960122,41.286685,42.795982,45.512717,47.974032,49.529769,51.526685,53.580799,56.426096,58.369822,59.755808,62.509724,63.085059,64.199617,65.016657,66.335696,68.611251,71.490526,72.011462,73.238207,76.486973,78.08915,79.621667,81.177404,82.756361,85.380216,86.912733,88.593211,90.271089,92.726363,94.2821,96.673756,98.415252,100.040649,101.828585,103.546862,105.799198,108.841012,111.093347,111.549982,114.127397,115.404495,116.542272,117.86581,119.189347,119.712969,121.186263,123.304736,124.460708,125.268708,125.769237,126.380381,127.402059,128.377297,129.816935,130.692796,131.827075,133.991572,137.194383,139.05198,140.584497,142.349213,143.67578,144.926628,145.810788,147.000818,147.68625,149.195547,150.871111,152.051601,154.187837,155.464935,156.993041,158.538268,160.178585,161.571783,164.242078,166.169334,167.632191,168.499673,169.582667,170.711352,171.077017,172.622771,173.618974,175.571706,178.26522,181.260595,185.045447,186.786944,187.208233,187.811952,190.435807,191.921884,193.87236,195.451317,198.423471,199.723789,200.914049,202.417303,203.99626,206.271816,207.665013,209.03499,210.544288,213.446782,214.249003,215.062901,216.813675,218.648052,220.227009,221.736306,222.216948,223.268823,225.056759,225.696657,227.294964,228.728532,230.075289,231.329167,233.813702,235.179417,237.733612,240.380687,242.075743,242.660514,243.93334,245.400164,247.694973,250.312641,251.621735,253.983503,255.468043,257.331254,258.701231,259.624754,261.136643,261.934487 \ No newline at end of file diff --git a/data/torah/labels/devarim-3.txt b/data/torah/labels/devarim-3.txt deleted file mode 100644 index 0bbff0fee..000000000 --- a/data/torah/labels/devarim-3.txt +++ /dev/null @@ -1 +0,0 @@ -2.769909,4.662668,8.168881,10.606976,13.718450,15.343847,16.899584,18.833200,19.989597,21.080935,21.581299,22.889917,24.419615,25.794585,27.438209,27.944456,29.247621,30.457849,31.159293,32.180971,33.759928,35.431765,36.685642,37.916300,40.075756,41.794032,43.558749,45.160926,46.809543,48.318840,49.688817,51.430314,53.032490,54.193488,55.493806,57.722921,59.928817,62.065053,63.736890,65.478386,65.959821,66.918023,68.680656,70.745265,73.020820,75.249936,76.875333,78.431070,80.010026,81.728303,83.307260,85.420276,86.813473,88.253110,90.760865,92.572022,94.011659,95.000244,96.194358,97.737438,99.131486,100.733663,102.823459,104.518516,106.167133,109.569794,110.283817,110.986211,112.658048,115.885621,118.532696,121.063671,123.803626,125.614782,127.216959,128.912016,130.490973,131.535871,133.184487,134.461585,137.088948,138.296386,139.858593,142.704838,144.821193,146.439853,149.133426,151.722969,153.491337,153.975314,156.556371,159.505305,160.852062,162.152380,163.475917,165.101314,167.818049,169.327346,171.231382,173.019318,174.159050,174.993015,176.434605,177.618823,179.267440,181.844855,183.864991,184.970658,186.781814,187.699501,189.280748,191.739860,193.506495,195.726028,197.490744,199.650200,200.973738,202.599134,203.806572,206.709066,208.450563,210.726119,213.233874,214.882490,217.668885,220.292740,222.011017,223.543534,225.122490,227.072967,228.628704,229.975461,231.577638,232.253621,233.319134,233.925458,235.248995,236.178360,237.383380,238.785378,240.898394,241.466694,243.150729,243.670201,244.763928,247.070211,249.740506,251.156923,252.898419,255.243635,257.170891,259.910846,261.412885,264.043998,266.807172,268.015956,270.327848,271.621118,273.827013,275.963249,278.517444,281.164519,282.906016,284.670732,285.845882,287.001828,289.274378,291.387394,293.036011,294.568528,295.049831,295.954959,297.633562,299.607258,301.279095,303.113471,304.148478,305.007617,306.377594,308.397730,309.930247,311.114465,312.507662,313.738320,315.015417,316.687254,318.359091,320.123807,321.772424,323.142401,326.160995,329.411789,330.828206,331.373380,332.732243,333.732243,335.343992,336.489414,338.643182,339.106651,341.074229,342.657845,343.348462,344.283242,345.925877,348.317532,349.340364,350.663902,351.917779,354.193335,355.232632,356.329571,357.995807,359.899843,362.175399,363.498936,364.360618,365.451955,366.055674,367.127443,368.894078,370.397806,370.945363,371.909353,373.499558,375.264274,376.380465,377.352698,378.329308,380.139093,381.555510,382.716360,383.691746,385.201043,385.671656 diff --git a/data/torah/labels/devarim-4.txt b/data/torah/labels/devarim-4.txt deleted file mode 100644 index d808f3301..000000000 --- a/data/torah/labels/devarim-4.txt +++ /dev/null @@ -1 +0,0 @@ -5.329133,8.094383,9.464360,11.739916,13.202773,15.617648,18.613022,20.308079,20.809777,22.040434,23.433631,24.710729,25.964607,27.009504,28.054402,29.052860,31.072997,32.605514,34.230910,36.669006,38.642702,39.425409,40.900352,42.442525,44.115694,45.038617,45.5,46.995114,49.446423,51.396899,53.672455,57.434088,60.311495,61.895349,63.298085,65.271782,66.572099,67.403671,68.564668,70.050746,71.443943,74.996596,76.598773,77.149131,78.333348,80.260605,82.350401,83.511398,85.601194,87.435571,89.595026,92.567181,93.960378,95.376795,96.561013,98.023870,99.881466,102.017702,102.861199,104.028249,105.988314,108.124550,110.469766,112.071943,114.858337,116.855253,118.596750,119.850627,121.476024,123.635480,124.022918,125.353757,126.839834,128.650990,130.066572,132.112875,134.312015,136.610390,138.277605,139.539924,140.903468,142.820765,144.938882,146.564279,148.096796,149.582873,151.301150,153.344506,155.968361,157.616977,158.093604,160.240832,162.738027,164.441232,165.880869,167.157966,168.076043,169.097721,170.676678,173.486292,174.693730,176.295907,178.617902,180.289739,182.100895,183.354773,184.469331,186.141168,186.912603,189.095278,191.835233,193.390970,194.853827,196.177365,196.596149,197.672132,200.102363,201.402680,202.911977,204.374834,205.793850,206.121319,206.645320,208.396874,209.878526 diff --git a/data/torah/labels/devarim-5.txt b/data/torah/labels/devarim-5.txt deleted file mode 100644 index 1bf0aa6d2..000000000 --- a/data/torah/labels/devarim-5.txt +++ /dev/null @@ -1 +0,0 @@ -5.748134,6.959174,8.514911,9.838448,11.556725,12.376898,14.810266,16.065297,16.578850,17.229009,18.441371,19.783204,21.246061,23.312637,24.682614,27.236809,28.444247,30.719802,32.345199,34.852954,36.945271,38.824359,39.455334,40.798055,42.748531,44.606127,46.965205,48.404842,50.471418,52.329015,53.208790,54.903847,56.018405,57.922441,58.475451,59.659669,61.076086,63.026563,64.605520,65.766517,66.1,67.345474,68.303195,69.907124,71.486081,73.297238,73.743154,74.574335,76.083632,77.918009,80.541864,83.212158,84.814335,86.695152,87.883474,89.326090,91.897262,94.312137,95.728554,98.398849,100.511865,102.160482,104.389598,107.570731,109.103248,110.960845,112.702341,114.467058,116.347874,116.918919,118.089371,119.526976,120.641533,122.940309,124.426386,127.096681,128.559538,130.068835,131.694232,132.519721,134.100793,136.115096,138.902070,141.331542,142.644833,143.344146,145.975533,148.081016,150.054712,151.703329,153.537706,155.929361,157.508318,158.738976,160.759112,162.593488,163.754486,164.994221,167.144599,169.813364,171.997570,174.807184,175.342649,176.623252,176.946052,178.295088,178.781703,179.804487,180.755810,182.288921,184.030417,184.637028,185.722026,187.022344,188.624521,190.296358,191.643115,192.43,193.477491,194.777809,195,196.171006,198.028602,199.909419,201.441936,202.742253,203.508512,205.389328,206.712865,208.849101,210.497718,212.448194,215.342872,217.379507,217.982458,219.065881,220.732137,224.028535,225.785092,227.209843,229.020825,231.969760,233.534130,236.799510,239.167946,241.489941,243.347537,246.412571,248.531981,250.354233,252.462329,253.891546,256.373932,257.884422,260.390984,261.714522,263.618558,264.501516,265.546413,266.846731,268.472128,271.119203,273.255438,274.570536,275.693534,276.469507,277.037568,278.373543,280.241922,280.778699,281.689825,283.351291,285.628951,286.679455,288.444172,289.930249,292.414784,293.436462,294.186545,295.472286,295.973067,297.286161,298.404345,299.751102,301.306839,302.514277,303.378079,304.446197,305.144983,306.631060,308.093917,309.812194,311.484031,313.155867,315.547523,316.847840,318.310697,320.145074,321.468611,321.909665,323.140323,324.584214,326.022364,327.505674,328.852432,330.431388,331.406627,333.008803,334.912840,336.024868,337.583134,338.117116,339.998010,342.351173,343.490752,344.539662,346.323586,347.782199,349.220349,350.327993,351.758625,353.105382,354.312820,356.425836,356.787974,357.483013,358.626387,359.207006,360.457572,363.298141,364.280583,365.379439,366.612139,367.442872,368.669155,369.325779,370.231357,371.206595,372.184214,372.614708,374.401374,376.005376,376.598796,377.475727,378.567065,380.146022,381.260580,382.102939,382.793097,384.332055,386.119992,387.215970,388.302667,390.234564,390.837375,391.534881,393.229938,394.297679,395.133598,396.898314,399.498949,400.958021,401.986830,404.169506,405.469824,406.955901,409.370776,410.763973,412.250050,414.177307,415.825923,417.590640,419.889415,421.445152,423.534948,425.555084,426.878622,428.282872,429.522293,431.217350,432.773087,434.282384,435.513041,436.089972,437.509957,439.205014,441.294810,443.361386,444.754583,445.845921,446.751499,448.121477,451.372270,452.835127,454.669504,455.223621,456.456321,457.920298,459.940434,461.914130,463.864606,465.582883,467.370819,469.855354,472.270230,475.545306,476.018734,476.983456,479.143336,482.468078,484.344606,486.713041,487.309552,488.361658,489.096074,490.703944,492.889549,493.476534,494.544652,495,496.402248,497.724974,498.561704,500.503996,502.477692,504.869347,506.216105,507.005583,508.654200,511.556694,512.838949,513.669710,514.970028,516.141368,516.581712,517.896220,519.010778,520.427195,522.424111,523.838254,525.185012,527.344468,530.502381,531.988459,533.683515,535.053493,535.483113,536.656476,537.306635,538.653392,539.791170,540.976667,542.786544,544.481601,545.990898,547.291215,548.614753,549.961510,551.401147,552.794344,554.025002,556.161238,558.065274,559.412032,561.246408,563.150444,566.261918,567.631895,568.578260,569.530278,571.109235,572.428383,573.795073,575.965697,577.694852,578.547221,579.922842,580.964283,583.193399,585.004555,586.792492,589.439567,591.134623,592.295621,593.479839,594.027432,595.072547,595.528110,597.189576,597.850589,599.656221,600.235595,601.490598,602.744475,603.719714,605.159351,606.943985,609.078878,610.436080,611.620297,613.152814,614.754991,615.776669,617,618.423744,619.646155,621.548800,622.209814,624.719877,626.149094,626.604657,627.908818,630.237438,631.187086,632.955742,634.322431 diff --git a/data/torah/labels/devarim-6.txt b/data/torah/labels/devarim-6.txt deleted file mode 100644 index 93c838a61..000000000 --- a/data/torah/labels/devarim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0.887928,2.345884,3.992133,5.663969,8.659343,10.377620,11.729419,13.177235,13.662672,14.895512,15.825274,17.241691,18.843868,20.144186,21.583823,22.210762,23.650399,27.342372,28.803429,31.311184,33.888599,34.561670,36.640108,38.565719,39.910591,42.840055,44.326132,45.626450,47.298287,48.575384,51.152799,51.892174,53.099502,53.642035,53.924764,55.888582,57.837117,58.287955,58.555401,59.625185,61.313916,62.757215,65.032770,65.449698,65.906346,67.049156,68.512013,70.392830,72.041447,73.666843,75.338680,77.033737,79.179311,80.967379,82.885165,84.208703,86.019859,87.598816,89.340313,92.103487,97.838816,100.439451,100.773669,101.391782,102.592302,105.223075,106.941352,108.404209,110.029606,110.738591,112.363988,113.679851,115.057503,116.613240,118.168977,119.956913,121.396551,122.054733,124.125529,126.731218,128.358818,129.986418,132.333149,135.049884,135.702122,136.519743,137.253309,138.574238,139.944215,141.848251,143,145.099045,146.678002,147.978319,149.766256,151.368433,152.924170,153.653403,154.744741,156.501783,158.877893,161.408868,163.173585,164.450682,166.238619,167.933676,170.139571,170.897780,172.337418,175.030932,177.376148,178.103782,180.166937,181.997444,184.389099,186.200256,187.941752,189.358170,189.917256,191.162790,192.820956,194.295730,197.335505,199.843260,202.420675,203.322250,203.587569,204.747142,205.559840,207.069137,209.275033,210.877210,212.688366,215.846280,217.819976,219.236394,220.977890,222.371088,223.810725,226.155940,229.453174,231.217890,233.702425,237.069319,239.437754,239.949740,240.900611,241.740658,243.061214,244.155313,244.415118,245.847608,248.634003,249.351408,250.665714,251.507794,252.438499,254.479948,256.523304,256.946876,257.160832,258.446459,259.909316,261.465053,263.438750,264.808727,266.573443,268.245280,268.752708,270.097580,272.313561,273.512173,274.951811,275.675740,276.951840,278.846886,280.704516,281.935173,284.466148,285.380211,287.267616,289.790577,292.669851,294.898967,296.501144,298.242640,300.100237,303.397470,304.767448,306.578604,308.018241,309.782958,312.337153,314.055430,316.400645,317.840282,319.697879,320.603457,322.066314,323.861744,324.366202,325.604096,327.025380,328.759959,331.128767,331.801202,334.475663,335.889306,337.468351,339.000868,342.089122,345.757875,347.058193,348.404950,348.945705,350.169667,353.311057,354.913234,356.515411,358.256907,359.975184,361.089742,362.459719,364.294095,365.965932,366.431644,367.359129,369.365910,372.513959,373.883937,375.602213,377.157950,380.339084,381.637862,382.432559,384.450623,386.401099,387.840736,390.952210,391.748562,393.367086,394.215468,395.875037,396.622482,398.150592,399.892089,402.353404,403.978801,405.116579,407.740434,409.481930,410.5,412.454084,413.265267,416.076397,419.118211,420.282418,422.906273,424.462010,425.924867,427.434164,429.059561,430.801057,431.938835,433.587452,434.469918,435.761300,438.138563,439.229901,441.784096,443.293393,446.033348,447.774844,449.191261,450.700558,452.151922,454.462191,456.691307,458.316704,459.291942,460.499379,463.634073,464.400951,464.630190,465.557267,468.435565,470.032600,470.498720,472.035635,473.761596,476.199691,478.219827,481.075881,483.699736,485.278693,485.888330,487.113069,488.905203,489.996541,492.225656,493.781393,494.895951,497.032187,498.332504,499.702482,501.467198,502.243760,503.707878,505.188331,506.976267,508.114045,510.203841,512.177537,512.793402,515.521210,517.402027,517.836670,518.241660,519.583495,521.208892,521.910434,522.880728,524.603949,527.042044,530.223178,531.755695,532.286398,533.509008,533.860509,535.205380,536.787133,538.284830,540.095822,541.417770 diff --git a/data/torah/labels/devarim-7.txt b/data/torah/labels/devarim-7.txt deleted file mode 100644 index b883e6ed8..000000000 --- a/data/torah/labels/devarim-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.215167,4.174165,5.869222,6.476105,8.547937,10.768632,13.462147,15.203644,15.766774,17.317391,17.942850,19.519527,21.369843,22.711973,24.106225,25.852298,27.585340,29.021422,30.879018,32.341875,33.688633,35.685549,38.309404,40.237851,42.047816,45.716569,47.458066,48.642284,50.383780,51.939517,53.611354,55.979789,57.489086,59.393123,61.738338,64.362193,65.964370,67.334347,68.820424,70.469041,72.605277,76.088270,78.038746,80.360742,80.957826,82.169652,83.785421,85.935435,87.675027,91.158021,93.828315,95.314392,96.190354,97.639993,98.236125,98.7,100.894325,103.119903,104.954279,108.367613,111.432647,114.022343,114.602298,115.740620,117.061759,118.594276,120.567972,123.075727,124.677904,126.233641,128.160897,130.413233,131.255139,132.610300,134.643041,139.008222,141.601270,144.003608,144.467956,145.744935,146.253120,148.351013,149.849508,152.351343,155.009867,156.356624,157.773041,159.073359,160.721976,164.019209,165.528506,168.129141,169.661658,171.078075,173.469731,174.959074,177.056967,178.829100,180.171230,181.643665,183.324585,185.010048,188.191182,190.397078,191.025547,192.224343,194.270115,196.042248,197.905594,199.522520,201.728415,203.377032,204.082000,205.281069,207.092020,207.691418,209.685068,210.949016,212.499633,213.893885,215.900565,217.411870,219.037267,220.523344,222.543480,224.749375,226.537312,228.511008 diff --git a/data/torah/labels/devarim-H.txt b/data/torah/labels/devarim-H.txt deleted file mode 100644 index 3b6feb477..000000000 --- a/data/torah/labels/devarim-H.txt +++ /dev/null @@ -1 +0,0 @@ -1.686165,3.472997,5.612161,5.989661,7.499659,9.222110,10.535914,11.022989,12.155488,14.622626,16.062263,18.732558,21.147433,22.331651,23.980268,25.078559,26.273974,27.798222,29.251197,31.257996,32.502718,33.056385,34.050809,36.047725,37.626682,39.368179,40.923915,42.990491,44.041624,45.413206,46.476667,47.335806,48.821883,50.321806,51.151200,53.089032,54.649346,55.972883,57.412521,58.991478,59.544275,61.545023,63.935855,64.992853,67.652521,68.929618,69.996701,71.482778,73.038515,74.594252,76.312529,78.657744,80.167041,80.633922,82.906996,85.205771,85.667250,86.246083,87.265332,88.485914,90.121746,90.952245,92.021827,93.745742,94.903408,96.186906,97.934971,98.523371,99.661148,101.263325,102.161616,103.090415,104.878351,105.908596,106.744515,107.3,108.114492,108.780724,109.664126,111.040206,111.978974,113.100679,114.071901,115.794194,116.609637,117.477886,118.975301,120.456161,121.501059,122.453077,124.566093,127.141876,128.651875,130.278201,131.415979,132.739517,135.850991,137.801467,139.171444,140.782196,142.279612,144.292943,145.677108,147.275190,148.850534,149.059514,150.127632,151.238936,152.874768,154.007267,155.114599,155.907348,157.442514,158.813456,160.438852,161.692730,162.589092,164.200485,165.291823,166.940440,168.603919,169.988085,171.282571,173.093728,174.002164,174.341914,175.902246,177.185744,178.884493,181.146886,182.294573,183.238322,183.603238,185.377486,186.473901,187.518799,188.057734,189.555149,191.020093,192.459730,194.595966,195.710524,196.546442,197.608475,199.458223,201.097553,202.880886,205.070384,206.686188,207.243467,208.845643,210.215621,211.446278,212.839476,214.650632,215,215.950950,217.808546,219.201743,219.968002,222.120784,223.920199,226.298447,227.972028,228.549677,229.524915,231.870131,234.006367,234.772625,236.165822,237.257160,238.418158,239.811355,241.181333,241.614015,242.496373,243.216191,245.259547,247.186804,248.603221,250.269673,251.716755,252.504427,253.270686,255.499801,256.800119,258.239756,260.770731,263.696445,265.218659,266.063407,267.247625,269.290981,269.5,270.126154,271.183153,272,273.712401,275.781063,276.779522,278.312039,279.798116,281.168093,283.513308,284.694229,286.087426,286.994267,288.666104,289.757442,291.684698,293.040382,295.141796,296.129819,297.058618,298.073710,299.734709,301.433457,302.704372,303.786538,305.120370,306,307.632124,309.335984,310.027865,311.927947,312.594863,313.677370,315.140227,316.603085,318.298141,319.830658,320.597855,321.486194,322.647191,323.808189,324.992407,325.947433,326.760131,328.849927,329.369956,330.136214,331.924151,332.973863,334.134860,336.038897,337.432094,339.034271,340.752547,341.171585,342.190834,343.510197,345.103903,345.890330,347.271830,349.004856,351.373291,352.773407,354.505652,355.875630,356.789012,357.903570,358.806237,361.267552,363.427008,363.917775,365.845031,366.936369,367.528145,368.828462,370.105560,372.381115,374.076172,375.399709,376.769687,377.285716,378.325423,379.537631,381.673867,382.974184,384.282043,385.527792,386.421208,387.591456,388.182873,388.5,389.969704,392.559843,393.568534,394.625533,396.019616,397.203834,398.643471,400.268868,401.522745,403.473221,404.796759,406.956215,408.558391,410.060673,410.803229,411.871347,413.034932,414.205181,415.627096,417.121100,417.515839,418.769717,420.464773,421.625771,424.435386,425.751312,427.748228,428.565179,430.329896,431.932072,432.791211,433.797412,435.298966,436.250984,437.946041,439.292798,440.430576,442.311392,443.820689 \ No newline at end of file diff --git a/data/torah/labels/eikev-1.txt b/data/torah/labels/eikev-1.txt deleted file mode 100644 index ff43b990a..000000000 --- a/data/torah/labels/eikev-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.033179,3.727252,5.072673,7.626868,8.648546,10.320383,11.713580,13.292537,14.848274,16.102152,19.143966,20.769363,22.789499,25.250814,25.631948,26.922651,27.485592,28.549158,29.931794,31.116911,33.238478,35.978433,37.743150,39.182787,40.715304,41.460717,42.575274,43.387973,45.663528,48.124844,49.936000,53.163574,53.953199,54.997950,57.159091,58.450565,59.772425,61.592264,62.208285,63.055121,64.553501,65.668059,67.061256,68.524113,69.685111,70.544833,71.714756,72.398477,73.218942,75.452431,76.607160,77.944215,80.420805,83.186078,85.033501,86.403478,86.984529,87.819895,88.595331,91.451386,92.844583,94.887939,95.979277,98.742451,99.973109,101.505626,102.875603,104.384900,105.545898,107.519594,109.655830,110,110.231049,113.057097,114.500508,115.731206,117.129036,118.785161,119.919050,120.365316,121.307332,122.507643,124.042217,125.288109,126.716327,127.172141,129.268886,129.724700,130.621134,131.623925,133.384268,134.429166,135.868803,138.005039,140.443134,141.720232,142.672250,143.786808,144.924586,146.062363,148.152159,149.429257,150.543815,151.728032,153.469529,156.131531,157.100460,157.514168,158.653703,160.325021,161.834318,163.413275,164.179915,165.758871,167.361048,169.520504,170.285248,170.958627,173.559262,175.277539,176.995815,178.528332,180.037629,181.988105,183.520622,184.890600,186.399897,187.746654,189.209511,189.785808,192.004103,193.401933,194.982089,195.908911,197.610617,198.172787,199.266741,200.512633,202.243147,204.216844,204.478216,206.286279,208.489380,209.887210,211.285040,212.075118,212.865196,214.627677,217.266458,219.333034,221.608590,222.583828,223.791265,225.091583,225.627991,226.647320,227.907062,229.593574,230.414040,231.538381,233.133731,236.144281,237.746458,239.743374,240.183656,241.338385,243.541487,245.182417,246.109239,247.294356,248.479473,249.883531,251.648248,253.111105,253.782111,254.690062,256.091569,257.261492,258.902423,261.748928,263.118905,264.303123,265.765980,267.437817,268.877454,270.131331,271.640628,273.614325,275.170062,276.749018,278.374415,280.553593,280.796694,282.159268,283.552465,284.945662,285.385223,286.408520,287.475578,289.077755,290.122653,291.631950,293.791406,295.602562,297.158299,298.481836,299.735714,300.503058,302.731088,303.984966,305.238843,306.492721,308.312674,309.178720,310.181512,311.609729,312.369419,314.086319,315.955157,317.170661,318.340584,319.367729,320.133453,321.060275,322.177343,322.686012,323.764772,325.538973,326.467771,327.535889,329.788225,332.272760,333.619517,335.268134,335.828653,336.497180,337.864623,338.805181,341.127176,342.218514,344.215430,346.235566,347.721643,349.091621,350.508038,351.808355,353.921371,356.498786,357.984863,359.749580,360.032383,361.156724,361.718895,362.433004,363.689757,365.872432,367.637149,367.993936,368.2,370.771843,371.979280,374.556695,376.855471,378.922047,380.593884,381.708441,382.590800,383.635698,384.982455,387.072251,390.090845,391.948441,392.349604,394.233636,396.178443,397.590890,399.239507,399.597049,401.025266,405.183816,407.877330,409.827807,410.111161,411.250697,412.365254,412.667114,413.735232,414.486977,415.622738,416.853396,418.246593,420.661468,422.774484,423.726502,423.983105,425.183415,426.322950,427.743960,428.997837,430.832214,431.276131,431.504038,432.309309,432.537216,433.852128,434.966686,436.568863,439.587457,440.446595,441.677253,443.047230,444.765507,445.193655,446.387316,447.432214,448.430672,449.823870,451.913665,452.270752,453.330083,455.359006,456.612884,457.531024,458.609784,459.050404,460.281103,461.513777,462.767654,464.811010,467.063346,467.513353,468.572643,469.803301,470.987518,472.311056,473.657813,475.004571,476.862167,478.092825,479.277042,480.345160,481.831237,482.175374,482.752739,483.664367,484.773515,486.099628,486.958766,488.421623,490.023800,491.556317,492.810195,494.435592,495.225070,496.246748,497.756045,498.870603,500.240580,501.471238,502.260716,502.794775,503.421714,505.093551,507.160127,508.297904,509.133823,510.759220,511.430016,512.361397,513.450152,514.234301,514.978798,515.702487,516.677725,518.070923,518.701280,520.175079,521.648878,523.274615,524.135988,525.756728,528.101943,529.518360,531.190197,531.433687,532.497254,533.636789,534.062216,534.830450,536.660356,538.088574,538.698302 diff --git a/data/torah/labels/eikev-2.txt b/data/torah/labels/eikev-2.txt deleted file mode 100644 index c575483f6..000000000 --- a/data/torah/labels/eikev-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.399394,2.995828,4.180046,4.690885,5.689343,6.004805,6.814431,8.114749,9.507946,10.645724,12.085361,14.198377,15.893433,18.006449,19.237107,20.514204,22.255701,22.915996,24.066857,25.599374,26.969352,28.966268,30.220145,32.588581,35.049896,36.373433,37.743411,38.788309,39.763547,40,41.040644,42.340962,43.084000,44.012798,45.336336,46.775973,48.053071,49.771347,49.963535,51.103782,52.209442,54.717198,55.622776,56.806993,57.666132,59.128989,61.776064,63.796200,65.189397,67.581052,68.881370,70.460327,71.992844,73.827220,74.732798,74.952707,75.818999,77.092521,78.118982,79.117440,80.278438,82.043154,83.831091,85.061748,86.408506,87.569504,87.813801,88.869821,90.027657,91.513079,94.253034,95.924871,97.434168,99.361424,101.544100,103.633895,105.003873,106.466730,107.761619,108.783297,109.736224,110.408694,110.818648,111.692343,112.869611,114.891054,115.409251,116.609330,117.677448,118.792006,120.672823,121.658395,123.923616,124.875634,125.839350,126.733231,128.068465,130.158261,130.513817,132.480257,133.162404,133.766123,135.298640,136.180999,137.365216,140.337370,140.850683,141.730568,142.894039,143.330486,144.472996,145.855318,148.722248,150.370865,151.740842,152.948280,154.759436,156.561790,157.479910,159.264107,160.352740,161.586103,162.551787,163.745558,165.533495,167.878710,169.202248,170.456125,171.849323,173.312180,174.612497,175.959255,177.213132,178.165150,179.372588,180.649685,181.624924,183.505740,185.061477,187.662112,188.846329,190.007327,191.284425,191.798373,193.072361,194.628098,195.928416,197.042973,198.273631,199.759708,200.990366,203.289141,204.287599,205.750456,208.165332,208.702160,209.581749,210.627252,211.241800,212.263580,213.670377,214.791380,216.045258,217.856414,219.156732,220.573149,222.082446,223.475643,224.310211,226.053058,228.049974,230.650609,232.949385,234.412242,236.316278,236.845520,238.200489,239.822491,240.913829,242.144487,243.885983,246.115099,247.415417,248.831834,250.155371,252.036188,253.986664,255.310201,257.748296,258.569441,260.346448 diff --git a/data/torah/labels/eikev-3.txt b/data/torah/labels/eikev-3.txt deleted file mode 100644 index a4ffb9944..000000000 --- a/data/torah/labels/eikev-3.txt +++ /dev/null @@ -1 +0,0 @@ -2.226935,2.849034,3.885866,7.120904,8.402847,10.905757,12.298954,13.738591,17.012605,19.241720,21.052877,22.503762,23.723172,25.079659,25.524098,26.200293,27.453507,29.314931,30.708129,32.101326,33.610623,34.980600,37.023956,38.443926,41.714387,43.525544,45.661779,46.801693,47.504936,48.633934,48.821262,49.771711,52.024047,53.649444,55.303715,57.359347,58.804274,59.988491,61.753208,63.099965,65.189761,66.466859,66.898201,69.034977,70.321371,71.487310,72.829126,74.338423,75.754841,77.171258,79.028854,82.256428,84.392664,85.530442,87.225498,88.665135,91.590850,92.963255,94.676282,95.217238,97.200743,99.526853,100.832392,102.086269,103.565989,103.877022,140.1,105.177339,106.524097,108.404913,108.991201,110.128979,112.172335,113.158939,114.953109,115.755527,116.653702,117.768260,119.277557,120.407747,122.249711,123.251750,124.296648,125.805945,128.058280,128.576179,129.712187,130.153967,131.255681,132.347019,133.670556,134.924434,135.437302,136.828470,138.349448,140.008379,140.224761,141.459943,144.110627,146.139672,147.579309,148.627608,150.412144,152.883127,155.381214,158.051509,159.584026,160.977223,162.323980,163.484978,164.328075,165.024673,166.464310,167.718188,170.086623,172.571158,174.057236,175.473653,177.284809,178.445807,179.862224,180.930342,182.161000,183.577417,184.159388,185.692097,187.594469,189.730705,192.099140,192.985984,194.176497,194.756996,196.266293,197.798810,198.864371,199.811043,203.187520,204.291960,208.365570,208.971228,211.026860,212.532521,213.569353,215.703076,216.771194,217.839312,218.837770,220.439947,223.017361,224.456999,226.128835,227.150513,228.868790,229.913688,231.074686,232.885842,235.207838,235.712477,237.669153,238.534463,239.661454,240.776012,242.308529,243.953037,245.817339,248.208994,249.161013,250.461330,251.877747,253.154845,254.199743,255.709040,256.986137,258.286455,259.493892,261.096069,262.466047,265.089901,265.5,267.063598,268.503235,269.803552,271.010990,272.055888,273.750945,275.469221,276.699879,277.791217,279.021874,280.879471,281.278988,282.234676,283.370683,285.124012,285.541971,286.027820,286.726189,288.047956,289.951992,291.275529,293.272446,295.361871,295.587269,296.778659,298.055756,299.425734,301.608409,302.746187,303.692590,304.394804,305.423649,306.658831,309.224554,310.966051,311.671688,312.939747,314.313356,315.187901,315.972287,317.563582,318.724579,319.862357,320.837595,321.571179,323.209324,325.762665,327.202302,328.874139,330.267336,331.706973,333.750329,334.888107,336.049105,337.349422,339.067699,340.205477,340.883302,342.379946,343.236459,343.813479,344.940470,346.944598,349.173714,350.613351,351.890448,354.351763,355.559201,356.237431,357.211151,359.808453,362.037568,365.358022,366.650830,368.309761,371.395210,372.448073,373.385730,375.026629,376.090509,377.278301,378.119093,379.182338,380.552315,381.179254,382.247372,383.222610,383.600779,384.940886,386.503908,388.145240,389.166918,391.070954,392.185512,393.392950,395.645285,396.619782,399.174719,400.544696,401.984333,404.259889,405.444106,407.603562,409.670138,411.156215,412.404365,413.588583,415.005000,416.189218,417.535975,418.650533,419.625771,421.274388,424.316202,426.568537,428.565453,429.842551,431.769807,434.556202,435.090755,435.655943,436.909820,437.722519,439.069276,440.319899,442.436170,443.301705,444.270546,444.710753,446.900798,449.454993,450.824970,452.078847,455.445741,457.071138,458.348235,459.486013,460.925650,461.877668,462.535247,463.067187,464.789229,466.655527,467.277626,468.727555,469.630784,470.561931,471.583609,471.866734,473.381411,477.551138,479.106875,481.057351,482.682748,484.447464,485.794222,486.039776,488.209097,489.532634,491.134811,493.572906,494.710684,495.848462,496.916580,498.565197,499.842294,500.068564,501.015236,502.126821,502.962739,503.868317,506.654712,507.308356,508.027921,509.119259,511.023295,512.300393,513.647150,514.459849,515.481527,516.526425,518.151821,519.405699,520.729236,521.175615,522.099214,523.427951,524.528782,526.191125,529.279379,530.626136,533.087452,533.553728,534.617608,536.802644,537.448610,538.311941,539.486210,540.468851,542.117468,542.957343,543.649985,544.850689,546.151006,548.055042,550.423478,550.936441,553.650236,555.949827,557.366244,560.175859,560.853965,562.010235,563.387441,566.110881,567.225439,568.177457,569.918954,570.835010,571.717368,573.180225,574.201903,575.455780,577.104397,579.078093,580.494511,581.818048,583.652424,584.391141,586.179077,586.6,587.758034,589.104791,590.289009,591.354856,592.471685,593.330823,595.118760,595.781678,597.905154,600.877308,601.725548,602.770446,604.953121,606.764278,608.187598,609.481013,612.244187,612.893913,613.759442,614.394037,614.928096,615.810454,618.573629,619.734626,621.545783,622.892540,624.750137,626.932812,628.024150,630.230046,631.507143,632.784241,634.734717,636.035035,638.124831 diff --git a/data/torah/labels/eikev-4.txt b/data/torah/labels/eikev-4.txt deleted file mode 100644 index 3037ca291..000000000 --- a/data/torah/labels/eikev-4.txt +++ /dev/null @@ -1 +0,0 @@ -0.983980,1.663563,3.362520,5.845735,7.076393,9.351948,10,12.161563,12.948347,13.903059,15.340002,17.360139,18.776556,19.983993,21.191431,22.793608,23.792066,24.906624,26.485581,28.319957,28.691146,29.951206,30.697081,32.080683,33.181616,35.317852,35.881438,36.780709,38.522205,39.596631,40.734409,42.615225,44.496042,46.191098,47.584296,49.047153,50.208150,52.901665,53.569297,54.294862,55.496553,57.005850,58.868880,59.959044,61.221131,62.428568,64.286165,66.570821,67.193772,68.878914,70.364991,73.035285,74.474923,75.891340,77.307757,78.793834,81.603449,82.973426,84.575603,86.711839,87.849617,89.126714,90.125172,91.425490,92.911567,94.420864,96.162360,99.204174,100.852791,101.208318,102.340957,104.337232,104.698260,105.802583,107.661803,108.753141,109.890919,112.329411,113.277996,114.892006,115.828182,117.685778,119.148635,121.609950,124.233805,125.650222,126.487391,127.531039,129.414833,130.436511,131.318869,132.851386,134.941182,135.893200,138.517055,139.817373,140.746171,142.255468,143.671885,144.786443,146.365400,147.495040,149.012737,150.382452,151.430959,152.233998,153.278896,154.416673,156.715449,158.038986,159.362524,159.659538,160.755396,161.916393,163.309591,163.694562,164.402461,164.896882,165.965000,168.588854,170.005272,171.352029,173.186405,174.672483,175.949580,177.087358,177.969716,179.153934,180.457610,182.184883,182.922250,184.431547,186.173044,186.995228,188.365205,188.824976,190.014246,191.662439,192.660897,194.030874,195.447291,197.537087,198.721305,199.882303,200.927201,203.574276,204.804933,207.219808,208.682666,210.470602,212.119219,213.001577,214.487654,215.509332,217.111509,218.899446,221.198221,222.289559,223.613096,224.866974,225.604039,226.021998,227.119310,229.597871,231.083948,232.500365,233.684583,235.611839,236.353314,237.505804,238.318502,239.154420,240.965577,242.707074,243.050038,244.140203,245.160175,246.181853,248.225209,249.757726 diff --git a/data/torah/labels/eikev-5.txt b/data/torah/labels/eikev-5.txt deleted file mode 100644 index 14a54d412..000000000 --- a/data/torah/labels/eikev-5.txt +++ /dev/null @@ -1 +0,0 @@ -0.676939,2.076463,3.539320,5.025397,6.256054,7.417052,8.879909,10.249887,11.169490,11.398776,13.593560,14.062857,15.045510,17.098163,18.364694,19.022857,19.858776,21.902132,22.900590,24.821882,25.035816,26.258673,27.492449,28.355590,29.539807,30.375726,31.885023,34.833957,35.414456,36.273594,37.643571,38.159694,39.349796,41.489796,42.723571,44.208469,45.256633,46.606474,47.744252,48.812370,50.205567,51.343345,52.713322,53.572460,54.663798,56.103435,56.854059,57.397857,58.282245,60.685351,63.030567,64.029025,65.166803,66.304580,67.186939,69.532154,71.227211,74.338685,76.428481,77.235737,78.419955,79.070113,80.440091,82.762086,83.714104,84.666122,86.152200,88.381315,89.552449,90.610431,91.801633,92.882551,94.239580,95.400578,96.399036,97.583254,98.930011,100.555408,101.716406,102.877404,104.084841,105.315499,106.848016,108.148333,108.626837,109.634410,110.777755,111.869592,113.016020,114.380816,117.449331,118.447789,119.608787,120.862664,122.929240,123.881259,124.753265,125.506633,126.489286,128.279898,130.398061,130.649184,131.497404,132,132.890601,133.935499,134.864297,136.141395,136.807143,138.720567,140.856803,142.087460,143.109138,144.200476,145.849093,146.708231,148.263968,149.982245,150.9,152.350680,153.325918,154.556576,155.285907,156.145045,158.699240,159.222551,160.401735,160.893061,162.135794,163.436111,164.620329,165.549127,167.383503,169.682279,170.843277,172.259694,173.374252,174.628129,177.135884,178.598741,179.922279,181.083277,182.699014,183.883231,185.601508,188.434342,189.479240,190.408039,191.522596,193.287313,196.120147,198.790442,201.274977,202.900374,203.441939,205.245590,208.775023,210.957698,212.815295,213.923571,214.174694,216.827857,218.058367,218.487449,219.524694,221.192324,221.653776,222.581837,223.291531,224.296020,225.186156,226.440034,227.615204,229.438571,229.831633,230.828413,232.012630,233.707687,235.333084,236.841224,237.933719,238.588163,239.844104,241.074762,242.073220,242.911837,243.930816,245.139184,245.532245,246.601111,247.355612,249.386429,250.947755,253.636757,254.820975,256.423152,258.025329,261.020703,262.367460,264.294717,264.814082,265.589286,266.231440,266.988231,267.598265,268.842959,270.550351,272.106088,274.660283,275.937381,276.564320,277.353798,278.491576,281.185091,283.042687,284.226905,285.411122,286.029059,287.152619,287.445476,288.165295,289.767472,291.192857,292.863367,294.365023,297.569376,298.683934,301.005930,301.5,303.536905,304.721122,305.975000,307.159218,307.614082,308.691735,310.572551,311.217143,312.430147,313.138776,314.372551,315.913141,316.381531,317.462449,318.903673,320.208832,321.625249,322.255612,323.343526,324.930612,326.317245,327.664002,329.475159,330.095000,331.007676,332.400873,333.677971,334.885408,336.510805,338.461281,338.873367,339.157245,340.663980,343.054490,344.169048,345.469365,346.583923,348.046780,350.995714,352.644331,354.339388,354.617653,355.593265,356.800703,358.936939,360.121156,361.119615,363.162971,364.672268,366.065465,367.249683,367.610510,369.316259,371.870454,373.101111,375.399887,378.325601,379.183980,380.043878,381.483515,383.364331,384.293129,385.988186 diff --git a/data/torah/labels/eikev-6.txt b/data/torah/labels/eikev-6.txt deleted file mode 100644 index c19ddf28c..000000000 --- a/data/torah/labels/eikev-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.217542,1.540728,3.793064,4.745082,5.882859,6.515146,7.392156,8.924325,10.051200,11.385989,12.802406,13.777644,14.623459,15.944622,16.916065,18.198696,19.336474,19.972873,21.255178,22.874250,24.532180,25.907721,27.742097,30.574932,32.084229,34.104365,35.438886,36.298024,37.830541,39.154079,40.175757,41.359975,43.078251,44.517888,45.424687,46.512703,48.429684,49.011922,49.801400,51.333917,52.262715,53.284393,56.094008,57.347885,58.624983,59.855640,60.784439,62.642035,64.128112,65.498089,66.343098,68.065791,71.001219,71.394603,72.324756,73.656570,74.167409,75.421286,77.603962,79.554438,81.272715,82.410493,83.385731,85.707726,86.195345,87.263463,88.679880,90.421377,91.294976,92.455974,93.361552,94.847629,97.448264,98.005543,100.164998,101.604636,102.208354,103.299692,105.366268,106.689806,108.593842,110.869398,114.189851,114.956110,116.186767,117.719284,119.344681,120.970078,122.850894,124.104772,124.668551,125.521189,126.728627,129.468581,131.326178,132.672935,133.810713,135.714749,137.131166,138.385044,139.084769,140.600220,143.121915,144.375792,144.677652,145.908309,146.338212,147.368892,148.274470,150.457146,151.130525,151.989663,152.407622,153.243541,155.054697,157.237373,158.514470,159.605808,160.790026,161.788484,162.995922,163.924720,165.364357,167.245173,167.658153,168.785027,169.588087,170.222763,171.331885,172.028484,173.259142,174.721999,175.790117,176.927894,177.508393,178.739051,179.639286,180.805627,181.455786,183.081182,184.636919,186.564176,187.098235,188.119913,189.159430,189.820012,191.556466,192.856783,194.644720,195.643178,197.384674,199.265491,201.680366,202.241533,203.089457,204.250455,206.688550,207.988867,209.056985,210.217983,211.704060,212.888278,213.863516,215.187053,216.417711,218.414627,220.388323,222.083380,222.896078,223.871316,224.939434,226.866690,227.632949 diff --git a/data/torah/labels/eikev-7.txt b/data/torah/labels/eikev-7.txt deleted file mode 100644 index 4de6db8b8..000000000 --- a/data/torah/labels/eikev-7.txt +++ /dev/null @@ -1 +0,0 @@ -0.589996,2.824168,3.5,4.357515,6.307991,6.823911,7.068815,8.237674,10.766222,13.064998,14.969034,16.222912,17.500009,19.195066,21.331302,21.749261,23.699737,25.650213,26.857651,27.418097,28.598088,29.945059,31.459010,33.939737,35.774113,36.446143,36.601991,37.399510,38.449902,40.249499,42.223195,43.314533,44.336211,45.682968,47.285145,47.990019,50.183022,51.307353,53.461653,54.034691,55.915998,57.185045,57.953152,58.871902,59.333519,60.313135,62.383685,63.062737,63.819712,64.632348,66.647238,68.247177,69.454615,70.685272,71.846270,73.773526,75.051893,75.840102,76.861690,78.115658,79.996384,82.388040,84.338516,85.871033,88.471668,89.222919,90.143504,90.603286,91.393657,92.228557,92.963268,93.920620,95.824190,97.015313 diff --git a/data/torah/labels/eikev-H.txt b/data/torah/labels/eikev-H.txt deleted file mode 100644 index e1d315819..000000000 --- a/data/torah/labels/eikev-H.txt +++ /dev/null @@ -1 +0,0 @@ -0.702514,1.855638,2.854096,3.666795,5.501171,6.708609,8.287566,9.518223,10.493461,11.584799,13.007638,13.540605,15.027774,15.703245,16.606731,17.824560,19.351149,19.684155,21.323353,22.136065,22.5,23.396630,25.347106,26.809964,27.669102,29.155179,30.687696,32.405973,34.193909,35.706924,36.434283,37.784211,38.576833,39.389532,40.411210,41.502548,42.663545,43.847763,44.446060,45.844679,46.627617,47.423636,47.881122,49.953986,51.090645,52.261501,54.010897,55.264402,56.843359,58.352656,59.490433,60.744311,62.903767,64.018325,66.015241,67.124484,68.128257,69.591114,71.053971,72.725808,74.838823,76.208801,77.578778,78.786216,80.086533,82.106669,82.965476,83.199648,84.342954,85.049384,85.500035,87.232060,88.741357,91.133012,92.087908,92.505868,93.272126,93.585829,94.536288,95.528072,96.630054,98.737595,100.018649,102.420788,103.744326,104.742784,105.927001,106.948679,107.993577,109.449628,110.564186,111.887723,112.677668,113.779651,114.619912,116.107588,117.329986,119.605541,120.929079,121.973977,122.540408,123.367174,124.388852,125.266228,125.944589,126.934562,128.449787,129.895726,130.847744,132.194501,133.982438,134.317842,135.100233,136.516650,138.095607,140.069303,142.298419,144.202455,146.663770,149.078646,150.048623,151.291496,152.057755,153.985011,154.658390,156.841066,158.443242,159.057340,160.090448,161.316403,162.242843,162.591142,163.450281,164.959578,166.143795,167.211913,168.953410,169.3,170.346607,171.019986,172.645383,173.865224,175.297801,176.468657,178.845111,179.361360,180.238308,181.021007,182.171414,183.482322,184.248581,186.152617,186.909937,188.056653,189.568469,190.780649,191.414289,192.337199,193.217199,194.447857,196.634929,196.882875,197.745090,198.177704,199.389884,201.068808,202.099931,203.794988,205.350725,205.712506,207.778723,208.453687,209.291577,210.406135,211.961871,213.540828,214.557471,216.136428,217.627688,218.922823,221.059058,221.842769,223.264954,224.402732,225.671744,226.879181,228.411698,229.851336,230.942673,232.120697,233.397794,234.322703,234.949642,235.832000,237.434177,238.409415,240.127691,241.915628,244.191184,245.421841,246.884698,248.486875,249.880072,251.180390,253.014766,255.235158,255.842433,256.956991,258.721708,259.574612,260.549850,262.105587,262.3,262.862067,263.429124,263.930212,265.694928,266.266422,268.643863,269.928128,272.366223,273.875520,274.827538,275.965316,277.288853,278.449851,279.657289,280.493207,281.700645,283.372481,284.486894,285.276372,287.041089,288.016327,288.875465,290.175783,291.615420,293.658776,295.075193,295.864672,297.293106,298.442086,300.474240,301.588798,301.970642,302.796235,304.793151,306.750489,307.927845,309.947981,311.296165,311.943580,312.894039,314.147544,315.924490,317.015042,318.237505,318.756538,319.708556,320.683795,322.169872,322.536382,324.097128,325.327785,325.828554,327.278262,329.205518,330.550131,331.804009,333.545505,335.913941,337.051719,338.096617,339.187954,340.720471,342.369088,345.085823,345.944961,346.695754,347.369133,348.061042,348.739110,349.149250,350.884872,351.463412,352.785791,353.533159,354.531617,355.831934,357.434111,357.896233,358.226827,359.521656,360.836148,362.577645,363.599376,364.249535,364.946134,365.926927,367.318179,367.8,368.629128,369.674026,370.579604,371.996021,372.717892,373.819074,374.980072,375.862430,376.651909,377.401316,378.207646,379.977199,380.703705,381.740370,383.024954,384.023412,384.952211,386.786587,388.687959,389.709637,390.800975,391.985193,393.401610,394.177794,395.770046,397.730447,398.775345,401.050900,401.959756,402.862057,403.979892,405.187330,406.301888,407.346786,408.972183,410.783339,412.153316,413.987693,415.099707,415.633766,416.785,418.489820,420.293970,421.315648,423.382224,424.682541,426.006079,427.352836,427.886256,428.636755,429.837371,431.763989,433.157186,434.277353,436.158169,437.690686,438.410505,439.148894,440.820731,442.046340,442.524514,443.453312,445.125149,446.113429,446.876104,447.526262,449.549982,450.664540,450.998745,452.011297,453.172295,453.933972,454.783598,457.012713,457.777134,458.644945,459.912224,461.813143,463.580537,464.003333,464.612953,466.656309,468.931865,470.348282,470.697874,472.116676,473.506196,474.945833,476.431910,478.150187,478.747845,480.303582,481.487800,482.764897,484.610398,485.299137,486.635290,487.200056 diff --git a/data/torah/labels/emor-1.txt b/data/torah/labels/emor-1.txt deleted file mode 100644 index 93f16d289..000000000 --- a/data/torah/labels/emor-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.873469,3.947392,4.279684,5.366921,6.088690,6.640164,7.940504,8.807398,10.142545,11.884042,13.451389,14.380187,14.695606,15.682454,16.930527,17.859325,18.261819,19.422817,20.641865,21.483588,22.963860,23.925969,25.223719,26.326666,27.806938,29.519410,30.622358,32.269116,33.197914,34.329887,34.556304,35.688277,36.470023,37.414354,38.720477,39.316272,40.361170,41.115819,42.276816,43.902213,44.623982,45.639855,46.626703,47.729651,48.861624,49.732372,50.105841,51.208789,54.024209,54.778857,55.968880,57.275002,58.523075,59.393823,61.628744,63.138041,64.299039,65.111737,66.301760,68.102150,68.537524,69.147048,70.685370,72.715189,74.746935,75.530608,76.778681,77.939678,79.013601,80.145574,81.074372,82.032195,83.185427,84.529284,86.711959,87.803297,88.708876,89.521574,90.775452,91.283207,91.956585,92.722844,93.837402,95.973637,96.383887,96.481393,97.254702,98.485359,98.969894,100.014792,101.082910,101.521005,102.264044,103.587581,104.423500,105.445178,106.559736,108.208352,109.183591,110.205269,110.994747,111.502502,112.547400,113.499418,113.915835,114.751754,115.773432,116.748670,117.747128,119.093885,121.658077,122.726195,124.281932,124.884109,125.696808,125.949143,126.854721,127.737080,128.828418,130.244835,130.473950,131.495628,132.540526,132.862522,134.069959,134.600935,135.460073,136.481751,137.549869,138.780526,139.426059,140.494177,142.537533,142.998848,143.881207,144.450912,144.842567,145.957125,146.833315,147.878213,148.478848,149.709506,150.217261,151.029959,152.144517,153.142975,154.466513,155.604291,156.138349,157.090368,158.065606,161.060980,162.639937,163.545515,165.287012,167.446467,168.212726,168.932545,170.070322,172.554857,173.901615,175.145668,176.167346,177.528071,178.456869,180.056895,181.008275,181.539250,182.398388,182.951041,184.135259,185.876755,186.221971,187.290089,188.102787,188.985145,190.006823,190.514578,191.396937,192.209635,193.347413,195.112129,195.805644,196.896982 diff --git a/data/torah/labels/haazinu-1.txt b/data/torah/labels/haazinu-1.txt deleted file mode 100644 index df932c425..000000000 --- a/data/torah/labels/haazinu-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.083879,4.509120,6.562693,8.187161,8.953419,9.723411,10.949425,12.175438,13.707955,15.071896,16.727014,17.907052,19.638796,22.198100,22.749806,23.745942,25.554312,26.351221,27.899063,29.738083,30.672919,31.607754,32.711166,33.753278,34.626813,36.174655,37.967700,39.270339,40.864157,41.768342,42.228097,43.178257,44.174394,45.584309,46.749022,48.082312,49.568853,50.656940,51.836979,53.062992,54.923248,56.532390,57.451901,58.570638,59.704701,60.976690,62.110752,67.420989,69,70.792265,71.887950,73.098638,74.401278,75.642616,76.171269,77.458584,78.837849,79.604107,80.236173,81.630763,83.312668,84.983112 diff --git a/data/torah/labels/haazinu-2.txt b/data/torah/labels/haazinu-2.txt deleted file mode 100644 index 64cedd1df..000000000 --- a/data/torah/labels/haazinu-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.100709,3.526879,4.721778,6.013039,6.957395,7.253003,8.409357,10.028252,10.856972,12.109689,13.632221,14.904210,15.906384,17.274736,18.450362,19.510353,21.341246,21.957968,23.210685,24.579037,25.831753,27.296468,28.626275,29.262269,31.228071,33.444415,34.542951,35.969121,37.067657,38.416737,39.707998,41.519619,43.697419,45.007953,46.222124,47.744657,48.920283,50.712631,52.774795,55.704225,57.689299,61.312541,63.663793,65.373213,66.317568,67.628103,68.283370,69.536086,70.673167,72.330608,73.641142,75.048039,76.551299,77.418564,79.153095,81.138169,81.851254,82.911245,84.279596,85.397405,86.187580 diff --git a/data/torah/labels/haazinu-3.txt b/data/torah/labels/haazinu-3.txt deleted file mode 100644 index 5fb29ac0e..000000000 --- a/data/torah/labels/haazinu-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.855739,2.032229,3.426057,4.178384,5.683037,6.502237,7.689241,9.879347,10.548082,11.785241,13.039118,14.209404,15.597029,16.967935,18.623053,19.442253,21.047216,21.966727,22.702335,24.240424,25.393992,25.979135,26.714743,28.319706,29.038596,29.757486,30.693714,31.629943,32.984131,33.853486,34.789714,36.578580,39.688196,40.758171,42.045486,44.402776,45.756963,46.910531,49.535314,51.039967,52.477747,54.166302,54.901910,56.690776,59.141053,60.328058,62.016613,63.939225,67.182588,68.854425,69.673625,71.128123,72.766523,73.535568,74.789445,76.544874,77.782033,78.852009,79.838392,81.058833,83.583307,85.723258,87.244629,88.531943,90.688613,91.213086 diff --git a/data/torah/labels/haazinu-4.txt b/data/torah/labels/haazinu-4.txt deleted file mode 100644 index e6df5fb44..000000000 --- a/data/torah/labels/haazinu-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.064718,3.794141,5.241208,6.794159,7.923577,9.476528,11.735365,13.182433,14.011849,15.105974,16.394217,17.011868,18.370699,19.447176,20.206005,21.617778,22.553078,23.735438,24.458971,26.311924,27.688403,29.206059,30.776657,31.535485,32.506079,33.847263,35.717863,37.323755,38.664940,39.123766,40.041419,41.047307,42.000254,43.588499,44.664976,45.212038,46.164985,47.541464,49.165003,49.994420,51.035603,52.006197,53.665030,54.476800,55.641513,57.212111,58.076822,59.576831,61.535666,63.229794,64.200388,65.753339,66.653344,68.012176,69.618068,72.282790,74.153390,75.123984,76.235755,77.859294,79.147537,80.241662,81.088726,82.235791,83.576976,84.829925,86.029932,88.253475,89.682895,90.565254,91.694672,93.529977,94.747632,95.524107,96.300582,96.724114,97.782944,98.806480,99.424131,100.024134,101.453555,103.677098,105.212401,106.730057,108.071242,109.659487,112.679575,113.932523,115.167825,116.509010,117.338426,119.350203,121.909042,122.579635,123.603170,124.909060,126.320834,127.450252,129.144380,130.044386,130.479694,131.714996,133.020886,134.520895,136.020904,137.026793,138.385625,139.373866,140.732698 diff --git a/data/torah/labels/haazinu-5.txt b/data/torah/labels/haazinu-5.txt deleted file mode 100644 index ac8ec8fb1..000000000 --- a/data/torah/labels/haazinu-5.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,1.741199,3.594151,4.547098,5.288279,6.505934,8.764771,12.064791,13.123621,14.464805,15.400105,16.511877,17.888356,19.370717,21.576613,22.441324,22.653127,23.617850,24.817858,26.388455,27.835523,29.829653,30.482598,31.770841,32.917907,34.241444,35.882630,36.888519,37.682641,38.565000,39.835595,42.006197,43.470912,45.263268,45.918772,46.854072,48.389376,49.501147,50.912920,52.395282,53.789408,54.830591,56.348247,57.618843,59.454148,60.336525,61.271825,61.936547,63.313026,64.671857,66.930694,68.307173,68.966025,70.201327,71.171921,72.407222,73.413111,74.418999,75.689595,76.607248,77.701372,78.989615,80.136681,81.389630,82.395518,83.154346,83.913174,84.689650,85.572008,86.383777,88.077905,89.419090,90.124977,90.666168,91.495585,92.572062,93.983836,94.972077,96.525027,98.483863,99.225044,100.654464,101.660353,102.719182,104.095661,105.472140,106.866266,108.807455,109.883932,111.242763,111.689849,113.101622,114.866339,116.719291,117.584002,119.189894,120.689904,122.472267,124.695810,125.436991,126.125231,127.625240,128.507598,129.531133,130.554669,131.719382,134.260574,135.019402,137.119415,139.201780,140.190021,142.078268,143.295923,144.795932 diff --git a/data/torah/labels/haazinu-6.txt b/data/torah/labels/haazinu-6.txt deleted file mode 100644 index aaac81524..000000000 --- a/data/torah/labels/haazinu-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.770692,1.551579,1.894073,2.633861,3.716310,5.743876,6.661761,7.634445,9.182519,9.621079,10.621163,11.744544,13.018623,14.361201,15.279085,16.306568,17.512148,18.183437,19.443816,21.197387,22.855060,24.320936,25.499116,26.540299,27.828078,28.540466,29.650148,31.033825,31.842111,33.239488,34.376569,35.239655,36.637032,38.363203,39.226289,40.171573,41.509069,41.837947,42.769615,43.879297,45.701367,46.934346,48.249524,49.331806,50.472570 diff --git a/data/torah/labels/haazinu-7.txt b/data/torah/labels/haazinu-7.txt deleted file mode 100644 index 20cf312a3..000000000 --- a/data/torah/labels/haazinu-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.011795,4.567386,7.443986,7.920459,8.196943,8.991066,9.691082,10.608735,11.455799,12.320510,13.520517,14.402875,14.661713,15.720543,17.749967,18.702914,20.326453,20.944104,21.297047,22.285288,23.185294,23.644120,23.997063,25.020599,26.820610,28.408855,29.185330,30.420631,31.461814,32.908882,35.573604,37.797147,39.032448,39.967748,41.132461,42.403057,43.673653,43.826607,45.220733,46.561918,47.656042,48.161939,48.620766,49.256064,49.997245,51.497254,54.250211,54.779626,55.644338,56.344354,57.403184,58.179659,58.526732,59.109089,60.732628,63.191490,65.150326,66.473863,67.603282,68.032259,69.885212,71.455809,72.796994,75.370361,75.882129,77.893906,79.388044,81.717470,83.623364,85.046914,85.199868,86.382228,89.011656,89.735190,90.476371,92.717561,97.605826,98.082299,99.705838,101.347025,103.094094,103.670580,105.594121,106.900012,108.558845,110.182384,111.964748,112.458869,113.023578,114.329468,116.076538,116.517717,117.382428,119.288322,120.576565,122.041280,123.594230,124.829532,126.488365,128.782497,131.676632,133.441349,134.764886,135.700186,137.023723,138.170789,139.794328,140.429626,141.770811,143.406127,145.241432,146.617911,148.390476,149.466954,150.772844,152.572855,153.119917,154.849339,156.984646,158.178783,160.631739,162.184690,163.614110,164.531763,165.661181,166.772953,167.655311,168.572963,169.220038,170.084749,170.843578,171.725936,171.896537,172.937720,174.031844,175.249499,175.973032,177.737749,178.702473,179.673067,180.182534,180.302495,181.506072,182.847256,183.535496,184.400207,184.947269,186.606103,187.488461,188.264936,189.283348,190.030430 diff --git a/data/torah/labels/haazinu-h.txt b/data/torah/labels/haazinu-h.txt deleted file mode 100644 index 49ca74f55..000000000 --- a/data/torah/labels/haazinu-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,2.948934,4.365351,4.710567,5.778685,6.962902,8.054240,10.236916,11.606893,13.116190,14.997007,16.181224,16.668844,17.620862,18.572880,19.966077,22.241633,25.237007,26.096145,27.628662,30.833016,32.319093,33.038912,34.362449,35.593107,36.823764,39.649524,40.462222,43.666576,45.361633,46.499410,49.610884,51.840000,53.929796,57.227029,58.364807,59.665125,61.871020,64.640484,65.640566,67.080203,68.078661,69.820158,71.097255,72.513673,75.416167,76.577165,77.714943,79.456439,81.987414,82.962652,84.866689,86.071042,87.232040,88.671677,90.180974,90.970453,92.433310,94.755305,96.264602,98.052539,99.283197,101.512312,103.973627,105.715124,107.619160,109.476757,111.566553,113.517029,115.397845,117.557301,117.975260,118.741519,119.902516,121.970089,123.247186,124.408184,126.100642,127.424179,129.281776,131.139372,131.879327,133.295744,134.476878,135.521776,137.565132,138.958329,139.349984,141.114701,142.086855,142.368578,143.596152,145.825268,147.381005,147.540460,147.958420,149.444497,150.698374,152.416651,153.716968,155.876424,157.083862,157.780460,158.404315,160.261912,162.630347,165.207762,166.926039,167.854837,169.596333,170.757331,170.943091,172.173748,174.031345,175.447762,176.074701,177.607218,178.953975,180.138193,183.760506,185.107263,187.057739,189.310075,191.121231,192.189349,193.582547,194.789984,195.997422,199.077151,200.632888,203.117423,203.697922,205.044679,206.159237,207.807854,209.433251,211.151527,211.941006,213.589623,216.097378,217.769214,219.417831,222.529305,223.362140,224.639237,226.729033,229.002326,230.070444,231.208222,233.901736,235.318154,237.315070,238.940467,240.914163,242.469900,244.490036,246.765591,246.971487,247.807405,249.386362,250.474616,251.983913,254.793528,255.977745,257.185183,257.928222,259.089219,260.178999,261.525757,262.103172,263.612469,264.375643,265.466981,267.765757,268.460813,268.925212,269.993330,272.159960,273.785356,273.875152,274.478871,276.173928,277.146082,278.260640,279.955697,281.743633,284.158508,286.759143,288.361320,289.429438,291.496014,293.265771,293.839612,295.975848,296.649227,297.856664,299.389181,300.271540,301.130678,302.175576,304.381472,305.310270,306.239068,307.864465,308.723603,309.954261,311.997617,312.870782,313.428061,314.191235,316.327471,317.627789,318.042664,318.878582,320.759399,321.380169,321.921372,323.829251,327.255577,328.764874,329.554353,331.551269,332.340747,333.571405,334.593083,336.706099,338.424375,339.461563,341.342380,343.130316,343.989455,345.057573,346.241790,347.611768,349.051405,351.532510,352.467370,353.433083,354.546099,356.032176,357.727233,358.211768,359.233446,359.857301,361.668457,362.409954,363.126689,364.171587,365.750543,366.908240,369.903614,371.714770,373.363387,374.547605,376.799940,378.146698,379.168376,381.560031,382.419169,383.464067,385.414544,387.063160,388.015179,389.640575,390.639033,391.544612,392.752049,395.584884,397.790779,398.696358,399.532276,400.530734,402.086471,404.478126,405.778444,406.985881,408.495179,410.654634,412.442571,415.205745,416.679719,418.003257,419.907293,420.789651,421.857769,422.298948,423.947565,425.712282,428.916636,429.543574,430.983211,433.142667,433.955366,435.441443,437.020400,438.111738,439.899674,440.851692,442.105570,444.938404,449.001896,450.573143,451.780581,453.405978,455.565434,458.816227,461.254323,462.043801,463.065479,463.854958,465.224935,465.732690,467.265207,471.189379,473.186295,474.486613,476.042350,477.876726,480.144005,483.023279,487.946016,489.707649,491.681345,493.167422,494.328420,495.535858,496.418216,496.531232,497.854769,500.571504,501.918261,502.963159,504.260393,506.350189,507.717082,508.761980,510.833650,512.198533,513.248525,514.432743,516.267119,518.333695,522.257868,523.047346,524.626303,525.624761,526.832199,531.054441,532.401198,533.446096,534.398114,536.979437,537.676036,538.697714,540.864804,541.884940,542.976278,545.507253,547.597049,549.477865,551.567661,554.539816,555.933013,557.186890,559.183806,559.764305,560.925303,562.063081,563.224079,565.081675,567.008931,569.029067,571.513602,572.465621,573.951698,574.973376,576.900632,578.804668,581.078167,582.146285,582.793359 diff --git a/data/torah/labels/ki tisa-1.txt b/data/torah/labels/ki tisa-1.txt deleted file mode 100644 index db8f0d307..000000000 --- a/data/torah/labels/ki tisa-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.063791,3.922929,4.178349,4.525114,5.500352,5.918311,7.450828,7.822348,8.329199,8.681712,10.481970,12.267161,14.254502,14.811780,15.810239,17.226656,18.132234,18.949568,19.873731,20.436533,20.993812,22.479889,23.083608,23.695110,24.879328,25.668806,26.945904,27.370128,28.275706,28.601367,29.901685,30.772853,31.515892,32.560789,33.698567,34.441606,35.323964,36.415302,37.576300,38.667638,39.573216,41.128953,42.150631,43.223368,43.502007,44.628595,45.835419,46.555238,47.275056,48.366394,49.100923,49.774302,51.051400,51.856509,52.158368,53.528346,54.677524,55.222741,56.058659,57.312537,58.496754,59.332673,59.683298,60.708593,61.869590,62.757035,63.128555,64.614632,66.815958,67.094597,67.578858,69.459674,70.373359,71.200509,72.222187,73.661824,74.637062,75.011828,75.844500,76.587539,77.377017,79.167247,80.188925,81.164163,82.185841,83.034032,84.055710,84.881052,85.206131,87.017288,88.535854,89.220988,89.476407,89.841581,90.909699,92.418996,93.371014,94.439132,95.460810,96.319948,97.922125,98.943658,100.336856,100.597959,101.068381,101.764092,102.553570,103.621688,104.650827,105.136637,106.088655,107.969472,108.689290,109.362669,110.337907,110.802500,111.685763,111.941182,113.496919,114.982996,115.228696,116.329754,117.643571,118.363389,118.967108,119.733367,121.033684,121.561301,122.745519,123.000938,123.860076,124.974634,125.810553,126.576811,127.714589,129.688285,130.408104,131.360122,132.219260,133.240938,134.750235,136.166652,136.482723,137.861709,138.276666,139.159025,141.132721,142.691106,143.602417,143.804421,144.181075,145.249193,146.040448,146.361587,148.078055,148.751434,150.376831,150.780548,151.709346,152.684585,153.610912,154.601830,155.298428,156.621966,157.666864,158.874301,159.475518,160.009577,160.729395,162.101875,164.141131,164.688156,165.315095,166.081353,167.242351,167.937383,168.680422,169.841420,171.411577,172.735114,173.663912,174.284166,175.189744,175.839903,176.675822,177.790379,178.742398,179.508253,180.038985,180.544706,181.868243,183.168561,183.815361,184.019480,184.583993,185.443132,186.093290,186.650569,187.927667,188.578956,189.714021,190.062320,190.231465,191.158164,191.897553,192.965671,193.337190,194.405308,195.148347,195.775285,196.959503,197.530556,198.064615,198.923753,199.205671,199.457473,200.339832,200.890458,201.656717,201.981796,203.189234,205.209370,206.370367,207.392045,207.879664,209.040662,209.241343,209.775708,210.592008,211.799445,212.361213,213.081032,213.429331,214.195590,215.194048,216.424706,217.167744,217.771463,218.607381,219.192580,219.824040,220.543858,221.565536,222.308575,224.653790,225.354814,225.981753,226.956991,228.166786,228.582387,230.370324,231.204935,232.017633,233.201851,234.246749,235.059447,237.771580,238.340276,239.176194,240.244312,241.505069,242.224887,242.828606,243.308959,244.655716,245.680963,246.478887,248.104284,249.218841,250.588819,251.892947,252.851893,253.243903,254.012875,254.964893,256.288430,258.680085,259.562444,259.853937,261.080073,261.428373,262.194631,263.727148,264.888146,266.025924,267.488781,268.301479,269.395078,270.486416,270.992395,271.526454,272.733892,273.894889,274.800468,275.845366,276.774164,277.493982,278.631760,279.792758,280.436119,281.434577,283.106414,284.773052,286.328789,287.466567,288.929424,289.788562,290.787020,291.878358,292.900036,294.502213,295.245251,295.955819,296.758263,297.728948,298.708740,299.405338,300.473456,301.976036,303.090594,304.568162,306.991546,307.491147,308.280626,309.302304,310.611277,311.202933,311.745115,313.204629,314.266095,314.799863,315.403582,316.883571,318.270714,318.897943,319.802601,321.195508,322.922472,323.642290,323.920930,324.410325,325.266735,326.099020,326.971125,327.737383,329.339560,329.608802,330.119641,330.467940,330.899738,331.673230,332.696992,333.972006,334.598945,335.318763,336.317221,338.128378,339.057176,339.823435,340.300058,341.659136,342.916324,344.170201,345.749158,346.701176,347.746074,349.441131,350.648569,352.088206,353.272424,354.996514,355.669893,356.575471,357.001843,358.232501,360.322297,362.063793,363.015812,364.200029,364.746006,366.703716,367.075235,368.282673,369.076915,370.168253,371.130186,371.464598,371.971207,372.634623,373.616191,374.568209,376.797324,377.375030,377.604210,377.966073,379.582395,381.002720,381.699319,383.046076,383.662713,385.055911,386.216908,386.825100,387.823558,388.636257,389.448955,390.377753,390.679532,391.195216,392.309773,393.043705,394.269535,394.551468,395.580380,396.120753,396.863791,397.908689,398.159556,398.391755,399.413433,400.411891,400.945950,402.176608,402.741638,403.349878,404.232236,404.534096,404.804258,405.554530,406.018930,406.761968,407.110267,408.294485,409.200063,409.966322,411.243419,411.981211,412.745354,413.720592,414.858370,416.181907,416.685432,417.236074,417.793353,418.954351,420.254668,421.486150,423.133942,423.428149,424.266780,425.172358,426.356576,427.215714,427.721063,428.858841,430.437798,431.900655,432.606523,432.885162,433.270827,434.416727,436.138620,437.044199,437.369278,437.949777,438.808915,439.644833,440.025606,440.327465,441.214038,442.282156,443.825169,444.678,445.646547,446.484968,447.452859,449.565875,451.702111,453.002428,453.664537,454.454015,456.172292,457.868495,458.022267,459.215253,460.817429,461.630128,462.093236,463.161353,464.809970,465.808428,466.714007,467.898224,468.130311,469.006937,469.610656,470.841314,472.838230,473.606507,474.227116,474.877275,475.991833,476.897411,478.685347,479.437639,480.879957,481.853079,483.315937,484.709134,486.241651,486.938250,488.006367,488.462806,490.064983,491.945800,492.605841,493.418539,493.906158,494.904616,495.829136,496.119531,496.777812,497.031116,497.942733,499.730670,499.866324,501.445281,502.420519,502.820926,503.790497,505.601653,506.437571,507.203830,508.225508,508.7,509.270406,510.129544,510.576860,511.312649,512.693477,513.668715,514.736833,514.969033,515.897831,516.153250,517.383908,518.204648,519.346011,520.642743 diff --git a/data/torah/labels/ki tisa-2.txt b/data/torah/labels/ki tisa-2.txt deleted file mode 100644 index 58748245b..000000000 --- a/data/torah/labels/ki tisa-2.txt +++ /dev/null @@ -1 +0,0 @@ -2.998116,3.930382,4.162582,5.695099,7.575915,8.690473,9.549611,10.849929,12.150246,13.148704,14.123942,15.354600,16.515598,17.284976,18.349974,19.213756,20.676613,22.901090,24.108528,24.305511,25.054173,26.238391,27.283289,27.511365,28.537167,29.906278,31.833534,32.253814,34.134630,35.481388,36.874585,38.778621,39.614540,40.195038,42.006195,43.143973,44.328190,45.674948,46.111585,47.899521,49.199839,51.127095,52.218433,53.263331,54.517208,55.887186,56.353930,57.422048,57.797551,58.374066,59.418964,60.913290,61.772428,63.049526,64.628483,65.859140,67.066578,68.599095,69.876193,71.315830,72.848347,74.473744,75.913381,77.260138,79.442814,79.708759,80.696691,81.097341,81.987572,83.055690,83.984488,85.563445,86.840542,87.152267,88.615125,89.845782,91.773038,93.375215,94.304014,95.465011,96.695669,97.670907,98.855125,101.316440,102.245238,103.150816,104.544014,105.356712,106.471270,107.098209,108.746825,110.186463,111.695760,112.601338,113.623016,114.807233,116.246871,117.152449,118.588064,119.289162,120.091106,121.541497,123.074014,125.674649,127.718005,128.925443,130.174801,131.618957,133.013142,134.081260,135.381578,137.099854,138.609151,140.118448,141.774331,142.698209,143.046508,144.044966,145.071940,146.790217,147.507342,148.675603,150.231340,151.206578,152.297916,152.971295,154.318052,155.322674,157.133831,157.557695,158.486493,159.670711,161.110348,162.526765,163.757423,164.500462,165.777559,167.345061,168.227419,169.396571,170.270775,172.662430,173.568009,174.682566,175.959664,176.725922,177.933360,178.699619,180.301795,181.846336,183.030554,183.304461,184.261211,185.491869,185.711230,186.662522,187.697765,188.523891,188.872190,189.611527,190.340765,191.316003,192.918179,194.673947,195.463425,196.565073,197.122352,198.097590,199.746207,201.464484,202.370062,203.115586,204.439123,206.614302,207.868179,208.309358,208.959517,209.865095,211.142193,213.371309,214.671626,215.832624,217.063281,218.502918,219.965776,221.266093,222.380651,223.797068,225.050946,226.304823,227.233621,227.803863,229.266720,231.797695,232.680054,234.491210,236.488126,237.765224,239.065541,240.180099,241.132117,242.502094,245.033070,246.054748,246.960326,248.190983,249.305541,250.814838,251.836516,253.067174,253.601233,254.646131,256.225088,260.242140,262.587355,263.678693,265.954249,268.322684,269.646221,270.585106,272.326602,273.975219,275.554176,277.063473,278.392753,278.642948,279.910837,281.327254,282.975871,283.662606,284.452085,285.822062,286.518661,288.355639,289.653355,291.345578,292.854875,294.503492,296.430748,297.452426,297.724952,299.797641,300.581006,301.347265,302.113523,303.576380,306.107356,307.221913,308.197151,308.465953,309.590349,311.330091,312.049909,313.001928,314.162925,316.577801,318.040658,319.340975,321.152132,322.289909,323.195488,323.631703,325.257100,327.462996,328.461454,329.390252,330.528030,333.012565,334.127123,335.148801,336.100819,337.223511,337.623054,339.098188,341.675603,343.788619,344.310636,344.826794,345.639493,347.172010,348.400278,348.725358,349.932795,350.470205,351.352564,353.094060,355.416056,355.923053,356.782192,357.952164,359.359607,359.986545,360.659924,361.263643,362.796160,364.073258,365.164595,366.190353,367.765230,370.721595,372.021913,373.090031,373.372819,374.951776,375.914713,376.216572,377.331130,378.933307,379.862575,380.212398,381.944381,383.360799,384.661116,384.940319,386.462386,387.633811,388.539389,389.137672,390.693409,393.038625,393.473408,394.517182,395.492420,396.490878,398.046615,399.230833,400.577590,401.459948,401.998836,402.806706,404.165931,404.489370,405.519132,406.596387,407.692482,408.132819,408.762007,410.294524,411.662112,412.746303,412.968779,414.129777,414.5,415.290775,416.219573,417.125151,418.100389,418.596422,419.558257,420.579935,421.369414,422.855491,425.154266,426.384924,426.794614,427.491213,428.126421,429.449958,430.556247,431.717245,432.080939,433.334817,434.101075,435.122753,436.097991,438.311808,439.147726,439.937205,440.934914,442.212011,443.094370,444.092828,445.462805,445.957220,447.754132,449.088307,450.922683,451.990801,453.244678,454.498556,455.845313,456.449971,457.680629,458.234511,458.911287,460.049064,461.852092,462.780890,463.803154,465.289231,466.984288,468.149833,469.213404,471.633224,472.933542,474.280299,475.057454,476.380992,477.843849,478.888747,479.230651,480.530968,481.622306,482.690424,483.596002,484.439232,486.007341,487.864937,489.676094,491.789110,493.771712,495.118469,496.604546,498.113843,500.784138,501.232911,502.277809,503.392366,505.133863,506.178761,506.467875,506.949871,508.203749,509.504066,511.106243,511.615701,512.569100,513.516949,514.709766,516.404823,517.287181,517.675642,518.627660,518.825159,520.183397,521.112992,523.551087,524.572765,525.617663,527.266280,529.425736,529.959795,530.193099,531.770951,532.597829,532.904281,533.944586,534.674738,534.970740,536.693422,538.156279,538.553338,539.503036,540.478274,541.546392,542.918690,543.168722,544.149347,545.349852,546.650169,547.933172,549.140609,550.348047,551.392945,553.111222,554.899158,556.060156,557.012174,558.521471,560.100428,560.611267,561.516845,562.886823,564.976618,566.903875,567.716573,569.202650,570.665507,572.801743,573.846641,574.845099,575.271360,576.594897,577.695725,578.879943,580.180260,581.410918,583.129195,584.568832,584.813733,586.171009,587.151873,588.645002,589.271941,591.285025,593.799832,595.541329,595.912757,597.027315,598.234752,600.463868,602.948403,603.877201,604.829219,606.338516,607.847813,608.892711,609.775070,610.546393,611.800270,613.309568,613.722888,614.772425,616.049522,617.173829,619.008205,620.588147,621.492741,623.304882,623.955041,625.441118,626.903975,627.716673,627.987255,628.916053,630.053830,631.029069,631.951893,632.840225,634.064909,636.038605,638.499920,640.194977,641.541830,641.817705,643.677970,644.568275,645.241653,646.402651,647.586869,648.237027,649.467685,650.257163,651.627141,653.182878,654.483195,656.155032,657.432129,659.498705,661.098871,662.261880,662.527333,663.621,664.545430,665.311689,666.310147,666.579837,667.735445,668.641023,669.453721,671.148778,673.264256,674.171147,674.475560,675.655912,676.144726,677.259284,678.559602,679.859919,681.206676,682.065815,683.366132,684.294930,685.827447,686.251946,687.894023,688.597959,691.802313,693.265170,694.286848,695.401406,696.469524,697.746621,699.325578,701.136735,702.251292,703.365850,705.827165,706.220175,707.893741,709.237833,710.514930,712.233207,713.383404,715.205361,716.056535,717.617075,718.313674,719.149592,720.148050,721.703787,722.376394,724.094671,726.416666,727.283116,727.548143,728.328413,729.025012,730.255669,730.808520,732.015958,733.731541,735.076354,736.585651,736.943229,738.382866,740.194023,741.215701,743.166177,743.864956,746.140512,746.697791,747.442635,749.142472,750.391569,752.411705,752.783224,754.687260,755.801818,756.089364,756.546804,758.009661,759.217099,759.431773,759.942612,760.987510,762.427147,764.052544,764.934902,766.513859,768.278575,770.461251,771.599029,773.270866,774.849823,776.591319,777.100335,777.842952,779.174761,781.883646,782.409154,784.112761,784.459141,785.341500,786.011387,787.265265,790.167759,790.934018,791.218118,793.302453,794.122534,795.747931,796.630289,799.207704,800.670562,800.852152,802.435278,803.645389,804.272328,804.992146,806.037044,807.755321,808.182935,809.831552,811.317629,812.710826,812.917089,814.000039,815.104475,815.927295,816.647114,818.481490,820.989245,822.173463,823.264801,823.491778,824.675996,825.697674,826.050964,827.304842,830.323436,831.484434,832.181032,833.643889,835.594366,837.034003,838.380760,838.802261,839.704298,841.677994,843.957091,845.001989,845.907567,847.649063,849.135141,850.182900,851.715417,852.946074,853.642673,854.873330,856.150428,856.549176,857.965593,859.730310,860.069472,861.137590,861.375905,862.615256,864.054893,865.076571,865.912489,867.166367,868.234485,868.584965,869.674122,871.649999,872.648457,873.437935,874.924012,876.897708,878.151586,878.381023,879.475123,880.679799,881.039111,882.361407,884.511091,885.300570,885.834629,886.190615,887.460025,888.860910,889.212350,890.834606,893.809901,894.808359,895.125192,896.007551,897.191768,897.770604,899.163801,900.022940 diff --git a/data/torah/labels/ki tisa-5.txt b/data/torah/labels/ki tisa-5.txt deleted file mode 100644 index f2af453ba..000000000 --- a/data/torah/labels/ki tisa-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.678999,3.462526,3.958849,5.212727,5.949581,7.807177,8.320395,9.016994,9.992232,11.547969,12.937594,13.378774,14.771971,15.371558,16.931427,18.301404,20.182220,20.693059,21.412878,22.620316,23.270474,24.849431,25.822098,26.727676,28.144093,29.440512,30.464196,30.820593,31.586898,32.817556,34.895915,36.370209,37.110982,37.436061,37.946900,39.131118,40.505294,40.884631,42.335472,43.380370,44.091551,44.555950,44.944272,45.756970,46.453569,47.591346,48.306520,49.095998,50.303436,50.515402,51.743073,52.335402,52.892681,53.635720,55.135426,59.194926,59.811455,60.391954,62.179890,64.710865,66.336262,67.357940,68.705558,69.959436,70.447055,71.341383,72.513631,75.021386,76.167562,77.189240,78.234138,80.045294,81.392051,82.715589,83.342528,84.805385,86.128922,87.057720,88.311598,89.751235,90.726473,91.678491,92.932369,93.453493,95.045385,96.319325,97.040216,97.388516,99.571191,102.287926,104.168742,105.933459,106.444298,107.419536,108.673414,109.648652,110.554230,111.133137,111.692008,112.992325,114.035631,114.848330,116.473726,117.495404,119.585200,120.815858,122.418035,123.904112,124.809690,126.202887,128.733863,129.871640,131.473817,132.147196,133.145654,133.749373,134.654951,135.769509,136.174320,137.441346,137.962257,139.285794,140.655772,141.677450,142.596771,143.455909,144.825887,148.401760,148.670736,150.574772,151.963044,152.729303,153.867080,155.747897,156.488436,157.022495,157.997733,159.646350,160.598368,160.951427,161.571201,162.346117,163.042716,165.713010,166.874008,168.876990 diff --git a/data/torah/labels/ki tisa-6.txt b/data/torah/labels/ki tisa-6.txt deleted file mode 100644 index 08099fb83..000000000 --- a/data/torah/labels/ki tisa-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.226661,4.022220,6.367436,7.110474,9.246710,10.175655,10.547175,12.056472,13.635429,15.214386,17.745361,18.163599,18.929858,19.446763,20.375561,21.025720,22.186718,23.304044,23.652343,26.578057,27.367536,27.901595,30.014611,30.439137,31.630790,32.861448,33.232967,34.463625,35.392423,36.287164,37.355282,38.237640,40.072017,41.813513,43.090611,44.692787,45.482266,46.643264,47.920361,49.058139,50.985395,51.905933,53.856409,54.403410,55.442478,57.422005,58.652662,60.463819,62.042776,64.155791,65.774503,67.539220,68.140553,69.046132,69.905270,71.507447,72.877424,73.728243,74.842801,75.585840,76.862937,77.377575,77.981294,79.188731,81.115988,81.955822,82.211242,83.418680,85.020856,85.675153,87.091570,88.809846,89.536895,90.697892,92.625149,94.482745,94.962619,96.618981,97.385239,98.685557,99.583390,100.721168,101.998265,103.298583,103.855862,104.791006,105.789464,106.401089,107.177184,107.966662,109.174100,110.527174,113.220247,114.208530,116.410995,118.129272,120.451267,122.076664,123.260882,124.793399,126.604555,128.067413,129.251630,130.993127,132.195293,134.290360,135.985770,138.401794,139.520946,139.879198,141.086636,142.386953,144.035570,144.894709,146.389517,146.861352,147.534730,148.602848,149.374039,149.831121,152.153116,154.591211,155.543229,157.238286,158.399284,159.537062,160.966701,162.485996,163.942301,164.917539,166.241076,167.169874,168.762583,170.155781,171.453256,173.125093,173.778697,174.544956,175.496974,176.075087,176.862622,177.744981,179.231058,180.322395,181.018994,182.319312,183.991148,185.036046,186.489126,187.892101,188.458140,188.766979,189.851338,191.546394,192.165691,193.048049,193.953628,195.370045,195.973101,196.971559,197.709002,199.148640,200.356077,201.261655,202.538753,203.475134,204.775451,206.168649,207.419346,208.533904,210.066421,211.369168,212.661019,214.123876,215.354533,216.724511,217.931948,219.162606,220.238321,221.677959,222.838956,224.394693,225.578911,226.647029,228.017006,229.619183,230.028396,232.559371,232.950812,235.026208,236.903947,238.163316,238.976015,240.554972,241.450051,242.296468,242.895416,244.377842,245.757890,246.059750,247.592267,248.217733,248.960772,249.356321,249.578684,251.110524,253.820397,255.469014,255.841932,256.709993,258.288950,259.519608,260.587726,261.562964,263.188361,263.833071,264.529670,264.924409,265.853207,266.317739,267.911346,268.491845,269.815383,271.209743,272.137378,272.787537,274.384604,276.479510,277.779827,280.264362,282.772117,283.561596,284.699374,286.301550,286.824051,287.590309,288.635207,289.796205 diff --git a/data/torah/labels/ki tisa-7.txt b/data/torah/labels/ki tisa-7.txt deleted file mode 100644 index e7460fa1a..000000000 --- a/data/torah/labels/ki tisa-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.332419,3.536646,3.908166,5.208483,5.997961,6.996420,7.200863,8.607695,10.070552,12.438987,12.858158,14.646094,15.969631,17.734348,19.993200,22.268755,23.267213,24.056692,25.960728,26.982734,27.532777,27.884892,29.810240,31.017678,31.900036,33.618313,34.639991,35.847429,37.008426,38.215864,39.516181,40.236000,41.582757,43.201573,43.625698,45.686108,46.632753,47.840191,49.326268,50.580145,52.507401,55.015157,56.361914,57.731891,59.057828,60.590345,61.846108,62.867786,63.993605,64.527664,66.083401,67.858937,68.184017,69.391454,70.709409,71.057708,72.892084,73.936982,76.096438,76.810209,77.785447,79.012662,80.664721,82.103288,84.007325,84.826749,85.616227,87.032645,87.460144,88.887194,90.033278,91.171056,91.867655,93.167972,94.839809,95.760000,97.324344,98.865914,100.143011,101.420109,103.729472,106.051467,107.282125,107.923699,109.456216,110.988733,112.265831,113.264289,115.098665,116.302382,116.906101,118.299298,118.727868,119.795986,121.305283,124.161337,126.111813,126.477704,127.522602,129.031899,131.400334,132.538112,133.224173,134.767228,136.755072,137.939290,139.169947,140.330945,141.445503,141.919838,142.639657,144.241834,145.662672,147.589929,148.560863,149.926792,151.505749,152.689967,153.724373,154.142332,155.564892,155.876547,157.188777,159.977080,161.358737,161.799916,163.030574,164.632751,165.445449,166.304588,168.533703,170.344860,171.087898,172.434656,172.886331,174.036833,175.546130,176.984933,178.169151,179.190829,180.491146,181.721804,183.347200,184.668506,184.947146,186.386783,186.779568,187.913298,188.747914,190.243367,191.427585 diff --git a/data/torah/labels/ki tisa-h.txt b/data/torah/labels/ki tisa-h.txt deleted file mode 100644 index 2419a1e73..000000000 --- a/data/torah/labels/ki tisa-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.995258,4.316503,5.616820,6.545619,8.426435,9.564213,9.773163,11.773876,12.600423,14.072652,15.907028,16.733575,18.103552,18.466418,19.728949,20.787782,21.832680,22.204200,22.462076,24.224336,25.574104,26.781541,28.383718,28.671544,30.388597,32.052471,32.679410,34.397686,36.320572,37.458350,37.906414,39.253171,39.811363,39.988975,41.599300,43.851635,44.803653,46.336170,46.565612,47.729368,49.308325,50.933721,52.443018,53.673676,54.579254,55.129278,56.946407,57.775051,59.593482,60.237240,62.140131,64.647886,65.388399,66.057942,67.445837,69.377211,70.010403,71.350907,72.744269,73.719507,74.049257,76.252269,77.263662,78.447880,78.865839,79.203145,80.758882,81.757340,83.104098,83.310076,85.260552,87.094929,88.209487,90.159963,91.344180,92.551618,93.851936,94.539492,95.732752,97.906386,99.949742,101.691238,102.077208,103.284646,104.098296,105.537933,107.813488,108.928046,109.880064,110.785643,112.039520,114.407955,115.106311,115.733250,116.731708,118.403545,119.862216,120.953554,122.114552,123.066570,124.320447,126.317364,127.803441,129.156937,129.405316,130.496955,132.380199,133.494757,134.237796,135.120154,136.629451,137.883328,138.742467,140.463569,142.094346,142.698065,144.137702,144.686600,146.079797,147.990524,148.292898,149.978263,150.323124,152.056512,153.844448,154.092002,156.352204,156.912221,157.957119,159.721835,161.602652,162.601110,164.667686,165.215049,165.582217,166.398674,167.954411,170.647926,170.965576,172.033694,172.697778,173.556917,175.135874,176.879274,178.365351,179.588618,179.850641,181.150958,181.564848,182.755514,183.684313,184.171932,185.797329,187.794245,188.430409,189.953700,191.634763,192.176066,193.731803,194.243555,195.636752,198.144507,199.912477,201.067978,202.974258,204.274575,205.621333,207.293169,208.105868,209.359745,209.640307,210.661985,212.018240,213.832485,215.816815,216.577149,217.947127,220.362002,223.101956,223.681241,223.908022,225.238192,227.165448,228.191496,229.004194,230.281292,231.283790,231.754676,232.776354,234.517851,235.609189,236.528382,237.093692,238.768734,240.835310,241.990024,244.033380,244.7,246.123176,247.400273,248.330742,249.004120,250.350878,252.266393,252.934352,254.257890,255.848005,257.148322,258.030681,259.702517,260.264234,261.634212,262.084412,263.779469,265.776385,267.262462,268.469900,269.372127,270.668016,271.946852,272.802514,273.917072,275.821108,276.448804,277.540142,278.306400,279.629938,281.464314,283.623770,284.413249,285.411707,286.143683,287.560101,288.697878,289.858876,290.462721,291.925452,294.515258,295.150627,296.195525,296.543824,298.308540,299.353438,300.351896,301.443234,302.372033,303.254391,303.734784,305.831543,308.169601,308.935860,309.794998,310.005842,311.491919,312.028474,312.373530,313.255888,313.691017,315.339633,316.650478,316.942053,318.096010,319.317849,320.696645,321.381065,323.076122,325.398117,326.605555,327.580793,329.391950,329.738957,330.087256,331.341134,331.619773,331.812379,333.649446,334.101783,334.771918,336.350875,337.929832,338.495977,340.500964,341.738390,342.922608,344.060385,345.041246,346.704304,347.403155,349.360876,350.766455,351.927453,352.252533,352.707006,354.425283,355.470181,355.656737,356.956258,357.362991,357.624897,359.343174,360.537084,362.325020,362.676136,362.956912,364.712,366.110242,366.519023,368.562379,369.514398,373.322470,373.723589,374.463423,376.808639,377.352671,378.281469,379.628227,380.926572,382.228862,382.862375,383.837613,384.309965,385.958582,386.623658,387.529236,389.224292,390.362070,391.964247,393.427104,394.564882,394.846580,395.861693,398.351210,399.999827,401.973523,403.389941,405.293977,407.012253,407.917832,408.348706,408.874579,410.321655,411.790329,413.070631,414.487048,415.392627,417.087683,418.322740,419.762377,420.714395,422.502332,424.963647,426.263964,426.434506,428.446640,429.781588,429.932775,431.680244,433.848168,435.682544,436.035913,436.825391,438.933338,440.494144,440.677855,442.735807,444.198664,444.560695,445.907452,448.693847,449.548246,451.591602,452.868699,453.936817,454.317086,455.614199,457.239596,459.584811,460.043325,460.716704,461.854481,462.135617,464.120665,465.606743,466.077279,468.068058,469.345155,469.760871,471.481391,472.961233,474.656290,475.583748,477.394904,478.303532,480.068248,481.089926,482.181264,483.620901,484.921219,485.515099,486.420678,488.162174,489.369612,490.669929,492.156006,493.502764,493.884897,495.569340,498.657594,499.208841,500.256351,500.839540,501.617035,505.042352,507.225028,508.432466,508.960406,511.548659,512.965076,513.539253,514.815719,516.046376,517.470077,518.902431,519.821663,520.611142,521.243859,522.729936,524.819732,525.258939,526.536037,527.162975,528.695492,529.889013,532.329604,534.230242,535.107181,537.150537,538.404414,539.495752,540,540.679970,541.055257,542.607226,543.536024,543.988847,545.335604,546,547.541500,548.486167,548.914332,549.416548,550.623985,552.690561,553.642579,554.432058,556.312874,557.961491,559.354688,560.631786,562.373282,563.766480,565.415096,567.644212,567.988150,568.560501,569.392030,570.996382,572.319919,573.643457,575.222414,577.497969,578.589307,579.169806,580.957743,581.499454,581.8,582.156536,583.101116,583.542295,584.889052,586.282250,587.450968,587.915726,588.790005,589.964268,590.990180,592.164978,592.372461,593.313244,595.054740,597.446395,597.887575,598.560953,599.652291,601.509888,602.903085,604.458822,605.387620,606.339638,607.338096,608.638414,609.314113,609.575388,611.215303,613.165779,614.210677,614.743872,615.486910,616.276389,617.321287,618.807092,619.154168,620.966431,622.731148,623.052634,625.029923,626.489546,626.972737,628.760673,629.483502,631.271439,632.362777,634.022474,635.050406,636.324697,637.923426,639.656347,640.004647,641.722923,643.232221,643.495283,644.391606,645.685951,645.968271,647.534137,650.051302,651.003320,652.024998,653.000237,654.114794,655.507992,655.989812,657.274465,657.645985,659.387481,660.734239,661.802357,663.033014,663.916334,665.250670,667.386906,669.510332,670.485570,671.878767,673.689924,674.334790,674.575021,675.853779,676.544803,677.775461,680.306436,681.258454,683.185710,685.670245,686.573385,689.638419,691.540367,693.725131,694.809836,695.831514,696.899632,698.223169,698.945328,700.663605,701.021955,702.475120,704.466860,706.205511,706.858360,708.548911,710.496027,711.864227,712.252993,712.436578,713.639742,715.032940,716.983416,717.842554,718.748132,720.094890,721.163008,722.231125,722.558593,723.022992,724.021451,726.054211,728.300419,729.821030,730.238989,731.507744,733.591966,735.147032,735.546598,737.344819,738.389717,738.635134,739.779836,740.341387,742.220427,742.803577,743.980676,744.358643,746.032500,746.453664,747.149155,747.590335,749.053192,750.771468,752.025346,752.346754,753.252332,754.668750,754.866143,756.549566,758.941221,760.311199,761.448976,762.633194,764.026391,764.332106 diff --git a/data/torah/labels/korach-1.txt b/data/torah/labels/korach-1.txt deleted file mode 100644 index 2b2794ecf..000000000 --- a/data/torah/labels/korach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.390113,3.735329,4.478367,4.752381,5.518639,5.794195,6.862313,7.976871,9.462948,11.190921,12.822132,13.701406,14.096145,14.653424,15.373243,16.441361,17.782903,18.595601,19.431520,20.522858,21.242676,22.145171,22.747348,23.978005,24.930023,26.369660,27.228799,27.995057,28.459456,29.759774,32.244309,32.708708,33.264445,33.417677,35.510613,36.273787,38.526123,39.176282,40.360499,41.196418,41.332654,42.261452,43.422450,44.513787,45.814105,47.230522,48.252200,49.715057,50.156236,50.806395,52.269252,54.103629,54.846667,55.775465,56.170205,57.331202,58.468980,59.001497,60.255375,61.021633,61.439592,63.506168,65.015465,67.360681,68.289479,70.123855,70.448935,70.885488,72.023266,72.461361,73.506259,74.876236,75.921134,77.450567,78.147166,78.913425,79.397960,79.930477,81.416554,82.298912,83.181270,84.295828,85.085307,85.967665,86.641044,87.151883,88.568300,90.240137,91.633334,94.373289,96.300545,97.322223,98.877960,99.481679,100.201497,101.130295,103.080772,104.636509,105.217007,105.797506,106.586985,107.376463,108.305261,108.885760,109.605579,110.278957,111.323855,112.368753,112.943084,113.094053,113.848663,114.446960,115.004239,115.301472,116.462470,117.691586,119.409863,119.851042,121.476438,122.219477,123.519794,124.448593,125.818570,126.654488,127.978026,128.697844,129.673082,131.669999,131.995078,132.758253,133.524511,134.337209,136.032266,136.496665,137.425463,140.490497,142.464194,143.392992,144.043150,144.156166,144.875985,145.035441,145.685599,146.637618,148.236711,148.999885,150.300203,151.938026,152.704284,153.099024,154.376121,155.769318,156.280157,157.278615,158.625373,159.066552,159.902470,160.574307,161.294126,162.849863,164.103740,164.682697,166.368790,167.157980,168.644058,169.085237,170.014035,171.012493,171.616212,172.661110,175.075985,175.842243,176.863921,177.885599,178.605418,178.986491,179.995531,181.122516,182.399613,182.840792,183.792810,184.907368,185.766507 diff --git a/data/torah/labels/korach-2.txt b/data/torah/labels/korach-2.txt deleted file mode 100644 index 459d6ddc2..000000000 --- a/data/torah/labels/korach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.529433,4.179592,4.294150,6.012426,6.662585,7.335964,8.171882,9.890159,10.842177,12.258594,13.535692,14.277188,15.229206,18.154921,19.037279,20.244717,21.661134,22.741162,24.021859,25.020317,25.740136,26.390295,27.015692,27.175147,28.193741,28.703039,29.353197,29.840816,31.048254,32.859410,33.579229,34.415147,35.204626,36.133424,36.783583,37.828481,38.617959,39.569977,40.684535,41.404354,41.984853,42.215510,42.935329,43.724807,44.165986,45.605624,46.929161,47.229478,48.018957,48.808435,49.830113,50.851791,51.827029,53.359546,53.940045,56.471020,57.864218,58.630476,59.396735,61.416871,61.927710,62.577868,63.158367,64.342585,65.317823,66.037642,66.896780,67.918458,68.498957,69.125896,70.611973,72.864308,73.305488,75.232744,75.975782,76.672381,77.206440,78.669297,79.644535,80.526893,82.384490,83.173968,83.661587,84.288526,85.008345,86.262222,88.398458,89.350476,90.952653,91.788571,92.392290,93.502222,93.636916,94.170975,94.353651,95.537868,96.370703,96.788662,97.833560,98.321179,98.619955 diff --git a/data/torah/labels/lech-lecha-1.txt b/data/torah/labels/lech-lecha-1.txt deleted file mode 100644 index 9c898418a..000000000 --- a/data/torah/labels/lech-lecha-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.182908,3.026721,3.430284,4.200722,4.604285,5.778286,7.025662,8.218006,8.768319,9.520414,10.217477,10.676071,11.373134,12.125228,13.427635,14.124698,14.711699,16.234231,17.316513,17.940201,18.985796,20.123109,21.719017,23.021424,24.213769,24.892488,26.213239,26.708521,27.680740,28.451178,29.533460,31.019305,32.340056,33.385651,34.009339,34.614683,35.403465,36.302309,37.127779,37.733123,40.558063,41.145063,41.677032,42.319064,42.961096,43.548096,44.465284,45.657629,46.464755,47.987287,48.812756,49.308038,50.280258,50.903946,51.270821,51.527634,53.105197,53.618823,53.765573,54.609386,55.104668,55.985168,56.553825,57.140825,57.507701,58.021326,58.700045,60.149203,62.167017,63.304330,63.671205,64.276550,64.955269,65.707363,67.028114,67.743521,68.440584,69.541210,70.183242,70.751898,71.412274,71.925899,72.384493,73.851995,74.292245,75.227777,76.915403,77.685841,78.034373,78.731436,79.795374,81.262875,81.776501,82.235095,82.712033,83.060564,84.381315,84.821566,85.463597,86.123973,86.784348,87.683193,89.847757,91.260227,93.204666,94.837261,95.534324,95.882855,96.396481,97.056856,98.304232,98.634420,99.459889,100.395421,101.110828,102.101391,102.468267,103.036923,103.697299,104.852956,105.403269,106.192051,107.604521,108.081459,108.943615,109.824116,110.906398,113.768025,114.465088,115.235527,116.060996,116.996528,117.675247,118.353966,118.794217,119.252811,119.748093,120.243374,121.233937,122.903220,123.581939,124.242315,124.682565,125.379628,126.645348,127.012223,127.397442,127.947755,128.589787,129.011693,129.653725,130.956132,131.763258,132.130133,132.625415,133.487572,135.652136,136.404230,136.807793,137.431481,138.220263,138.770576,139.339233,139.999608,141.026859,141.485453,141.999078,143.246454,144.512174,144.970768,145.832925,146.346551,147.263739,147.759020,148.162583,149.061428,150.162054,150.730710 diff --git a/data/torah/labels/lech-lecha-2.txt b/data/torah/labels/lech-lecha-2.txt deleted file mode 100644 index 249a2e8c4..000000000 --- a/data/torah/labels/lech-lecha-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.854512,4.365351,5.270930,6.478367,7.105306,7.360726,7.987664,8.452063,8.893243,9.311202,9.938141,11.749297,12.306576,12.979955,13.606893,14.419592,15.139410,15.371610,15.952109,17.066667,17.484626,17.902585,18.715283,19.969161,20.456780,21.130159,21.966077,22.291156,22.732336,23.312834,24.334512,25.332971,26.331429,27.538866,28.328345,29.651882,31.161179,31.439819,32.531156,33.459955,34.040454,34.342313,34.899592,35.456871,35.828390,36.316009,36.780408,37.616327,39.032744,39.590023,40.333061,41.679819,42.399637,42.817596,43.351655,43.723175,44.791293,45.069932,45.766531,46.184490,46.788209,47.415147,48.065306,50.085442,50.898141,51.710839,52.221678,52.871837,53.429116,54.613333,55.449252,57.051429,57.748027,58.514286,59.118005,59.768163,60.998821,62.322358,63.042177,63.738776,64.899773,66.014331,66.710930,67.268209,67.570068,67.895147,68.382766,68.800726,71.540680,72.794558,73.839456,75.395193,77.345669,77.763628,78.274467,79.226485,79.876644,80.503583,81.618141,82.988118,83.661497,84.125896,85.310113,86.587211,88.073288,89.652245,90.859683,91.533061,91.904580,92.299320,92.647619,93.367438,94.876735,95.642993,96.107392,96.571791,97.570249,98.591927,99.311746,99.729705,100.008345,100.495964,100.983583,102.121361,102.585760,103.444898,103.932517,104.327256,104.745215,105.511474,106.649252,107.763810,108.739048,109.180227 diff --git a/data/torah/labels/lech-lecha-3.txt b/data/torah/labels/lech-lecha-3.txt deleted file mode 100644 index 551145326..000000000 --- a/data/torah/labels/lech-lecha-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.898612,1.577564,2.296454,2.895528,3.414727,3.834079,4.253431,4.572938,5.551427,6.649731,7.009176,8.307171,8.866307,9.465382,10.104395,10.783347,11.382422,12.181188,12.760294,13.179646,13.678875,14.198073,15.016809,16.175020,17.453047,18.072091,18.870857,19.429994,19.969161,20.448421,20.767927,21.327064,21.606632,22.605090,23.583579,23.962993,24.562068,25.241020,26.598922,27.896918,28.176486,29.434543,30.013649,30.293217,30.812415,31.411490,31.830843,32.429917,33.108869,33.548190,33.947574,34.626525,35.265538,35.624983,36.064305,36.843102,38.919895,39.518970,39.898384,40.557366,40.996688,41.296225,41.855361,42.654128,43.133388,43.932154,44.710951,45.070396,46.548114,47.646418,47.985894,48.664845,49.882964,50.901391,51.160990,51.460528,51.780034,52.379109,52.738554,53.457444,54.156365,54.995069,55.933620,56.991985,59.088747,59.627915,59.987360,60.686280,61.185509,61.824522,62.403628,63.002703,64.260760,65.039557,67.016504,67.316042,67.955055,69.991909,70.770707,71.249966,71.809103,72.388209,72.767623,73.466543,74.844415,75.463459,75.982658,76.781424,77.660067,78.159296,78.558679,79.077878,80.635472,81.574023,82.053283,82.632388,83.750661,84.150044,84.529459,86.865850,87.444956,87.904247,88.882736,89.681502,90.420361,92.816660,93.635396,93.974872,95.093145,96.431078,97.309722,97.629228,98.348118,98.887285,99.186823,99.706021,100.504787,100.924140,101.423369,101.842721,102.162228,102.541642,103.500161,104.239020,104.858064,105.596923,106.615351,108.172945,108.532390,109.630694,110.269707,110.609183,111.028535,111.387980,112.266623,113.305020,113.584588,114.223601,115.461689,115.801165,116.320363,116.819592,117.458605,118.556909,118.996230,119.794997,120.933239,121.991605,122.311111,122.770402,123.169785,123.828767,124.627534,125.685899,126.963926,127.742723,128.301859,129.100626,129.759608,130.358683,130.738097,131.696617,133.174335,134.492299,135.930079,137.567550,138.066779,138.925453,139.624374,140.303325,141.341722,141.641259,142.180426 \ No newline at end of file diff --git a/data/torah/labels/lech-lecha-5.txt b/data/torah/labels/lech-lecha-5.txt deleted file mode 100644 index 5d648f3b5..000000000 --- a/data/torah/labels/lech-lecha-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.256515,2.795683,3.314881,3.694295,4.153585,4.592907,4.792599,5.511488,6.270317,6.529916,7.049114,8.007634,8.546801,8.886277,9.285660,9.625136,10.363995,10.843254,11.202699,11.721898,12.121281,12.620510,13.059831,13.479184,14.218043,15.276408,15.815576,16.234928,17.093602,17.433078,18.072091,18.531381,18.850888,19.130456,19.469932,20.108945,21.147341,21.646571,22.545183,22.844720,23.583579,25.840094,27.078182,27.637319,28.116579,28.675715,29.494451,30.133464,30.452971,30.932230,31.411490,32.689517,33.428376,34.087358,34.586587,35.325446,35.804706,38.157983,39.575793,40.614190,41.632617,42.151815,42.451352,42.890674,43.489749,44.528145,45.247035,45.726295,46.225524,46.884506,48.981268,49.640250,50.059603,51.097999,51.776951,52.096457,55.251585,56.769241,57.368316,57.807637,58.306866,58.606404,58.945879,59.764615,60.163998,60.882888,61.741562,62.340637,62.799927,63.418971,64.317584,65.176258,67.273020,67.852125,68.311416,68.710799,69.190059,69.809103,70.468085,71.266852,71.626297,72.125526,72.644724,73.343644,74.402010,74.801393,75.220746,75.660067,76.179265,76.938093,77.696922,78.236089,78.795225,79.054824,79.474177,79.893529,80.712265,81.531000,82.349736,83.987207,85.185357,87.042489,88.100854,88.600083,89.059374,89.498696,90.577030,91.595458,91.914964,92.354286,92.733700,93.252898,94.570863,95.149968,95.649197,96.208334,96.807409,98.464849,99.343492,102.318897,102.658373 diff --git a/data/torah/labels/lech-lecha-6.txt b/data/torah/labels/lech-lecha-6.txt deleted file mode 100644 index 4acc8f556..000000000 --- a/data/torah/labels/lech-lecha-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.726077,3.306576,4.096054,5.558912,6.534150,7.346848,7.973787,8.577506,9.436644,11.572880,12.106939,12.548118,13.035737,14.080635,15.473832,16.402630,17.006349,17.633288,18.074467,18.422766,19.421224,23.484717,24.854694,26.062132,26.456871,26.921270,27.571429,28.175147,28.709206,29.196825,29.916644,31.727800,32.819138,34.119456,34.467755,34.792834,35.117914,35.744853,37.254150,37.788209,38.717007,39.320726,39.692245,40.179864,40.760363,41.410522,42.246440,42.896599,43.360998,44.011156,46.100952,46.658231,47.052971,47.749569,48.817687,49.305306,50.210884,52.254240,52.811519,53.415238,54.529796,55.342494,55.667574,56.039093,56.805351,57.989569,59.034467,59.522086,60.032925,60.683084,61.681542,63.608798,64.793016,65.884354,66.348753,66.720272,67.788390,69.390567,70.389025,70.992744,71.480363,72.316281,72.711020,73.245079,74.127438,74.522177,75.195556,77.076372,77.494331,78.887528,79.584127,80.280726,80.745125,81.488163,82.486621,82.811701,83.276100,83.786939,84.320998,86.364354,87.339592,87.618231,88.198730,89.057868,90.033107,90.729705,91.379864,92.401542,92.935601,93.446440,93.934059,94.560998,95.791655,96.882993,97.788571,98.461950,98.879909,99.460408,100.853605,101.480544,102.177143,103.222041,103.709660,104.475918,105.126077,105.776236,106.379955,108.214331,108.283991,108.353651,108.887710,109.468209,110.071927,111.232925,112.742222,114.460499,116.294875,117.014694,117.455873,117.943492,118.431111,120.428027,121.426485,121.890884,123.400181,123.469841,123.934240,124.584399,125.629297,125.698957,125.931156,126.465215,126.929615,128.555011,129.274830,129.785669,130.459048,132.688163,132.734603,133.222222,133.733061,134.151020,134.592200,135.033379,135.637098,136.821315,137.355374,137.889433,138.516372,141.325986,141.372426,141.418866,141.465306,144.970119,145.806037,146.479416,146.874155,147.384994,147.872613,149.474790,150.844768,150.914428,151.518146,152.121865,153.282863,154.467081,154.861820,156.115697,157.067715,157.323135,159.436151,159.830890,161.154428,161.247307,161.549167,161.920686,162.570845,163.522863,164.056922,164.869620,165.868078,166.425357,166.889756,167.539915,170.651389,171.673067,172.253566,173.507443,174.320142,174.691661,175.318600,176.108078,177.013657,177.570935,178.174654,178.848033,179.312432,181.611208,181.657647,181.727307,182.841865,183.817103,184.351162,184.699462,185.303180,187.555516,187.857375,188.298555,188.948713,190.040051,190.481230,191.015289,191.851208,192.896106,194.358963,195.032341,195.845040,196.216559,198.143815,199.235153,200.442591,202.184087,203.507625,204.482863,205.458101,206.688759,207.129938,207.756876,208.987534,209.939552,211.448849,212.029348,212.586627,213.329666,216.580459,217.787897,218.089756,219.482954,220.504632,221.410210,222.130028,222.826627,223.244586,223.662545,224.359144,226.727579,227.679598,230.744632,232.137829,234.715244,236.456740,238.662636,239.243135,239.661094,240.102273,241.077511,241.866990,242.401049,242.911888,243.376287,245.976922,247.788078,248.577557,249.808214,250.574473,250.899552,251.410391,252.014110,252.757149,254.405765,255.125584,255.752523,256.518781,257.726219,258.399598,260.024994,260.814473,261.487852,262.021911,263.113248,263.438328,264.018827,265.226264,265.806763,266.503362,267.873339,268.453838,268.964677,269.429076,270.427534,270.938373,271.379552,271.890391,272.586990,273.237149,274.003407,275.489484,276.000323,276.557602,276.998781,277.602500,278.090119,278.577738,278.995697,280.737194,281.131933,282.014291,282.710890,283.082409,283.546808,283.918328,284.313067,286.379643,287.285221,287.981820,288.539099,289.537557,290.443135,291.302273,291.766672,292.300731,292.997330,293.345629,293.786808,294.297647,295.156786,297.803861,298.221820,298.802319,299.406037,300.032976,300.706355,301.077874,301.681593,302.471072,303.957149,304.746627,306.000505,306.813203,307.184722,307.950981,309.692477,310.110437,310.714155,311.387534,311.828713,312.432432,312.873611,313.918509,314.290028,314.731208,315.242047,315.776106,318.121321,319.746718,320.652296,321.232795,322.138373,323.438691,323.810210,324.251389,325.853566,326.387625,326.991344,328.082681,329.220459,329.568759,330.033158,330.567217,331.031616,331.379915,332.633793,333.144632,333.539371,334.073430,334.468169,337.735315,338.315814,338.640893,339.012412,339.383932,339.871551,340.335950,341.427288,342.890145,343.493863,344.817401,345.955179,346.280258,346.837537,347.092956,347.580576,348.393274,348.904113,349.298852,349.786471,351.411868,352.131687,352.758625,353.385564,354.360802,354.964521,355.382480,355.846879,357.054317,357.588376,357.983115,358.354634,359.306653,360.003251,361.280349,362.000167,363.254045,363.857764,364.484703,365.041981,366.365519,367.108557,367.480077,368.107015,369.082254,369.500213,370.637990,371.172049,371.566789,372.379487,373.354725,373.865564,374.864022,375.560621,376.860938,377.418217,378.045156,379.043614,380.576131,381.203070,381.806789,382.364068,383.292866,384.105564,385.893501,386.497220 diff --git a/data/torah/labels/lech-lecha-7.txt b/data/torah/labels/lech-lecha-7.txt deleted file mode 100644 index 51f20f154..000000000 --- a/data/torah/labels/lech-lecha-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.263220,2.913379,3.517098,4.260136,5.955193,6.698231,7.998549,10.158005,11.365442,12.085261,12.549660,13.571338,14.175057,14.918095,15.916553,16.984671,18.679728,19.956825,20.955283,22.394921,22.836100,23.486259,25.134875,25.854694,26.504853,26.876372,27.387211,28.130249,28.617868,30.034286,30.521905,31.264943,33.447619,34.097778,34.538957,35.467755,36.303673,36.814512,37.232472,37.696871,39.600907,40.808345,41.528163,42.549841,44.059138,45.313016,46.102494,47.983311,48.656689,49.748027,50.165986,50.583946,51.814603,52.650522,53.091701,53.416780,54.066939,55.692336,56.481814,56.992653,58.014331,59.221769,59.755828,60.359546,60.916825,61.915283,63.703220,64.794558,66.094875,66.907574,68.045351,68.509751,69.020590,70.042268,70.994286,71.481905,72.248163,72.689342,73.269841,73.734240,74.036100,74.686259,76.056236,77.170794,77.820952,78.958730,81.234286,82.116644,82.813243,83.649161,84.322540,87.132154,88.687891,89.663129,90.522268,91.079546,93.122902,94.864399,95.839637,96.187937,96.629116,96.977415,97.418594,98.091973,100.135329,101.203447,101.737506,102.735964,103.479002,104.036281,104.941859,106.567256,107.310295,107.681814,108.471293,109.353651,110.236009,111.025488,111.536327,111.931066,112.325805,112.929524,113.719002,114.229841,115.460499,118.177234,118.664853,119.268571,120.638549,122.078186,122.867664,123.633923,125.282540,126.188118,126.838277,127.325896,127.906395,128.277914,129.137052,131.900227,133.641723,134.152562,134.640181,135.522540,136.753197,138.123175,139.493152,140.120091,140.607710,141.281088,142.047347,142.813605,143.928163,144.671202,145.019501,145.855420,147.364717,148.061315,148.572154,149.268753,150.313651,150.894150,151.590748,152.542766,155.073741,156.652698,157.395737,158.022676,158.742494,159.114014,159.485533,159.880272,161.157370,161.807528,162.248707,162.945306,164.477823,164.756463,165.290522,166.288980,167.078458,167.496417,167.960816,168.866395,172.628027,174.462404,175.321542,176.227120,177.573878,179.013515,179.988753,181.010431,181.544490,182.032109,182.519728,183.448526,183.866485,184.818503,185.561542,186.768980,187.256599,187.837098,189.903673,190.507392,191.180771,191.668390,192.039909,192.597188,194.106485,195.058503,195.615782,196.358821,196.869660,198.030658,199.098776,200.306213,200.724172,201.327891,202.813968,203.394467,203.951746,204.996644,206.064762,207.457959,207.806259,208.642177,209.872834,210.453333,210.731973,211.219592,212.055510,212.473469,212.821769,213.332608,214.052426,214.586485,215.097324,216.211882,216.815601,217.790839,221.645351,222.109751,222.690249,224.454966,225.406984,226.150023,226.544762,228.007619,228.727438,229.168617,230.306395,231.792472,232.094331,232.605170,233.232109,233.650068,234.648526,235.136145,236.111383,237.760000,238.456599,238.851338,239.292517,239.733696,240.314195,241.242993,241.614512,242.218231,243.007710,244.725986,245.352925,245.770884,246.490703,247.256961,248.487619,249.114558,249.996916,250.368435,251.018594,251.552653,251.924172,252.783311,253.178050,253.688889,253.967528,254.269388,255.337506 diff --git a/data/torah/labels/lech-lecha-h.txt b/data/torah/labels/lech-lecha-h.txt deleted file mode 100644 index 0087eec77..000000000 --- a/data/torah/labels/lech-lecha-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.993832,3.899410,4.735329,5.664127,7.312744,8.613061,9.286440,10.284898,11.561995,12.351474,13.396372,14.673469,16.113107,16.577506,16.949025,18.249342,18.992381,20.106939,20.687438,21.360816,21.987755,22.777234,23.845351,24.611610,25.145669,26.469206,27.096145,27.699864,29.000181,30.207619,31.159637,32.436735,33.551293,34.062132,34.758730,35.548209,36.964626,37.754104,39.495601,40.749478,41.538957,42.792834,44.209252,45.021950,46.299048,46.972426,48.295964,48.853243,50.548299,51.662857,52.661315,53.357914,54.333152,55.006531,55.726349,57.537506,58.048345,58.768163,59.789841,60.672200,61.856417,62.878095,63.714014,64.294512,65.362630,66.082449,66.918367,69.193923,69.890522,70.796100,71.539138,72.375057,73.721814,74.604172,75.393651,75.858050,76.740408,77.762086,78.853424,79.666122,80.478821,81.570159,82.057778,83.265215,84.937052,85.935510,87.282268,87.955646,88.512925,89.116644,90.068662,90.904580,91.903039,92.762177,93.481995,94.108934,94.898413,96.848889,97.475828,98.427846,99.170884,100.122902,100.540862,101.283900,103.466576,104.139955,105.231293,106.090431,106.670930,107.483628,109.573424,110.525442,112.197279,112.684898,113.218957,114.728254,115.680272,116.260771,116.887710,118.397007,118.861406,119.441905,119.813424,120.881542,121.554921,122.251519,122.832018,123.900136,124.828934,125.571973,126.245351,127.197370,128.613787,129.983764,130.541043,131.051882,133.327438,134.256236,134.929615,135.765533,136.299592,136.949751,139.155646,140.200544,140.897143,143.079819,144.101497,145.308934,145.889433,146.911111,148.002449,150.092245,150.858503,151.555102,152.274921,153.621678,154.132517,155.154195,157.360091,157.754830,158.404989,158.915828,159.635646,160.192925,160.773424,161.423583,161.795102,162.677460,164.186757,164.929796,165.696054,166.485533,167.321451,167.901950,168.830748,169.504127,170.432925,171.942222,173.242540,173.985578,174.566077,176.330794,177.607891,178.583129,179.093968,179.999546,181.462404,182.367982,183.064580,184.295238,185.897415,187.151293,188.149751,188.2,188.3,189.682268,192.468662,193.954739,195.046077,195.812336,196.671474,197.786032,199.156009,200.409887,201.826304,202.221043,202.801542,203.335601,204.380499,205.169977,206.423855,206.725714,208.885170,209.396009,210.696327,211.718005,213.575601,213.970340,214.899138,215.851156,216.408435,217.615873,218.173152,220.843447,222.120544,222.701043,223.792381,225.417778,226.555556,227.019955,228.157732,229.249070,230.015329,230.897687,232.406984,233.382222,234.055601,234.868299,235.913197,236.841995,238.072653,238.955011,239.628390,240.859048,241.462766 diff --git a/data/torah/labels/masei-1.txt b/data/torah/labels/masei-1.txt deleted file mode 100644 index 62f1e73fa..000000000 --- a/data/torah/labels/masei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.000018,3.617669,3.988259,5.858859,7.747106,9.264762,11.329480,12.088308,12.988314,13.817731,14.523617,15.723624,17.064809,18.247169,18.529524,20.258946,21.335423,21.635425,21.774317,22.681909,23.476031,24.252506,25.734868,27.817234,28.629003,29.240784,30.229025,31.040795,32.240802,33.176102,33.687870,34.376109,35.734941,37.658482,38.876136,39.246727,40.023202,40.570264,41.170268,41.787919,42.193803,43.023220,44.876172,46.640889,48.347033,48.921497,50.403859,51.762691,52.539166,52.874462,53.545054,55.292124,55.945069,56.474484,57.674491,58.892146,59.262736,59.915681,60.745098,61.821575,62.809816,63.798058,64.609827,65.739246,66.745134,67.521609,67.921624,68.909865,70.127520,71.327527,72.327545,72.662841,73.104020,73.756965,74.374671,74.498146,75.074687,75.515884,76.239418,77.562956,78.233548,79.768851,81.457326,82.127918,82.933854,83.528023,84.016273,84.510394,85.410400,87.404529,88.233946,88.992774,89.504542,90.298664,90.881021,91.922204,93.069269,94.463395,95.504578,96.245759,96.986940,99.051658,100.463432,101.751675,102.369326,103.834040,104.628163,105.545815,106.669382 diff --git a/data/torah/labels/masei-2.txt b/data/torah/labels/masei-2.txt deleted file mode 100644 index e045239f0..000000000 --- a/data/torah/labels/masei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.169589,1.970678,2.851875,3.124245,3.357999,4.037486,5.187155,5.491569,6.010916,6.924156,7.558377,8.295378,9.384858,9.961642,10.605234,11.486431,12.575911,13.745501,14.514545,15.555960,16.677484,17.638790,18.503966,19.625490,20.586796,21.243688,21.804450,22.188973,23.502758,24.031476,25.056869,26.306567,27.075612,28.084984,28.934137,29.815335,30.776641,31.321381,31.914186,32.843449,33.532385,34.685952,35.823498,36.464369,37.233414,38.178698,39.444418,40.517876,41.415095,42.584684,43.594056,44.763645,45.548711,46.558083,47.311106,48.112194,49.458023,50.105197,50.669178,51.628253,52.701712,53.807214,54.608302,55.585630,56.659089,57.796634,58.581701,59.623116,60.808727,62.410904,63.452319,64.445668,64.798147,65.599236,66.627350,67.053287,67.758245,68.575355,69.841075,71.042708,71.939927,72.957461,74.319312,75.440836,76.306011,77.283339,78.324754,79.478321,80.167257,81.032433,82.121913,83.291502,83.996460,84.909701,86.031225,87.777597,88.562664,89.652144,90.997973,94.218348,95.147611,96.269135,97.823246,98.816596,99.649728,100.611034,101.171796,102.165146,103.190539,103.623127,104.394893,105.452329,105.855595,106.947796,108.213516,108.694169,109.433891,110.383102,111.552691,112.574155,113.471374,114.240419,115.361943,116.403358,117.348642,118.341992,118.998884,119.703842,120.585039,121.241932,121.862852,122.712005,123.190242,123.638852,123.978731,124.884309,125.825187,126.730765,127.715756,128.442178,129.227244,129.932202,130.508986,131.422227,132.129905,132.866907,134.308866,134.789519,135.051310,136.493269,136.973922,137.329122,138.068844,138.638978,139.394722,140.173138,142.063707,143.057056,143.348169,144.037105,144.591217,145.440371,146.209416,147.010504,147.308267,148.253552,150.945209,151.201557,152.611473,153.941280,154.710324,155.078825,156.184327,156.777133,157.690373,160.157726,161.215163,161.888077,162.641100,163.089710,163.490254,164.147146,164.643821,165.268670,166.085780,166.630520,167.832153,169.049807,169.514439,170.059179,171.084572,172.350292,173.391707,174.304948,175.298297,176.419821,177.605432,178.470607,179.560088,180.537416,181.482700,182.283788,184.280727,185.177946,185.946991,186.453037,187.382300,188.531938,189.236895,190.262289,190.823051,191.431878,192.489314,192.985989,193.437320,194.286474,194.898022,196.323959,197.285266,197.813984,198.663138,200.830005,201.567006,202.320029,202.826076,203.659208,204.764710,205.203948,206.085145,207.097238,207.866283,208.555219,209.291200,209.739809,210.669072,211.950813,212.338057,213.123123,213.603776,214.549061,215.141866,215.734672,216.423608,217.657284 diff --git a/data/torah/labels/masei-3.txt b/data/torah/labels/masei-3.txt deleted file mode 100644 index 920819941..000000000 --- a/data/torah/labels/masei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.733059,4.428116,4.781147,5.386491,6.156399,6.816775,7.275369,7.642244,8.339307,9.164777,10.357121,10.567810,11.264873,12.108686,13.007530,13.741281,14.566750,15.814126,16.566221,16.767472,17.464006,17.684131,18.124381,19.078257,21.041040,21.150572,21.379605,22.076138,22.993326,24.002233,25.726547,26.240172,26.670986,28.403677,29.301992,29.576619,30.328713,31.869589,32.915184,33.602810,34.043060,35.070311,36.928549,38.652334,38.780210,39.477273,40.274962,40.770244,41.595713,42.733027,43.558496,43.759748,44.438467,45.016031,45.914875,49.077905,49.389749,50.013437,51.590471,54.507129,56.543287,57.570538,57.698415,58.816855,60.045887,60.674424,60.853012,62.031862,63.755646,64.186990,64.792334,65.295993,66.763494,67.698496,67.954779,68.761905,69.816406,70.862001,72.329502,73.136098,73.566912,75.217850,75.556945,76.281259,78.886074,81.050638,82.206295,82.885014,83.783859,84.352515,85.654923,86.957330,88.241393,89.397050,90.605363,91.502591,91.961186,93.410343,94.161908,94.675533,95.299221,96.032972,98.527723,99.371537,100.894069,101.646666,102.104228,102.705690,103.937015,105.312797,105.973173,106.220019,106.705864,107.843177,109.952710,110.163399,110.887713,111.639807,112.612026,113.455840,114.152903,114.528155,115.012941,115.186942,115.681693,116.708944,117.396571,119.396041,120.145946,120.769634,121.430009,122.475604,123.227698,123.814698,125.263856,126.484706,128.153989,128.483647,129.914460,130.583743,131.115712,131.280276,131.775558,132.435933,133.811716,134.508779,135.187498,135.774499,136.691687,136.884031,137.691157,138.571658,140.351003,142.020285,143.010849,144.515037,145.322163,146.642914,147.596790,148.367228,149.724666,151.008730,151.907574,152.733044,153.503482,154.494045,155.044358,155.686390,156.621922,158.235795,160.913984,162.454860,163.427080,164.197518,164.949612,165.830113,166.839020,167.756208,169.113647,169.755149,170.432279,171.624624,172.321157,173.128283,173.880377,174.559096,175.017690,175.806472,176.356785,177.200598,177.823684,178.502403,179.070530,179.436876,180.188970,180.757627,181.436346,182.408565,183.399129,183.931098,184.389162,185.379725,186.496051,187.303176,188.422146,188.972459,189.541115,191.522242,192.732930,193.540056,194.603994,196.218246,197.080403,198.382810,199.189935,200.107124,200.542812,201.274532,201.843188,202.448533,203.017189,203.374098,204.548471,205.997628,206.456223,207.098254,207.740286,208.620787,209.152756,210.326757,211.665852,213.518572,215.224542,216.343511,216.893824,217.645919,218.764888,219.902202,221.773266,222.195172,222.837204,223.148518,223.918956,224.927863,226.899553,227.981835,229.119149,229.852899,230.935181,231.209808,232.016934,234.053091,234.750155,235.556750,237.042595,238.400034,239.427614,240.748365,241.445428,241.793959,242.196992,243.187555,243.866275,244.911869,246.654527,247.479996,249.057560,249.699592,250.543405,251.478937,252.231031,253.184907,254.891321,255.790165,256.523916,257.128731,258.155981,259.119731,260.944671,261.751267,262.338267,263.585643,264.227675,265.016457,266.025364,266.336678,266.908299,267.281345,268.235220,269.372534,270.418128,271.170223,271.885100,273.429139,274.138375,274.835438,275.262819,276.318309,277.131504,279.296068,281.148788,281.974258,282.854758,283.882009 diff --git a/data/torah/labels/masei-4.txt b/data/torah/labels/masei-4.txt deleted file mode 100644 index 4d1d1ff98..000000000 --- a/data/torah/labels/masei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.993143,1.781925,1.910331,2.515675,3.469551,4.478458,5.212209,6.166084,7.119960,7.890398,8.348463,8.568058,9.503590,10.475810,11.448029,12.310186,12.667625,13.749907,14.722126,16.042877,16.629878,17.161847,17.767191,19.344755,20.077446,20.278698,21.360980,22.645043,23.250387,24.057513,25.268201,26.001952,26.625640,26.955828,27.854672,29.047017,29.505611,30.221018,31.156550,31.431177,32.476771,33.540709,34.402866,35.393430,35.741961,36.659149,37.613025,37.795933,38.125591,39.042779,40.106718,40.464156,41.656501,42.563832,43.297583,43.884054,44.112556,44.864121,45.689060,46.606249,46.798593,47.679094,48.571704,48.920235,49.433331,50.222113,51.047053,51.276085,52.413398,53.275555,53.522931,54.311713,55.008776,56.237808,56.420716,57.374592,58.291780,58.456344,59.318501,60.033908,60.985665,61.296979,62.177480,62.947918,63.112482,63.717826,64.524952,65.478828,65.762891,66.955236,67.762362,68.046425,68.816863,69.623989,71.073146,71.265491,72.347773,73.741899,74.438962,75.025962,75.778057,76.713589,76.832558,77.198904,78.299530,79.271749 diff --git a/data/torah/labels/masei-5.txt b/data/torah/labels/masei-5.txt deleted file mode 100644 index fcab19cca..000000000 --- a/data/torah/labels/masei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.693233,5.435890,5.747734,6.463141,7.178548,7.747205,8.279174,8.774455,9.453175,10.462082,13.892366,14.047493,14.525848,16.259828,17.207076,19.206546,21.297736,22.361674,22.948674,23.719112,25.736926,26.690802,28.304524,29.240056,30.450744,32.615308,34.064466,34.944966,35.825467,38.925563,39.824408,40.814971,42.759410,43.713286,44.832255,46.594240,47.529772,48.153460,48.832179,49.657649,50.758275,51.436994,52.537620,53.087933,53.711621,55.177284,58.062444,58.906257,60.887384,61.437696,62.043041,63.015260,67.491139,72.352236,72.736926,73.176646,75.304523,76.129992,77.542462,78.019400,78.294027,78.715404,79.595375,81.393063,82.181845,82.823877,84.364753,85.465379,86.070723,86.657724,87.501537,88.858975,89.519351,90.179726,91.298696,92.931291,94.563886,96.838513,97.865764,98.856327,99.901921,100.433891,101.039235,101.626235,102.415017,103.057049,103.937550,104.836394,105.460082,106.303895,107.624646,108.358397,109.165522,109.972648,110.798117,111.678618,113.733120,114.650308,115.439090,116.613091,117.566966,118.502498,118.997780,119.786562,120.190125,121.437501,124.072219,124.897689,125.613095,126.548627,126.823254,127.813817,128.804381,129.611506,130.620413,131.372508,132.197977,133.206884,135.334761,136.123543,137.132450,137.756138,138.654982,139.608858,140.919046 diff --git a/data/torah/labels/masei-6.txt b/data/torah/labels/masei-6.txt deleted file mode 100644 index bc71ee206..000000000 --- a/data/torah/labels/masei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.650779,4.549624,4.843124,5.447938,6.530220,7.465752,7.768160,8.465223,9.492474,10.317943,11.253475,12.330361,13.926268,14.531613,14.677833,15.576678,16.327712,17.354963,19.774751,20.325064,21.132190,21.810379,22.470755,23.277880,24.057225,24.992228,25.615386,26.423033,27.028377,27.615378,28.991160,29.952883,31.511574,32.887356,33.785141,34.848550,35.765208,36.425584,37.416147,37.819710,39.177148,39.837524,40.662993,41.855338,43.324466,43.874249,44.883156,45.506012,45.814271,46.485852,47.230308,48.257559,49.169790,50.086979,51.811292,52.820199,53.627325,54.526170,55.314951,56.085390,57.002578,58.011485,58.543454,59.295548,60.157705,60.928143,62.083800,63.386208,65.147209,66.101085,67.220054,68.192274,70.118369,70.687026,71.237339,71.933872,72.703780,73.767719,74.409751,74.941720,75.344753,75.857848,77.105224,78.214228,78.800698,80.438157,82.008114,83.072052,83.787459,84.319428,84.961460,85.530117,86.685774,91.510184,92.380718,94.141720,94.645378,95.085629,95.351349,97.020631,98.047882,98.653226,99.111820,99.772196,100.377540,101.771666,106.333219,106.993595,107.286565,108.919160,109.579006,109.908664,110.173854,111.916512,112.907075,113.512419,114.117763,114.613045,115.181702,116.649203,118.261354,119.086823,119.581575,120.205263,120.461546,121.397078,122.344399,122.894712,123.206556,124.325525,125.049839,125.838621,127.378967,127.928221,128.420854,129.906699,131.264137,132.603232,133.502077,135.079640,136.125235,136.914017,137.831205,138.399332,139.094806,139.828556,140.332215,141.065966,141.762499,143.431782,145.119408,145.467410,146.329567,147.190664,148.162884,148.841603,149.557010,150.217385,150.859417,151.813293,152.968950,153.610982,154.949017,155.536018,156.049113,156.543865,158.029710,158.945796,159.441077,160.596734,161.330485,161.788549,162.347769,163.145458,163.769146,164.741366,165.493460,166.153836,167.089368,167.456243,168.171650,168.538525,169.492401,170.281183,171.271746,172.922685,173.803185,174.536936,175.802656,176.122877,176.562597,177.479786,178.047913,179.129665,180.193603,181.716136,183.330387,183.917387,185.898514,188.521672,189.034768,190.575644,191.933083,192.776896,193.657397,194.299428,194.702991,195.345023,196.005398,196.360999,197.173697,198.670955,200.285206,200.835519,201.385302,202.302491,203.182462,203.879525,204.356462,204.925119,205.732245,206.521027,207.731715,208.263684,208.887372,209.749529,210.795124,211.363780,212.024156,212.941344,213.711782,214.390501,215.436096,216.656456,217.371863,217.903832,218.655926,220.453615,221.150678,221.774366,222.581492,224.801087,225.699932,226.433682,226.671622,227.625497,228.304217,228.726123,229.386499,230.449907,231.165314,232.137004,232.724004,233.457755,233.879661,234.631226,235.401664,236.594009,237.107105,238.060980,238.904793,240.023763,241.014326,241.454577,241.913171,243.050484,244.499642,246.058861,247.397956,248.333488,248.993864,250.021115,250.919959,252.882742,253.768330,254.355331,255.070737,255.656678,256.427116,257.252586,257.619461,258.426587,259.435494,260.187588,260.609495,261.196495,261.893558,262.700684,263.691247,264.406654,265.158748,265.947530,266.644593,267.525094,267.754952,268.378640,269.662704,270.827268,271.459863,272.853989,274.174740,274.908491,275.568866,276.375992,276.632275,276.952496,277.998091,278.805216,279.575654,280.236030,280.859718,281.336656,282.400594,283.336126,284.400064,284.601316,286.343974,287.224474,287.903194,288.600257,289.242288,290.067758,290.782635,291.424667,291.698764,292.542577,293.559655,293.908186,295.779250,296.696438,297.411845,298.127252,298.659221,299.319597,299.723159,300.291816,301.484161,303.269644,304.030116,304.249711,305.845619,306.836182,307.533245,308.377058,308.817309,309.789528,310.266466,310.816779,311.660592,312.541093,313.274843,314.210375,315.934689,316.998628,317.787409 diff --git a/data/torah/labels/masei-7.txt b/data/torah/labels/masei-7.txt deleted file mode 100644 index 9cdcf6a4b..000000000 --- a/data/torah/labels/masei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.236132,3.955951,5.372368,6.624703,7.014817,7.743858,7.980999,8.642071,8.862595,9.744025,11.066169,11.472983,12.032351,14.354579,15.151256,15.880130,16.625955,17.575187,18.337962,18.982084,19.575354,20.711042,23.084121,23.457034,24.118106,24.863931,25.677558,26.558987,26.948850,28.474401,30.288112,31.372948,31.898416,32.695092,33.915533,34.678309,35.746195,37.492103,37.831114,39.509220,40.594057,41.119524,42.458619,50.442336,52.425552,53.306982,53.951103,54.341133,57.188829,59.188995,60.748448,61.816333,62.731664,63.663945,65.460705,65.935321,66.986256,67.867686,68.613511,69.444088,70.088210,71.223898,72.325685,73.563076,74.282450,74.960472,77.875970,78.689597,80.503308,81.791551,82.774684,83.673064,84.588394,85.418972,86.130896,87.012325,87.622546,89.080295,89.775268,90.656697,91.572028,92.758568,94.216316,94.860438,95.131647,95.741867,96.623297,96.860772,97.165882,98.132064,98.843988,100.623797,101.318771,101.691683,102.335805,103.420641,104.759736,106.166633,106.810754,107.420975,109.421142,110.878890,111.726419,112.404441,113.370624,114.319856,115.082631,115.811505,118.964311,120.879725,121.422143,122.439177,123.218903,124.252888,125.111956,125.722177,126.518853,127.129074,127.942701,129.044488,129.315864,130.044905,130.740212,132.062023,133.350599,134.096424,134.808348,135.689778,136.113542,137.130576,138.045906,139.249397,140.096925,141.893685,144.893936,145.555008,147.199213,149.148528,151.165645,151.945371,152.470839,153.267516,153.979439,156.013507,156.894937,157.437355,158.234032,158.776450,159.539225,160.403704,162.234365,163.658213,165.268517,165.980441,166.607612,167.268851,167.777535,168.269101,169.421740,171.116880,171.879822,172.252735,173.422324,176.219167,176.829388,177.541311,177.812521,178.371889,179.066862,179.524528,180.016094,181.100931,183.292955,184.174384,185.920293,187.869608,189.513813,190.512271,190.857486,191.809505,192.555329,193.487611,194.572447,196.672832,197.147615,197.961242,198.164816,198.605781,199.080397,199.724518,200.877157,201.928092,202.233202,202.724769,203.470594,204.470677,205.928426,207.657384,209.860957,210.742387,212.234037,213.996896,214.844424,215.454645,215.692119,216.082066,216.929594,218.082233,218.726354,219.924581,220.687356 diff --git a/data/torah/labels/masei-h.txt b/data/torah/labels/masei-h.txt deleted file mode 100644 index 8d31381d9..000000000 --- a/data/torah/labels/masei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.672439,3.135436,3.937580,4.507524,6.407339,6.977283,8.074954,8.518244,10.143640,11.009112,12.001237,14.428778,15.104267,15.821975,17.046300,17.465677,18.352257,19.046052,19.713423,21.782110,24.082996,25.180667,26.088356,27.608208,29.233604,30.183512,31.196746,32.294417,33.265433,34.173122,34.719154,36.471205,37.902353,39.506640,42.229708,43.496251,44.847230,45.902682,46.979244,47.908042,49.047931,51.201054,51.770998,52.530924,53.016432,53.607486,54.494066,55.042901,55.633954,57.660423,59.032511,59.750219,60.151291,60.721235,61.987778,62.832140,63.613175,65.914061,67.623894,68.970668,69.397055,70.404682,71.945643,73.040510,74.391489,77.853373,78.972153,79.623730,80.425873,81.586871,82.937850,83.739994,84.394375,85.660918,87.011897,87.771823,89.249456,90.938180,92.521359,93.471266,94.758918,95.093859,95.980440,97.225873,100.582212,102.334263,103.453043,104.351694,104.834399,106.670886,107.388594,107.958538,108.824009,110.132770,111.131480,112.503568,113.305712,114.720019,115.796580,117.928594,119.005156,120.018390,122.023750,123.620773,124.495882,125.255807,126.860095,128.654364,129.456508,130.596397,131.585719,131.965682,133.823278,135.579492,136.612275,137.688837,138.512090,139.694196,141.699556,142.480591,142.728292,144.353689,147.330065,148.385518,149.018789,149.393145,151.060760,151.610890,152.307489,152.898542,153.447378,155.431628,156.444863,158.429113,159.315694,159.927856,161.975434,163.284195,163.875248,165.162900,166.492770,167.632659,168.540348,168.892996,169.647314,171.040512,172.623690,173.742470,174.101324,174.840141,175.536739,177.141027,178.238698,179.019732,179.990749,181.489491,182.984028,184.335008,185.833750,187.543583,189.211198,189.928906,190.984358,192.060920,193.411899,194.256261,198.270450,200.906277,201.327057,201.960328,204.641177,205.928829,207.469790,208.649093,209.134601,209.591992,211.154061,212.420604,212.607782,213.554886,214.821429,215.475809,216.486240,217.710565,220.560287,221.148537,221.697372,222.689497,223.766059,224.758184,225.029798,227.014049,227.686735,228.341115,229.143259,230.156494,231.148619,231.760782,233.196197,234.881788,237.119347,239.293579,240.707885,241.911101,242.776572,243.156535,244.000897,245.014131,246.512874,246.721161,247.414956,249.420316,250.686859,251.932293,252.966636,253.452144,254.423160,255.436395,256.956246,258.010297,259.867893,261.218873,263.203123,264.997393,266.496135,267.657133,267.907638,270.102979,271.073995,271.282282,271.638333,273.158184,275.480180,276.915595,277.206916,277.562967,278.871728,279.165853,280.200196,281.361194,283.482840,284.939365,285.825945,286.902506,287.345796,288.971193,290.005537,291.730872,292.448579,293.377378,294.263958,295.424955,296.311535,296.878676,298.314092,299.411762,300.446106,301.290468,303.105846,304.414607,305.385623,306.504403,307.201002,308.172018,309.544106,310.240705,311.866102,312.372719,314.546951,315.454640,316.425656,317.649981,318.726543,319.549796,320.415267,321.407392,322.061773,322.631717,324.212092,325.478635,326.006361,327.378450,329.088283,331.517225,332.488241,334.789128,335.865689,336.815596,338.208794,339.053156,340.361917,341.058515,342.873894,343.570492,344.668163,345.744724,346.757959,347.982284,349.671008,351.380841,352.140767,353.154001,354.336108,356.383686,357.903537,358.769008,360.409092,360.915710,362.076707,362.643848,363.778130,365.129109,367.007814,367.619977,368.738756,369.514184,370.274110,371.200105,371.408392,373.477078,374.553640,375.443176,376.561956,378.229571,380.002731,381.395928,383.253525,383.862884,385.783807,386.965914,387.578076,388.717965,389.562327,389.981705,391.607101,392.551369,393.269077,394.873365,395.971035,396.773179,397.617541,398.567449,399.939537,401.058316,402.493732,403.105894,404.203565,404.752400,406.863305,407.433249,408.615356,409.079755,411.232878,412.013913,412.879384,413.934837,414.948071,415.897978,417.164521,418.895463,419.993134,421.259677,422.248999,424.169922,425.221169,426.234404 diff --git a/data/torah/labels/matot-1.txt b/data/torah/labels/matot-1.txt deleted file mode 100644 index b69c39178..000000000 --- a/data/torah/labels/matot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.298899,3.079125,3.586880,4.397792,5.457364,6.225789,7.201028,8.292365,9.845019,10.797037,11.608193,12.023068,13.300166,15.947241,16.595858,17.171731,18.397762,20.650098,21.554134,22.645472,23.551050,24.595948,25.431867,25.894724,26.893182,27.705880,28.309599,29.284837,30.213635,30.761758,31.563930,32.701707,35.164524,35.698583,36.279082,37.022121,37.811599,38.926157,40.628306,41.331780,42.190919,44.115091,45.577948,46.971146,47.271463,49.338039,50.940216,51.331871,52.005250,52.163164,53.138402,54.204978,54.691055,55.502211,56.895409,57.217404,58.355182,59.167880,60.514638,61.209694,61.695771,61.830465,62.596724,64.106021,64.731418,65.194275,66.030193,68.932687,69.791826,71.486882,72.205159,74.039536,76.361531,76.963708,77.542665,77.748560,78.445159,78.861576,79.860034,81.044252,81.646429,82.435907,82.968424,83.479263,84.152642,85.522619,86.521078,87.287336,88.169694,89.028833,90.329150,91.095409,91.827653,92.710012,93.499490,94.162075,94.881894,95.063028,96.177585,97.337041,98.892778,99.473277,100.471735,101.142030,101.768969,103.138946,104.044524,106.018220,106.552279,107.132778,107.383572,107.940851,109.287608,111.284524,111.981123,112.790737,115.786112,116.457948,118.036905,120.126701,120.591100,121.589558,122.518356,123.284615,123.865114,125.049331,125.931690,126.442529,127.139127,127.416225,128.252143,129.506021,130.225839,131.317177,132.454955,133.337313,134.266112,135.659351,136.417858,136.905477,137.134592,137.691871,138.450420,139.773957,140.351372,140.534048,141.227563,142.411780,143.061939,143.453595,144.916452,145.427291,146.100669,147.795726,149.119263,149.653322,150.535681,151.116180,151.928878,152.393277,152.973776,154.227653,154.644071,155.735409,156.524887,157.918084,158.661123,159.171962,159.377858,159.862393,161.441350,161.915091,163.586928,164.422846,165.232461,167.833096,168.576134,170.410511,170.921350,171.501848,173.266565,175.240261,176.076180,176.726338,177.025114,178.046792,179.231009,180.508107,181.808424,182.412143,183.387381,183.800715,185.147472,185.611871,186.262030,186.819309,187.492687,188.189286,188.978765,189.814683,190.302302,191.974139,192.786837,194.551554,195.294592,195.991191,198.615046,199.125885,199.401440,200.887517,201.769876,202.116633,202.554728,203.576406,204.040805,204.269921,204.571780,205.613595,206.006792,206.819490,207.887608,208.560987,209.184842,209.626021,210.064116,210.573413,211.664751,212.313368,212.705023,214.260760,215.119898,215.839717,216.629195,217.557994,217.972869,219.319626,220.480624,222.219037,223.194275,223.702030,224.537948,224.745386,225.604524,225.972960,226.344479,227.528697,228.426565,229.098402,230.166520,231.603073,232.392551 diff --git a/data/torah/labels/matot-2.txt b/data/torah/labels/matot-2.txt deleted file mode 100644 index 78e9cc517..000000000 --- a/data/torah/labels/matot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577415,3.575873,3.783311,4.433469,5.501587,7.219864,7.939683,8.427302,9.588299,10.145578,11.422676,12.305034,13.024853,13.207528,14.275646,15.692063,16.246259,16.546576,17.150295,17.754014,20.049270,21.628662,22.638005,23.682902,24.936780,25.051338,25.910476,26.535873,27.090068,27.856327,29.295964,30.201542,31.525079,32.221678,33.080816,34.009615,34.775873,35.635011,36.540590,37.910567,39.884263,40.743401,41.648980,42.252698,43.135057,44.017415,44.294512,44.828571,45.594830,46.361088,47.522086,48.218685,49.759291,50.443175,51.206349,52.483447,54.062404,54.638277,56.101134,56.399909,57.328707,58.048526,59.139864,60.203356,61.387574,62.409252,63.384490,64.545488,65.985125,66.472744,67.053243,68.538536,69.277732,69.858231,70.064127,70.900045,71.991383,72.291701,73.243719,73.883084,74.322721,75.646259,76.410975,76.664853,78.824308,79.263946,80.053424,80.284082,80.859955,81.486893,81.972971,82.390930,82.855329,83.055057,84.169615,85.633927,86.191383,86.957642,87.651156,88.278095,88.552109,89.271927,90.268844,91.499501,93.844717,94.400454,95.840091,96.279728,96.720907,97.159002,97.552200,98.341678,99.316916,99.538322,101.186939,101.767438,101.925351,103.620408,104.108027,104.292245,105.008980,106.146757,106.727256,107.258231,108.233469,109.670023,110.365079,110.665397,111.640635,112.685533,113.544671,114.891429,115.050884,115.372880,116.439456,116.840454,117.069569,118.137687,119.252245,120.807982,125.382313,125.891610,127.470567,128.187302,128.791020,130.393197,130.973696,131.530975,131.784853,133.456689,133.942766,135.544943,135.866939,137.492336,138.026395,138.792653,139.046531,140.044989,140.532608,141.136327,141.902585,142.901043,143.388662,144.154921 diff --git a/data/torah/labels/matot-3.txt b/data/torah/labels/matot-3.txt deleted file mode 100644 index 48afb5ec1..000000000 --- a/data/torah/labels/matot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.330280,5.328254,7.139410,8.648707,9.131701,9.758639,10.478458,11.430476,12.216871,12.704490,14.074467,15.119365,15.723084,16.257143,16.884082,17.557460,18.323719,19.229297,19.949116,20.785034,21.574512,22.241723,23.449161,24.656599,25.255692,25.789751,27.043628,27.224762,28.292880,28.803719,29.546757,30.684535,31.288254,32.100952,33.076190,33.819229,34.562268,35.073107,35.746485,35.856417,36.297596,37.156735,37.964807,38.545306,39.450884,40.588662,42.423039,43.189297,43.489615,44.139773,44.766712,45.393651,47.019048,47.854966,49.039184,49.875102,50.525261,51.546939,52.359637,52.963356,53.776054,54.310113,54.724989,55.163084,55.649161,56.345760,57.251338,58.203356,60.246712,62.243628,62.940227,63.776145,64.379864,65.006803,66.632200,67.700317,69.116735,69.790113,70.463492,72.390748,74.225125,75.130703,76.059501,76.686440,77.429478,78.358277,79.519274,81.232192,82.369970,82.741489,83.345208,84.083620,84.589834,85.054233,85.565072,85.865389,86.306568,86.582124,88.253961,89.461398,90.413416,91.017135,91.294233,91.921171,92.687430,93.616228,94.452146,95.009425,95.752464,96.681262,97.284981,97.678178,98.278813,98.603893,99.439811,101.086886,101.363983,102.130242,102.407339,103.196818,103.590015,104.333054,104.749471,105.446069,105.699947,106.419766,107.023484,107.929063,108.764981,109.902759,110.436818,111.063756,112.410514,113.525072,114.128790,115.011149,116.345522,117.070015,117.627294,118.602532,119.345571,120.622668,120.969425,122.292963,123.082441,123.847158,125.031376,126.981852,128.978768,129.628927,130.534505,131.486523,132.763620,133.854958,134.224936 diff --git a/data/torah/labels/matot-4.txt b/data/torah/labels/matot-4.txt deleted file mode 100644 index dd0400ace..000000000 --- a/data/torah/labels/matot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.462857,2.275556,2.596009,3.222948,4.291066,6.195102,6.798821,7.657959,8.470658,9.353016,9.887075,10.955193,11.721451,12.557370,13.323628,13.973787,14.693605,15.645624,16.899501,17.363900,18.246259,18.966077,19.941315,20.893333,21.984671,22.820590,23.470748,23.865488,24.817506,26.117823,27.812880,29.600816,31.435193,32.480091,33.478549,34.384127,35.289705,36.195283,36.938322,37.820680,38.563719,39.190658,39.933696,40.444535,41.234014,41.860952,42.627211,43.161270,43.881088,46.806803,47.642721,49.848617,50.614875,51.195374,51.845533,52.704671,54.144308,54.696961,55.997279,56.508118,57.831655,58.667574,58.825488,60.845624,61.402902,62.865760,63.167619,64.444717,65.094875,65.791474,66.232653,66.632353,66.917007,67.776145,69.378322,69.773061,70.771519,72.489796,73.325714,73.929433,75.206531,76.321088,77.017687,77.853605,78.666304,80.369643,81.229841,81.787120,81.993016,83.014694,84.079728,85.147846,86.239184,86.773243,87.353741,88.116916,88.417234,89.253152,91.296508,91.877007,92.152562,93.499320,94.146395,94.610794,95.281088,96.372426,98.160363,98.694422,99.414240,100.412698,102.270295,102.641814,103.338413,104.267211,105.196009,105.962268,106.473107,107.425125,108.400363,108.654240,109.140317,109.601633,110.251791,110.716190,111.691429,112.318367,113.177506,114.129524,115.522721,116.614059,117.984036,118.889615,119.632653,120.422132,121.838549,122.465488,122.976327,123.275102,124.038277,124.572336,125.408254,125.965533,126.615692,127.405170,129.169887,130.191565,130.818503,131.047619,131.744218,132.276735,132.764354,133.321633,134.575510,136.247347,136.640544,137.453243,137.987302,139.262857,139.936236,140.468753,141.652971,143.603447,144.207166,144.671565,145.344943,145.944036,147.047800,147.628299,148.162358,149.416236,151.204172,153.084989,153.711927,154.035465,154.732063,155.823401,156.636100,157.472018,158.145397,159.259955,160.420952,162.255329,162.462766,163.066485,163.809524,164.527800,165.408617,166.221315,167.962812,168.682630,169.750748,170.399365 diff --git a/data/torah/labels/matot-5.txt b/data/torah/labels/matot-5.txt deleted file mode 100644 index 23d0e0419..000000000 --- a/data/torah/labels/matot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.753667,3.956640,5.040238,5.863932,6.676630,7.350009,7.650327,8.393365,9.856222,11.853138,12.596177,13.292776,13.569873,14.220032,14.961528,15.354726,15.794363,16.721619,17.418218,17.927515,18.526608,19.408966,20.268104,22.334680,23.170599,23.704658,24.447696,26.491052,27.094771,27.605610,28.043705,28.972503,29.854862,30.551460,31.387379,31.944658,32.989556,34.359533,35.636630,36.655224,37.093320,39.159896,39.529873,40.435451,41.178490,41.384385,42.429283,42.916903,43.659941,43.981937,44.980395,46.187832,47.673909,49.763705,50.715723,51.528422,52.364340,53.246698,55.225524,55.955723,56.509918,56.949556,57.971234,59.314907,59.661664,60.567243,62.587149,63.392367,64.040984,64.946562,65.712821,66.455859,67.079714,68.310372,69.517810,69.771687,70.584385,71.675723,73.324340,73.788739,75.181937,75.692776,76.853773,77.407968,78.359986,79.126245,79.798082,80.355361,81.214499,83.304295,83.606154,84.183569,86.180485,88.177401,88.702209,89.398807,89.737855,90.504113,91.595451,92.477810,93.406608,94.101664,95.076903,96.307560,96.465474,97.454680,97.963977,98.962435,100.216313,101.632730,103.559986,105.255043,105.626562,106.369601,107.150351,108.052845,108.377924,109.678242,110.792800,111.046677,111.952255,114.367131,115.481688,116.480146,117.432165,118.360963,118.848582,120.079239,120.727856,121.096292,122.001870,122.791348,123.580827,124.416745,125.275883,125.809942,126.506541,127.783639,129.037516,129.989534,130.732573,131.032890,132.054568,133.029806,134.306904,135.328582,136.141280,136.466360,137.371938,139.043775,139.740373,140.553072,141.435430,142.758967,143.385906,143.545362,144.079421,144.961779,145.960237,146.398332,147.234251,148.859648 diff --git a/data/torah/labels/matot-6.txt b/data/torah/labels/matot-6.txt deleted file mode 100644 index 5d00de64f..000000000 --- a/data/torah/labels/matot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.708995,5.056790,7.894785,9.932981,11.429378,12.151776,12.354749,12.789922,13.434921,15.525299,16.314777,16.848836,17.568655,17.960310,18.378269,19.167748,19.980446,20.584165,21.118224,22.209562,24.740537,25.016092,25.410832,25.850469,26.570287,28.033144,28.147702,28.844301,29.098178,29.817997,30.862895,31.325752,31.859811,32.463530,33.531648,34.739085,35.691104,36.527022,37.386160,38.268519,39.522396,41.124573,41.867612,43.028609,46.070423,46.790242,47.579720,48.229879,48.926478,49.785616,50.807294,51.434233,51.968292,52.479131,54.127748,54.940446,58.609199,58.815095,59.906432,60.370832,61.299630,63.273326,63.807385,65.432782,66.812080,68.211466,69.093825,69.836863,70.626342,70.949879,72.110877,73.504074,74.014913,74.781172,75.081489,75.685208,76.381807,78.843122,79.864800,80.909698,81.815276,82.674414,83.719312,85.621772,86.713109,86.781227,87.244084,87.731703,88.521182,89.426760,89.751840,90.564538,91.145037,91.586216,92.118733,93.349391,94.045989,94.719368,95.741046,97.436103,98.922180,99.758098,100.385037,100.872656,100.985672,101.984130,103.725626,104.306125,104.956284,106.604901,107.440819,107.765898,108.555377,110.412849,110.617327,110.916103,111.448620,112.284538,113.306216,113.629753,113.999731,114.789209,115.320184,115.574062,116.131341,117.454878,118.660774,118.962633,119.566352,120.030751,121.371388,122.710133,123.801471,124.400564,124.864963,126.583240,127.464056,129.600292,130.296891,130.900610,131.411449,132.154487,132.688546,133.919204,134.660700,136.216437,137.330995,138.004374,138.817072,139.583331,139.860428,140.882106,142.182424,144.040020,145.084918,145.433217,146.129816,147.244374,148.242832,148.588047,149.122106,149.679385,150.608183,151.281562,152.303240,153.391494,153.879113,154.924011,155.992129,157.083467,158.267684,158.987503,159.568002,160.287821,160.729000,161.097435,161.817254,162.433176,162.967235,163.383652,164.335671,165.659208,167.586464,168.352723,169.978120,170.348097,170.928596,171.810954,174.315625,175.755262,177.125240,177.612859,177.984378,178.704197,179.075716,180.236714,180.910092,181.862110,183.069548,184.462745,184.903925,185.739843,186.506101,187.852859,188.224378,188.778573,189.916351,191.193448,191.959707,193.260024,194.072723,195.280160,195.976759,197.300296,197.718256,198.809593,200.202791,202.362247,203.151725,204.986101,206.007779,206.611498,207.517076,209.026374,209.676532,210.048052,211.295761,211.597621,212.363879,213.873176,214.662655,215.243154,216.404151,217.541929,218.099208,219.051226,219.910364,220.558981,220.837621,221.673539,223.832995,224.924333,225.456850,226.362428,227.035807,228.226104,228.897180,229.431239,230.127837,230.777996,231.683574,232.287293,233.076772,233.703710,234.188245,235.395683,236.138722,236.996318,238.017996 diff --git a/data/torah/labels/matot-7.txt b/data/torah/labels/matot-7.txt deleted file mode 100644 index 3cea8cecc..000000000 --- a/data/torah/labels/matot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.279209,3.115127,3.602746,4.113585,4.715032,4.814074,5.372144,6.138402,6.742121,8.739037,9.062575,9.596633,11.013051,11.872189,13.335046,13.636906,14.937223,15.262302,15.958901,16.423300,17.003799,18.523982,20.149379,20.520898,21.171057,22.146295,23.166431,24.536408,24.977587,25.836726,26.602984,27.415683,29.459039,30.829016,31.822060,33.493897,37.345326,38.367004,38.919657,41.682831,42.867049,43.281924,44.419702,44.975439,45.229317,45.994033,46.411992,47.271131,48.176709,48.757208,49.569906,50.684464,51.125643,51.822242,52.704600,53.470858,53.958478,54.492536,55.351675,56.234033,57.232491,58.021970,58.811448,59.786686,61.138842,61.556801,62.044420,62.553717,63.041336,63.340112,63.897391,64.547550,65.612584,66.332402,67.052221,67.655940,69.072357,70.535214,71.162153,71.998071,72.157527,73.063105,73.663740,73.965599,74.546098,75.544556,76.496575,77.866552,78.261291,78.748910,80.118887,80.560067,81.163785,82.115804,82.951722,83.787640,85.343377,86.620475,87.200974,87.758253,88.245872,89.148366,89.984284,90.261382,90.888321,91.163876,91.883695,92.298570,93.691767,94.269182,94.942561,95.337300,96.382198,97.264556,98.541654,100.259931,100.770770,101.208865,101.552538,101.947277,102.177935,102.920974,104.171767,104.727504,105.910180,106.444239,107.117618,107.976756,108.510815,109.137754,109.927232,110.414851,111.041790,112.202788,113.549545,113.897844,114.315804,114.961336,115.866915,116.513989,117.651767,119.044965,119.811223,120.461382,122.063559,122.735395,123.176575,124.175033,126.766038,127.182455,128.343453,128.620551,129.154610,129.781548,131.244405,131.964224,133.589621,135.098918,135.586537,136.283136,136.790891,137.719689,138.437966,140.086582,141.549439,142.013839,142.663997,143.174836,143.778555,144.753793,145.425630,146.447308,147.097467,148.095925,149.001503,149.512342,153.808034,154.458192,156.013929,156.803408,157.917966,158.916424,159.496922,160.495381,160.678056,162.233793,162.907172,163.603771,164.184269,164.648669,165.623907,166.459825,167.202864,167.690483,167.989258,168.755517,170.427353,171.565131,172.517149,172.981548,173.469167,174.514065,176.207580,176.602319,176.993975,177.319054,177.825267,178.127127,178.800505,179.170483,180.238600,180.795879,181.421276,182.814473,183.325313,183.882591,185.299009,185.786628,186.158147,186.829984,187.128759,187.359417,188.009576,188.470891,189.190709,189.817648,190.583907,191.443045,192.116424,192.696922,193.277421,193.857920,194.204678,195.226356,195.853294,197.064915,197.687671,198.941548,199.359508,200.683045,202.006582,203.097920,203.492659,203.885857,204.698555,205.697013,206.881231,207.345630,207.879689,208.341004,208.776015,209.797693,212.653748,213.141367,214.488124,214.789984,216.229621,216.833340,218.389077,219.480415,219.709530,220.170845,220.565585,221.169303,222.283861,222.910800,223.164678,224.047036,224.720415,224.879870,225.622909,226.296288,226.760687,228.386083,228.661639,229.195698,229.938737,230.867535,231.073430,232.071888,232.951163,233.482138,234.364496,235.177195,236.520868,237.101367,237.867625,238.027081,238.324315,238.646310,239.621548,241.223725,242.500823,243.894020 diff --git a/data/torah/labels/matot-h.txt b/data/torah/labels/matot-h.txt deleted file mode 100644 index 774a45a6d..000000000 --- a/data/torah/labels/matot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.274345,2.179923,2.481782,4.826998,4.989537,5.987995,6.916794,8.820830,9.819288,11.096385,11.653664,12.814662,13.019016,13.971034,14.946272,16.871748,17.827093,18.077973,18.821011,19.259106,21.163143,21.999061,22.649220,23.252939,24.878335,27.571850,28.407769,29.336567,29.474345,30.612122,31.564140,32.655478,33.189537,33.723596,34.605955,35.488313,36.486771,37.717428,37.971306,38.760784,39.107542,40.918698,41.708177,42.288676,43.171034,43.983732,45.446589,48.465184,48.626181,49.601419,50.437338,51.551896,52.782553,54.152530,55.058109,56.195886,58.471442,59.586000,60.584458,62.674254,63.742372,64.438970,65.739288,68.177383,69.013301,69.942100,70.986998,72.078335,72.192893,73.214571,74.839968,75.374027,76.066000,77.343097,79.270354,80.152712,81.104730,81.453029,82.079968,82.660467,84.425184,86.189900,86.607859,86.956159,87.652757,89.138834,90.253392,92.217805,92.454662,93.011941,94.103279,95.612576,96.282871,96.954707,98.941269,99.289129,99.892848,101.448585,102.702462,103.351079,104.953256,107.414571,108.343369,108.522961,109.521419,110.566317,110.679333,112.560150,113.790807,114.626726,115.625184,117.459560,118.597338,119.245955,120.430172,122.914707,125.143823,125.442599,127.532394,128.272349,129.038608,129.363687,130.965864,132.057202,132.846680,134.030898,136.120694,137.049492,138.442689,140.114526,140.298744,141.157882,142.226000,142.992258,143.712077,144.176476,144.873075,146.869991,148.913347,150.004685,150.770943,151.444322,152.373120,155.136295,156.993891,157.992349,158.849945,160.591442,161.148721,161.961419,163.540376,164.004775,164.887134,166.651850,167.625546,167.902644,168.876340,169.619379,170.641057,171.425909,172.281964,173.117882,174.720059,176.846928,177.590082,178.309900,179.517338,180.330036,181.212394,181.792893,183.023551,184.254208,184.997247,186.761964,187.946181,188.944639,189.989537,190.593256,191.056113,191.822372,192.887406,195.255841,196.231079,198.291487,198.529855,200.563959,201.678517,202.604231,202.904549,204.831805,209.266816,211.147633,211.937111,213.539288,214.560966,215.116703,217.229719,218.395411,218.661646,219.822644,220.890762,221.630716,222.000694,222.557973,224.392349,225.785546,226.528585,227.271623,227.828902,228.316521,230.336657,231.195796,233.262372,235.143188,236.025546,237.209764,239.369220,240.065818,241.180376,243.107633,244.175750,245.406408,246.660286,247.635524,248.610762,250.096839,250.654118,251.188177,252.000875,253.997791,254.438970,255.158789,256.157247,256.830626,257.712984,258.850762,261.056657,263.262553,264.423551,265.723868,266.583007,268.487043,269.369401,271.018018,272.179016,272.991714,273.151170,273.522689,275.310626,276.425184,277.145002,278.259560,279.629537,280.279696,281.231714,283.855569,284.598608,285.086227,285.806045,287.036703,287.663642,288.197701,289.739835,290.305061,291.048100,292.441297,295.413451,295.644109,296.456807,297.455265,298.430503,303.120934,305.466149,306.859347,308.972363,310.644199,311.526558,312.153496,313.430594,314.777351,315.155609,315.721660,316.812997,317.506512,319.503428,320.617986,321.616444,322.568462,323.265061,323.868780,325.099437,325.935356,326.748054,327.653632,328.234131,330.254267,330.788326,331.856444,332.715583,334.526739,335.478757,336.361115,336.825514 diff --git a/data/torah/labels/metzora-1.txt b/data/torah/labels/metzora-1.txt deleted file mode 100644 index 707e54a6b..000000000 --- a/data/torah/labels/metzora-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.097613,3.128447,3.383866,4.057245,5.287903,6.309581,7.424139,8.654796,10.256973,11.208991,12.811168,14.018606,14.366905,15.783322,17.362279,18.685817,19.086498,19.968856,21.315613,22.778470,24.148448,26.818743,27.793981,28.500163,29.668674,29.909780,31.762486,33.140013,34.695750,36.739106,39.084321,39.724645,40.653443,41.419398,42.673579,44.168241,45.050599,45.793638,46.536676,48.185293,49.857130,51.227107,52.357459,52.612879,53.820316,54.911654,55.378141,55.918947,56.605818,56.838018,57.348857,58.834934,59.569280,60.660618,61.984156,63.191593,64.422251,65.149261,65.679001,67.675917,68.164571,68.814730,69.743528,70.207927,71.577905,72.712648,74.547024,76.892240,78.091485,80.158061,81.388718,82.851576,84.500192,85.428991,86.087376,87.775115,90.443786,91.883423,94.275078,94.652969,95.691496,96.430357,97.823554,100.238430,102.560425,102.901317,103.564165,104.957363,105.325062,105.785410,107.062508,109.779242,110.963460,111.301942,113.243477,114.282431,114.561071,114.955810,116.859846,118.044064,119.181842,120.435719,121.712817,122.757715,122.951148,124.511989,126.823455,127.589713,128.936471,129.540189,131.003047,133.650121,134.332798,136.469034,137.397832,137.696657,137.950452,139.980815,140.475716,141.531144,141.809783,143.319080,144.387198,145.687516,146.894953,147.637992,147.900853,148.922531,150.424387,151.718849,151.985334,154.085660,156.160267,156.504247,158.733363,159.871141,161.659077,162.909349,165.277784,166.276243,166.636624,167.704742,169.121160,170.626601,172.415858,172.860000,174.190552,175.583749,176.651867,178.718443,179.693681,180.808239,182.154996,183.339214,184.407332,185.127150,186.334588,189.237082,190.258760,192.673635,194.461572,195.130540,196.342388,197.596266,199.106239,200.499436,201.544334,202.217713,203.541250,204.877102,206.641819,207.122370,208.006888,210.119903,211.280901,213.184937,214.578135,215.028094,215.667723,217.014480,218.361238,219.986634,221.472711,222.192530 diff --git a/data/torah/labels/metzora-2.txt b/data/torah/labels/metzora-2.txt deleted file mode 100644 index fc00137f3..000000000 --- a/data/torah/labels/metzora-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.385211,2.627359,4.810035,7.224910,8.571667,10.382824,10.610195,13.006989,13.533114,14.731946,15.753624,17.077162,20.676255,23.810949,24.948726,25.645325,27.131402,28.013760,29.151538,30.149996,31.589633,34.352808,35.095847,37.348182,38.741379,39.972037,40.497040,42.294033,43.058298,44.288955,45.589273,46.393021,47.052130,47.948758,49.434835,50.054985,50.664713,51.500631,53.102808,54.565665,55.587343,56.446481,57.886119,59.999134,60.460576,60.745224,61.859782,63.438739,64.762276,65.900054,66.212862,67.513179,69.115356,69.580082,72.005869,72.956053,73.204502,73.956345,75.442422,76.935889,77.237748,78.793485,81.138700,81.997839,82.949857,83.623236,85.178973,86.363190,88.476206,89.397472,89.675149,91.735807,92.746283,94.209140,94.696759,96.275716,97.111635,98.504832,100.014129,100.563022,101.268007,102.336125,103.607577,104.231285,104.856444,105.599483,107.008058,107.782159,108.104152,109.594841,112.795437,113.958667,115.258984,115.601439,116.434471,118.042076,118.828958,119.363017,120.013176,121.406373,122.915670,124.773267,125.980704,126.677303,128.093720,129.510138,130.555035,130.800617,133.065879,134.112265,134.298025,135.435803,137.061200,138.361517,139.011676,139.262467,140.680082,143.168048,145.164964,145.722117,146.496691,146.847441,147.819121,149.212318,150.598635,152.479451,153.710109 diff --git a/data/torah/labels/metzora-3.txt b/data/torah/labels/metzora-3.txt deleted file mode 100644 index ebba6077f..000000000 --- a/data/torah/labels/metzora-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.890538,2.587774,4.471594,5.022349,7.576544,9.782440,13.033233,13.845932,14.588970,16.748426,18.211283,19.418721,20.533279,22.010953,23.458993,24.712398,25.594756,27.498792,28.775890,29.357852,30.686441,31.767159,33.908765,34.618925,35.617383,36.662281,37.800059,38.589537,39.448676,40.540013,41.838211,42.767009,43.811907,45.122453,46.342882,47.453977,49.102594,50.913751,53.073206,54.700192,55.002820,56.187037,56.667490,57.271208,57.665948,58.455426,58.943745,60.579695,62.704678,64.864134,65.269416,65.859573,66.927691,67.345651,67.949369,69.203247,70.503564,71.989641,74.265197,75.658394,76.169233,77.887510,80.766784,81.022204,81.718802,83.831818,85.178576,86.548553,87.895310,89.381387,91.703383,92.189752,92.771501,93.420409,94.442087,95.858505,96.530918,97.228482,98.054350,99.517208,100.190586,100.840745,101.699883,103.278840,104.252470,105.250928,106.247464,107.502622,107.994525,108.342824,109.225182,111.082779,112.522416,113.636974,115.006951,116.725227,117.381834,119.582929,120.365627,120.643817,121.407260,122.850162,123.669511,124.575089,125.085667,126.572005,127.974470,129.715967,130.251301,132.433209,133.316523,133.681837,135.416934,136.041570,137.737008,138.565634,139.889171,141.212709,142.020220,142.753919,143.778987,145.125744,145.706243,146.402842,147.215540,148.492638,149.079589,150.071595,150.469459,151.792996,154.881250,155.383319,156.544317,157.626184,157.903800,158.726992,160.120190,161.269027,161.542547,162.128165,163.521363,164.855834,165.645312,166.156151,167.595789,169.197966,169.494252,170.721775,170.941819,172.323952,173.045558,173.370637,173.974356,175.321113,176.273131,177.062610,178.270047,179.042246,179.675710,181.185007,183.344463,183.722053,184.843391,186.631327,187.202163,188.041471,188.784510,189.015236,190.553380,192.498230,194.777103,195.304126,196.558003,197.156859,198.584403,200.012913,201.127471,201.792080,202.465458,203.162057,204.485594,206.621830,207.081424,207.735229,208.873007 diff --git a/data/torah/labels/metzora-4.txt b/data/torah/labels/metzora-4.txt deleted file mode 100644 index 14d917cfe..000000000 --- a/data/torah/labels/metzora-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.732175,4.001782,4.458486,5.193949,5.542248,6.331726,7.585604,8.537622,9.489640,9.864118,10.673858,11.927736,13.137073,14.994669,15.853807,16.573626,18.129363,19.758786,20.664364,21.848582,22.870260,23.551758,25.687138,26.919516,27.503990,28.335934,29.613031,30.596304,31.594762,32.709319,35.727914,36.679932,37.146230,38.444648,39.631342,41.419279,42.482939,42.770181,44.437390,46.109227,47.084465,48.315123,49.336801,49.716033,50.978224,52.023122,52.859040,53.240763,54.076682,55.237679,56.793416,58.558133,59.277951,60.392509,61.042668,61.242327,62.528745,64.059645,64.291845,66.126221,67.240779,68.216017,69.678874,70.932752,72.736105,74.547261,75.290300,76.742,77.756539,78.453138,78.847877,80.148195,82.586290,84.676086,85.154139,85.943617,86.245477,87.011735,88.205519,89.307528,89.490424,90.186039,90.905858,92.486213,93.551179,94.526417,95.292676,96.732313,99.170408,101.422744,102.514081,103.210680,104.059312,105.275,106.985026,108.411614,109.957180,110.208601,112.392964,113.111095,113.830914,114.829372,115.990370,117.016362,117.179970,118.115607,119.323172,119.737733,120.652896,122.139058,123.132440,125.080095,126.156772,126.946250,128.200128,130.940082,131.520581,132.844119,134.190876,135.282214,135.803927,137.011365,138.149143,138.565060,139.487265,140.926902,142.738059,144.038376,145.547673,146.940871,147.382050,148.125088,149.587946,150.876740,152.722639,153.790757,154.487356,154.803337,156.159193,157.144993,158.097011,159.072249,160.488666,161.764833,162.857102,163.669800,163.986254,165.402019,167.772056,168.499551,168.765438,169.672779,170.572993,172.238364,173.452268,174.752585,177.244502,179.845137,180.820375,181.609854,182.910171,184.373028,185.626906,187.159423,188.204321,189.063459,190.294117,191.641275,191.803815,193.777511,194.381230,195.611887,196.032602,197.417079,198.221710,198.606009,199.566340,200.889878,202.259855,202.524783,203.593884,204.894202,205.270272,206.145546,207.561963,209.140920,209.337663,210.448374,210.859740,211.625999,212.647677,213.622915,214.445080,214.700499,216.024036,217.951293,219.181950,220.273288,220.526878,221.618216,223.638352,224.799350,225.821028,226.169327,227.516085,228.402554,228.774074,230.445910,232.558926,234.091443,236.924278,237.376738,238.328756,239.118234,240.464992,241.672429,242.554788,242.791954,244.051281,245.143848,246.351285,246.629925,247.674823,248.071741,249.042106,250.226324,253.453897,254.452355,254.712539,255.533059,256.276097,257.692515,258.992832,259.921630,260.688475,261.477367,262.963444,264.351991,264.584190,265.675528,266.813306,267.271112,267.619411,268.246350,268.541668,269.075481,270.802199,272.807471,273.062890,273.464799,276.394861,276.926751,279.109063,281.099386,282.051404,283.862560,286.091676,287.043694,289.249590,290.482113,292.337844,293.509191,294.760323,296.548259,297.708283,298.938941,299.937399,300.156091,301.084889,301.735047,303.221125,304.382581,304.614780,306.379497,307.447615,308.817592,309.885710,311.232467,312.439905,314.297501,315.179859,317.223215,318.500313,319.382671,320.706209,323.097864,323.435802,325.063411,327.199647,327.849806,328.290985,329.034023,329.356985,330.102141,331.616854,332.618923,332.874342,334.058560 diff --git a/data/torah/labels/metzora-5.txt b/data/torah/labels/metzora-5.txt deleted file mode 100644 index fdd244362..000000000 --- a/data/torah/labels/metzora-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.408775,3.666352,4.358181,4.850570,6.127667,7.731435,9.171073,10.030211,11.702048,13.164905,14.442002,16.810438,19.248533,19.956132,21.047470,21.784860,23.010166,23.755410,24.553683,26.271960,28.322785,29.739202,30.096231,30.785533,31.069417,31.946396,33.130614,34.593471,34.918550,35.777689,37.054786,38.424764,39.701861,40.607439,42.348936,43.115194,44.206532,45.204990,46.853607,47.968165,48.623033,49.547122,52.077665,52.774263,53.888821,55.165919,55.887938,58.233154,58.645036,60.624809,61.032294,61.937872,63.145310,64.561727,65.815605,67.046262,67.836262,70.042158,71.063836,72.201614,74.059210,75.127328,76.265106,77.142788,79.255804,79.929182,80.579341,81.415259,82.901336,85.809098,86.621797,87.411275,89.106332,91.172908,93.309144,94.377262,95.236400,95.936805,96.192225,97.585422,99.559118,99.822625,101.146163,102.005301,102.771560,103.561038,104.745256,106.765392,108.971288,110.039406,110.921764,111.601327,111.928482,113.383079,115.065093,116.086771,116.945909,119.000703,121.019611,122.014607,122.873745,123.640004,123.872203,125.218961,126.131375,126.688654,127.524572,128.662350,130.589606,132.749062,133.631420,134.468921,135.184905,135.417105,136.626855,137.454225,139.377163,140.646536,141.631360,143.535397,144.510635,145.973492,147.111270,149.317165,150.803242,151.615941,152.939478,154.146916,155.234955,155.490375,156.860352,158.544697,159.577087,161.572742,163.523218,164.521676,165.404034,166.049842,166.305262,167.721679,169.351013,170.419131,170.942296,171.592455,172.810786,173.914450,174.139852,175.076770,176.291741,178.233963,180.238887,181.206117,182.100634,182.877953,183.179813,184.554756,185.482009,187.223505,187.850444,188.317901,188.683240,189.537293,190.907270,191.952168,192.382556,193.277162,194.540490,196.136274,196.852630,197.874308,198.919206,200.289184,201.594578,202.936258,204.061882,205.896258,207.568095,208.715156,210.014753,212.049561,214.069697,215.114595,215.973733,217.808109,219.087748,221.195678,221.983127,222.587591,223.772553,224.979991,225.561550,226.554922,227.321181,228.458959,230.664854,231.817960,233.907756,234.522494,235.242313,236.296820,237.336497,238.594874,238.919954,240.406031,241.938548,242.820906,244.144443,245.630520,246.745078,248.091836,249.229613,250.489620,251.855707,253.889770,254.660631,256.425348 diff --git a/data/torah/labels/metzora-6.txt b/data/torah/labels/metzora-6.txt deleted file mode 100644 index 90f414af2..000000000 --- a/data/torah/labels/metzora-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.616892,5.049589,5.862287,6.814305,7.616574,8.871191,10.279587,12.230063,12.755278,13.016657,14.131823,14.746984,15.044955,16.540041,17.583484,18.517995,19.054504,20.021605,20.862389,21.489328,22.302026,22.875860,24.159623,25.260841,26.119979,26.888926,27.167565,28.777790,31.440037,32.740354,34.063892,35.573189,36.710967,37.549657,38.800763,40.477098,41.695123,42.794595,43.201633,44.687711,46.707847,46.954061,48.147484,49.562620,51.375058,52.234196,53.279094,54.625851,55.949389,56.831747,58.039184,59.711021,60.447274,61.422512,62.072670,62.727712,62.983131,64.213789,66.512565,67.696782,68.718460,70.483177,71.922814,73.130252,75.083632,75.705713,76.450705,77.356283,78.819141,79.874028,80.965366,82.405003,84.425139,86.375616,87.466953,88.326092,89.146526,89.378726,90.542157,92.211560,93.418998,94.237459,94.906827,95.464106,96.323244,97.391362,99.225738,101.454854,102.476532,103.498210,104.098117,104.376756,105.769954,106.859977,107.254716,109.019433,110.900249,112.502426,112.799840,114.912855,115.563014,116.143513,116.590562,117.539662,118.6,119.282762,120.250709,120.575789,122.001100,125.591299,127.773975,129.051072,130.537149,132.650165,133.973702,135.390120,136.667217,137.804995,138.780233,139.801911,140.429873,142.495426,143.173617,143.823776,144.729354,146.331531,150.580783,151.008903,152.949218,153.763834,155.554441,156.408985,158.387276,159.873353,160.183293,161.610421,162.373646,162.99,163.535252,163.722360,164.882010,165.640879,167.389765,168.186708,170.147047,172.227621,174.338204,175.463357,176.378314,177.894311,178.756860,180.810063,182.220364,183.195602,184.217280,184.491508,185.600353,186.761351,187.945569,189.199446,189.943867,190.615863,191.445027,192.606024,193.404520,194.649380,195.763938,197.273235,198.503893,199.618451,200.965208,202.304397,203.209975,203.860134,204.928252,206.948388,208.759545,209.827662,210.756461,211.406619,211.685259,212.799817,213.896606,214.936052,216,217.415593,219.064209,219.853688,220.945026,222.036364 diff --git a/data/torah/labels/metzora-7.txt b/data/torah/labels/metzora-7.txt deleted file mode 100644 index ceebcfb4f..000000000 --- a/data/torah/labels/metzora-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.753279,5.036485,5.853303,6.666001,7.896659,9.173756,9.908818,10.952880,11.951339,12.926577,14.551973,15.550431,15.743679,17.082948,17.489661,18.288037,18.750647,19.914635,21.490074,22.767171,23.205139,24.536138,25.790015,26.271799,27.282673,28.420451,29.976188,31.044305,32.135643,33.180541,34.666618,35.757956,37.522673,39.426709,39.635272,40.020879,40.972897,42.389314,43.573532,44.757750,46.313487,47.656341,48.059260,49.055211,49.798250,51.632626,52.446598,53.256731,54.371289,55.718046,56.809384,58.550881,59.132066,60.176128,60.960123,62.042035,64.002303,65.511600,66.858358,67.108366,68.274775,69.501281,71.103458,73.773753,74.423912,75.817109,76.144193 diff --git a/data/torah/labels/metzora-h.txt b/data/torah/labels/metzora-h.txt deleted file mode 100644 index 8378433e9..000000000 --- a/data/torah/labels/metzora-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.505774,5.758629,6.496995,7.983072,8.749330,10.281847,11.789327,13.004170,13.268789,14.436088,16.084704,18.035181,19.159729,19.871682,20.331616,21.836386,22.391870,24.111942,25.078144,26.773201,28.305718,29.141636,30.884903,31.951251,32.308809,33.197176,33.959532,35.939529,37.982885,39.190323,40.513860,40.820744,42.118641,43.240124,43.599251,44.979138,46.434463,47.159017,48.485351,50.157188,52.480098,53.687536,54.825313,55.166914,55.946691,57.409548,59.569004,59.917468,60.799662,62.355399,63.469956,64.363201,64.586116,65.454539,66.841768,69.303084,71.462539,71.869459,72.939204,74.634261,75.410323,76.223084,77.281563,78.232934,79.121593,79.818191,81.373928,84.160323,84.697216,85.012239,86.933883,87.955561,88.613563,90.494379,91.237418,93.141454,93.492672,94.835111,96.924907,97.367461,97.950296,98.879094,99.482813,100.899230,104.521543,105.357462,106.982859,108.608255,108.985527,111.102485,111.593922,112.655739,113.027258,115.140274,116.556691,117.230070,118.483948,119.946805,120.411204,121.850841,124.172837,125.751077,127.483707,127.823932,128.452853,130.457528,132.549284,132.864308,133.557860,134.347339,135.763756,137.180173,138.088608,139.760444,140.782122,141.710920,142.848698,144.474095,146.610331,148.793007,149.861125,150.083492,151.030336,152.075234,153.468431,154.420449,155.697547,157.648023,160.062898,160.724985,160.932901,162.570653,163.3,164.618676,165.775710,167.633306,168.492444,169.421242,169.863149,171.558206,172.324465,173.369363,175.296619,177.711494,178.195270,178.378902,179.543863,180.423593,182.167718,183.372527,184.487085,186.228581,188.016518,188.453353,189.770151,192.287424,195.538218,195.824903,196.347842,198.074170,199.356504,200.238863,201.423080,202.235779,202.591607,203.883204,204.897579,205.906656,206.162076,208.073016,208.878811,209.452047,211.153946,212.073814,212.458143,213.730838,214.777802,216.124559,217.239117,218.689308,219.365586,220.503364,221.966221,223.823817,225.867173,226.413684,227.308350,228.788961,229.866842,231.422579,232.955096,234.030890,234.239869,235.354427,236.081797,236.956604,238.071162,239.727330,240.114661,240.671939,241.507858,243.249354,245.501690,245.890564,246.639468,248.125545,249.593112,249.807328,251.068614,252.558736,253.464314,254.694971,255.106023,256.034112,256.202305,257.040268,258.762508,260.102296,260.671466,261.693144,263.272101,264.967158,265.849516,267.614233,269.564709,270.603490,272.112787,273.200973,273.396287,276.382710,278.505968,279.047600,279.545546,280.843443,282.802889,283.420836,284.419294,285.603511,287.089589,287.780260,288.622106,290.535423,291.121637,291.562816,292.491614,293.072655,294.559565,296.034314,297.543611,299.656627,300.980164,301.486265,303.088441,304.133339,305.549757,307.035834,308.103952,309.822228,311.099326,311.865584,312.956922,314.721639,318.297512,318.570656,320.492299,321.534151,321.991811,323.637173,324.903838,325.995176,327.365154,327.992092,328.781571,329.524609,331.846605,333.239802,334.540120,336.002977,337.372954,339.337297,340.391548,342.263011,343.098930,343.818748,345.467365,346.400687,347.057208,348.583363,350.447322,352.095938,354.069634,355.346732,355.997158,357.320695,359.410491,360.095926,360.330170,361.959176,362.568047,363.543285,363.755728,364.681063,364.967316,366.283240,368.697695,370.717831,372.180688,374.015064,375.361822,376.244180,377.590937,378.891255,380.563092,381.677649,382.583228,383.419146,384.882003,387.180779,388.527536,389.642094,391.035291,391.467092,392.544588,394.428313,395.313008,397.170604,399.028200,399.8,400.467837,401.582395,402.580853,403.765071,404.833189,406.033778,407.875003,409.143811,411.256827,411.981422,412.367169,415.377375,417.392838,418.119290,419.926314,421.021784,422.020242,423.390219,424.574437,425.276978,426.925595,428.806411,429.828089,430.687227,431.894665,432.986003,433.522728,434.843599,436.266270,436.923793,438.170306,439.749263,440.770941,443.023277,444.161054 diff --git a/data/torah/labels/mishpatim-H.txt b/data/torah/labels/mishpatim-H.txt deleted file mode 100644 index 5748bd086..000000000 --- a/data/torah/labels/mishpatim-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.316349,4.928294,5.577523,6.269380,6.537589,7.714689,8.713147,10.779723,14.284791,16.304927,17.373045,19.439621,21.924156,22.496011,22.706311,23.827977,25.546254,27.194871,28.158874,29.075687,30.468884,33.739370,34.621729,34.836663,36.874064,38.522681,38.824540,40.682137,41.750255,43.259552,45.488667,47.508803,48.204433,49.691479,51.032816,52.267186,53.641756,56.667326,57.088848,58.045800,58.378079,60.216633,60.895584,61.635384,64.452399,68.160191,68.890035,69.133861,71.202762,72.090253,72.279218,73.572751,74.896288,76.080506,76.616276,77.334384,79.276672,80.994948,83.409824,85.174540,85.787188,86.753497,89.679211,90.213270,91.583248,92.117525,93.644486,94.894095,96.046174,98.252783,100.538671,101.851876,103.898688,105.092124,105.433481,106.465183,106.658707,107.902844,108.923243,110.015859,111.802517,112.187466,113.016408,114.107746,115.351110,117.493733,120.493233,121.577821,122.699761,123.229743,126.438174,128.155032,129.032806,130.106072,131.476050,132.706707,133.787416,134.719137,136.135555,138.620090,139.502448,142.521042,146.004035,147.838412,148.282881,149.180321,151.223677,151.891509,152.962799,155.238354,157.049511,158.396268,159.743026,161.136223,162.041801,164.340577,164.991069,166.088287,167.282337,168.327235,169.279253,170.032175,170.208949,172.019358,174.178664,176.042490,178.729775,180.144865,180.358213,181.473718,182.741614,183.808353,184.686128,185.320076,187.484033,188.953085,189.751616,191.110947,193.885033,194.701287,195.463244,196.170340,197.834453,199.679028,201.629504,202.003881,203.278121,206.083003,207.127901,207.380248,208.446987,209.914295,210.192935,211.655792,212.445736,213.475902,214.481685,216.903502,218.946858,220.084635,221.617152,222.801370,224.217787,226.191484,230.185316,230.651977,231.232476,233.182952,234.738689,235.286152,236.877043,238.177360,239.825977,241.010195,241.962213,242.983891,244.005569,246.095365,247.355547,249.346158,250.414276,252.207688,252.875162,255.220502,255.785837,256.885438,257.379850,258.873286,259.260360,260.773992,262.271613,263.212087,264.744604,265.904623,266.755091,268.078628,270.005885,270.205107,272.885159,274.301576,274.551308,275.717993,277.064751,277.184631,278.228208,278.785487,280.132244,281.409342,282.523900,283.475918,286.122993,287.539410,288.431112,289.884625,291.277823,293.517936,293.980450,295.536187,296.849211,298.879860,300.226617,303.013012,304.777729,307.494463,308.841221,309.217293,311.139996,313.833511,314.831969,315.453147,317.014645,318.488783,319.475960,320.938817,322.448114,323.609112,324.700450,326.813465,328.089438,329.321221,331.109157,332.130835,333.291833,334.568930,335.637048,337.473697,338.637967,339,340.861538,341.558137,343.810472,345.180450,346.712967,348.152604,349.336822,350.358500,352.123216,355.118590,356.279588,357.649565,358.787343,360.064441,361.991697,363.617094,365.706890,366.290902,368.626658,371.487879,372.283055,372.977835,374.094211,375.905367,377.043145,378.768706,380.158066,381.876343,383.227677,384.699237,386.998013,388.112571,389.180689,389.972518,391.293705,393.626863,394.946572,396.305080,396.704130,397.342164,398.352747,399.513744,401.557101,403.619550,404.618008,405.616466,406.174767,407.659822,408.534632,409.324110,412.226605,413.434042,415.175539,417.613634,418.913952,420.098169,421.305607,422.013568,422.523311,423.592525,424.823183,427.005858,427.509556,428.164839,428.387330,429.765695 diff --git a/data/torah/labels/nasso-h.txt b/data/torah/labels/nasso-h.txt deleted file mode 100644 index 3118f89f8..000000000 --- a/data/torah/labels/nasso-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.221769,4.146712,6.062358,8.007029,9.545351,10.764399,11.459070,12.532993,13.426984,14.646032,15.226531,16.939002,17.615059,18.147576,19.192474,19.562451,21.536147,22.534605,24.972701,25.971159,26.598097,26.756011,27.847349,28.822587,30.355104,31.794741,32.536238,33.886232,35.613698,37.076556,38.280909,38.907848,39.903222,40.271658,41.571975,41.829027,42.711385,43.034923,44.288800,46.306890,47.071607,48.743443,49.553058,51.994345,53.317883,53.500559,54.707996,54.890672,56.074890,56.677067,58.395343,60.183280,60.740559,61.622917,62.155434,63.200332,65.870627,69.771579,70.421738,70.534754,71.440332,72.136930,74.203506,76.441964,79.135479,80.293393,82.589085,85.305819,86.350717,87.999334,90.298110,91.459107,94.082962,95.615479,96.219198,97.356976,98.053574,99.353892,100.468450,101.815207,101.928223,103.146600,104.130422,104.766703,105.566975,105.856486,106.367338,108.108835,111.150649,111.963347,112.613506,113.333324,114.315381,115.461851,118.317905,118.593461,119.777678,120.358177,123.257588,124.070286,125.228200,125.412417,126.921715,127.384572,128.031646,129.030105,130.353642,131.514640,131.768517,132.766975,133.367610,133.784027,135.479084,136.918721,138.590558,138.819674,139.980671,141.559628,143.275699,144.754730,145.398721,147.334196,147.829107,150.360082,151.137225,151.456136,152.228452,153.887307,156.386567,156.660581,157.775139,158.307656,160.025932,161.022848,162.276726,162.679266,164.072463,164.906839,166.578676,168.225751,169.479628,169.826386,173.002130,174.408031,175.333745,176.819822,177.864720,178.839958,179.606216,181.835332,183.763907,184.924905,185.946583,186.759281,187.780959,189.661775,190.613793,191.542592,192.561186,193.884723,195.022501,195.437376,195.994655,196.760914,198.850710,201.526013,202.173088,203.125106,203.914584,204.959482,206.886739,207.067872,207.950231,208.623609,210.643745,212.199482,214.289278,214.939437,215.752135,215.958031,217.002929,217.769188,219.115945,222.359029,223.264607,224.355945,224.913224,225.865242,226.561841,227.185695,227.742974,228.602113,230.575809,232.526285,233.199664,234.082022,234.383881,235.637759,237.507536,237.992317,238.613088,238.817442,240.001659,241.952135,243.597157,244.104912,246.008949,246.751987,248.586364,249.375842,251.790717,252.742735,254.182373,254.365048,255.433166,255.778382,256.747452,257.532305,258.693302,259.434799,259.688677,260.919334,262.358706,263.397701,264.250672,264.396160,265.012305,266.404540,267.066545,267.874618,269.198155,270.195071,271.425729,272.003144,273.257021,275.346817,275.902554,277.713711,277.896386,280.241602,280.775661,281.959878,282.408858,283.662735,284.916613,285.915071,287.122509,288.028087,288.907361,290.439878,291.693756,291.876432,292.755706,294.148903,294.706182,295.097838,296.165955,297.814572,300.159788,301.506545,301.898975,302.456254,303.570811,304.008907,305.518204,306.236480,306.583238,307.926911,310.597206,311.430040,312.289179,313.055437,314.657614,315.702512,316.236571,316.979610,318.024507,319.371265,321.066322,322.419632,324.114688,324.438226,324.922761,326.339178,326.569836,327.730833,329.006389,329.353146,330.189065,331.791242,333.439858,334.345437,335.111695,336.295913,337.573010,339.918226,340.545165,342.124121,342.981718,343.933736,345.257273,346.093192,346.602489,347.531287,348.227886,349.412103,350.503441,351.896638,352.941536,353.707795,353.864167,354.839405,356.579360,357.358044,358.193963,358.820901,359.935459,361.119677,362.187596,362.387523,362.941718,363.237409,364.514507,365.745165,366.813282,367.858180,368.160040,368.458815,369.596593,371.059450,373.265346,374.472784,374.585799,375.653917,376.139994,377.277772,377.810289,378.599768,380.666344,383.243759,384.166389,386.952784,388.601400,389.390879,390.458997,391.550335,392.572013,393.268611,394.197409,395.102988,397.030244,397.935822,399.166480,399.466797,399.838316,401.208294,403.612375,403.843033,405.027251,407.186706,408.603124,410.042761,410.714598,411.357047,411.479314,412.355505,414.049019,415.997954,416.880312,418.455709,420.219360,423.168294,424.213192,425.211650,426.349428,427.416004,428.368022,429.272058,430.316956,431.222534 diff --git a/data/torah/labels/nitzavim-7.txt b/data/torah/labels/nitzavim-7.txt deleted file mode 100644 index aa3908409..000000000 --- a/data/torah/labels/nitzavim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.972154,3.993832,5.410249,6.339048,7.058866,8.126984,8.730703,9.822041,10.472200,11.470658,12.213696,14.698231,17.205986,18.575964,21.849977,23.986213,26.726168,27.329887,28.165805,29.396463,31.300499,32.716916,35.967710,37.384127,38.823764,40.890340,42.655057,43.676735,45.743311,47.322268,48.669025,51.408980,52.546757,53.154189,53.548928,54.315187,57.008701,58.120175,58.883350,60.090788,60.949926,62.110924,65.083078,68.240992,69.773509,71.073826,73.477588,75.329654,76.328113,77.419450,78.092829,79.486026,81.181083,81.854462,83.015459,83.897818,84.733736,86.916412,88.309609,89.400947,90.207478,90.399405,91.693555,92.619269,93.501627,95.150244,97.286480,98.165754,101.021809,101.509428,102.298906,102.713781,104.571378,106.011015,107.172013,108.704530,110.097727,111.537364,113.302081,114.788158,116.042035,117.226253,118.224711,119.107069,121.150425,122.862331,123.280291,124.046549,125.323647,126.716844,127.970721,129.080653,130.032672,131.054350,131.611628,132.447547,133.863964,135.071402,136.394939,136.766458,138.972354,141.642649,142.803647,145.659701,148.144236,150.350132,152.021969,153.554486,154.251084 diff --git a/data/torah/labels/nitzavim-h.txt b/data/torah/labels/nitzavim-h.txt deleted file mode 100644 index 9fa8a7558..000000000 --- a/data/torah/labels/nitzavim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.438095,3.410249,6.684263,8.309660,9.563537,11.003175,11.699773,13.418050,14.156463,15.410340,16.405714,18.193651,20.190567,21.653424,23.394921,25.438277,27.783492,28.572971,30.755646,31.707664,32.845442,35.120998,36.630295,38.859410,39.927528,41.785125,42.830023,44.385760,47.590113,49.192290,50.678367,52.257324,53.766621,54.393560,56.692336,58.642812,59.943129,61.638186,63.356463,64.441633,65.649070,66.647528,67.994286,68.644444,69.596463,70.850340,72.429297,74.449433,75.355011,77.050068,78.492682,79.514360,80.837897,81.836355,83.415312,85.251449,86.621427,87.550225,89.105962,90.592039,92.867594,93.726733,94.841291,97.999204,102.410996,103.548774,104.570452,105.034851,106.637028,108.048819,109.233037,109.767096,111.322833,112.274851,114.712946,115.595304,117.708320,121.237753,122.839930,123.559749,124.697526,125.695984,126.973082,127.646461,130.409635,132.615531,133.242470,133.799749,136.191404,138.118660,138.629499,139.558297,142.012964,143.389590,145.240538,148.026933,150.697227,151.858225,152.833463,153.994461,155.550198,157.407794,158.757119,159.778797,159.961473,161.052811,162.004829,163.235486,164.976983,166.045101,167.136439,171.501790,173.684466,174.984783,175.960022,178.421337,179.582334,181.439931,183.343967,183.854806,185.224783,187.244919,187.593219,188.638117,189.334715,191.029772,193.073128,193.932266,194.814625,196.045282,198.535330,199.928528,202.552382,203.388301,205.334151,205.547757,207.632927,209.258324,211.301680,213.840012,215.999468,217.833844,218.901962,220.829219,221.595477,223.383414,223.987132,224.962371,225.821509,227.400466,230.442280,231.231758,232.090897,232.296792,233.318470,234.827767,235.686906,237.056883,239.959377,240.981055,242.722552,243.837110,245.903686,246.344865,247.854162,249.998265,251.543903,252.438047,254.040224,255.605660,256.650558,258.066975,259.320852,260.040671,261.015909,262.331737,263.214095,265.195538,266.952764,268.136725,269.772193,270.677771,271.117408,272.557045,273.996682,276.620537,278.060174,278.617453,279.894551,281.218088,282.727385,282.956501,284.465798,285.348156,286.346614,288.320311,289.341989,291.013825,292.221263,294.566478,296.818814,298.328111,300.371467,300.905526,302.020084,302.995322,304.109880,305.804936,307.314233,308.800311,309.752329,310.286388,313.003122,313.766297,314.439676,314.945889,317.801943,318.939721,320.147159,321.586796,322.913649,323.679908,325.978683,327.882720,328.413695,329.899772,331.710928,332.407527,333.684624,333.927504,336.746574,338.139404,339.274097,340.992374,342.548111,343.476909,345.102306,346.518723,347.308202,350.257136,351.766433,352.648791,353.693689,354.901127,356.456864,357.780401,359.870197,361.820673,363.213871,364.413326,364.676728,366.294142,367.009335,368.469108,370.675004,372.199156,372.667003,373.616,375.795529,376.744464,377.975121,379.623738,380.854396,381.922514,383.129951,385.057207,385.916346,386.961244,388.865280,389.561879,390.490677,391.814214,392.739929,395.247684,396.548001,397.639339,398.730677,400.611493,402.678069,403.743103,404.718341,406.761697,408.380080,409.726837,410.911055,412.698533,414.300710,416.297626,417.014361,417.381254,418.495812,420.748148,421.978805,422.861164,424.022161,425.345699,426.553137,427.389055,428.759032,429.966470,432.938624,434.510741,434.739856,436.156273,437.317271,438.571149,439.314187,440.800264,442.054142,442.913280,445.235276,445.719811,446.904029,447.786387,450.340582,451.826659,452.848337,454.009335,455.472192,456.726069,457.515548,459.164165,460.839477,462.209455,462.664602,462.951034 diff --git a/data/torah/labels/noach-1.txt b/data/torah/labels/noach-1.txt deleted file mode 100644 index 303474aeb..000000000 --- a/data/torah/labels/noach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.749466,2.608604,3.374863,4.884160,5.696858,6.950736,7.740214,8.297493,9.458491,9.922890,10.735589,11.455407,12.384205,13.283050,13.686613,14.310301,14.823926,15.455991,15.667739,15.849588,16.253151,16.472746,17.371590,18.645687,19.269375,19.571253,20.616848,21.467979,22.128354,23.779293,25.742076,26.842702,27.337983,27.833265,28.420265,29.227391,29.924454,31.281892,31.648768,32.547612,33.226331,33.868363,34.161334,35.316991,36.930712,37.976307,39.718965,40.250934,40.553341,41.232060,41.616750,42.497250,43.001439,43.477317,44.834756,45.678569,46.760851,47.530760,48.392916,48.759792,49.860418,52.098357,52.722045,53.749296,53.913860,54.665954,55.528111,55.930085,56.112349,57.041147,58.260742,59.508118,60.194685,60.873404,62.671093,64.688907,65.532721,66.248127,67.036909,68.706192,69.843505,71.200944,72.063101,73.145383,74.135946,74.759634,75.585103,77.988136,78.483418,79.529013,81.033201,81.950389,83.692010,84.260666,84.921042,85.764855,86.700387,87.305731,88.149544,88.552577,89.414734,91.524267,92.349737,93.211894,94.550988,96.673970,98.448426,99,99.494431,100.026400,100.705119,100.832996,101.621778,102.116530,102.354469,103.913689,104.592408,104.720285,105.444069,106.072639,106.806390,107.778609,108.530174,108.648614,109.308989,110.721459,111.775431,112.105619,112.765994,113.756558,114.471435,114.893341,115.663779,116.966586,118.754939,119.727158,120.204096,120.882815,122.331973,123.909536,125.432069,126.239194,127.596633,129.082478,130.494948,131.026917,131.412136,131.980793,132.718644,133.369492,134.048211,134.855336,136.561306,138.211716,139.880998,140.486342,141.165062,141.898812,143.705569,144.384288,145.081351,146.108602,147.429353,148.841823,149.685636,150.401043,151.795169,154.326608,154.785203,156.216016,156.747985,157.591798,158.215486,159.059300,160.159925,160.912020,161.774177,162.719613,163.435019,164.517301,165.654085,166.406179,168.148837,168.827556,169.340652,170.918216,172.165592,172.972717 diff --git a/data/torah/labels/pekudei-1.txt b/data/torah/labels/pekudei-1.txt deleted file mode 100644 index 56df0754b..000000000 --- a/data/torah/labels/pekudei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.567164,2.728162,4.098139,5.468117,6.861314,7.813332,8.718910,8.941202,9.592065,10.660183,11.774741,12.842859,13.502646,14.756523,15.265589,15.985408,17.541145,19.956020,20.427041,21.007540,21.257423,21.889898,22.911576,24.165454,26.768269,28.324006,28.768696,29.302755,29.952913,30.757069,31.105368,32.498566,34.704461,36.910357,37.249818,39.742139,40.648770,41.182829,42.134847,43.551264,45.687500,47.196797,49.820652,50.888770,51.910448,53.628724,54.634463,56.468839,57.703668,59.166525,60.106481,61.045785,62.253223,64.505558,65.589587,67.719297,68.810635,69.971633,71.109410,72.154308,73.477846,75.590862,76.473220,77.239478,78.632735,80.917363,81.793534,82.977752,83.790450,84.626368,86.971584,87.792259,89.316799,91.252032,93.179289,94.084867,94.897565,96.406862,97.405320,98.903615,99.924589,100.946267,101.921505,103.221822,103.997831,105.971527,106.416755,108.622651,109.853309,110.851767,111.734125,112.871903,113.753817,114.218216,114.854471,116.286052,117.679249,118.724147,119.257572,120.960658,123.263631,124.378188,125.632066,126.723404,128.859640,129.741998,131.019095,132.156873,132.853472,133.828710,135.338007,137.056284,139.029980,139.796828,140.841725,141.561544,143.070841,143.983475,145.323124,146.530562,147.784439,149.363396,150.826253,151.847931,152.753510,154.169927,155.335451,156.473229,157.448467,159.143524,160.583161,161.674499,162.533637,163.694635,164.878853,165.671815,166.318490,167.645511,170.176486,171.825103,172.502939,173.617497,174.615955,175.684072,176.659311,177.820308,178.795546,180.235184,180.932138,181.546823,182.475622,182.986461,183.845599,184.704737,185.077030,185.703968,187.863424,188.897181,189.772187,190.979625,192.140623,192.723763,193.606121,194.465260,195.719137,196.973015,197.317403,198.803480,200.916496,201.483403,201.800670,202.497269,203.472507,204.587065,205.322821,206.571893,208.132435,209.595292,210.965270,212.010168,212.485794,213.553912,214.622030,216.038447,218.430102,218.825805,219.606646,220.651544,221.742882,223.252179,225.295535,226.154673,227.501430,228.360569 diff --git a/data/torah/labels/pekudei-2.txt b/data/torah/labels/pekudei-2.txt deleted file mode 100644 index e982793d4..000000000 --- a/data/torah/labels/pekudei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.841828,2.166908,3.304685,5.185502,6.748076,8.744992,9.882770,10.811568,11.531386,12.947804,15.641318,16.105717,17.080955,18.845672,19.890570,22.073246,24.139822,25.022180,26.252838,27.529935,29.178552,31.105808,31.941726,33.125944,33.868983,34.728121,35.889119,37.142996,38.257554,38.923372,39.534652,40.920288,41.275653,42.026435,43.048113,44.371650,45.400351,47.397267,48.348383,49.857850,51.251047,52.783564,55.407419,57.381116,59.006512,61.096308,62.168840,63.000345,63.836263,64.788281,66.742546,67.578464,68.298378,68.623457,69.830895,71.642051,71.996429,73.110987,74.295205,75.595522,76.733300,77.754978,79.635795,81.052212,82.282869,82.613211,83.480072,83.967691,85.384108,86.637084,88.170502,89.043824,90.297701,91.481919,92.364277,93.385955,94.430853,95.731170,97.681647,98.378245,99.119025,99.490545,100.837302,102.787778,103.073058,105.054477,106.052935,106.842413,108.049851,109.117969,110.975565,112.624182,114.504998,115.596336,116.228028,116.754227,118.127311,121.057800,122.752857,123.751315,124.492604,124.748023,125.909021,127.696957,129.252694,130.135053,130.899689,132.178409,133.631592,134.653270,136.023248,137.291456,138.345243,139.923225,140.852023,142.013020,143.266898,144.162994,145.867533,147.005311,148.259188,149.672605,150.725267,152.234564,153.372342,154.951299,156.019417,156.971435,158.689712,159.781050,161.127807,162.172705,163.008623,164.854988,167.362170,168.383869,169.343154,171.588223,174.699697,175.108216,176.106674,176.539696,177.538345,178.977982,179.744241,180.835579,180.996909,182.459724,183.643942,184.828160,185.919497,186.088657,187.280512,188.511169,189.347088,190.647405,192.798163,193.184766,195.158463,196.273020,197.294698,198.386036,199.198735,200.220413,201.706490,204.028485,205.491342,207.093519,208.184857,209.136875,210.204993,211.203451,213.455787,213.946367,214.851945,216.221923,216.608187,217.413131,218.040070,219.410047,221.848142,222.891853,224.401150,225.840787,226.296435,227.225244,228.479122,228.989462,229.755721,231.079258,232.217036,233.447693,234.251323,235.373550,236.906067,238.306149,238.538295,239.536775,240.999632,243.414507,243.970524,244.775585,246.006243,246.354542,246.709853,248.071779,250.285419,251.608956,252.909274,254.070271,256.485147,256.831442,257.682815,258.588394,259.679731,260.158875,262.512566,264.439822,264.801806,265.513860,266.465878,267.696536,270.506150,271.247852,271.990891,273.918147,277.540460,277.802011,279.583816,280.843380,281.903267,283.195809,284.472906,285.633904,286.841342,288.304199,290.788734,291.856852,293.273269,294.686802,294.980855,298.216151,300.747126,301.124999,301.914435,303.957791,304.754335,306.449391,307.819369,308.282983,309.467201,310.697858,311.587260,312.794698,314.071795,315.116693,316.417011,318.344267,319.000282,320.331351,320.911850 diff --git a/data/torah/labels/pekudei-3.txt b/data/torah/labels/pekudei-3.txt deleted file mode 100644 index 9f8cb491d..000000000 --- a/data/torah/labels/pekudei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.935654,3.260733,3.874650,4.942768,6.150205,7.171883,8.054242,9.215239,10.021773,11.043451,12.343768,13.202906,14.410344,15.710662,17.298535,18.410266,18.750168,20.259465,21.842622,22.130859,23.282259,24.466477,26.605714,27.697052,28.811610,29.856508,30.831746,32.735782,34.122731,35.263508,36.192306,37.167544,38.531012,38.879311,41.015547,41.833646,43.830562,44.306187,45.180148,46.132167,47.177065,48.105863,49.708040,50.915477,51.937155,53.005273,54.468130,54.919513,55.612170,56.587408,57.562646,60.047181,61.927998,62.880016,63.599834,63.878474,65.271671,67.697008,68.186169,69.379298,70.191997,71.213675,72.467552,73.804117,75.416486,76.751767,78.400384,79.398842,80.059457,80.800611,82.088076,83.063314,83.587350,84.224742,85.090821,85.648100,86.855538,87.737812,89.600378,90.250537,91.783054,93.292351,95.242827,96.181912,96.855291,97.784089,98.782547,100.640144,101.306757,101.775269,102.279254,103.642978,105.785467,106.148078,106.671770,107.159389,108.018527,109.063425,110.247643,111.410272,113.086478,114.293915,115.705366,116.894811,117.799019,119.162743,120.481997,121.446867,122.584645,123.675983,124.604781,124.825159,125.947600,127.178257,129.244833,130.011092,130.620984,130.932268,132.221876,134.698184,135.127200,137.138939,138.160617,139.042976,139.971774,141.481071,142.642069,144.058486,146.659121,147.495039,149.073996,150.722613,151.195419,152.227465,152.831184 diff --git a/data/torah/labels/pekudei-4.txt b/data/torah/labels/pekudei-4.txt deleted file mode 100644 index cf2f46736..000000000 --- a/data/torah/labels/pekudei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.200827,2.544057,3.681835,3.901342,4.980814,5.514873,6.432747,6.819903,7.166434,8.211332,9.813509,11.160267,12.460584,13.342942,14.898679,15.828727,17.592194,18.598382,19.626621,21.368118,21.904099,22.743043,23.509301,24.948938,25.808077,26.713769,28.187940,28.813346,29.498314,30.678996,31.073735,32.234733,33.233191,34.835368,35.260984,36.421470,36.744271,36.973405,38.091028,39.019826,39.607041,40.791259,41.351247,42.185121,44.119725,44.493167,46.571965,48.452781,49.946434,50.364393,50.598320,51.789099,52.671458,53.182297,54.505834,55.782932,56.943929,58.267467,59.335585,60.217943,61.471820,62.330959,63.306197,64.467195,66.626650,67.439349,68.079906,69.445689,71.256845,72.278523,74.136119,74.704296,75.586654,76.538672,77.142391,77.862210,78.373092,79.185747,79.581527,79.934744,81.026082,81.604341,82.641955,83.040451,84.149697,85.937633,86.680672,88.539702,88.995054,90.022439,90.324298,92.506974,93.075709,94.315124,95.708321,97.310498,97.804365,99.106944,100.790424,102.585562,103.005887,104.748484,105.603389,106.810827,107.530645,108.923842,109.748600,110.387844,111.482440,112.640968,113.941285,114.398445,115.141483,116.279261,117.626018,119.135315,119.634993,120.242156,120.915535,122.587372,124.909367,125.489866,126.071219,126.865117,127.148302,128.199114,128.892953,129.914631,130.982749,132.236626,133.026105,133.278041,134.985611,135.989485,137.568442,137.971670,138.260643,140.309311,141.470309,142.538427,143.583325,146.021420,146.810898,147.597019,148.340058,149.384956,150.344986,151.474752 diff --git a/data/torah/labels/pekudei-5.txt b/data/torah/labels/pekudei-5.txt deleted file mode 100644 index 2930b9bcd..000000000 --- a/data/torah/labels/pekudei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.031709,3.077055,3.355695,4.005853,5.190071,5.890403,6.842422,7.933759,8.978657,10.232535,12.740290,13.111809,13.947728,14.455657,15.788,17.466561,18.488239,19.138398,20.067196,21.112094,22.783931,23.159036,24.436133,24.830872,26.549149,28.708605,28.947749,30.533500,32.112457,32.414317,33.598534,35.572231,35.804430,37.104748,39.055224,39.403523,40.773500,43.768875,44.210054,45.208512,46.485609,47.762707,48.784385,49.898943,51.152820,53.799895,54.241074,54.937673,55.796811,57.422208,60.417582,61.207060,62.275178,63.598716,66.083251,67.035269,67.871187,68.395475,69.811892,71.675537,71.954176,73.184834,73.562625,74.200465,75.020032,75.825638,77.242055,78.525574,79.245393,80.313510,81.606960,81.833411,83.070862,83.976441,86.553856,86.943444,87.807733,88.261756,89.863933,91.561603,91.928120,92.856918,94.064356,95.578582,95.986536,97.077874,97.487173,97.765812,98.382896,99.242034,100.960311,102.725027,103.239078,103.581479,104.579937,105.415855,106.646513,109.409688,109.781207,110.570685,111.615583,112.101935,112.390579,113.528357,115.385953,115.687813,117.081010,118.127179,119.334616,120.124095,121.935251,123.699968,123.861389,125.077935,125.495895,126.540793,128.026870,129.420067,131.068684,131.503668,132.717300,133.061271,134.201886,134.689506,135.386104,136.105923,137.266921,138.660118,139.565696,141.074993,142.653950,142.932589,144.975945,145.765424,146.763882,147.948100,149.573496,151.175673,152.645404,153.382992,154.491652,155.675869,156.560393,157.280212,158.394770,159.741527,160.531006,162.365382,163.804200,165.452817,166.544154,167.844472,168.029934,169.319351,171.153727,172.036085,174.892140,175.681618,177.330235,179.768330,180.836448,181.811686,183.738943,185.201800,186.177038,188.870553,189.776131,191.122888,193.003704,194.373682,194.954181 diff --git a/data/torah/labels/pekudei-6.txt b/data/torah/labels/pekudei-6.txt deleted file mode 100644 index 6c0e26ac3..000000000 --- a/data/torah/labels/pekudei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.343295,4.882712,6.995728,7.919249,9.010587,10.101925,11.495122,12.513848,13.953485,15.104885,16.733212,17.220831,19.008768,20.192986,20.548137,21.941334,23.146804,23.451367,24.875036,25.982445,26.330744,27.584622,28.629520,28.868241,30.299237,31.785314,32.240191,33.174548,33.546067,34.846385,36.936181,37.400580,38.491918,40.233414,41.138992,42.416090,44.482666,45.318584,46.024442,46.349521,47.765938,50.157594,51.225712,51.550948,52.758386,53.083465,55.242921,56.380699,56.585261,57.467619,57.720665,59.020983,60.843511,61.168591,62.979747,63.486926,64.292372,66.103529,67.011157,67.301217,69.491172,69.988822,72.241157,74.354173,75.236531,76.488874,77.946426,81.111180,81.761339,82.565635,84.034051,86.239947,87.052645,87.818904,88.142042,89.527080,90.917270,91.158668,92.424118,93.724435,94.908653,96.394730,97.253869,98.136227,99.294857,100.230679,101.809636,103.295713,105.130090,106.082720,106.825758,107.847436,108.985214,111.167890,112.073468,112.798067,113.030267,114.488343,116.559700,116.848576,118.032794,119.309892,120.610209,121.515787,122.839325,124.511161,125.207760,126.391978,127.854835,129.062272,130.083950,130.943089,132.196966,134.333202,135.053021,135.703179,136.030981,137.459527,139.665196,140.036715,140.710094,141.801432,142.799890,143.798348,144.373521,145.813158,146.953742,147.836101,148.695239,149.693697,151.411974,152.267100,153.704666,154.331605 diff --git a/data/torah/labels/pekudei-7.txt b/data/torah/labels/pekudei-7.txt deleted file mode 100644 index 58e7395fa..000000000 --- a/data/torah/labels/pekudei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.472525,3.889455,4.672038,5.670496,7.388772,8.805189,10.082287,11.429044,13.588500,14.424419,15.353217,15.933705,16.746404,18.053192,19.562489,20.054142,21.233297,21.581596,22.974793,24.971709,25.854068,26.666766,26.945406,28.268943,29.746351,30.001770,31.348528,31.807178,32.457337,33.153936,33.896974,35.313391,36.613709,38.239106,39.028584,40.862961,43.138516,44.299514,45.209719,46.347497,47.485274,48.032535,48.938113,49.280226,51.097569,53.105143,53.480010,54.146930,55.725887,58.442622,58.909742,59.884980,61.452014,63.465704,64.153750,64.850089,65.079414,66.575889,67.868683,68.086156,70.148119,71.344473,72.784111,74.455947,77.056582,77.428101,78.287240,79.076718,80.469915,81.519594,82.471612,82.727031,84.422088,85.818894,86.747692,87.095991,87.769370,88.791048,90.277125,91.657359,92.649358,92.967636,94.483735,95.133042,95.845787,97.401524,98.547180,98.895480,99.893938,100.985275,101.477544,102.328390,103.117868,104.371746,105.973923,107.483220,108.504769,108.732343,110.293143,111.756000,112.870558,113.961896,115.447973,116.423211,117.282349,118.396907,119.139946,120.742123,121.528279,122.065660,123.153676,124.361113,125.707871,126.822428,127.414922,127.774447,129.736918,131.803494,132.758695,133.752788,134.073857,135.141975,136.256533,138.661840,139.330771,140.155866,140.922124,141.967022,142.192693,142.580796,143.950773,144.640843 diff --git a/data/torah/labels/pekudei-h.txt b/data/torah/labels/pekudei-h.txt deleted file mode 100644 index 434cf0e6a..000000000 --- a/data/torah/labels/pekudei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.087021,2.375530,3.583606,4.807101,6.687917,7.547056,8.568734,9.127036,10.937169,11.875061,13.546898,14.014491,16.026303,16.890571,18.734563,19.197465,20.077873,20.472612,21.633610,21.935469,23.235787,25.186263,26.672340,27.040124,28.858712,29.820146,30.981143,32.420780,33.052829,33.953297,39.145098,39.713406,39.849800,40.482742,42.479658,43.362016,44.987413,46.427050,48.493626,48.806344,49.456015,50.384813,52.544269,54.796605,55.148668,56.334012,56.728752,58.725668,59.399046,60.188525,60.5,62.022901,64.762856,65.094069,65.746178,67.000056,67.418015,68.253933,69.554251,70.715249,71.783367,73.478423,74.198242,74.994005,76.562537,78.756208,79.474564,80.131515,81.609118,82.363035,83.686572,84.109676,85.567388,88.281095,88.578381,89.298199,90.250217,90.713422,91.625490,92.670388,93.259444,93.509500,93.966753,95.174191,95.691805,97.351266,98.993678,100.010951,101.516969,103.250310,104.370266,106.148684,106.721549,107.394928,108.555926,110.227762,111.156560,112.462592,113.152045,114.707782,115.991974,117.338732,118.592609,120.334106,120.720117,122.936520,123.573026,124.686911,126.250298,127.701570,130.232545,130.745081,131.648962,132.244289,133.567827,133.916243,135.939422,136.314505,136.748219,137.816337,138.187856,138.745135,140.324092,140.917805,141.679339,142.236617,143.885234,144.999792,146.114350,147.851170,149.385603,149.681124,150.541725,152.120682,154.187258,156.602133,157.069136,157.789930,158.194387,159.171878,160.660846,164.779136,166.683172,168.726528,169.887526,170.909204,171.145333,172.120572,172.436201,173.592810,174.684148,175.395156,176.440054,177.995790,179.676453,180.517550,181.358646,181.938321,183.427290,184.211556,185.530032,186.992889,188.035383,189.126721,190.497049,191.497272,192.406566,194.145590,195.256789,197.160825,198.391483,199.297061,200.225859,200.681139,201.851256,202.993046,204.200484,204.850643,206.127740,208.287196,208.853417,210.134416,210.342386,211.933835,212.979036,213.861394,214.229617,214.581968,216.048204,216.801634,218.310931,220.656146,221.386253,222.477591,223.207279,224.925556,225.232072,225.662860,226.020238,226.949037,227.277983,227.728090,229.121287,230.746684,231.187307,232.743044,234.325010,235.302500,236.473401,238.428198,239.445556,241.396032,241.940345,243.063343,244.201121,245.016862,246.247520,247.780037,249.289334,250.194912,250.442242,251.533395,253.702754,254.492232,254.794092,255.178371,256.780548,257.385847,257.873466,259.034464,260.427661,262.819316,263.608795,264.839452,266.232650,267.463307,268.647525,269.738863,270.876641,271.573239,272.362718,274.011334,274.972729,275.924747,277.387604,278.466196,280.091593,281.020391,282.343928,282.801735,283.359501,283.586001,286.451471,288.169747,288.598483,289.436990,290.853407,291.851865,293.012863,294.173861,295.683158,296.495856,297.285335,298.028373,299.468011,300.913596,302.213914,303.351692,303.658661,303.850760,305.383277,307.635612,308.027660,309.028809,309.762296,311.301673,312.880630,313.809428,314.476668,315.428686,316.177542,317.518482,318.820496,320.004714,320.399453,321.583671,322.814328,324.811244,325.925802,327.063580,327.323032,329.447867,330.423105,331.212584,332.954080,335.183196,335.615798,336.637476,336.892896,338.471852,340.120469,341.118927,341.621677,342.506624,344.155241,345.176919,345.421240,346.373259,347.673576,349.415073,349.803219,350.406938,351.149977,352.682494,354.451681,355.937759,356.295405,357.499917,358.242956,359.845133,365.325042,367.182638,368.204316,369.713613,372.244588,372.787721,373.637786,375.742926,377.175064,378.527000,379.943417,381.743963,382.835301,383.660945,384.543303,385.233680,386.725979,388.513916,389.442714,390.143867,391.439630,392.098209,392.957348,393.468187,395.140023,396.347461,397.276259,397.429583,398.681174,399.540312,400.376230,401.258589 diff --git "a/data/torah/labels/re\342\200\231eh-1.txt" "b/data/torah/labels/re\342\200\231eh-1.txt" deleted file mode 100644 index e6596988f..000000000 --- "a/data/torah/labels/re\342\200\231eh-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0.970501,3.510322,5.893131,7.004651,8.281748,9.117667,10.441204,11.996941,12.988190,14.179617,15.619254,18.219889,18.676975,19.752406,21.060554,22.569851,24.798966,26.888762,28.281960,29.489397,30.812935,33.947629,34.473422,35.155066,36.548263,37.353951,38.427696,39.820228,41.236645,43.117462,43.517663,44.591408,46.707925,48.855416,50.001433,51.281668,52.289344,54.518459,56.468936,57.606713,58.953471,60.160908,60.563371,62.101718,64.879002,66.081997,67.219775,68.729072,69.866849,70.583011,71.860109,72.581060,73.231502,73.675454,74.542710,75.854831,77.828527,78.249197,79.361044,79.766895,80.499932,81.738869,82.533571,83.694569,84.206419,84.588425,85.854024,86.918740,88.222460,89.492550,92.143230,93.745407,94.883184,96.137062,97.437379,99.202096,100.920373,102.290350,103.776427,105.030305,106.493162,107.863139,109.302776,110.626314,112.089171,113.273388,114.736246,114.973355,116.152663,117.731620,119.078377,119.371581,120.414353,121.075120,122.066269,123.511696,124.482196,125.328803,126.918773,128.528899,129.665083,130.618695,133.242549,134.566087,135.219651,135.673927,136.904284,137.480711,138.901200,141.037436,143.057572,144.098699,145.333127,146.912084,149.446777,150.613443,153.901290,154.670962,155.682760,157.964782,160.101018,162.840973,164.141290,165.929227,168.019023,169.969499,171.223377,172.454034,173.595725,174.659930,175.727506,176.354445,177.213583,177.601621,179.396259,180.510817,183.343651,183.847928,184.209285,185.912823,188.103742,189.113087,189.693586,192.503200,193.687418,195.753994,196.961432,198.145649,198.426087,199.695998,200.274168,201.513105,202.717729,203.722543,205.109384,206.456142,207.129620,207.387732,209.153217,211.052920,211.569144,214.363130,216.011747,216.318403,218.393622,220.252028,221.965890,223.000953,224.311551,225.774408,227.167605,229.675360,229.957034,230.929238,231.371487,232.345655,233.622753,234.757915,236.254964,237.008651,238.599087,240.457025,242.459974,243.007171,243.337554,245.031015,245.898024,246.682684,247.956563,249.419420,250.197864,251.787856,252.961039,253.228401,254.307796,255.329474,256.629792,258.092649,259.300086,260.739724,263.270699,265.523034,267.310971,268.982808,270.422445,273.324939,274.927116,275.763034,276.761492,278.851288,281.150064,282.636141,283.982898,285.956594,288.011558,289.857547,291.529384,292.620721,293.897819,296.730653,298.077411,299.400948,300.561946,302.001583,303.603760,304.685585,305.786436,306.977619,308.577912,310.866830,312.051048,314.187284,315.580481,317.739937,319.736853,320.688871,321.640889,322.639347,323.331587,324.287964,326.308100,327.283338,327.760787,328.815855,329.164916,330.063145,330.610342,331.993822,332.582115,333.789552,334.554292,335.442196,336.803733,337.662871,339.381147,343.305320,343.722425,345.813075,347.763551,348.947769,349.524781,350.691446,352.085250,352.717250,353.757815,356.130584,358.290039,359.492839,361.703373,363.624674,365.296511 diff --git "a/data/torah/labels/re\342\200\231eh-2.txt" "b/data/torah/labels/re\342\200\231eh-2.txt" deleted file mode 100644 index bfc462971..000000000 --- "a/data/torah/labels/re\342\200\231eh-2.txt" +++ /dev/null @@ -1 +0,0 @@ -1.125262,2.369871,5.086606,5.687273,7.962829,9.286366,10.772443,11.956661,13.233758,14.534076,15.486094,16.972171,18.226049,19.781786,20.348489,20.805627,21.861034,22.627292,23.579310,25.088607,28.083981,30.359537,31.882425,33.359332,34.742467,35.872314,37.219071,38.310409,39.424967,40.864604,43.650999,46.135534,47.133992,49.455987,52.149502,53.937439,56.236214,58.349230,59.904967,61.762563,62.853901,64.641838,65.523073,66.249805,68.008731,68.687873,70.387487,72.304423,74.314183,75.462337,75.971943,77.109721,78.642238,79.372287,80.440405,81.322763,82.971380,84.195391,84.819653,86.654030,87.315882,88.337560,89.707538,91.263275,92.888672,94.281869,95.117787,96.627084,98.043502,99.390259,101.317515,102.733932,103.802050,106.077606,108.446041,109.209029,109.828385,111.662762,114.015532,115.710589,118.148684,119.541881,121.956756,124.000112,125.114670,125.843495,126.865173,127.424209,128.579408,130.088705,131.621222,133.409159,135.057776,137.031472,137.914933,139.145689,139.637991,140.880468,141.232112,142.116642,143.416959,144.740497,145.533895,147.057688,148.223490,151.056324,152.449522,153.773059,155.491336,157.023853,158.161630,159.554828,161.110565,162.002575,163.319645,164.712842,166.036379,167.824316,169.008534,170.889350,174.325903,174.778988,177.158738,178.760915,180.688171,183.706765,185.634021,186.980779,188.768715,190.417332,193.435926,195.363182,196.524180,197.824497,199.217695,201.191391,202.723908,204.395745,205.050664,206.350982,209.137376,210.646673,212.155970,213.316968,214.640506,215.685404,217.148261,219.051017,220.166855,220.645139,221.928856,222.227539,223.275613,223.845103,224.888886,225.469385,227.559180,228.146886,230.508115,231.808432,233.201629,233.632539,236.336323,237.372931,237.883770,239.393067,241.111344,242.597421,243.897738,244.474908,245.370548,246.485106,247.381835,248.307831,249.168308,249.607257,250.909804,252.022132,253.299230,254.098243,254.754645,256.689343,259.266758,260.613515,262.308572,263.678549,266.418504,267.542780,268.503941,270.528436,273.129071,274.731248,277.796282,278.841180,280.025397,281.348935,282.509933,283.926350,285.273107,287.037824,288.709661,289.824218,290.404717,291.821134,294.096690,295.954286,297.370704,297.807641,298.792246,299.261105,300.993017,301.852155,303.129252,304.638549,306.101407,307.541044,309.435349,311.486608,314.298051,315.923447,317.312184,318.547302,318.941470,319.972960,320.488705,321.589116,322.399306,323.260953,324.345072,324.813931,326.349445,328.248325,329.772117,330.369913,331.108366,332.370827,333.810464,334.878582,335.946700,337.038038,338.222256,339.336814,340.614486,342.056228,342.853289,343.708957,344.869383,345.795380,347.061300,348.996315,351.155771,351.897142,352.593741,353.406439,354.915736,356.684635,357.669239,358.478022,359.591562,360.181775,361.040914,362.410891,363.966628,365.290166,366.799463,367.983680,369.027354,370.189576,371.048714,372.209712,373.413096,376.106611,377.964207,379.154712,380.379083,381.702620,383.026158,384.558675,386.369831,387.693368,390.386883,391.478221,391.825632,393.384589,394.451244,395.394439,396.346457,397.716435,400.108090,401.269088,402.778385,404.171582,405.518340,405.867965,406.981197,408.077304,409.098982,410.259979,411.792496,413.533993,414.439571 diff --git "a/data/torah/labels/re\342\200\231eh-3.txt" "b/data/torah/labels/re\342\200\231eh-3.txt" deleted file mode 100644 index c383e59bb..000000000 --- "a/data/torah/labels/re\342\200\231eh-3.txt" +++ /dev/null @@ -1 +0,0 @@ -1.086331,2,3.856115,5.041624,6.992100,7.467626,9.824934,10.962712,11.888561,12.273381,13.931917,14.860715,15.835953,17.205930,18.906475,19.899445,21.478402,22.964479,24.473776,26.726112,27.309353,28.514048,30.278765,31.718402,33.041939,34.713776,35.654676,36.357525,38.563421,41.210495,42.665933,44.778949,46.056047,47.124165,47.496403,49.376500,50.546763,51.257316,51.669065,53.068473,53.827338,54.992806,55.798561,57.109274,58.363151,60.429727,61.151079,62.124784,64.086331,65.178960,67.384855,68.708393,71.239368,72.327756,73.132316,73.510791,74.625180,75.3,77.395683,78.937305,80.098302,82.489958,83.976035,84.517986,86.971409,88.318166,89.734584,91.220661,92.590638,93.472996,94.587554,95.586012,96.417266,97.675808,98.720706,99.640288,100.618705,101.755396,102.575540,103.338129,104.596871,105.781089,106.965306,107.940545,108.939003,110.401860,112.630975,113.606213,114,115.278050,116.648028,117.600046,118.946803,120.038141,120.633094,121.709978,122.661996,124.832440,126.132758,128.245774,130.219470,131.587095,131.913669,133.166052,135.580928,136.647482,138.820144,139.294964,140.341018,141.683453,142.719424,144.520610,144.892086,145.565508,146.703841,147.423659,148.700757,150.651233,151.672911,153.228648,154.412865,156.781301,158.383478,159.823115,160.258993,161.425292,162.795269,163.582136,164.722525,165.439732,167.018689,168.574426,170.849982,172.874315,174.151413,175.067425,176.032229,176.733813,178.225339,179.726619,181.309353,182.374101,183.538672,184.769329,185.628468,187.277084,189.088241,192.478354,193,195.148649,196.456954,198.012691,200.265026,200.834532,201.357477,203.215074,203.669065,204.817251,207.046366,208.486003,210.482919,211.620697,214.174892,215.986049,217.425686,218.795663,220.968486,221.338129,222.524223,224.451479,226.401955,227.609393,228.700731,229.559869,230.511887,231.812204,232.810662,234.807579,235.942446,239.498009,241.007306,241.338129,243.899281,244.187050,244.964029,245.280576,246.969776,248.362974,249.245332,251.636987,253.378484,255.143200,256.048779,257.256216,258.589928,259.697842,262.159157,263.877434,265.131311,266.501288,267.848046,268.776844,269.728862,270.820200,272.677796,274.372853,276.810948,278.204146,280.642241,282.522144,283.845681,284.774479,285.958697,287.189354,288.173355,288.893173,289.557625,290.184564,291.438442,292.425500,293.679377,294.515296,295.629854,296.535432,297.603550,298.431655,299.321826,300.366724,301.620602,302.330935,303.266187,303.793697,304.871396,306.649752,308.089389,309.412926,310.968663,313.128119,313.841727,314.405216,315.870504,317.309734,318.284972,318.676259,319.492409,321.582734,322.982086,324.212743,325.280861,326.209660,328.415555,330.087392,331.602069,332.995266,334.086604,336.687239,337.676402,338.628420,339.683453,340.950416,342.413273,343.667150,345.524747,347.126923,347.597122,348.821980,351.492275,352.676493,354.534089,355.555767,357.599123,358.647482,360.292638,361.453635,363.752411,366.120846,367.467604,369.185880,370.100719,372.043165,373,373.783431,375.246289,377.545064,378.775722,379.364026,380.401118,382.150421,384.843935,385.338129,386.237133,387.165931,388.187609,390.927564,393.412099,394.215827,395.409015,396.100719,396.223022,397.834723,400.230108,402.343123,403.782761,404.897318,406.383395,407.776593,408.914371,410.028928,413.349382,414.278180,415.021219,416.948475,418.411332,420.872647,421.395683,423.519722,424.402080,425.307659,426,426.747296,427.954733,430.114189,430.604317,430.748201,431.251799,432.546763,433.467626,434.589928,435.510791,437.007194,438.000000,438.345324,440.316547,443.060755,443.5,444.105653,446.311548,448.070015,450.438450,450.877698,451.593943,452.057554,452.330935,453.625899,455.323741,456.589928,457.784173,459.202955,460.230216,461.093525,461.856115,462.964587,464.055925,464.978417,466.633340,468.583816,469.656144,470.129496,471.064748,473.255237,474.648435,476.575691,477.922448,480.151564,480.920863,481.712230,483.237410,485.052725,486.329822,487.374720,488.349958,489.905695,490.705036,492.947509,494.038847,495.362384,496.407282,497.614720,497.931033,498.187050,499.332997,501.321147,502.412484,503.434162,504.362961,505.779378,507.010035,508.937292,509.866090 diff --git "a/data/torah/labels/re\342\200\231eh-4.txt" "b/data/torah/labels/re\342\200\231eh-4.txt" deleted file mode 100644 index 3602bc1a0..000000000 --- "a/data/torah/labels/re\342\200\231eh-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0.941912,2.254010,3.348201,4.841142,6.092991,7.023818,9.554793,10.437151,12.410847,14.338103,14.960253,16.102820,17.700208,18.374635,19.255945,20.509822,21.717260,23.412317,24.619754,27.057850,28.427827,30.680162,31.608961,32.630639,33.930956,34.952634,36.415491,37.878348,39.132226,39.354245,39.897301,41.801338,42.706916,43.798254,44.218335,45.609410,46.337636,47.787297,48.640904,49.789002,51.669818,52.482138,53.689954,54.616156,55.926002,57.056268,58.286925,60.214182,61.560939,62.838037,64.300894,66.483569,67.685180,69.362844,70.775827,73.356676,74.773093,75.794771,77.048649,78.093547,79.533184,80.763841,82.249919,83.689556,85.361393,86.963569,87.509476,89.099805,90.114450,91.277122,92.969620,94.191161,95.873482,97.057699,98.427677,98.944872,101.137760,102.064954,102.855423,103.315930,105.096732,105.773731,107.716423,108.643618,110.475259,111.984556,113.168773,114.561971,115.769408,116.466007,117.743104,118.828037,121.035642,121.727359,122.456755,123.455213,124.523331,125.800429,126.822107,127.681245,128.424284,129.399522,131.024919,132.069816,133.114714,135.134850,135.694142,137.271086,137.769291,138.524964,139.918161,141.102379,141.781224,142.733243,144.590839,145.422323,146.894060,147.766618,148.950836,150.529793,151.830110,153.827026,154.429353,155.847162,156.845620,157.960178,158.653237,159.655235,160.537593,161.210972,162.488069,163.421665,164.252786,165.344124,167.062400,169.054420,170.044481,170.265242,171.306755,172.212334,173.442991,174.487889,176.693785,179.573059,180.140596,181.778955,183.643330,185.145848,186.306846,186.733977,187.653603,189.209340,190.672198,191.717096,192.994193,194.180966,195.248093,195.782152,197.082470,198.359567,199.241926,201.029862,201.598520,202.156448,202.644067,203.735404,206.336039,207.923675,208.559836,209.572292,210.119877,212.126487,214.898270,216.616546,217.870424,219.867340,221.771376,223.094914,224.023712,225.091830,226.229608,227.065526,227.971104,229.108882,231.082578,231.739692,232.225365,233.079494,234.519131,235.404317,236.353508,236.817184,238.629063,240.195929,240.799648,242.517924,244.004001,246.697516,247.812074,249.065951,250.435929,251.372662,252.014886,252.947420,254.286701,255.405221,256.523741,256.935827,257.583392,258.746064,260.041192 diff --git "a/data/torah/labels/re\342\200\231eh-5.txt" "b/data/torah/labels/re\342\200\231eh-5.txt" deleted file mode 100644 index 27bc08aa3..000000000 --- "a/data/torah/labels/re\342\200\231eh-5.txt" +++ /dev/null @@ -1 +0,0 @@ -2.133124,3.656785,5.096381,6.103737,6.578009,7.240013,8.543005,9.593492,10.684830,11.660068,13.308684,15.862879,17.813356,19.160113,21.644648,22.968186,23.701487,25.977043,27.347020,28.508018,30.621034,32.107111,33.430648,35.102485,36.658222,38.097859,39.305297,40.605614,41.952371,43.972508,46.294503,46.697560,47.530762,48.575660,49.082876,50.479697,51.2,52.056641,53.637611,56.261465,56.764226,57.468903,59.790530,62.008626,62.612345,63.285723,64.330621,66.118558,67.070576,68.254794,69.764091,71.134068,72.062866,73.061324,73.990123,74.880021,76.288898,77.403456,78.796653,80.538150,81.768807,83.138785,83.997923,85.692754,87.037779,87.247939,88.340054,89.174485,90.939202,92.076980,93.098658,94.189995,95.977932,99.089406,101.202422,101.888656,102.817454,104.814370,106.254007,108.483123,110.131740,111.733916,113.870152,115.124030,116.308247,117.422805,118.908882,120.812919,121.973916,123.088474,124.319132,125.781989,126.571467,127.918225,129.172102,129.626908,131.112985,131.444594,132.622282,133.283494,133.903466,135.478336,136.221375,137.266273,138.589810,140.609946,141.588241,143.469057,144.815815,145.168044,145.472776,146.557311,148.782797,149.896645,151.010493,152.660250,154.446610,155.551840,158.454334,158.8,159.206735,160.637010,161.539511,163.094695,165.112232,167.556557,168.949754,170.528711,171.753289,173.129346,174.568983,175.729981,176.937418,178.516375,180.072112,181.117010,181.896069,182.671103,183.800106,184.705684 diff --git "a/data/torah/labels/re\342\200\231eh-6.txt" "b/data/torah/labels/re\342\200\231eh-6.txt" deleted file mode 100644 index f4ece0b0e..000000000 --- "a/data/torah/labels/re\342\200\231eh-6.txt" +++ /dev/null @@ -1 +0,0 @@ -1.640574,2.835560,3.473561,4.405245,5.427431,6.866106,10.071422,11.185980,13.252556,15.806751,16.496884,17.478587,18.987884,20.311422,21.263440,22.261898,23.724755,24.233912,25.350152,25.671946,26.745408,27.532828,28.693825,29.1,29.854823,30.876501,32.548338,33.378593,34.405934,35.474052,36.913689,37.905363,39.586445,40.234573,41.146377,42.075175,43.259393,45.674268,47.415765,48,48.460662,48.994428,50.148906,50.594494,51.516051,52.862942,54.908596,56.859794,58.345871,59.553309,60.667867,61.582290,62.223604,63.269250,64.778547,66.005411,66.574901,67.688871,69.126905,70.807987,71.901703,72.813133,74.391582,75.575800,75.972757,76.134789,77.386957,78.780154,80.730630,81.682648,82.656578,84.027864,84.762994,85.573154,86.606108,88.347952,90.373352,91.122750,91.669608,94.825142,95.922948,98.006276,99.538793,100.560471,101.675029,103.207546,104.647183,105.901061,107.038839,107.710777,108.942875,110.100749,111.903355,112.490721,114.114167,115.298385,116.505822,117.922240,119.152897,121.056934,121.867388,122.540767,123.724984,124.514463,125.234281,127.091878,128.322535,128.835700,131.155370,132.481420,133.359289,133.696660,135.053678,136.772622,138.072940,138.841176,140.664036,142.648928,143.175532,144.226228,144.783507,146.637496,148.100354,149.679310,151.235047,152.419265,153.278403,154.300081,156.016569,159.385251,159.783813,160.128131,162.335817,163.796216,165.560932,168.184787,169.461885,170.160594,172.271499,173.313486,174.933806,176.432602,178.612658,180.400594,181.724132,182.711342,183.784804,184.513948,185.789603,186.857721,187.369762,188.413457,189.516686,189.820496,191.035736,192.646464,193.737801,194.689820,195.532125,196.222337,197.081475,197.699303,198.641995,199.477914,201.385531,203.289407,204.362869,206.384581,208.153413,209.291191,210.428969,211.491850,212.490308,213.651305,214.763298,216.262094,218.086317,218.378637,219.177655,220.083233,220.877147,221.847949,222.702867,224.090212,225.327577,226.307731,227.375849,229.442425,230.579001,230.956372,232.413377,234.363854,236.616189,238.171926,239.797323,240.526387,241.554719,243.087236,244.262609,246.375625,247.281203,248.465421,250.183698,250.627576,251.393834,252.903132,254.040909,255.689526,256.966624,258.777780,259.717053,260.952547,262.098876,263.190213,264.415982,265.721188,267.230485,268.739783,269.877560,270.899238,273.314114,274.800191,276.170168,278.143864,280.140780,281.301778,282.277016,282.883221,283.928119,287.295013,287.920750,288.660021,289.872428,290.870886,291.962224,293.843040,294.719521,295.810858,296.469247,297.877434,299.783315,301.803451,302.301090,303.126988,303.921410,305.100684,306.911841,307.324082,308.305038,309.257056,309.856126,310.808145,311.736943,312.619301,313.733859,314.193235,315.307793,315.901652,316.398890,317.025829,318.024287,319.812223,320.256262,322.389638,324.038255,325.547552,326.824650,328.381884,329.101702,329.728641,330.518120,331.476978,332.747235,333.522633,334.604832,335.629049,336.177937,338.662472,340.287869,341.332767,342.377665,343.886962,345.605239,347.044876,348.368815,349.371388,351.055596,351.538566,352.409488,353.865211,355.072649,356.024667,357.391973,358.070482 diff --git "a/data/torah/labels/re\342\200\231eh-7.txt" "b/data/torah/labels/re\342\200\231eh-7.txt" deleted file mode 100644 index cb819cb5b..000000000 --- "a/data/torah/labels/re\342\200\231eh-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0.512354,0.803464,4.739270,6.777040,8.426345,10.260722,11.793239,13.047116,14.509973,15.322672,16.367570,17.412468,18.527026,19.830411,20.779361,21.681871,22.543556,23.379996,24.749973,27.652468,28.999225,30.160223,31.553420,32.946617,34.107615,35.500812,35.944744,36.621634,37.696922,38.927579,40.343996,41.487547,42,43.275484,45.109860,46.572717,47.571175,48.546413,49.521651,50.222292,51.054168,52.261606,53.840563,55.024781,56.348318,58.577434,59.877751,61.247729,62.478386,63.732264,65.055801,66.797298,67.886845,68.166310,69.142513,69.598571,70.582150,71.310298,72.091447,73.420285,74.920062,76.345999,76.949718,77.749651,78.900194,80.940216,81.895057,83.315673,84.480113,86.226773,87.519301,89.906453,92.321328,94.225364,96.175840,97.708357,99.008675,100.517972,102.189809,103.350806,104.349264,104.985899,105.997881,107.414298,108.441739,109.533076,110.647634,111.994392,112.923190,113.968088,114.825416,115.756024,116.641942,117.923456,118.924245,120.802730,121.590812,122.184676,123.250385,124.063083,124.875781,125.514974,128.196235,129.542992,130.703990,131.911428,133.142085,135.092562,135.727112,136.439319,137.578571,139.077670,139.890368,140.842386,141.421223,142.746423,143.354193,144.511139,145.416717,147.204654,148.140041,149.217256,150.049723,150.935533,151.412117,152.413535,152.704645,154.975805,156.043923,157.112041,159.132177,160.246735,161.129093,162.661610,163.440781,164.358830,165.241188,165.868127,166.750485,169.026041,170.233478,171.032929,171.941192,173.079452,173.822490,174.937048,176.887524,177.507215,177.809969,179.557819,180.148772,180.915031,182.285008,183.376346,185.001743,186.069861,187.950677,188.879475,189.244769,190.086913,191.271131,192.781224,193.802902,195.010339,196.010164,197.256115,199.289204,201.262900,203.229692,204.068088,205.977770,207.116993,208.069011,208.695950,210.565663,211.552005,213.001762,214.743258,215.805642,216.856274,217.424214,218.342351,219.410469,221.546705,222.823803,224.294409,225.377338,226.064358,226.970349,228.433206,229.710304,230.848081,231.604544,232.125179,233.926540,235.366177,237.061234,238.547311,239.708308,240.962186,242.378603,245.002458,246.093796,247.347674,248.647991,249.762549,251.968445,252.827583,253.895701,254.709579,255.753297,256.780561,258.034438,258.940016,260.147454,262.980288,264.907545,266.486502,268.460198,269.737295,270.895293,273.452488,275.054665,277.283780,278.885957,280.023735,281.533032,283.808588,285.062465,286.664642,287.383762,288.684778,291.158071,292.179749,293.247867,294.548185,295.546643,296.893400,297.775758,298.913536,301.351631,301.892682,302.321529,303.087787,304.272005,306.199261,307.499579,307.959414,308.939216,310.146653,312.306109,314.070826,315.255043,316.044522,316.694681,317.368059,319.179216,320.858035,322.576311,324.689327,325.919985,326.941663,328.102661,329.310098,330.981935,332.630552,335.254407,337.367422,338.481980,339.921617,340.528798,342.197173,343.262753,345.282889,346.583206,348.046064,349.044522,350.414499,351.051754,351.602621,352.643615,353.978078,356.023018,357.207235,359.482791,360.394142,361.830543,363.061201,364.593718,365.824376,367.147913,367.612312,368.959069,370.538026,371.861564,375.692856,377.033988,377.441542,379.222289,379.747133,381.195986,382.496303,384.516439,385.886416,387.024882,388.092312,389.810589,391.737845,392.759523,393.943741,394.709999,395.801337,397.667862,399.493310,399.980929,400.561428,401.467006,402.674444,403.928321,404.825932,405.894050,408.123165,409.191283,410.584481,411.545920,412.196079 diff --git "a/data/torah/labels/re\342\200\231eh-h.txt" "b/data/torah/labels/re\342\200\231eh-h.txt" deleted file mode 100644 index 8c1da967e..000000000 --- "a/data/torah/labels/re\342\200\231eh-h.txt" +++ /dev/null @@ -1 +0,0 @@ -2.809461,3.847358,4.938696,5.545312,7.283911,8.700329,11.184864,12.531621,13.739059,15.387675,17.361372,19.729807,21.331984,22.748401,24.742093,26.437150,27.579339,29.316424,30.242831,31.148409,32.400816,33.749044,34.793152,35.701013,36.790858,38.718114,39.902332,41.111373,42.502967,45.057162,47.170178,48.749135,50.119112,50.803400,51.930268,53.323466,54.809543,55.947321,56.778106,57.133889,58.054018,60.080472,60.532233,61.311130,63.561296,64.443654,66.417350,67.795120,68.646466,69.877124,71.456081,73.424247,74.515585,76.395261,77.793857,79.581728,81.137465,81.560253,82.561212,83.907751,84.720449,87.251424,89.805619,90.945570,91.771371,93.698627,94.331646,96.136723,97.491557,98.606115,99.999312,101.206750,102.097536,103.946705,104.722972,105.409562,106.667281,108.919616,111.729231,114.004786,115.212224,117.557439,119.856215,121.435172,121.938990,123.332187,124.500383,124.978083,125.940021,127.518977,128.703195,130.228953,130.474321,130.977325,132.743467,133.950905,135.042243,136.528320,137.758977,139.918433,140.853378,142.495848,143.675108,144.668847,145.503098,147.186279,148.594732,149.257225,150.312307,150.943196,152.011314,154.101110,154.867368,157.026824,158.420021,159.557799,160.742017,162.785373,164.642969,165.920067,167.800883,169.170860,170.447958,172.235894,173.698751,174.975849,175.744678,177.669364,179.775513,180.872864,182.167915,183.235286,184.725139,185.543741,187.534600,189.584013,190.160035,191.162970,193.214864,194.130977,195.361635,197.196011,198.658868,199.657326,199.962478,201.004084,202.526572,203.739760,204.111279,205.040077,205.973989,207.853489,209.200246,210.709543,211.940201,213.445438,214.709082,215.150744 diff --git a/data/torah/labels/shmini-1.txt b/data/torah/labels/shmini-1.txt deleted file mode 100644 index 13129391d..000000000 --- a/data/torah/labels/shmini-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.992500,3.086751,4.665707,6.105345,7.266342,8.705980,9.843757,11.074415,12.723032,13.987037,14.265676,16.100053,16.648353,19.272207,20.075927,20.331346,22.072843,24.255519,25.439736,26.391755,27.622412,28.969169,29.519203,31.283919,32.034141,32.730739,33.914957,35.145615,36.422712,37.467610,38.244017,39.047956,40.650133,41.880790,43.552627,44.016932,45.804869,47.221286,48.684143,49.961240,51.702737,54.256932,55.696569,57.020107,58.390084,59.551082,60.712079,62.174937,63.452034,64.566592,65.774030,66.377748,68.089855,70.719880,71.555798,72.379282,73.702819,74.933477,75.325209,76.127248,76.986386,78.124164,79.565409,79.882543,82.112202,83.505399,84.085898,85.502315,87.290251,88.451249,90.076646,92.166442,92.770161,93.466759,94.372338,95.672655,96.878380,97.946498,98.452503,100.198834,101.410594,103.012771,103.523610,105.543746,106.565424,106.892508,108.239265,110.514821,111.020408,112.725237,113.005432,115.275413,116.413190,117.504528,118.619086,119.733644,122.125299,122.730877,123.695726,124.763844,126.296361,127.689558,128.827336,129.477495,131.126112,132.379989,133.308787,133.478197,134.899427,137.163780,137.604959,138.255118,139.253576,139.685975,140.823752,144.190646,145.467743,146.317412,146.619271,149.127027,151.565122,152.911879,154.351516,155.767934,157.045031,157.409158,158.298909,159.970745,160.755056,161.939273,163.146711,163.614148,164.612606,166.307663,167.065486,167.947844,168.435463,170.502039,171.217149,172.355198,172.680277,173.771615,174.059609,176.244311,177.336191,178.868708,181.028164,181.933742,182.978640,183.385700,184.959624,185.622614,186.551413,187.097343,188.119219,189.552195,190.703274,191.645718,193.433655,194.850072,195.037439,196.235501,199.447623,200.655061,201.792838,202.814516,203.094993,204.138054,205.722847,206.016959,207.015418,208.408615,209.407073,211.357549,213.243283,215.592424,217.304656,217.908374,219.092592,220.532229,220.762508,222.457564,223.920422,224.178535,225.119622,225.514361,227.302297,228.625835,228.849598,229.801616,231.705653,235.235086,236.140664,237.324882,238.694859,240.947195,241.456467,242.280640,243.859597,245.136695,246.483452,248.151520,249.711026,251.615062,253.449438,253.742475,254.846572,256.746463 diff --git a/data/torah/labels/shmini-2.txt b/data/torah/labels/shmini-2.txt deleted file mode 100644 index c7bf14cc6..000000000 --- a/data/torah/labels/shmini-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.163872,4.559354,7.150179,8.636256,9.634714,10.679612,12.049590,12.495981,13.744646,14.794756,15.328815,16.675573,18.440289,18.775076,19.656837,20.119225,21.452621,22.479439,23.895857,25.033634,26.008873,29.491866,30.792183,31.720981,32.141295,32.951639,34.205517,35.849384,36.173742,37.172922,38.705439,39.625518,40.915727,41.310466,42.401804,43.423482,44.723800,46.093777,47.765614,49.646430,50.993187,52.572144,54.349421,54.697720,55.858718,56.303720,57.818928,59.096026,60.140924,62.091400,63.013713,65.133214,66.222660,67.105018,68.498216,70.239712,72.306288,73.490506,74.465744,75.882161,77.345018,77.925517,79.295495,81.129871,82.917807,83.326495,85.309463,85.711047,86.477306,88.729641,91.237396,93.466512,95.602748,97.112045,99.085741,100.780798,101.848916,103.056353,103.424214,104.101251,105.540888,108.456708,109.919143,110.263245,111.317058,112.380035,112.815775,114.376951,114.789471,115.403271 diff --git a/data/torah/labels/shmini-3.txt b/data/torah/labels/shmini-3.txt deleted file mode 100644 index b302d0cb0..000000000 --- a/data/torah/labels/shmini-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.293732,3.106430,4.569288,5.916045,7.425342,7.806524,9.143619,9.635942,10.541909,10.913429,12.399506,13.815923,14.183735,15.158974,16.830810,18.177568,18.494438,20.027429,21.588294,22.101858,24.818592,25.896594,28.150402,28.710490,30.916386,32.170263,33.261601,34.306499,35.351397,36.280195,37.534073,39.809628,40.947406,42.061964,43.170072,44.331070,46.560186,49.509120,50.592807,52.218204,53.750721,55.384766,56.387573,57.339592,58.991948,60.036846,61.337164,61.940883,63.380520,64.587957,66.190134,66.886733,68.744329,70.880565,71.995123,72.854261,74.440274,75.856692,77.760728,79.548664,80.157629,80.738128,81.063207,81.899126,83.269103,84.267036,85.729893,86.848191,88.496808,88.949495,90.342692,91.364370,93.082647,93.872125,94.754484,95.613622,96.983599,98.167817,100.048633,104.920456,106.076664,106.378608,107.896063,109.033840,109.498239,110.589577,110.933781,111.698719,113.393776,116.296270,118.565885,120.701122,121.106269,122.021867,123.391844,124.506402,125.133341,126.456878,128.059055,129.777331,130.129015,133.655064,136.232479,137.811436,139.994111,141.480189,142.009693,143.355,145.235879,145.700278,146.907716,148.300913,149.601230,150.575723,150.947243,151.968921,153.013818,154.824975,155.244355,156.033834,157.473471,158.820228,159.036840,160.799780,161.996267,163.017945,164.434363,166.779578,167.638716,169.333773,170.076812,171.237809,171.527296,172.793546,173.387465,174.985292,175.988100,176.777578,177.938576,179.331773,180.167692,181.630549,183.673905,184.881343,185.075783,186.046130,187.473819,188.393918,190.599814,191.107098,192.918255,195.286690,197.004967,198.328504,200.836259,201.161236,201.989623,202.825626,203.615020,205.008217,205.827381,206.663299,208.776315,211.028650,211.678809,212.677267,213.397086,214.511644,215.463662,216.462120,216.926519,218.250056,219.573594,219.885623,220.459522,221.806279,222.920837,223.258203,225.513889,226.907865,228.295173,230.107344,231.546982,232.452560 diff --git a/data/torah/labels/shmini-4.txt b/data/torah/labels/shmini-4.txt deleted file mode 100644 index 071590882..000000000 --- a/data/torah/labels/shmini-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.366836,4.239016,4.819515,6.886090,7.753657,10.725811,11.492070,13.163906,15.300142,17.923997,18.890414,19.122614,21.119530,22.652047,24.091684,25.392002,26.715539,27.992636,28.952248,30.484765,31.970843,32.899641,34.083858,35.012657,36.893473,37.868711,39.563768,40.910525,41.526800,42.989657,43.758767,44.826885,45.569924,46.939901,48.216999,48.615228,49.126067,50.565704,52.585840,53.468198,55.372234,57.578130,58.460488,60.364525,61.780942,63.150919,64.404797,66.935772,68.189649,69.188107,70.186566,70.721751,71.952408,72.509687,73.461705,74.599483,75.783701,76.712499,77.339438,78.802295,79.729668,81.889124,83.189441,85.302457,85.935981,86.841559,88.327636,89.535074,90.509849,91.618483,92.640161,94.033358,95.306398,97.071115,98.278553,99.416330,99.948570,101.016688,102.595645,103.440478 diff --git a/data/torah/labels/shmini-5.txt b/data/torah/labels/shmini-5.txt deleted file mode 100644 index f84d70767..000000000 --- a/data/torah/labels/shmini-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.623179,4.471928,6.445624,7.610891,9.387682,10.446641,11.305779,12.455851,15.322528,15.897478,16.756617,17.406775,18.567773,19.496571,20.854391,22.008548,23.437149,25.644399,26.029065,27.190062,27.338761,28.671189,29.971506,31.432706,33.053798,33.895679,34.940577,35.947952,38.329217,39.468468,41.305799,42.615496,42.890257,44.013705,45.418062,46.498240,47.403819,48.020698,49.557801,50.598113,50.918351,52.037750,52.305415,53.551000,54.187475,55.232373,56.435995,57.855595,59.179766,60.841336,61.919720,62.593099,64.074362,65.449153,67.243277,67.840809,69.478003,70.348564,73.077378,74.502417,74.966816,76.081374,76.499333,78.004766,79.262508,80.679110,82.257882,82.977701,84.067834,85.601556,86.530354,87.668132,88.968449,89.573404,90.991822,92.824198,93.985196,95.471273 diff --git a/data/torah/labels/shmini-6.txt b/data/torah/labels/shmini-6.txt deleted file mode 100644 index 409146ee4..000000000 --- a/data/torah/labels/shmini-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.283433,5.326789,5.744748,6.443395,6.791694,7.813372,8.440588,9.810565,12.248661,12.689840,13.200679,14.245577,15.035055,16.242493,17.542810,18.657368,19.911246,20.679669,21.817447,22.723025,22.913754,24.272277,26.255864,27.625841,29.390557,30.923074,31.875093,33.361170,34.498947,35.334866,36.681623,37.517542,39.050059,40.187836,40.574553,41.418494,42.456359,43.865197,45.473147,46.657364,48.514961,49.884938,50.321037,53.060991,53.8,54.500628,56.242125,58.285481,59.725118,61.183850,62.461868,63.424731,63.796250,65.166228,66.053589,68.213045,68.659941,69.629462,70.587197,71.376676,72.653773,73.327152,74.488150,75.463388,76.020667,77.437084,78.551642,80.920077,81.363491,82.338729,83.360407,84.149885,85.496379,85.885713,87.511110,88.788208,89.299047,90.994103,91.862432,94.788147,95.177113,96.018804,97.974665,99.942977,101.360397,102.342064,103.670398,104.732328,105.823666,106.080857,107.148975,108.077774,108.460449,110.013875,110.931253,112.115471,112.974609,114.321366,116.504042,117.130981,118.663498,119.615516,120.248185,121.757482,122.448204,123.194337,124.610754,125.516332,126.574089,128.024087,128.669463,129.366062,131.014679,132.175676,134.242252,136.517808,138.886243,140.558080,141.254679,142.554996,144.830552,145.829010,146.156946,147.431186,148.704919,150.817935,152.211132,153.790089,155.060369,156.221367,157.359145,159.588260,160.493838,161.422637,162.444315,163.860732,164.743090,165.136015,166.414927,167.665634,169.012391,170.126949,171.775566,172.820464,174.120781,174.887122,176.001680,177.975376,179.206034,180.622451,180.920379,182.504983,183.544234,184.751671,185.959109,186.748587,187.445186,188.884823,189.622643,190.528221,192.115206,192.486725,193.662915,194.342287,195.665824,196.683938,197.337661,197.961956,198.973571,199.321870,200.622187,201.249126,203.455022,204.894659,206.334296,207.048965,208.072207,209.535064,210.487082,210.711129,211.508760,213.033124,214.426321,215.285460,216.841197,217.514623,218.983841,219.486998,220.835457,221.539877,222.365054,223.930785,224.865299,225.750038,226.121558,227.390834,227.878453,229.457410,230.463689,231.674130,231.952770,233.345967,233.763926,235.458983,236.666420,238.222157,239.452815,240.544153,241.286803,242.656780,243.080352,244.798629,245.843527,247.097405,248.072643,249.233640,249.495226,250.493684,251.376042,251.980855,253.372958,254.517442,254.868974,255.509069,256.670067,258.156144,259.526121,260.640679,261.801677,262.104366,263.090554,263.918755,264.499254,265.846011,267.099889,268.516306,269.630864,270.698982,270.976922,272.393339,273.042992,273.728780,274.704018,276.027556,276.700934,277.978032,279.371229,279.898263,281.059261,282.429238,283.265156,284.704794,286.121211,286.701710,287.700168,289.209465,290.718762,292.019079,293.087197,293.899896,294.619714,295.362753,296.500531,297.406109,297.747984,299.077945,300.213888,301.839285,302.285675,303.325362,304.602459,305.122662,305.354862,306.599376,307.451122,308.426360,310.098196,311.119874,312.095112,312.760546,313.000691,314.393888,315.848799,318.774514,319.533816,320.996673,322.222168,323.922194,326.176335,327.264614,329.238310,330.747607,332.140805,333.394682,334.439580,335.182619,336.157857,336.963197,337.799116,338.704694,340.074671,342.443107,343.348685,343.716376,345.497551,346.282406,347.350524,348.650842,349.010297,350.101635,351.146533,351.796692,352.888030,353.327382,354.325840,355.695817,356.410541,356.689181,358.012718,359.963195,360.079031,361.356128,362.517126,363.515584,364.607441,364.955221,366.162659,367.338322,367.895601,369.312018,370.635556,371.610794,373.120091,374.164989,375.233107,375.581406,376.695964,377.787302,379.250159,380.202177,382.106213,383.482301,384.503979,386.082936,387.383253,389.380169,391.052006,392.189784,393.118582,393.815181,394.952958,395.618889,396.570907,398.474943,399.728821,400.243272,400.482511,401.967806,403.755742,404.424061,405.654719,407.953495,409.137712,411.273948,413.386964,414.135019,414.529759,415.504997,416.119021,416.921414,417.349678,418.115937,419.552148,420.558461,421.242754,423.378139,424.121178,424.957096,425.700134,427.000452,428.811608,430.715645,431.781879,432.037299,433.244736 diff --git a/data/torah/labels/shmini-7.txt b/data/torah/labels/shmini-7.txt deleted file mode 100644 index 0aed9e7bf..000000000 --- a/data/torah/labels/shmini-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.835744,2.346583,3.298601,4.088079,4.738238,5.620596,5.965550,7.204717,7.740728,9.598324,11.897100,12.965218,13.963676,15.472973,16.378099,18.189256,19.094834,21.045310,22.415287,23.553065,25.573201,26.409120,27.667431,28.353727,29.491505,30.815042,32.301119,32.997718,33.856856,34.971414,38.338307,39.197446,40.149464,41.774861,44.212956,46.442072,48.322888,50.621663,51.480802,52.897219,53.779577,55.056675,55.630946,57.262571,57.958291,59.107194,61.146886,61.910370,62.723068,63.512547,64.897287,65.973862,67.297399,68.943772,69.954524,71.022641,72.740918,73.165714,73.589488,74.239647,75.261325,76.375883,77.792300,78.860418,79.742776,81.275293,81.894717,82.815868,83.257711,84.302609,85.381189,86.658286,87.842504,88.817742,89.263926,90.864974,92.330447,93.398565,93.647744,95.232941,95.969740,96.480579,97.316497,98.849014,100.242211,101.797948,102.591542,102.800522,104.124059,106.051315,107.621151,108.651950,109.693741,110.544529,110.799948,112.479126,114.025344,114.300705,115.693902,116.757107,117.848445,118.730804,118.963003,120.332980,121.377068,122.259427,123.373984,123.629643,124.883520,125.835538,126.346377,126.724070,128.237390,130.474471,131.242057,131.520696,133.262193,135.398429,136.304007,136.629086,138.417023,139.345821,139.704674,140.981772,142.374969,143.058968,143.894887,145.102325,145.497064,146.727721,147.388620,148.665718,149.072910,149.699849,150.860421,151.597685,153.060542,153.432061,155.916596,156.687236,157.546374,159.106917,160.054129,161.215127,162.352905,164.001521,165.325059,166.692752,167.900190,170.407945,172.822820,174.750076,175.864634,177.266752,177.858921,178.927703,179.926161,180.831739,182.091829,182.333083,184.619605,185.323545,186.043364,186.846503,187.125143,188.379020,190.399156,191.258295,193.046231,194.416208,195.437886,196.575664,197.852762,198.572580,199.338839,200.406957,201.776934,203.077252,203.518431,204.447229,205.585007,206.450662,207.286581,208.633338,209.817556,211.071433,211.930572,213.254109,214.438327,215.668984,216.316978,217.085402,218.081151,218.374699,219.880956,222.554291,223.088350,223.901048,224.760187,226.199824,227.291162,228.475379,229.915017,230.770277,232.167352,233.490890,233.908849 diff --git a/data/torah/labels/shmini-h.txt b/data/torah/labels/shmini-h.txt deleted file mode 100644 index 36b28062e..000000000 --- a/data/torah/labels/shmini-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.879944,3.025641,4.999337,5.495023,5.796882,6.377381,7.817018,8.745816,10.046134,12.437789,13.947086,15.967222,16.572800,17.501599,19.018769,20.241553,21.820510,23.910306,25.351557,27.161100,27.973798,29.391829,30.808247,31.574505,32.241043,33.989380,34.600494,36.262035,38.497080,39.244485,40.867898,42.580736,45.243991,45.588647,46.573309,47.966506,48.283234,49.780872,51.220510,53.565725,54.517743,55.794841,56.468219,58.349036,59.416681,61.506949,62.249988,64.711303,66.104500,66.466472,67.510885,69.119282,71.773397,72.795075,74.072173,75.488590,76.835347,77.694486,78.259986,79.960294,82.090897,83.345156,83.887288,85.349467,87.773475,88.429563,89.027353,91.250403,92.827467,94.153872,95.584719,96.943038,97.569977,99.357913,101.145850,102.701586,104.257323,106.184580,108.529795,110.201632,110.652350,111.083814,112.890650,113.893287,115.564348,115.867228,116.621828,118.039608,119.877776,120.755083,121.115235,122.322672,124.319588,125.591105,126.316504,127.309381,128.609699,129.933236,131.628293,133.230470,133.690896,135.362733,137.198084,138.080443,138.869921,139.589740,141.308016,143.188833,144.337939,146.092553,147.410116,148.617554,150.846669,151.682588,153.656284,156.117599,157.278597,158.184175,159.784814,160.877690,161.883258,162.417317,163.717634,165.343031,167.130968,167.356811,168.568331,169.174090,170.792931,172.766873,174.427490,175.144977,175.980895,176.863254,178.256451,179.076538,179.564157,181.398533,182.443431,184.556447,184.829848,185.268502,186.521798,186.861985,187.119542,188.768159,190.532875,191.600993,192.203407,192.619034,193.524613,195.173229,197.495225,198.447243,200.281620,201.256858,202.580395,204.484431,205.715089,206.411688,208.385384,210.266200,212.518536,212.841017,213.361086,214.329692,214.823943,215.043709,216.320806,218.851781,219.850239,222.659854,224.308471,225.446248,227.071645,227.483693,228.287892,229.059931,230.011949,230.615668,230.917527,231.274914,232.124965,233.504760,234.108478,235.942855,237.034193,238.891789,240.470746,240.946183,241.436133,243.363390,244.385068,245.290646,247.078582,247.494849,248.284327,250.165144,253.067638,254.182196,256.179112,257.015030,257.615700,258.498058,259.058837,260.777114,261.752352,262.704370,264.260107,266.605323,267.673441,268.270564,268.973758,269.707191,271.425468,273.213404,274.467282,275.256760,276.348098,277.787735,278.303928,279.186286,280.372790,281.508282,281.782748,282.235489,283.837666,285.021884,285.420950,286.767708,288.880723,290.157821,291.295599,292.177957,292.668062,294.223799,295.117770,295.396410,296.975367,298.972283,299.761761,301.967657,303.221535,303.579657,304.496797,305.518475,306.679473,308.444189,309.907046,310.951944,312.039406,312.786321,314.556443,316.728720,317.157032,317.633090,319.513906,320.976763,321.812681,323.159439,324.622296,325.760074,326.712092,327.298480,328.035629,329.731770,330.943290,331.988911,334.078707,334.798526,335.799812,337.352721,339.316715,340.338393,341.429731,342.474628,344.610864,346.243947,346.546826,347.490139,348.627916,349.185195,350.926692,352.339239,352.664951,354.220688,354.864097,355.630356,358.463190,359.239072,359.471272,360.910909,362.861385,363.455732,364.068823,364.927961,366.869065,367.704984,369.111402,370.852898,372.106776,372.311486,372.989134,373.495703,374.981781,376.291721,377.137696,377.896960,378.105939,379.893876,382.401631,383.446529,383.644392,384.584307,385.918346,386.963244,388.960160,389.596722,390.270101,391.965158,392.626348,394.496133,395.564250,396.794908,397.584387,398.768604,399.929602,401.137040,402.449079,403.308217,404.135784,405.806846,406.944526,409.289742,409.577178,410.976692,411.770446,413.447140,414.599057,415,415.643954,416.851392,417.518460,418.563358,420.026215,420.955013,422.789390,423.357849,423.593207,424.727826,425.266697,426.868874,428.424611,428.889010,430.235767,432.334947,432.930263,433.878735,434.830753,435.782771,437.384948,438.008735,439.192952,440.771909,441.723927,442.838485,444.835401,446.553678,446.800073,447.771378,448.126478,448.665201,449.245700,450.801437,451.521255,452.101754,453.309192,455.259668,455.552258,456.196636,457.009334,458.750831,460.863847,461.823790,462.241749,462.961568,463.669973,465.016730,466.496787,467.541685,467.843545,468.981323,470.258420,471.767717,472.603636,473.253794,474.275472,474.855971,476.667128,477.804905,478.965903,480.057241,480.758715,482.314452,483.707649,484.543568,484.689159,485.687617,487.336233,488.079272,489.356369,489.934349,491.490525,491.978047,492.883625,493.951743,495.855779,496.544562,497.891320,499.029098,499.417623,500.413846,500.805963,501.570813,502.708591,504.004103,505.397300,505.840766,506.872888,507.128307,508.219645,509.334203,509.891482,511.447219,513.490575,514.256833,514.516780,515.213379,517.094195,517.984039,518.657417,519.725535,520.979413,524.276647,526.691522,527.042359,527.752851,528.635209,529.842646,530.933984,531.746683,533.232760,534.791906,536.170532,537.298499,539.094890,540.066485,540.494404,543.752974,544.327595,544.791994,546.928230,547.926688,549.575305,549.925457,550.702257,551.979354,553.163572,553.999490,555.601667,557.621803,557.852555,558.313409,558.499168,559.636946,561.633862,563.909418,564.287550,565.309228,566.238027,566.636073,568.202693,570.858798,571.492595,573.779861,574.774676,576.841252,577.746830,578.652408,580.138485,581.488310,582.463548,583.926405,584.213551,585.412482,586.942383,588.939299,590.396478,591.461780,591.848213,592.824569,593.164174,594.407026,595.782590,597.663407,598.592205,599.846082,600.983860,602.284178,602.595228,602.793666,604.109627,605.937351,607.148237,608.053816,609.112367,609.981072,610.652512,611.906390,612.360493,613.740766,615.236661,617.651536,618.812534,620.019971,621.482829,622.968906,624.060244,624.870525,625.868984,627.192521,627.841226,628.653925,629.164764,630.093562,631.951158,633.181816,634.714333,635.886659,637.535276,638.510514,639.741171,641.180808,641.618157,642.639835,643.893712,645.400342,646.166600,646.754436,648.418936,649.699876,650.489354,651.580692,652.314165,652.917884,653.498383,654.061784,655.176342,657.242918,658.612896,660.261512,661.817249,662.137238,663.275649,664.892836,665.171476,666.146714,667.330932,668.213290,669.025988,670.651385,672.648301,673.145356,675.025300,675.589477,676,676.773695,678.282992,680.526879,680.936680,681.373196,682.510974,682.928933,684.322130,685.552788,686.311134,687.062085,688.029411,689.260068,689.794127,690.212086,691.512404,692.557302,695.320476,697.085193,698.176531,699.569728,700.986145,701.428266,702.403504,704.400420,704.613533,705.226482,706.526799,707.571697,708.825575,709.986573,711.124350,711.664829,712.663287,714.358344,715.960521,717.376938,719.791813,720.185738,721.068911,723.266757,724.666271,725.374335,726.303133,726.671545,728.149994,729.449685,730.941349,732.009467,733.472324,734.958401,736.746338,738.487834,739.277313,740.290697,740.729350 diff --git a/data/torah/labels/shoftim-1.txt b/data/torah/labels/shoftim-1.txt deleted file mode 100644 index 39fb60863..000000000 --- a/data/torah/labels/shoftim-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.919414,3.151501,5.705696,6.499604,7.444077,8.012793,9.235129,10.628327,12.787783,14.761479,15.690449,16.665390,18.314132,19.637669,19.844102,20.775447,21.866785,22.981343,24.099311,25.303338,26.301796,27.430358,28.364676,29.288839,30.172379,31.177987,32.292544,33.128463,35.404018,36.913315,38.143973,39.467510,40.953587,41.766286,43.252363,44.413361,45.202839,46.154857,47.524835,48.616173,50.357669,50.646130,51.611547,52.291342,53.042859,54.320402,55.202761,56.410198,57.155889,57.989155,59.869972,61.286389,61.695456,62.377727,64.513963,66.998498,68.043396,69.065074,69.854552,70.886302,71.665709,72.521358,73.303342,74.227504,75.357681,76.565119,77.493917,78.445935,79.862353,80.808353,82.904167,84.393290,86.224620,87.074377,89.266434,90.473872,91.502232,92.334993,93.259156,94.325497,95.229348,95.879308,97.980004,100.069800,101.091478,102.185955,103.134834,104.074902,105.496691,106.963002,108.356199,109.633297,110.340926,111.050738,111.886657,112.875843,113.512053,114.895979,115.398430,117.460023,118.623880,120.801226,121.278541,123.105332,123.964470,124.432802,125.473767,126.638698,128.287314,131.050489,132.722326,133.952983,135.346181,136.762598,137.668176,139.966952,140.942190,143.240965,144.982462,145.652054,146.259559,147.466997,148.333141,148.546409,150.069753,151.433715,152.408953,153.871810,155.891946,156.913624,158.399701,159.398159,160.628817,161.952354,164.529769,165.582087,166.464445,168.414921,169.900998,170.360703,171.201316,174.684309,176.866985,177.276688,178.211006,179.769479,180.506178,182.263102,182.791195,183.705202,184.628133,185.556931,186.253530,187.460968,187.940100,189.550763,190.618881,190.864921,191.816940,193.303017,194.464014,196.042971,196.836432,198.272087,199.502745,201.847960,203.496577,204.425375,205.330953,206.143652,207.536849,208.837166,209.812404,210.424666,211.112722,211.855760,213.295398,214.943922,217.498209,218.274968,218.944207,220.457892,222.013629,223.174627,223.535585,224.405284,225.984241,227.382008,228.217926,229.912983,230.614060,232.954797,234.022915,235.648311,238.071796,238.880743,239.790073,242.019189,242.715787,243.342726,245.757601,246.564415,247.452658,248.839971,249.884869,250.651127,252.299744,254.018021,255.318338,255.982825,257.129495,258.154849,260.012445,261.103783,262.032581,263.007820,265.585235,266.006432,267.024872,268.394849,269.523338,270.684336,271.845333,272.704472,273.540390,274.260209,276.001705,277.418122,278.602340,279.554358,280.274177,281.551274,284.337669,284.926372,285.591547,286.793926,287.792384,289.110492,290.105744,290.867416,292.077663,292.983241,294.399659,295.071847,296.168655,297.789772,298.950770,300.042108,300.878026,302.085464,303.054173,303.646207,305.410924,306.502262,308.522398,309.274005,311.285572,311.970816,312.711145,313.547063,314.661621,315.647155,317.842755,318.602443,320.373730,321.109554,321.829372,322.688510,323.756628,325.265925,327.773680,328.372309,329.277887,331.715982,333.202059,333.991538,334.384293,335.407955,337.962150,339.099928,340.191265,340.518294,341.723782,342.629361,343.581379,343.981364,344.951356,346.337470,347.231166,348.206106,349.462793,350.205832,351.529369,352.852907,353.572725,354.547963,355.964381,356.985058,358.378255 diff --git a/data/torah/labels/shoftim-2.txt b/data/torah/labels/shoftim-2.txt deleted file mode 100644 index 651a2f41d..000000000 --- a/data/torah/labels/shoftim-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.237636,1.647080,2.614855,3.126660,5.546099,6.914013,8.119171,9.419488,10.650146,11.555724,13.250781,14.899397,15.456676,18.452050,19.775588,20.774046,21.609964,22.668284,23.673281,24.814318,26.579035,27.879352,29.179669,30.224567,31.130146,32.337583,34.171960,35.216858,36.238536,37.004794,38.537311,41.068286,42.624023,43.754626,44.536291,45.764622,48.034273,49.032731,50.263388,51.122527,52.120985,53.235543,53.702243,54.303660,55.609878,58.320713,58.848204,59.313481,59.667470,61.965559,62.616946,63.682301,64.245415,65.191598,66.478743,67.967629,68.721377,69.735681,71.269998,72.248175,73.206645,74.081365,76.528721,78.746823,79.675621,80.604420,81.765417,83.181835,83.814955,84.575032,85.710915,86.430733,87.289872,88.381209,90.068275,91.492683,92.171326,92.720352,93.436879,94.730348,96.461178,98.188762,99.256880,100.116018,101.253796,102.975052,104.272390,104.808243,105.682963,106.771710,107.786014,108.232679,109.209761,110.689341,111.822948,113.332113,115.306599,116.235397,117.419615,118.116213,118.524601,118.915434,119.788050,121.176679,123.293559,124.733196,125.075698,126.196053,127.217731,129.516507,130.073786,130.407770,131.977822,133.143597,134.930260,135.604165,136.463303,137.392102,139.133598,140.898315,141.462746,142.593372,144.577116,146.968771,147.706760,147.911481,149.043509,149.693668,150.619392,152.945776,153.987996,156.230630,156.751740,158.947846,159.617845,161.367285,162.670060 diff --git a/data/torah/labels/shoftim-3.txt b/data/torah/labels/shoftim-3.txt deleted file mode 100644 index fdbe05e49..000000000 --- a/data/torah/labels/shoftim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.330627,3.111602,4.339788,6.081284,6.558755,8.068052,9.995308,11.109866,12.479843,13.060402,13.873041,16.088751,18.190903,19.724529,21.466026,23.091423,23.404657,23.9,24.461400,25.423556,26.485039,28.035636,28.813213,29.927770,31.413848,32.040786,32.946365,36.522238,38.774573,39.819471,41.630628,42.745185,45.020741,46.878337,47.923235,48.782374,49.410988,49.943371,50.285150,50.802510,52.415597,53.808794,55.016232,56.409429,58.243806,59.683443,61.610699,63.027116,65.720631,68.019407,68.971425,70.085982,70.661590,71.688159,73.741841,75.292439,77.418597,78.463495,79.252973,80.135331,81.157009,82.431432,84.965082,85.470317,87.258253,88.070952,89.696349,90.2 diff --git a/data/torah/labels/shoftim-4.txt b/data/torah/labels/shoftim-4.txt deleted file mode 100644 index 745414976..000000000 --- a/data/torah/labels/shoftim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.219370,2.008848,3.657465,4.934563,6.188440,6.735173,7.953157,8.697608,9.254887,9.839192,10.671304,11.925182,12.466227,13.434479,14.572257,15.314809,16.336487,16.986646,17.493757,18.933395,21.301830,22.578928,23.484011,24.390084,25.411267,26.177526,27.547503,28.708501,29.730179,30.751857,32.191494,33.143512,34.095530,35.419068,36.603285,37.973263,38.532130,39.854079,41.536328,42.488346,43.184945,43.604228,44.880001,45.721660,46.302159,47.207737,47.881116,48.763474,49.489670,50.760391,52.212110,53.720789,54.543556,55.727773,56.543642,57.843960,58.819198,59.933756,60.424607,61.446285,62.351863,63.837941,64.929278,66.090276,67.228054,69.155310,70.525288,71.500526,72.929767,73.868961,75.753875,77.119755,77.572600,79.097619,79.910962,80.652737,81.953055,82.328398,82.972295,83.787431,85.110969,86.504166,87.479404,88.849381,89.824619,90.838357,91.743935,93.322892,95.087608,96.016406,97.247064,98.233775 diff --git a/data/torah/labels/shoftim-5.txt b/data/torah/labels/shoftim-5.txt deleted file mode 100644 index 7f0f942d4..000000000 --- a/data/torah/labels/shoftim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.418392,3.591438,5.750893,6.981551,8.049669,9.164227,10.232345,11.248381,12.322141,12.827338,13.895456,15.172553,17.401669,18.330467,19.166386,20.280943,21.116862,21.836680,23.044118,24.297995,25.760853,27.014730,28.477587,29.568925,30.335184,31.101442,32.007020,33.702077,35.350694,37.277950,38.044209,39.390966,40.784163,41.782621,42.873959,44.243937,45.010195,46.008653,47.123211,47.999496,50.048925,51.523601,52.061176,52.951420,54.042757,55.180535,55.907516,56.666612,57.672232,59.645928,60.301152,61.039126,61.787230,62.390948,63.737706,65.150449,66.009587,67.268582,68.570709,69.029730,70.376487,71.560705,72.379039,74.120535,75.165433,76.558631,77.696408,79.414685,80.482803,81.481261,83.640717,84.917814,85.800173,86.143292,86.723791,88.070548,90.624743,91.855401,92.853859,93.301395,94.044433,94.684920,95.739490,96.805123,97.919681,99.266439,100.589976,101.286575,102.772652,103.817550,107.370203,108.484761,110.504897,112.339273,113.987890,116.147346,116.940535,117.990811,118.362331,119.662648,121.032625,122.820562,123.981560,125.003238,125.908816,126.953714,128.091492,128.834530,129.902648,131.202966,132.108544,133.501741,134.685959,135.730857,135.970699,136.961514,138.052852,138.336030,139.132231,140.502209,143.102843,144.565701,146.446517,147.398535,149.813410,150.410710,151.160168,152.181846,153.249964,154.109102,155.255300,156.439518,157.159336,157.581224,158.436434,159.736751,161.129949,162.314166,163.335844,163.900719,164.707367,165.812098,166.743895,168.489063,169.742941,170.671739,171.066478,172.064936,173.342033,174.526251,175.547929,176.499947,177.475185,177.674592,178.543303,180.749199,182.049516,183.303394,185.811149,186.820301,187.702660,188.515358,189.351276,190.883793,192.114451,193.507648,194.552546,195.504564,196.526242,197.315721,198.592818,200.311095,203.051050,205.094406,207.044882,207.444314,208.507739,209.808056,210.945834,212.130052,213.035630,213.941208,216.200716,216.714501,217.617133,217.968843,219.033550,220.841652,221.607910,222.699248,223.457179,224.060898,225.012916,226.127474,227.348614,228.300632,228.565048,229.616307,230.220026,230.924487,232.890320,233.628030,234.185309,234.817577,235.624946,237.087803,239.679386,240.515304,241.072633,242.052214,244.532356,245.739794,247.504510,248.711948,249.849726,251.219703,252.752220,254.168637,255.585055,256.560293,256.841506,257.953490,259.136868,259.345847,260.112106,260.878364,262.666301,264.639997,265.454656,265.893664,266.497383,267.449401,268.772938,269.504390,271.521010,272.565908,274.168085,275.375522,277.743958,278.559546,281.134071,283.061327,285.638742,286.205061,286.869400,287.635658,288.750216,289.586134,290.932892,292.070670,292.503044,293.254887,295.010799,295.606655,296.104875,297.614172,298.542971,299.332449,300.493447,301.460252,302.798217,303.767460,304.765918,305.694717,306.716395,307.738073,308.487620,309.363469,310.420202,312.068818,313.229816,314.390814,314.780172,316.452628,317.571948,318.384646,319.661744,321.124601,322.076619,322.437633,323,323.655576,324.677142,325.373741,325.884580,327.742176,328.470421,330.435691,331.158298,331.504735,332.361029,333.777447,336.076222,337.422979,338.560757,340.627333,342.810009,344.899805,345.410644,346.919941,348.614998,349.775995,350.751233,351.299450,352.121211,353.885927,354.524747,355.255905,356.405563,357.334361,358.448919,359.238398,360.492275,362.001572,363.348329,364.555767,365.368466,367.017082,368.410280,369.431958,370.709055,371.777173,372.822071,373.704429,374.795767,375.886265,376.629304,377.999281,379.129558,379.555018,380.390936,381.683753,383.053731,384.330828,385.189966,386.304524,387.070783,388.347880,389.021259,389.810737,391.691554,392.274630,393.015091,393.676050,395.739004,398.395800,399.463918,400.299837,401.646594,403.016571,403.945370,405.222467,407.219383,409.193079,410.121877,411.004236,412.165233,412.750274,413.424325,414.376343,415.281921,417.371717,417.779589,419.577613,421.172909,422.705426 diff --git a/data/torah/labels/shoftim-6.txt b/data/torah/labels/shoftim-6.txt deleted file mode 100644 index 98d1e8680..000000000 --- a/data/torah/labels/shoftim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.923470,2.896726,3.918404,5.241942,5.938540,6.751239,7.633597,9.601786,10.768291,11.882849,13.657061,14.841279,15.979057,17.000735,18.068853,18.742231,20.274748,21.136872,23.177243,23.943501,25.383138,27.356835,28.178773,28.889352,29.606181,30.849068,31.801086,32.404805,33.380043,34.564261,35.469839,36.746937,37.815055,39.951290,41.576687,41.801900,42.087694,42.556863,43.915206,45.067810,46.864140,47.321355,48.016744,48.591347,49.502821,50.315520,51.476517,52.126676,53.426993,55.748989,56.213570,58.140827,58.864530,59.495482,60.323502,60.919167,62.064999,63.040237,64.247675,66.616110,67.637788,68.636246,69.611484,70.935022,72.902651,74.133308,75.212643,76.385644,76.773843,77.546641,78.591539,79.740052,80.622410,81.829848,84.021695,84.579844,85.542450,86.543499,87.263318,88.261776,89.562093,90.421231,91.976968,94.206084,95.134882,96.295880,97.047451,97.906589,99.485546,101.203823,102.202281,103.920558,105.011895,106.497972,107.728630,108.703868,110.120285,111.049084,113.301419,114.493412,115.658776,116.634015,117.795012,118.584491,119.397189,120.117008,121.603085,122.178077,123.132593,125.137662,125.485961,127.468361,129.547265,131.035530,132.126868,133.125326,133.914805,134.913263,135.589838,136.366394,137.490782,137.749634,138.558796,139.541583,140.493601,142.211878,143.001356,144.255234,147.064848,148.806345,149.220007,150.315642,151.573828,152.595506,153.454644,153.733283,154.894281,156.217818,157.216277,158.168295,159.189973,160.165211,161.507381,163.424502,165.157501,165.551941,166.527478,167.210211,167.967116,170.462037,170.850315,172.686545,173.317497,175.245058,176.591815,177.474173,179.076350,180.190908,181.235806,182.652223,183.952541,185.020659,186.669275,188.387552,189.527224,190.616668,191.501840,192.778018,194.287315,196.887949,197.390719,197.967319,199.914525,200.440318,201.952983,202.969715,203.666313,204.2,205.036290,206.081188,207.335066,208.867583,209.889261,210.957379,211.600919,212.280916,213.574615,214.596279,215.405191,217.314223,218.259780,219.781405,220.581775,221.191651,221.789213,223.002807,224.070925,225.139043,226.346481,227.600358,228.097021,228.900676,230.499490,231.179153,231.922191,233.477928,234.423648,235.878755,237.043588,238.138840,239.114078,240.042877,241.250314,242.388092,243.316890,244.268908,244.720164,245.522786,246.730223,247.567534,248.494940,250.073897,252.535212,254.880428,255.739566,256.028754,257.690042,259.919158,260.389257,261.056936,262.101833,263.007412,264.052310,265.253848,266.182646,267.088224,267.790335,269.572759,270.265606,271.001716,271.996678,273.654948,275.950143,276.902161,277.854180,278.666878,278.953322,279.734996,282.335631,283.543068,284.750506,285.732005 diff --git a/data/torah/labels/shoftim-7.txt b/data/torah/labels/shoftim-7.txt deleted file mode 100644 index 7b9b27000..000000000 --- a/data/torah/labels/shoftim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.655808,2.723926,2.920204,3.815264,5.244955,6.382732,7.659830,8.588628,10.051485,11.650951,11.985442,12.974489,14.251586,16.008601,16.638861,18.825917,19.306961,19.986915,20.9,22.587550,24.073627,26.070543,27.185101,29.112357,30.063396,30.760974,31.817619,33.059750,34.406507,35.265645,36.565963,38.052040,39.398797,41.929772,43.160430,44.112448,45.273446,46.596983,46.880830,47.122430,48.059840,48.991091,50.453948,51.744336,54.238801,55.283699,57.605694,59.741930,61.065467,61.947826,63.875082,64.370542,65.314719,66.317708,67.060747,68.662923,69.076482,70.009681,71.054579,72.099477,73.887413,74.955032,75.953490,76.812628,78.066506,79.134623,79.647152,81.110009,82.224567,83.223025,84.198263,86.218399,86.818847,87.495497,88.162852,88.911914,90.046421,92.229096,93.529414,94.922611,95.921069,97.174947,98.475264,99.520162,100.472180,101.284879,102.190457,103.068498,104.024833,104.381539,106.360210,106.850057,107.567648,110.237943,111.946855,113.456152,114.965449,116.335427,117.658964,119.005722,120.259599,121.304497,122.256515,123.672932,125.928120,127.274878,127.653605,128.714515,129.836281,131.066938,132.506576,133.992653,135.060771,136.082449,137.289886,139.147483,139.913741,141.539138,142.354697,143.303854,144.108920,145.884152,147.100984,148.517402,150.746517,151.768195,153.857991,154.613251,155.553048,155.880402,156.902080,158.132738,159.200856,160.431513,161.360312,162.823169,164.193146,165.493463,165.905407,166.956321,167.730392,168.914610,169.704088,170.981186,171.863544,173.237431,174.742818,177.436333,178.195475,179.004308,181.147192,182.029556,182.564167,183.330425,184.537863,185.582761,186.557999,187.533237,189.042534,190.714371,193.082806,193.458268,194.476004,195.191483,196.078181,197.842897,199.491514,200.907931,201.494082,203.111749,204.014566,204.943364,207.404680,209.030076,211.375292,212.629169,214.556426,215.647764,216.762321,218.109079,219.386176,220.477514,221.105668,221.963591,222.450222,223.668725,224.816455,225.977453,227.509970,228.996047,229.561655,231.305374,232.576398,233.384618,234.801035,236.403212,237.378450,238.910967,239.257152,240.664733,243.994606,246.180042,247.099460,248.655197,249.700095,252.091750,253.345627,254.005233,254.994244,256.074587,257.419141,257.723767,258.805713,260.969591,264.290045,266.519160,267.773038,268.748276,269.236514,270.234353,270.780650,271.876966,273.037964,275.127759,275.570625,276.729936,277.565855,278.401773,279.632431,280.496044,281.047244,281.448062,282.347562,283.886158,285.667488,288.964722,289.775242,291.751116,292.995646,294.783583,296.896599,298.080816,299.125714,301.192290,302.678367,303.444626,304.350204,305.123729,305.836281,306.656246,307.212984,307.654163,308.072122,308.954480,311.833755,313.157292,314.318290,315.270308,316.663505,317.035089,318.196022,319.821483,320.140503,321.347938,322.306049,323.484174,324.442285,326.021241,328.064597,329.272035,331.594031,332.997804,334.426865,334.799003,335.797461,336.958459,338.305216,338.955375,340.000273,342.461588,343.901225,345.108663,345.807556,346.780500,347.987937,348.670264,349.638849,350.753406,351.589325,352.727141,353.702379,354.747277,356.161492,357.229610,358.646027,361.293102,363.382898,364.334916,365.472693,366.889111,367.756636,368.639000,370.204145,371.391135 diff --git a/data/torah/labels/shoftim-h.txt b/data/torah/labels/shoftim-h.txt deleted file mode 100644 index f18ca38f9..000000000 --- a/data/torah/labels/shoftim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.247079,5.338733,5.896012,8.055468,8.649502,9.262905,10.516783,12.258280,13.465717,14.395713,15.137554,16.067550,17.669726,19.898842,21.036620,23.428275,24.370080,26.028910,26.784955,27.793627,29.571350,31.568266,32.087599,33.843821,35.306678,36.630216,38.046633,39.300511,40.206089,42.226225,43.735522,44.571182,45.871758,47.105873,48.007994,50.333446,51.304573,52.465570,53.696228,54.462487,55.437725,57.225661,59.036818,60.337135,61.660672,63.239629,64.493507,65.840264,67.465661,68.580219,69.346477,70.782141,72.365072,73.409969,74.431647,75.662305,76.405344,78.448700,79.679357,80.817135,82.581852,83.348110,84.973507,85.693326,86.622124,87.667022,89.176319,91.521534,92.728972,95.213507,96.351285,98.139221,99.039773,99.973598,100.450618,101.2,102.824096,103.782616,105.657460,107.213197,109.465533,110.533650,112.344807,113.322173,114.945442,115.897460,116.773190,117.469788,119.095185,120.163303,120.883122,122.067339,123.204058,123.922948,125.646002,126.583823,127.419741,129.254118,130.647315,131.451258,132.458471,134.502493,136.290430,137.404987,138.612425,139.351087,140.864761,143.344919,144.854216,147.199432,148.462998,148.811961,149.461456,150.599898,152.062755,153.572052,153.830392,154.895589,155.920188,157.220505,160.285539,161.200275,161.841276,162.491435,164.427849,165.821046,166.564085,167.701863,168.409211,169.907758,170.940186,173.331842,174.608939,175.816377,177.418554,178.649211,180.367488,181.691025,182.047290,182.461136,184.198780,184.731916,186.064342,187.643299,188.873957,189.456051,190.208510,191.183748,192.762705,194.109462,194.667140,195.827739,196.855257,197.505416,198.364554,199.502332,201.220608,202.892445,203.914123,205.237661,207.095257,209.603012,210.810450,212.459067,213.248545,214.293443,216.360019,219.425053,220.307411,222.884826,224.463783,225.648001,226.901878,227.602866,228.139711,230.252727,230.9,231.475424,232.009483,232.891842,234.331479,236.885674,238.603950,239.695288,240.159687,242.203043,244.269619,245.732477,247.264994,248.449211,248.804416,250.004948,251.143662,251.816105,252.837783,254.184540,255.331481,257.319234,258.583603,259.687669,261.731025,262.372039,262.965409,263.913447,265.236984,266.374762,268.418118,269.240371,269.936970,270.819328,271.637733,272.955564,274.488081,275.625859,277.344135,278.830213,279,279.3,279.851891,280.2,281.361188,281.941824,282.684725,283.427764,285.192480,286.701777,288.118194,288.799143,289.952571,291.028258,291.264572,291.933836,292.883866,294.369943,296.502995,297.594333,298.290931,299.684129,300.961226,302.424083,303.561861,304.121664,304.4,304.771823,305.956040,307.767197,308.540755,309.396576,309.784549,311.701589,312.728707,314.934603,317.140498,319.067754,320.693151,321.320090,322.597188,324.060045,325.197822,325.940861,326.604293,326.916099,328.309296,329.622092,331.433248,332.663906,333.383724,334.300582,335.949199,336.692238,337.737136,338.596274,339.873372,340.941489,341.823848,343.333145,344.912102,345.864120,347.210877,348.487975,350.531331,350.989499,351.669108,352.930290,354.114508,355.298725,357.318861,358.294099,359.385437,359.718878,360.476775,361.777093,363.170290,363.724123,365.287423,366.839313,367.010477,368.278680,369.044938,370.000147,372.109972,373.224530,374.199768,375.267886,376.266344,377.636322,378.261677,379.935097,382.159313,383.506070,385.549426,386.780084,387.550325,389.245381,389.706862,390.290279,391.520937,392.751595,394.716271,395.092832,397.021283,397.700500,398.327439,399.465217,400.951294,402.762450,403.456529 diff --git "a/data/torah/labels/sh\342\200\231lach-1.txt" "b/data/torah/labels/sh\342\200\231lach-1.txt" deleted file mode 100644 index 85aa530ee..000000000 --- "a/data/torah/labels/sh\342\200\231lach-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.416417,2.716735,3.065034,3.848345,5.032562,5.729161,6.588299,8.376236,9.653333,10.140952,11.092971,11.905669,12.579048,13.298866,14.227664,15.086803,16.201361,17.037279,18.569796,19.359274,20.729252,21.983129,23.028027,24.142585,25.024943,25.884082,26.859320,27.973878,28.809796,30.713832,31.851610,32.826848,33.175147,33.755646,34.568345,36.193741,37.168980,38.097778,38.492517,39.235556,40.094694,41.069932,42.045170,43.554467,44.413605,45.319184,45.690703,46.456961,47.641179,48.686077,49.521995,50.079274,50.868753,52.215510,53.074649,53.933787,54.374966,55.164444,56.627302,57.532880,58.415238,58.856417,59.436916,60.644354,61.317732,62.292971,62.581196,63.312040,64.591746,65.503904,66.316602,66.664902,67.407940,68.661818,69.544176,70.519414,70.821274,71.587532,72.678870,73.305809,74.188167,75.000866,75.860004,76.231523,76.951342,78.228439,79.014834,79.920412,80.219188,81.147986,82.494743,83.237782,84.189800,84.465355,85.347714,86.624811,87.553609,88.250208,88.714607,89.504085,90.990163,91.686761,92.638779,93.010299,93.799777,94.751795,95.750253,96.841591,97.561410,98.165129,99.024267,99.906625,100.205401,101.087759,102.062997,103.897373,104.802952,105.174471,105.731750,106.753428,108.123405,108.959324,109.818462,110.816920,111.211659,111.861818,112.628076,113.812294,115.623451,116.505809,117.039868,117.899006,119.268983,119.686943,120.476421,121.799958,122.098734,122.772113,123.047668,123.697827,124.089482,124.739641,125.923859,126.852657,127.967215,128.451750,129.543088,130.541546,131.098825,131.420820,132.024539,133.162317,134.666988,135.307895,135.749074,136.814108,137.394607,138.625265,139.159324,139.667079,140.479777,141.547895,143.312612,144.032430,144.496829,145.611387,146.609845,148.281682,148.815741,150.348258,151.207396,152.461274,153.622271,155.340548,155.804947,157.244584,158.080503,158.309618,159.191977,159.374652,160.210571,161.696648,162.973745,163.693564,164.483042,166.270979,167.176557,168.244675 diff --git "a/data/torah/labels/sh\342\200\231lach-2.txt" "b/data/torah/labels/sh\342\200\231lach-2.txt" deleted file mode 100644 index 30375fccb..000000000 --- "a/data/torah/labels/sh\342\200\231lach-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.253878,2.414875,2.527891,3.340590,4.130219,4.524959,4.896478,5.593077,6.336115,7.241693,8.449131,10.655027,11.560605,11.978564,13.162782,14.254120,15.206138,16.599335,17.667453,18.665911,19.710809,21.707725,22.357884,23.147362,24.285140,25.097839,26.049857,27.025095,28.998791,29.439970,30.017385,31.712442,32.797612,33.865730,34.840968,36.001966,36.930764,37.998882,39.368859,40.042238,41.133576,41.806954,42.642873,43.153712,44.152170,46.056206,46.915344,47.820922,48.703281,49.585639,50.375117,51.257476,52.418473,53.022192,53.881331,54.856569,55.924687,56.923145,58.130582,59.082600,59.779199,60.777657,61.845775,62.681693,65.862827,67.581104,67.975843,68.602782,69.113621,70.367498,70.901557,71.296297,72.271535,73.014573,74.152351,74.802510,75.406229,76.242147,77.333485,78.540922,79.632260,80.235979,80.839698,81.327317,82.465095,83.695752,84.229811,84.717430,85.599789,86.900106,87.364505,89.245322,90.638519,91.219018,91.845956,92.542555,93.889312,95.816569,96.675707,97.558065,99.229902,99.740741,100.483780,101.226818,102.503916,102.991535,103.757793,104.500832,105.592170,106.590628,108.680424,109.725322,110.584460,111.350718,112.000877,112.720696,113.672714,114.485412,115.228451,116.691308,117.457566,118.223825,119.036523,121.242419,122.589176,123.657294,124.934392,125.677430,126.861648,128.161966,128.579925,129.183644,129.926682,130.623281,131.737839,134.083054,135.262026,135.703206,136.260484,136.655224,137.235723,139.116539,139.929237,140.765156,142.274453,142.994271,143.597990,144.201709,144.991187,145.873546,148.265201,149.077899,150.053137,150.633636,151.724974,152.491233,153.327151,154.232729,154.604249,155.231187,155.742026,156.206425,156.879804,157.738942,160.014498,161.012956,162.081074,162.893772,163.799351,164.774589,165.308648,165.842707,166.934045,167.909283,170.649237,172.135314,173.319532,174.480530,175.478988,176.965065,178.033183,179.124521,180.169419,180.633818,181.423296,182.723614,183.536312,184.186471,185.045609,185.951187,186.926425,187.832004,189.364521,190.037899,191.658670,192.494589,193.376947,193.818126,194.746924,195.838262,197.022480,198.206698,199.181936,200.203614,201.387831,202.595269,202.990008,204.568965,205.892503,206.333682,206.960620,208.144838,208.887877,209.863115,210.652593,212.069011,212.319804,213.411142,213.756357,214.452956,215.265655,215.869373,217.030371,218.261029,219.561346,220.072185,221.488602,222.022661,222.672820,223.903478,224.878716,226.596992,227.618670,228.477809,228.942208,229.801346,231.194543,232.936040,234.027378,235.350915,235.861754,236.558353,237.394271,238.485609,239.414407,240.389645,241.388103,242.224022,243.083160,245.242616,247.660581,248.405018,249.310596,250.262614,251.539711,252.073770,252.326106,253.022705,254.299802,255.089281,256.250278,257.248736,258.525834,260.104791,261.056809,261.451548,262.264247,264.168283,264.702342,265.329281,266.165199,266.931457,268.046015,269.462432,269.690006,270.897444,271.779802,272.197761,272.917580,273.567739,274.333997,274.705516,275.309235,276.377353,277.468691,279.349507,279.790686,280.185426,280.673045,280.995040,281.854179,282.802584,284.338714,285.244292,286.289190,286.800029,287.991457,288.723672,289.579727,290.415645,291.599863 diff --git "a/data/torah/labels/sh\342\200\231lach-3.txt" "b/data/torah/labels/sh\342\200\231lach-3.txt" deleted file mode 100644 index e9856a382..000000000 --- "a/data/torah/labels/sh\342\200\231lach-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.603719,1.230658,1.996916,3.274014,4.435011,5.456689,6.013968,7.058866,8.196644,9.264762,10.031020,11.772517,12.445896,13.827800,14.897969,15.757108,16.848445,17.800464,20.029579,20.865498,22.746314,24.371711,24.859330,25.625588,26.066767,27.018786,28.040464,28.969262,30.107040,30.780418,31.778876,33.659693,35.563729,36.701507,37.676745,38.234024,39.371801,40.579239,41.066858,42.645815,43.806813,44.758831,46.059148,47.127266,49.031303,50.192300,51.515838,52.537516,53.071575,53.275928,53.926087,55.087085,56.330169,57.235747,57.630486,58.396745,59.023683,59.627402,60.881280,61.786858,62.692436,63.389035,63.992754,64.550033,65.780690,66.546949,67.545407,68.613525,69.658423,70.540781,71.748219,72.885996,73.884454,75.184772,76.554749,77.390668,78.180146,78.923185,79.944863,81.082640,82.313298,83.242096,83.706495,84.426314,86.353570,87.375248,88.071847,89.859783,91.647720,92.112119,92.739058,93.644636,94.805634,97.104409,97.684908,99.379965,100.308763,101.609080,102.700418,103.095157,104.093615,105.161733,106.229851,107.205089,108.087448,108.923366,109.550305,110.711303,112.522459,113.637017,115.424953,117.468309,118.815067,119.813525,121.206722,122.878559,123.969897,124.991575,125.990033,126.942051,128.056609,128.753207,129.798105,132.491620,132.932799,133.536518,134.349216,135.254795,136.183593,137.437470,138.459148,139.132527,140.014885,140.358559,141.264137,142.332255,144.375611,145.583049,147.579965,148.787402,149.298241,150.389579,151.109398,151.637289,152.380327,152.908219,153.511937,154.371076,155.857153,157.180690,159.827765,160.686903,161.151303,162.010441,163.055339,164.053797,165.214795,166.306132,168.395928,169.115747,169.974885,170.416064,171.112663,172.227221,173.318559,174.317017,175.524454,176.383593,177.776790,179.611166,180.516745,181.352663,181.770622,182.536881,183.024500,183.906858,184.394477,185.392935,186.298513,187.645271,189.595747,190.779965,191.662323,192.730441,193.705679,194.959557,196.027674,197.327992,198.071030,199.232028,199.835747,200.671665,202.250622,203.156200,204.108219,205.292436,206.569534,206.964273,207.707312,208.961189,209.797108,210.470486,210.911665,211.306405,211.910123,212.676382,213.326541,214.905498,215.996835,216.414795,217.064953,217.575792,218.806450,219.874568,220.524727,221.453525,222.568083,224.170259,225.749216,226.933434,228.117652,229.069670,230.161008,231.089806,232.181144,232.664137,233.314296,233.520191,234.495430,235.493888,236.445906,237.676563,238.373162,239.325180,240.184318,241.298876,242.715293,244.340690,245.455248,246.918105,247.777244,248.659602,249.518740,250.679738,251.840736,254.253769,254.718168,255.391547,255.992182,256.688780,257.687238,258.825016,259.939574,262.168690,263.329687,264.328145,265.396263,267.114540,267.950458,268.925696,270.574313,271.851411,272.640889,273.128508 diff --git "a/data/torah/labels/sh\342\200\231lach-4.txt" "b/data/torah/labels/sh\342\200\231lach-4.txt" deleted file mode 100644 index cead8950b..000000000 --- "a/data/torah/labels/sh\342\200\231lach-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.532517,2.507755,2.879274,3.529433,3.993832,4.713651,5.688889,6.222948,7.732245,8.986122,9.868481,10.797279,12.817415,13.746213,14.698231,15.580590,16.323628,18.204444,19.319002,21.223039,22.337596,24.055873,25.936689,26.842268,27.956825,28.955283,30.882540,31.486259,31.973878,32.647256,33.274195,33.901134,35.178231,36.362449,37.384127,38.475465,39.241723,40.124082,41.145760,42.283537,44.025034,44.953832,46.579229,47.299048,48.343946,48.924444,49.783583,51.757279,52.662857,53.568435,54.682993,55.565351,56.749569,57.748027,58.514286,58.978685,60.418322,60.481814,61.457052,62.362630,63.337868,63.681542,64.471020,65.539138,66.653696,67.327075,68.348753,68.743492,69.625850,69.924626,70.760544,71.851882,72.246621,72.873560,74.452517,75.404535,76.402993,77.308571,78.214150,79.862766,80.698685,81.836463,82.161542,82.834921,83.833379,84.669297,85.412336,87.107392,87.920091,89.127528,90.172426,90.869025,93.260680,94.282358,95.304036,96.256054,97.579592,98.438730,99.576508,99.966621,101.197279,101.540952,102.242177,103.259229,104.304127,105.274739,106.644717,107.155556,107.945034,108.246893,110.313469,111.172608,112.426485,113.239184,115.096780,116.025578,117.929615,118.997732,119.346032,121.644807,122.805805,123.548844,124.802721,125.243900,126.381678,127.333696,129.609252,130.909569,131.548934,132.570612,133.499410,135.473107,135.983946,136.866304,137.818322,138.770340,140.163537,140.999456,142.346213,144.299688,145.298146,145.987035,147.124812,149.423588,150.236286,150.863225,151.722363,152.604722,152.976241,153.742499,155.739416,157.016513,157.736332,158.131071,158.502590,159.640368,160.917465,161.799824,162.310663,163.100141,164.330799,165.468577,166.722454,167.233293,167.906672,168.835470,170.182227,171.087806,172.225583,173.758100,174.176060,174.710119,175.708577,176.103316,176.892794,177.914472,178.309212,179.470209,180.143588,181.420685,182.256604,182.697783,183.347942,184.601819,185.368078,185.786037,186.877375,187.713293,188.317012,188.665311,189.152930,189.826309,191.358826,192.194744,193.402182,195.213339,196.072477,197.140595,197.488894,197.906853,198.417692,199.230391,201.134427,202.945583,203.549302,205.269941,205.868253,206.448752,207.447210,208.256825,209.278503,210.602040,211.530838,212.482857,214.270793,215.222811,216.128389,216.546349,217.080408,217.800226,218.938004,219.727482,220.424081,221.886938,222.513877,224.371473,224.951972,225.950430,227.134648,228.109886,230.083582,230.965941,232.428798,233.845215,235.145532,236.352970,237.003129,238.326666,239.719863,240.718321,241.252380,241.716780,242.065079,242.831337,244.503174,245.315872,246.012471,246.639410,247.591428,248.845306,251.004761,252.096099,252.514058,252.978458,253.814376,255.277233,255.741632,256.298911,257.320589,257.993968,258.435147,259.480045,260.617823,261.709160,262.754058,264.054376,265.261814,266.190612,267.072970,268.117868,269.139546,269.580725,270.625623,272.018820,272.994058,273.504897,274.062176,274.874875,276.059092,276.449206,277.424444,278.399682,279.557596,280.439954,281.415192,283.133469,283.574648,284.039047,285.780544,287.092743,287.766122,288.648480,289.925578,290.900816,291.945714,292.688752,293.942630,294.360589,294.941088,295.773922,296.493741,297.329659,298.351337,299.071156,300.394693,302.484489,303.181088,304.040226,305.131564,305.804943,306.594421,307.174920,307.732199,308.544897,310.565033,311.586711,312.631609,313.699727,314.674965,315.975283,316.950521,318.692018,319.806575,320.596054,321.548072,322.685850,323.521768,324.845306,325.681224,326.702902,327.027981,327.724580,328.351519,329.512516,330.534194,331.602312,332.461451,333.320589,334.713786,335.619365,336.548163,337.360861,338.405759,339.427437,340.379455,341.377913,342.376371,343.351609,344.303628,345.209206,346.114784,347.090022,347.670521,348.367120 diff --git "a/data/torah/labels/sh\342\200\231lach-5.txt" "b/data/torah/labels/sh\342\200\231lach-5.txt" deleted file mode 100644 index b2bb4714d..000000000 --- "a/data/torah/labels/sh\342\200\231lach-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.580499,1.486077,1.764717,2.600635,3.436553,3.688889,4.292608,5.035646,5.616145,6.034104,6.730703,7.798821,8.983039,9.493878,9.842177,10.376236,11.397914,12.373152,13.487710,14.532608,15.438186,16.390204,17.295782,18.271020,20.267937,21.150295,22.079093,22.984671,23.913469,24.842268,25.492426,26.096145,27.094603,27.976961,29.695238,30.786576,31.808254,32.644172,33.456871,34.292789,34.826848,35.407347,36.614785,37.288163,38.472381,39.865578,40.538957,41.514195,43.348571,44.254150,45.229388,46.529705,47.040544,47.690703,48.387302,48.967800,49.339320,49.780499,51.819214,52.701572,53.278987,53.901300,54.969418,55.474089,56.727966,57.633545,58.864202,59.607241,60.234180,60.977218,63.229554,65.412229,66.294588,66.851867,67.385926,68.477263,69.615041,70.613499,71.402978,72.424656,74.435716,75.434174,77.115532,78.030038,78.935616,79.794755,80.862873,81.559471,83.649267,85.576523,86.551762,87.364460,88.200378,89.384596,90.406274,92.147771,93.192669,94.051807,94.818065,95.746864,96.861421,97.859879 diff --git "a/data/torah/labels/sh\342\200\231lach-6.txt" "b/data/torah/labels/sh\342\200\231lach-6.txt" deleted file mode 100644 index 5f6cfeaeb..000000000 --- "a/data/torah/labels/sh\342\200\231lach-6.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.160998,2.089796,2.507755,3.111474,4.130068,5.035646,5.325170,6.323628,7.275646,8.390204,9.435102,10.944399,11.289615,12.264853,13.193651,14.981587,15.817506,16.789660,17.718458,19.529615,20.806712,21.781950,22.641088,23.685986,24.545125,25.566803,26.495601,28.678277,29.650431,30.323810,31.438367,33.063764,33.830023,34.642721,35.594739,36.384218,37.591655,39.507630,40.622188,41.501462,42.400873,44.600601,46.249218,47.294116,48.617653,49.546451,50.034070,50.565045,51.421100,52.346814,52.901009,53.620828,54.572846,54.755521,55.614660,56.797335,57.325227,57.975385,59.507902,61.388719,62.456837,62.964592,63.846950,64.261825,65.794342,66.607041,68.232438,70.229354,71.227812,72.760329,74.641145,75.105544,76.289762,78.588537,79.679875,81.119512,82.164410,82.439966,84.854841,85.806859,85.966315,87.336292,88.265091,89.565408,90.470986,91.350261,92.418379,93.765136,94.737290,95.776020,96.464909,97.068628,97.950986,99.297744,100.316338,101.988174,102.588809,102.726587,104.444864,105.347358,106.345816,107.274614,108.017653,108.644592,109.759150,110.525408,111.941825,113.033163,113.122959,114.539376,115.700374,117.441871,119.717426,120.506905,121.551803,122.109082,123.293299,125.231048,125.576264,126.249642,127.314676,128.243475,129.260527,130.026785,131.466422,131.927738,132.342613,133.271411 diff --git "a/data/torah/labels/sh\342\200\231lach-7.txt" "b/data/torah/labels/sh\342\200\231lach-7.txt" deleted file mode 100644 index a5b5f4759..000000000 --- "a/data/torah/labels/sh\342\200\231lach-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.671837,1.368435,2.250794,3.202812,4.178050,6.198186,6.964444,7.168798,7.981497,9.212154,10.187392,12.044989,12.532608,13.786485,15.853061,16.990839,17.826757,18.639456,19.730794,20.798912,21.750930,22.749388,23.678186,24.673560,25.997098,27.181315,28.272653,29.155011,30.246349,31.337687,32.150385,33.399451,34.397909,35.636424,36.750982,38.701458,39.351617,40.791254,41.720052,43.415109,44.088488,44.738646,45.244859,46.057558,46.356333,47.238692,47.881141,48.949258,51.201594,52.130392,53.059190,53.941549,54.707807,55.636605,56.207853,56.904451,57.810029,58.433884,59.382819,60.265177,62.305449,64.395245,65.556243,66.345721,67.344179,68.017558,69.062456,69.384451,70.266810,71.334927,73.610483,75.212660,76.350438,77.116696,78.022274,79.043952,80.831889,81.714247,82.921685,83.757603,84.709621,85.638419,86.146175,86.865993,87.164769,88.116787,88.883045,89.205041,90.296379,91.387717,92.270075,93.222093,94.197331,95.242229,96.078147,96.588986,97.349077,97.976016,99.206673,100.112252,100.437331,101.127762,101.914156,102.819735,103.655653,104.630891,105.513249,106.488488,106.833703,108.482320,109.295018,110.525676,111.776469,113.030347,113.326039,115.067535,115.644950,116.248669,117.409667,118.408125,120.196061,121.333839,122.239417,124.213113,125.049032,126.117150,126.511889,127.208488,129.019644,129.971662,130.247218,130.967036,132.011934,133.614111,134.030528,134.773567,135.702365,137.180732,138.109531,139.131209,139.943907,141.871163,142.239599,143.052297,144.043045,145.157603,147.270619,147.663816,148.476515,149.451753,150.239689,151.307807,152.422365,154.419281,156.485857,157.530755,159.365132,160.572569,161.083408,161.524587,162.290846,163.289304,164.519961,165.495200,166.493658,168.002955,169.071073,170.139190,171.671707,172.763045,173.459644,173.970483,174.945721,176.431798,177.778556,178.916333,180.146991,180.541730,180.936469,181.354429,183.181102,184.290704,185.707121,187.448618,188.748936,190.745852,191.721090,192.951747,193.694786,195.041543,196.109661,197.154559,198.153017,199.151475,200.242813,201.055511 diff --git "a/data/torah/labels/sh\342\200\231lach-H.txt" "b/data/torah/labels/sh\342\200\231lach-H.txt" deleted file mode 100644 index 6eae5184c..000000000 --- "a/data/torah/labels/sh\342\200\231lach-H.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.181134,4.202812,4.829751,5.921088,6.478367,8.528185,9.874942,10.989500,12.150498,13.265056,14.472493,16.794489,17.862607,18.184602,19.206280,19.786779,21.203196,24.570090,26.358026,27.101065,28.122743,30.328639,31.303877,32.534534,33.715668,34.783786,36.943242,37.848820,39.265237,40.542335,41.703332,43.468049,44.536167,46.091904,48.204920,49.180158,50.457255,51.429410,51.704965,53.121382,54.793219,55.814897,56.906235,57.463514,58.554852,60.040929,61.805645,63.198843,64.336620,65.335078,65.915577,66.728276,67.889274,69.793310,70.698888,70.904784,71.133899,71.993038,72.875396,74.941972,77.008548,77.469863,78.027142,79.463695,81.507051,82.737709,84.339886,85.384784,86.336802,87.660339,88.565917,89.843015,90.771813,91.793491,93.029512,94.492369,97.069784,98.277221,99.809738,100.947516,102.085294,103.223072,104.198310,105.289648,106.868605,107.913503,109.956859,111.466156,112.302074,113.579172,114.902709,115.780441,117.127199,118.682936,120.470872,121.446110,122.839308,123.744886,124.229421,125.111779,127.805294,128.943072,130.336269,131.450827,132.588605,133.679942,135.560759,137.139716,138.184614,140.878128,143.037584,144.198582,145.661439,147.008196,148.939304,150.146742,151.865018,154.070914,155.046152,156.300030,156.741209,157.670007,158.738125,159.083340,161.057036,163.077172,163.796991,165.329508,167.674723,168.998261,169.369780,170.553998,171.320256,172.341934,173.619032,174.687150,175.778488,177.728964,178.143839,178.979757,180.094315,181.394633,182.638293,184.681649,185.842647,186.516026,187.166184,188.652261,189.093440,189.720379,190.246728,190.896887,192.173985,193.845821,195.587318,196.678656,199.372171,201.299427,202.158565,203.760742,204.828860,206.102874,207.124552,208.680289,209.678747,210.700425,212.023962,213.068860,214.972896,216.296434,217.387772,218.037930,218.688089,219.477567,221.288724,222.403282,224.121558,224.864597,226.373894,227.650991,228.556570,229.601468,230.971445,231.900243,232.643282,233.455980,234.663418,237.093022,238.018736,238.552795,239.435154,240.526491,241.060550,241.873249,243.103906,244.381004,245.750981,246.117875,247.325312,247.833067,248.529666,249.455380,250.357875,251.681412,252.633430,253.260369,254.398147,257.109205,257.573604,258.293422,258.731518,260.519454,260.935871,261.725350,262.090701,263.344579,264.691336,265.200633,265.874012,267.174329,268.474647,268.748661,270.002538,271.344670,273.898865,274.567617,276.819953,278.073831,279.350928,280.349386,281.301404,282.369522,283.553740,283.994919,285.132697,286.270475,288.406710,289.219409,290.032107,290.868026,291.285985,292.121903,293.747300,294.768978,295.651336,296.742674,298.344851,299.529069,300.295327,301.665305,302.710203,303.592561,304.799998,305.937776,307.354193,308.027572,309.397549,310.721087,311.719545,313.043082,313.902221,314.645259,315.481178,316.781495,318.430112,320.009069,321.704125,322.911563,324.769159,325.721178,326.951835,328.252153,329.844422,330.866100,332.166418,333.884694,335.045692,336.415669,337.971406,339.085964,340.734581,341.872359,342.731497,344.240794,346.365866,347.457204,348.594981,349.895299,350.452578,353.009073,354.532646,355.637952,357.170469,359.538905,360.816002,361.837680,363.416637,364.136456,364.794430,365.381071,365.715413,367.028438,367.522316,369.403132,370.353608,370.861364,371.557962,372.602860,373.972837,375.180275,376.573472,379.561083,380.327284,380.791683,382.138441,383.369098,385.203475,387.479030,388.454268,389.893906,390.915584,391.960482,393.376899,394.558033,395.649371,396.508509,397.437307,398.714405,399.898622,400.238057,401.004316,401.463874,402.185450,402.903512,404.041289,404.293625,405.521199,406.241017,407.843194,408.888092,410.443829,411.163648,412.672945,413.787503,415.598659,415.943874,416.710133,418.707049,420.402106,422.491902,422.857253,423.577072,424.711766,425.919203,427.275214,428.645191,429.643649,431.060066,431.543059,432.801014,433.799473,434.270130,435.152488,436.612262,438.725278,440.861513,441.534892,442.324370,443.386821,444.669586,446.942485,447.964163,449.148381,450.704118,452.027656,453.397633,454.605071,455.089606,456.320263,456.801715,457.684073,458.845071,459.518449,460.722803,461.044798,462.391556,463.436454,464.690331,464.873007,466.034005,466.400898,468.003075,470.190467,471.371601,471.693597,471.967610,473.288064,473.868563,475.935139,476.326794,477.209152,478.230830 diff --git a/data/torah/labels/tazria-1.txt b/data/torah/labels/tazria-1.txt deleted file mode 100644 index 092cbd6d3..000000000 --- a/data/torah/labels/tazria-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.826794,2.876004,3.320926,4.063965,5.248182,7.430858,8.034577,8.731175,9.613534,10.426232,11.401470,11.842649,12.632128,13.746686,14.466504,15.813262,16.533080,17.252899,18.831856,19.621334,20.596572,21.780790,23.034667,24.172445,24.985144,25.635302,27.717077,30.452244,31.218503,32.216961,32.983219,33.772698,34.446076,35.305215,36.115446,36.649505,36.997804,39.250140,40.010236,40.712997,41.217674,42.123252,42.571680,43.400349,43.934454,45.095451,45.891847,46.836948,47.626426,48.148257,49.077055,50.145173,51.217176,52.140808,53.097992,53.957130,54.607289,54.851807,55.292986,56.424460,57.731082,58.382044,60.703236,63.118111,64,65.324007,67.553122,68.481921,68.826327,69.741335,70.670133,71.272287,71.877571,72.085127,72.349977,73.384686,73.800891,74.406316,74.739688,75.389847,75.691706,76.829484,78.803180,79.848573,80.754151,81.682950,82.631957,83.769735,84.628873,85.638513,86.579350,87.392048,88.344066,89.415616,89.740695,91.845203,93.541349,94.175707,94.957767,97.813821,98.4,99.996497,100.988269,101.345240,103.153055,103.942534,104.592692,105.289291,106.078769,106.728928,107.564846,108.145345,109.050924,109.956502,111.558679,112.394597,114.019994,117.127693,118.102931,118.378040,118.912099,119.213958,119.980217,121.968956,125.140946,125.672987,126.346366,126.671445,127.669903,128.366502,128.693831,129.531265,130.023836,130.870203,131.830941,132.232597,133.022076,133.532915,134.484933,135.570227,135.781434,136.719922,137.567144,138.790122,139.143871,139.769672,140.605591,142.068448,143.136566,144.088584,144.342982,145.141322,145.598138,147.373612,148.325630,149.834927,150.548464,152.313181,153.334859,154.389990,155.085641,155.782240,156.896798,157.639836,158.313215,158.824054,159.870395,160.636653,161.373957,162.215610,162.914079,164.771675,165.905186,166.907009,167.563375,169.369226,170.390904,170.609144,171.269681,171.525100,172.314579,173.243377,173.476428,173.988854,174.725827,176.706440,178.455330,178.770883,179.421042,179.931881,181.151306,182.297068,184.899502,185.571744,187.963399,190.378274,191.348012,192.079346,193.124244,193.593475,194.260717,194.980536,195.770014,197.928947,199.657222,200.516360,201.538038 diff --git a/data/torah/labels/tazria-2.txt b/data/torah/labels/tazria-2.txt deleted file mode 100644 index 1caac1ea4..000000000 --- a/data/torah/labels/tazria-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.023248,4.893447,6.229144,6.890248,9.778325,11.526597,12.923500,13.652468,14.465166,14.980291,15.770059,16.327338,17.116816,18.556453,19.206612,20.002287,20.739129,21.684142,22.520060,24.099017,24.775755,25.701194,26.397910,27.419588,28.464486,30.229202,32.272558,32.874368,33.757074,34.888309,36.135875,36.762813,37.087893,38.364990,39.464667,40.578762,42.335603,43.473380,44.425398,45.075557,46.329435,47.258233,47.838732,48.767530,49.951748,50.926986,51.600364,52.366623,53.156101,54.340319,54.607787,55.942496,57.083058,59.335394,60.426732,61.000978,61.750269,62.792100,64.418712,65.393950,65.860145,66.742851,68.815797,69.605275,70.208994,72.159470,73.297248,74.411806,74.969085,75.572804,76.478382,77.685820,78.707498,79.391244,80.621902,80.951846,81.620360,82.554428,83.162895,83.754165,84.724191,85.629769,86.442468,87.835665,89.809361,90.854259,91.346628,91.758566,92.589852,93.685359,94.056878,94.892796,95.655929,96.259647,96.840552,98.001144,99.255022,101.298147,102.064405,103.225403,104.223861,104.673496,105.046405,106.160963,107.112981,107.278764,108.350009,109.798332,110.518209,111.366635,112.127103,113.063487,113.867905,114.727043,116.097021,116.954249,117.536658,118.453992,120.555252,122.134209,122.370464,123.109912,123.806511,124.874629,125.841298,127.435311,128.039029,128.526648,129.153587,130.074858,130.923284,131.137533,132.602997,133.601744,134.251903,134.925282,135.877300,136.716578,136.939397,138.233461,139.322888,140.576765,142.109282,142.898761,143.665019,144.361618,146.242434,147.914271,148.346014,149.470008,150.488504 diff --git a/data/torah/labels/tazria-3.txt b/data/torah/labels/tazria-3.txt deleted file mode 100644 index 71b7bd28d..000000000 --- a/data/torah/labels/tazria-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.935850,3.342734,4.039332,4.526952,5.362870,6.175568,7.754525,9.728221,10.773119,11.678698,12.424396,13.489854,14.114895,14.788274,15.508092,16.622650,17.597888,17.839284,19.135446,20.124622,22.017701,23.192754,24.098332,24.887811,25.087558,25.979149,27.013139,27.779397,28.429556,30.741213,32.890113,34.304205,34.977583,35.511642,36.440440,37.671098,38.440635,39.342935,41.229893,42.225488,42.653966,43.114444,43.762525,44.589681,45.689714,47.139369,47.557210,48.168133,48.665770,49.464295,50.507685,51.396091,51.930150,53.074427,53.543433,54.112825,54.879084,55.547367,57.464136,59.248251,60.227311,61.063229,61.959959,62.985724,64.541461,65.377380,66.306178,67.002777,67.838695,68.773337,69.626631,70.230350,71.739647 diff --git a/data/torah/labels/tazria-4.txt b/data/torah/labels/tazria-4.txt deleted file mode 100644 index 4c4e6039b..000000000 --- a/data/torah/labels/tazria-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.077316,4.267884,4.479765,5.211747,6.094105,6.558504,7.208663,9.156357,9.829736,11.849872,13.289509,14.195087,15.239985,15.628730,16.540302,17.792941,18.735030,23.518341,24.295663,26.374395,27.001334,28.394531,30.646867,31.714985,32.458023,32.634685,33.456481,34.249434,34.783493,35.898051,36.892480,37.917059,38.590438,39.681776,40.401594,41.005313,41.910891,43.280869,43.931027,45.904723,46.763862,47.183005,48.180279,49.035266,49.741536,50.665080,52.197597,52.728046,53.335374,53.782405,54.493719,55.785741,56.621660,57.248599,58.595356,61.566850,62.333109,62.890388,63.726306,64.275548,64.956964,65.746442,66.652020,67.606629,68.419328,69.371346,70.091164,70.810983,71.716561,72.271525,74.270756,75.016235,76.571972,76.857231,77.965169,78.801964,79.591443,80.404141,81.123960,81.936658,82.557833,83.701375,84.782581,85.211387,85.929132,87.090130 diff --git a/data/torah/labels/tazria-5.txt b/data/torah/labels/tazria-5.txt deleted file mode 100644 index 0bfa2da41..000000000 --- a/data/torah/labels/tazria-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.032501,3.547662,4.406801,4.802308,5.271499,5.711825,6.501687,7.337606,7.616245,8.916563,9.822141,11.401098,11.888717,13.630214,14.535792,15.302050,16.161189,16.389486,17.252526,18.937837,19.758193,20.408352,20.942410,21.863381,22.605979,23.557997,24.370696,24.997634,26.785571,28.387748,28.938046,29.879542,30.715460,31.164403,31.937188,33.478159,33.887551,34.448107,36.236044,37.443482,37.790921,38.511600,39.044799,39.306247,40.253445,41.182243,41.855622,42.300790,42.854080,44.999068,46.554805,47.019226,47.622945,48.273103,48.900042,49.875280,51.105938,51.918636,52.130802,54.495156,55.063811,57.060727,57.989525,58.308483,58.998470,59.969052,60.428190,60.846149,61.403428,61.844607,62.587645,63.516443,64.282702,64.817359,65.369348,65.677542,66.744722,68.634489,69.155076,69.791214,70.116294,71.021872,71.811350,73.668947,73.851586,75.271124,76.378949,76.982668,77.957906,80.303122,81.208700,81.524239,83.102009,83.808248,85.898044,87.918180,88.475459,89.079177,89.915096,90.797454,92.608611,93.495001,93.982620,94.173996,94.928382,96.496596,97.123535,98.238093,99.120451,99.979590,101.535327,102.504437,103.183943,104.670020,105.716306,106.239651,107.330988,108.677746,110.025293,111.004882,112.541445,113.303658,114.023476,114.696855,115.386615,117.065290,118.949122,119.918658,120.754577,121.404735,122.147774,122.896095,124.707252,125.566390,127.098907,128.050925,129.908522,130.837320,132.207297,133.019995,133.763034,134.239229,134.722220,135.996673,137.413090,138.527648,139.032337,139.905275,140.369675,140.844731,141.193030,142.087951,143.086409,143.956205,145.256522,146.254981,148.182237,150.039833,150.444719,152.243284,153.043669,153.624417,154.924734,156.397005,157.965575,158.732807,159.708045,160.665723 diff --git a/data/torah/labels/tazria-6.txt b/data/torah/labels/tazria-6.txt deleted file mode 100644 index bf1fb4bfd..000000000 --- a/data/torah/labels/tazria-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.122288,4.721522,5.543219,6.355917,7.168616,7.679455,8.306394,9.490611,10.396190,11.278548,12.068026,12.880725,13.739863,14.622221,15.133060,15.690339,16.503038,17.393018,18.159276,19.376821,19.835935,20.881926,22.019704,22.623423,23.598661,24.666779,25.595577,26.129636,27.615713,27.994887,29.612629,30.440655,31.973172,34.248727,35.200745,35.652354,36.524283,37.161651,38.369088,39.528050,39.832282,40.946503,41.956068,42.629446,43.068206,44.115524,45.093580,45.785926,46.157445,46.668284,47.227889,48.990280,50.917536,51.892774,52.659032,53.727150,55.979486,56.527176,56.875476,58.733072,60.660328,61.542687,62.471485,63.330623,64.212981,65.095340,65.708361,66.349217,67.380198,68.285776,69.005595,70.096932,70.670172,72.318789,72.963492,73.613651,74.937188,75.842767,76.492925,77.026984,77.693951,78.652381,79.409746,80.555135,82.164800,84.095291,84.432712,84.880763,85.279030,85.826648,86.751918,87.541396,88.377315,89.083821,89.687540,90.918197,91.684456,92.473934,93.078436,94.018789,95.070374,96.115272,96.811871,97.485250,98.088969,98.438453,99.017549,100.085667,101.522468,103.008545,103.925694,104.542787,106.493263,108.513399,109.186144,110.616967,111.149824,111.935296,112.189745,113.096909,113.646469,114.026200,114.457657,115.126967,115.901376,116.511598,117.138536,118.206654,118.484584,119.808831,123.021980,123.788239,124.060329,124.949237,125.803474,126.062729,126.731732,127.219351,128.217809,129.176960,129.370562,130.754946,131.533376,133.685127,134.033611,134.718053,135.739731,137.574107,138.005223,138.654288,139.002587,139.884946,140.279685,141.115603,142.717780,143.321499,144.157417,144.714696,145.806034,147.640410,149.358687,150.194605,150.775104,151.634243,152.609481,152.873877,154.304537,154.726681,154.958880,155.632259,156.282418,156.602103,158.387852,159.548849,159.943589,161.034927,161.685085,161.935433,162.150191,162.631431,163.240822,163.952056,164.439675,164.965721,165.983516,166.336252,166.986411,167.868769,168.449268,169.401286,171.142783,174.396917,175.132605,176.998892,177.788370,178.036639,178.647509,179.506647,180.971058,181.551557,182.224936,182.712555,183.618133,184.361172,184.762935,185.083762,185.924549,187.175622,188.081201,189.403858,189.840846,190.387062,190.631849,191.494762,192.477843,192.993797,193.956277 diff --git a/data/torah/labels/tazria-7.txt b/data/torah/labels/tazria-7.txt deleted file mode 100644 index 7d6fdc6d6..000000000 --- a/data/torah/labels/tazria-7.txt +++ /dev/null @@ -1 +0,0 @@ -3,4.820438,6.365462,7.271041,8.339159,8.664238,10.521834,12.282187,12.602766,13.118105,14.097102,14.322055,15.146886,16.327481,16.791880,17.651018,18.533376,19.113875,19.764034,21.041132,22.109249,22.643308,23.927704,24.206343,25.676864,28.594915,29.335291,31.146447,32.121686,33.073704,33.816742,34.652661,34.880527,35.395699,36.115518,37.341842,39.129779,39.457959,40.197897,40.577372,40.764833,41.613260,42.127283,42.359483,43.102521,43.566920,44.913678,45.567626,46.496424,47.657422,49.398919,49.912953,50.629576,50.979275,51.883454,52.226763,52.646549,53.064508,53.578511,54.504145,55.247184,56.106322,57.220880,57.731719,58.191879,58.586618,59.654736,64.670246,65.068943,65.707920,66.097271,67.281489,67.764640,68.080771,68.661270,69.357869,70.008028,71.099365,72.083812,72.710751,73.666998,74.568347,75.264946,76.580684,78.358890,79.142678,79.769617,81.093155,81.743313,82.439912,83.259668,85.086987,85.777258,86.613177,87.100796,88.122474,88.935172,89.446011,89.724411,90.281930,91.979304,92.375651 diff --git a/data/torah/labels/tazria-h.txt b/data/torah/labels/tazria-h.txt deleted file mode 100644 index e55f31c33..000000000 --- a/data/torah/labels/tazria-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.407538,3.867303,4.567346,6.471382,8.003899,8.979138,10.581314,11.301133,12.253151,12.671116,13.407335,14.575756,15.627709,17.601405,19.273242,20.155600,20.695213,22.315056,23.621798,24.922116,25.604942,26.257023,26.907182,27.557340,28.021739,29.507817,31.504733,32.363871,33.014030,34.430447,34.846992,35.311391,36.913568,37.842366,38.551488,39.758925,41.825501,43.497338,44.797656,45.958653,46.724149,48.024466,49.835623,50.253903,50.857301,51.343820,52.993536,53.581112,54.873253,55.670908,56.390726,57.505284,58.480522,59.270001,59.554964,60.918617,61.654858,62.505153,63.271764,65.101110,67.013072,68.678906,69.630924,70.281082,71.767159,73.772188,74.566500,75.815544,77.685028,78.520947,79.380085,79.937364,81.748520,83.490017,84.349155,84.952874,85.974552,87.483849,87.743691,88.923486,89.917775,90.869793,91.705711,92.570804,93.115127,94.856624,96.389141,97.410819,98.130638,100.173994,102.797848,103.680207,104.632225,106.280842,107.372180,108.115218,108.951136,110.088914,110.855173,111.435672,112.782429,113.840615,114.258574,114.895445,115.797596,116.464470,117.648688,117.862987,118.128537,118.689143,120.659127,122.516724,123.608062,125.419218,126.139037,126.599212,128.135953,129.289101,130.078579,131.030598,131.936176,132.609554,133.816992,135.170959,136.022007,136.333479,136.835208,137.671126,139.319743,141.386319,141.945440,142.777498,143.408917,144.683552,145.661739,146.378850,147.173829,147.309555,148.107626,149.152524,151.451299,153.099916,156.652569,158.231526,158.732326,159.452145,159.707564,161.425841,162.206930,164.305115,166.270422,166.967020,167.663619,168.685297,169.869515,170.323907,170.937633,171.849486,172.778285,173.846403,174.142831,176.608595,177.251817,177.645787,177.4,178.412045,179.311306,179.847287,180.776086,181.429807,183.125696,185.360500,186.823357,187.915133,188.336686,190.380042,190.674164,191.587480,191.974481,192.856839,193.112259,194.257775,195.271715,195.509869,196.363052,197.171559,197.984257,198.564756,200.654552,201.334270,202.006998,202.930108,204.545177,206.077694,206.611155,207.121994,208.817648,210.001268,210.651427,211.487345,213.670021,214.691699,215.136980,215.764688,217.436525,218.806502,220.989178,222.010856,222.568135,224.286411,226.107101,227.339986,227.781165,228.431324,229.453002,231.101618,232.773455,233.415310,234.669188,235.714086,236.410684,238.198621,240.275734,240.840067,242.419024,243.131874,243.794604,245.582540,246.813198,247.834876,248.412352,249.387591,250.525368,251.407727,253.056343,253.512070,254.301549,254.905267,256.298465,260.060097,261.476515,262.521412,264.541549,265.228610,267.142183,268.131104,269.129562,270.128020,270.757956,271.361674,271.895733,274.018314,274.914327,275.773466,276.980903,278.815280,281.090835,281.787434,283.110971,285.618727,286.524305,287.429883,289.357139,291.307615,292.050654,292.723580,293.095100,294.975916,296.461993,296.820226,297.553331,298.157050,298.926924,299.853399,301.489877,302.302576,302.999174,303.765433,304.694231,305.571581,305.884340,307.832893,308.599152,310.503188,312.175025,313.034163,313.777202,315.054299,316.610036,317.125965,317.469174,319.096938,319.533621,319.893589,321.895252,324.194028,325.053166,326.980422,328.605819,329.336795,329.731534,330.904595,331.206546,331.613205,332.506863,333.523126,334.475144,334.906027,335.142072,337.052559,338.736802,339.125325,339.619160,340.417552,340.842550,341.981465,343.905229,344.265197,345.907528,346.673787,347.323945,348.043764,348.177637,349.808481,350.549885,350.880481,351.623520,353.272137,356.708690,358.775266,360.656082,361.436424,361.924043,363.117398,363.944179,364.464717,365.186458,367.020834,369.714349,370.017667,371.575561,372.118213,374.022249,374.416988,374.929585,375.788723,376.624641,377.739199,378.149538,378.414954,379.573575,380.915890,381.635709,382.195396,382.961655,384.711445,386.049909,386.300132,387.693330,389.318726,390.688704,391.248092,391.782151,392.034730,393.614418,395.300637,396.043675,396.949254,400.253195,400.903354,401.785712,403.457549,405.338365,406.406483,407.079862,407.915780,408.983898,409.541177,409.791187,411.939194,412.717035,413.738713,414.571091 diff --git a/data/torah/labels/terumah-1.txt b/data/torah/labels/terumah-1.txt deleted file mode 100644 index 971c09372..000000000 --- a/data/torah/labels/terumah-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.913023,5.308793,5.657092,6.258792,7.660934,9.263111,9.611410,10.586649,12.258485,13.744562,14.278621,15.834358,17.065016,17.489172,18.597533,19.355884,20.725862,21.910079,23.210397,23.698016,25.439513,26.879150,28.504547,29.665544,30.896202,32.498379,33.682596,35.006134,36.515431,38.698107,41.020102,42.319132,43.481417,44.178016,46.012392,47.378258,49.096535,51.743609,52.951047,54.158485,55.087283,56.434040,57.780798,59.499074,61.449550,62.889188,64.398485,65.954222,67.649278,69.560973,71.906188,73.508365,74.878342,76.271540,78.059476,79.298746,80.009952,81.356710,83.362238,85.103734,87.448950,88.586728,89.701285,90.769403,92.116161,93.114619,94.368496,95.808133,96.806591,97.874709,98.545654,99.569766,100.830722,102.990177,105.275600,106.204398,107.249296,108.725506,110.198230,112.006324,113.863920,115.346183,116.344641,117.737839,118.759517,119.943734,121.615571,123.240968,124.216206,125.307544,126.491762,127.815299,128.999517,130.741013,133.132669,134.781285,135.797152,136.801421,138.357158,140.454374,142.112979,143.513813,144.788536,146.112073,148.619828,149.664726,150.686404,152.567221,154.099738,155.887674,156.826231,157.745271,158.999148,160.333011,161.610108,162.271533,163.165845,164.512603,167.461537,168.459995,169.528113,170.735550,172.128748,173.103986,174.357863,175.913600,176.262870,177.251592,178.862535,180.134018,181.132477,182.664994,183.733111,184.172640,185.204239,186.574216,188.571132,189.848230,191.264647,192.773944,193.483931,194.575269,196.014906,197.872503,198.285236,199.590779,200.649304,202.019281,203.157059,204.573476 diff --git a/data/torah/labels/terumah-2.txt b/data/torah/labels/terumah-2.txt deleted file mode 100644 index 58714ea9b..000000000 --- a/data/torah/labels/terumah-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.848411,5.162810,6.597305,8.199482,9.546239,10.823337,12.007554,13.054030,13.958031,15.513768,18.253722,19.273800,20.481237,21.827995,23.360512,24.614389,25.821827,27.284684,28.004503,29.351260,33.437972,34.482870,35.411668,36.758425,37.965863,38.861764,39.628022,41.230199,42.367977,43.049063,45.254959,46.601717,46.852209,48.412873,48.988445,49.615384,51.287221,53.075157,55.954432,57.347629,59.437425,61.736200,63.199057,64.917334,65.458317,66.705271,68.563060,69.239146,69.492130,70.585846,71.314990,73.143021,74.512999,75.313522,77.067194,80.852177,81.099633,82.965193,83.799408,84.945007,86.562583,87.559423,89.602779,90.856657,91.248847,93.155432,94.144939,94.864758,97.070654,100.344667,103.014962,105.499497,106.985574,109.191470,110.375688,112.697683,114.253420,115.391198,117.086255,118.549112,119.003362,119.872649,121.335506,122.682264,123.154779,124.625486,126.645622,128.224579,128.828298,129.385577,131.150293,132.938230,134.238547,135.469205,136.932062,138.325259,139.439817,140.925894,142.388751,143.619409,144.641087,146.336143,147.822221,149.029658,150.422856,151.885713,153.511109,155.136506,155.848657,156.831563,158.665939,162.638396,163.330096,165.280573,166.488010,168.183067,170.342523,171.023496,172.734178,174.529709,176.201546,178.146351,179.510556,180.886522,182.039040,183.473807,185.134485,185.602437,187.119527,188.245959,189.337297,190.753714,192.100471,193.052490,194.283147,195.838884,197.139202,198.625279,200.366775,202.294032,203.896208,205.126866,205.501013,207.265071,208.625695,208.927554,210.274311,211.644289,212.967826,214.244924,215.266602,216.590139,217.777984,218.447736,218.825532,220.630411,223.165013,225.301249,227.948324,229.945240,232.011816,233.688886,234.617684,235.941221,237.055779,238.077457,239.022988,240.392965,242.831060,243.193055,245.362035,246.555351,247.948549,249.666825 diff --git a/data/torah/labels/terumah-3.txt b/data/torah/labels/terumah-3.txt deleted file mode 100644 index 92deb1aaf..000000000 --- a/data/torah/labels/terumah-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.756287,5.056604,6.333702,7.773339,10.291661,11.767171,13.183588,14.785765,16.341502,18.733157,19.963815,21.798191,23.005629,24.654246,26.302863,27.487080,29.066037,30.714654,33.408169,34.592386,36.658962,38.214699,39.584677,41.395833,42.440731,43.694609,45.273566,47.084722,48.640459,52.309212,55.351026,56.932354,59.786037,60.956148,63.301364,65.135740,67.248756,70.104811,71.335468,72.844765,74.214742,76.141999,78.324674,79.601772,80.902089,82.481046,82.895402,84.454742,86.308735,87.655493,88.979030,91.231366,92.949642,94.621479,99.776309,101.870750,102.747789,104.535725,106.880941,108.808197,110.154954,110.971932,112.109709,113.526127,116.823360,117.741440,118.321939,119.575817,121.108334,122.594411,123.964388,125.659445,126.025556,128.017131,130.208977,131.952053,133.182710,134.784887,136.828243,137.863747,138.787215,139.488160,140.923430,142.258575,142.513994,143.907191,145.207509,146.716806,147.134765,149.363881,150.780298,151.212192,151.746251,153.301988,155.391784,157.179721,158.247839,159.757136,162.241671,163.240129,164.540446,166.072963,167.535820,168.603938,168.872242,170.070489,171.672666,172.880103,174.389400,176.757836,177.517237,178.283009,179.419803,180.873470,183.503100,184.362238,185.755435,186.800333,188.054211,189.191988,191.490764,192.837521,194.393258,196.041875,197.458292,199.919607,201.057385,202.264823,203.449041,204.981558,207.071354,208.766410,210.930449,212.207546,213.368544,214.761741,216.363918,217.568866,218.706644,220.262381,221.562698,222.821838,223.634537,224.261475,225.649410,227.210410,229.462745,231.111362,232.434899,233.735217,234.004546,235.546373,236.978614,238.093172,239.416710,240.740247,240.958370,242.644283,246.730995,248.193852,250.121109,251.131038,251.990177,253.151174,254.544372,256.309088,258.166685,259.339693,260.640010,262.102867,263.496065,266.003820,267.652436,269.393933,271.205089,273.248445,276.290260,277.474477,279.866133,281.654069,283.650985,285.346042,286.948219,288.387856,289.920373,291.661870,293.240826,295.005543,297.420418,298.674296,299.058966,300.740872,305.245543,306.917380,307.985498,309.100055,310.818332,311.097428,313.117108,314.210816,314.490894,315.740962,318.088549,319.081153,320.195711,321.774668,323.458546,325.016203,325.814940,327.219185,327.613925,328.960682,330.121680,330.795058,331.886396,333.071514,334.579911,338.341544,339.734741,341.824537,343.403494,345.028891,346.607847,348.070705,349.394242,350.740999,352.250296,353.806033,354.850931,356.313788,357.149707,358.798324,361.886578,362.447869,363.256555,364.371113,365.624990,366.568880,367.033279,368.194277,369.541035,371.514731,372.146445,373.488427,374.974504,375.789080,376.416019,377.159058,378.855496,381.454749,383.103366,385.355702,385.942834,387.073978,388.081486,389.405024,391.425160,393.422076,395.326112,397.439128,398.646566,399.877223,401.293640,402.710058,404.335454,408.073867,409.185297,410.326203,411.993928,413.619325,413.969529,415.460429,417.845357,419.387949,419.632724,420.701411,421.932069,423.302046,424.857783,426.297421,427.922817,429.269575,430.430572,431.452250,432.775788,435.933702,437.141139,438.116377,439.811434,441.158191,443.201547,444.514122,445.628679,447.137976,448.554394,449.738611,451.271128,452.525006,454.638022,455.324352,456.983107,459.033718,460.194716,461.471813,463.770589,465.369795,466.461132,467.691790,468.852788,470.083445,472.103581,474.680996,475.772334,477.606711 diff --git a/data/torah/labels/terumah-4.txt b/data/torah/labels/terumah-4.txt deleted file mode 100644 index 2529233ac..000000000 --- a/data/torah/labels/terumah-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.841701,4.236440,5.676078,7.324694,8.508912,9.484150,11.155987,12.572404,13.454762,14.755080,16.334037,18.145193,19.770590,21.094127,22.348005,23.276803,24.902200,26.481157,28.338753,29.848050,31.357347,33.749003,35.001118,35.338380,36.778017,37.985455,39.726952,40.980829,41.863187,43.604684,45.113981,45.450418,46.971577,48.629464,50.254270,51.159848,52.529825,53.690823,55.409100,58.056174,58.863712,59.885390,62.857544,64.111422,65.295640,66.735277,68.082034,70.032510,71.081474,72.034005,73.427202,74.936499,76.469016,78.721352,80.741488,81.624481,82.543424,83.760082,84.990739,86.848336,89.224387,91.283347,93.004589,94.374566,95.883863,97.184180,98.368398,100.179555,101.619192,102.803410,104.126947,106.332843,107.493840,108.979917,110.465995,112.068171,113.414929,114.622366,115.644044,117.594521,119.939736,121.240054,122.470711,124.049668,124.955246,126.464543,127.718421,128.879419,130.295836,132.812083,134.127539,136.821054,138.887630,141.627584,144.739058,147.409353,148.640011,149.592029,149.874618,151.147766,151.763358,153.063676,154.456873,155.617871,157.057508,158.450705,159.658143,161.074560,162.560637,164.503195,165.807100,167.173096,168.760365,169.712383,170.801994,171.962992,173.588389,174.842266,177.071382,178.185940,179.625577,181.065214,182.547945,183.801823,184.869940,185.845179,187.656335,189.119192,190.442730,191.882367,193.252344,197.060417,198.383954,198.814535,199.986131,201.797287,203.637349,205.007326,206.493403,206.960840,208.374219,210.033522,211.960778,214.189893,216.001050,217.138828,218.508805,220.459281,221.991798,224.917513,226.124950,227.518147,229.073884,231.906719,232.865095,234.014778,234.316637,235.965254,236.930835,239.392150,241.203307,243.293103,244.091100,245.893738,247.381947,248.426844,249.843262,251.538318,252.960534,253.262394,254.516271,255.886248,257.859945,258.247787,259.694321,262.171922,263.151418,264.800035 diff --git a/data/torah/labels/terumah-5.txt b/data/torah/labels/terumah-5.txt deleted file mode 100644 index 1913833c7..000000000 --- a/data/torah/labels/terumah-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.147519,6.602856,8.599773,11.130748,12.431065,13.592063,14.915600,16.633877,18.050294,20.116870,21.463627,22.206666,23.948163,25.538232,27.593695,28.322957,29.553615,31.132572,32.641869,34.429805,35.730123,37.285860,38.632617,39.332661,40.374114,41.236697,42.394250,45.346629,45.620411,48.643863,49.606187,52.254242,54.372395,55.327515,56.743932,58.299669,59.344567,60.389465,61.736222,63.686699,65.010236,66.380213,67.750191,69.143388,70.559805,71.395724,73.230100,75.250236,75.590380,76.970072,78.133751,79.185639,80.485956,81.832714,84.038609,85.547906,85.847482,87.312623,88.636160,90.238337,91.171141,92.690195,93.923556,95.397065,97.649400,98.515560,99.785636,101.480693,103.872348,105.149446,105.727585,106.312909,107.880740,109.536497,110.720715,112.276452,113.530329,115.527245,117.756361,119.103118,120.124796,121.401894,122.818311,124.234964,126.603164,128.394750,130.716745,132.388582,134.013979,135.337516,136.872617,137.731755,138.892753,140.332390,141.702368,143.699284,144.929941,146.810758,148.111075 diff --git a/data/torah/labels/terumah-6.txt b/data/torah/labels/terumah-6.txt deleted file mode 100644 index 7cb5f9ac0..000000000 --- a/data/torah/labels/terumah-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.759140,4.100217,5.480035,6.896471,8.475428,10.309804,11.764419,13.514158,15.743274,16.973931,18.738648,20.131845,21.060643,22.546721,23.730938,24.682956,26.563773,28.119510,30.487945,31.625723,32.833160,34.203138,35.782095,37.012752,38.614929,40.031346,41.006584,42.423002,44.164498,45.534476,47.740371,49.296108,51.339464,53.638240,55.542276,56.655475,57.724952,58.559511,60.068808,61.549035,62.248753,63.638368,65.403084,66.381668,67.980499,69.420136,69.742931,71.836710,73.554987,74.762425,76.248502,77.316620,78.106098,80.126234,82.750089,84.630905,86.651041,87.835259,89.344556,90.877073,92.711449,93.942107,95.103105,96.031903,97.634080,99.282697,100.374034,101.767232,103.183649,104.228547,105.621744,107.038161,107.966960,109.476257,111.038632,111.363711,112.547929,114.406916,115.939433,118.191769,118.814750,120.699550,121.860547,123.346625,124.577282,126.318779,127.340457,128.362135,129.569572,130.962770,132.355967,133.307985,135.421001,137.185718,138.021636 diff --git a/data/torah/labels/terumah-7.txt b/data/torah/labels/terumah-7.txt deleted file mode 100644 index 19e999d46..000000000 --- a/data/torah/labels/terumah-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.925892,7.090248,8.251246,9.923083,11.571699,12.337958,15.728071,16.958729,19.257504,20.106230,22.351885,23.483536,24.528434,25.689432,27.105849,28.754466,30.542402,31.958820,33.259137,34.513015,35.859772,37.740588,39.969704,41.943400,43.127618,44.522976,45.566068,46.727066,48.305668,49.559545,51.069197,52.810339,54.773903,56.724379,58.094356,59.023154,60.300252,62.273948,64.433404,66.267780,67.660978,69.193495,70.609912,71.375688,72.351408,73.791046,74.998483,76.484560,78.342157,79.665694,81.291091,82.823608,85.540343,87.630139,89.905694,90.774774,91.935772,92.864570,94.327427,96.696406,97.841009,99.652165,101.045363,102.624319,104.458696,105.875113,107.523730,109.288446,111.146043,112.585680,113.643493,114.884456,116.416973,118.293678,119.710095,121.405152,123.193088,124.902339,127.085015,129.383790,130.684651,132.565468,133.646659,135.898994,138.012010,139.962487,140.775185,142.191602,143.631239,145.210196,147.160672,148.460990,149.970287,151.618904,153.251204,154.110342,155.085580,156.316238,158.684673,159.706351,161.192428,162.167666,163.955603,165.604220,166.796350,168.979025,169.977483,171.904740,174.412495,175.945012,178.545647,180.962747,181.914765,183.191862,184.236760,185.722837,187.046375,188.648552,190.111409,191.272407,192.526284,193.896261,195.591318,196.416877,199.063952,199.951728,200.926966,202.854223 diff --git a/data/torah/labels/tetzaveh-1.txt b/data/torah/labels/tetzaveh-1.txt deleted file mode 100644 index f067b2e23..000000000 --- a/data/torah/labels/tetzaveh-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.663532,5.706888,6.217727,6.856478,8.377183,9.259541,10.606298,11.140357,11.929836,12.835414,13.578453,14.344711,15.427413,15.775712,16.704510,17.640784,19.196521,19.962779,21.425637,22.191478,22.516557,23.910172,25.953528,26.881909,28.298326,29.668303,30.339659,30.594358,31.084721,31.967079,33.081637,33.942663,34.569601,36.264658,37.170236,37.632349,38.909447,41.208222,41.776247,43.540964,43.940548,44.582387,46.046687,46.489227,47.000066,48.462923,49.879340,50.436619,51.249318,52.179781,52.876379,54.733976,55.894973,57.799010,58.913568,59.749486,60.123269,61.353927,62.514924,62.849348,63.443723,64.418961,65.487079,66.531732,67.924929,69.643206,70.908002,71.013183,71.402030,71.876150,72.563028,73.280175,74.430345,75.091331,76.032531,77.924166,78.100681,79.344838,81.086335,82.270552,83.072392,83.958742,84.744188,86.299925,86.984557,88.738020,89.691023,90.373147,91.348385,92.184303,92.927342,94.111559,95.318997,96.260583,97.955639,99.046977,100.602714,101.624392,102.460310,103.226569,104.503666,105.159827,105.362805,106.657453,107.028037,108.026496,108.583774,109.814432,110.387211,111.014149,111.757188,112.189499,113.697313,115.062496,115.174563,116.304063,118.922869,119.782007,121.523504,122.847041,124.379558,125.006497,125.842416,126.493355,127.593651,129.371849,130.120258,131.763504,132.595926,133.621100,133.818477,134.411287,135.247206,136.640403,137.778181,138.915958,139.867976,140.796775,142.004212,142.886571,143.745709,145.347886,146.741083,148.436140,149.434598,150.271986,150.880713,152.383532,154.572686,154.785240,155.070502,155.671590,156.816966,158.256603,159.278281,160.090979,160.602549,161.902136,162.855311,164.248508,164.875447,165.664925,166.756263,167.272587,168.665784,170.244741,171.754038,172.259452,172.909611,173.652649,175.370926,176.601583,178.250200,180.014917,181.014704,182.429792,183.722571,183.954771,184.813909,186.030214,186.367827,187.089301,187.878780,188.877238,190.549075,191.524313,192.267351,193.010390,194.357147,196.795242,197.004027,197.757934,199.530634,200.315105,201.487479,202.509157,202.995039,204.039937,205.015175,206.083293,208.010549,208.720148,208.954471,208.954471,210.623931,211.854588,213.549645,213.824302,214.334206,215.680964 diff --git a/data/torah/labels/tetzaveh-2.txt b/data/torah/labels/tetzaveh-2.txt deleted file mode 100644 index 06f0be8c2..000000000 --- a/data/torah/labels/tetzaveh-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.652385,4.720503,5.835061,6.781417,8.151394,9.289172,10.519830,12.679285,13.747403,14.397562,15.605000,16.580238,18.759515,18.976315,20.000039,20.952058,21.386613,23.376065,25.201309,26.130108,27.128566,28.359223,29.589881,31.068110,32.089788,33.436546,36.199720,37.337498,39.055775,40.890151,42.538768,43.444346,44.187385,45.092963,46.230741,47.558694,48.487492,49.625270,50.577288,51.436427,52.249125,53.595882,54.921689,55.641508,56.965045,57.824183,59.124501,60.378378,61.562596,63.582732,64.511530,65.649308,66.833526,68.040963,69.527041,71.151559,72.289337,73.311015,74.286253,75.911649,77.281627,78.535504,79.487522,80.253781,82.204257,83.643894,85.106751,86.198089,87.312647,89.077364,90.618379,92.266996,93.544093,95.471350,99.093663,101.137019,101.615105,103.091316,103.602155,105.227552,106.133002,106.968920,107.247560,108.338898,109.755315,110.637673,111.682571,111.957467,112.979145,115.417241,116.346039,116.880326,118.372415,120.059891,120.338531,122.149687,123.217805,124.053724,125.098622,126.120300,127.118758,128.442295,130.044472,130.490078,131.581416,132.579874,133.485452,134.576790,137.014885,137.374236,138.477965,139.801502,140.409426,141.109273,141.748480,143.152629,146.059328,146.552836,147.597734,149.107031,150.709208,151.338422,152.290440,153.822957,154.399357,155.016552,156.502629,157.995675,158.947693,159.760391,160.758849,162.152047,163.313044,163.581445,164.577978,165.855076,167.805552,168.236253,168.826257,169.849737,170.221256,170.660750,171.635988,174.213403,175.444061,176.651498,177.742836,179.623653,180.784650,181.320728,182.112854,182.925552,184.330413,184.687494,186.834558,188.808254,189.316557,190.013156,191.011614,192.381591,195.028666,196.050344,196.866513,198.720639,199.970162,202.013518,202.299248,203.995384,205.389543,206.504101,207.711539,208.802877,209.778115,210.776573,212.448410,214.491766,215.699203,217.347820,218.954535,219.171335,221.742615,224.296810,225.088680,226.048518,227.232736,228.324073,229.438631,230.506749,230.929508,231.714187,232.921624,233.531100,234.742748,235.625106,236.484244,237.552362,239.224199,241.430094,241.845990,242.384621,242.810038,244.296115,245.862075,247.510692,248.138465,248.835063,249.670982,249.829306,250.989819,252.141312,252.545796,253.149514,254.217632,256.841487,257.434366,258.130965,259.988561,260.420469,261.488587,261.804278,262.997884,264.399374,264.747673,265.421052,266.721369,267.905587,268.648626,269.856063,271.202821,273.408716,273.906541,274.649580,275.090759,276.646496,277.018015,278.713072,279.595430,280.918967 diff --git a/data/torah/labels/tetzaveh-3.txt b/data/torah/labels/tetzaveh-3.txt deleted file mode 100644 index 53662de7c..000000000 --- a/data/torah/labels/tetzaveh-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.739674,6.093161,6.952299,8.136517,8.879555,10.412072,12.060689,12.9,13.964725,15.400452,19.955474,22.207809,23.299147,25.319283,26.898240,28.639737,29.661415,31.890530,32.601524,33.283728,33.775992,35.373524,37.025618,37.373320,39.103926,40.468526,41.490204,43.045941,44.648118,45.809116,46.502754,47.386253,48.918770,51.031786,52.819723,54.259360,55.606117,56.836775,57.974553,59.344530,60.250108,61.155686,62.339904,62.856012,63.971195,64.853553,66.200310,67.523848,68.057554,69.051205,70.537282,71.767940,74.531114,75.529572,75.901092,77.735468,79.453745,81.497101,82.820638,83.509144,84.925562,86.260505,87.049984,88.071662,89.116560,91.276016,92.111934,93.505131,94.712569,95.827127,97.336424,99.008260,99.905067,100.276587,101.484024,102.668242,103.862019,104.176670,105.746583,106.378655,106.866274,107.307453,108.375571,109.861648,112.787363,113.321422,114.087680,116.014936,117.268814,119.149630,119.509065,120.335478,122.749674,123.901710,125.202027,126.223705,127.616903,128.328764,129.536202,131.138379,132.531576,132.877513,134.029929,135.098047,136.282264,137.211062,138.325620,139.602718,141.460314,142.959753,144.071107,145.533964,146.862607,147.791405,149.050633,149.979431,150.722470,151.953127,153.323104,154.437662,155.784420,157.409816,158.477934,159.801472,161.380429,163.493445,165.002742,166.094080,167.394397,168.880474,170.784510,171.899068,172.292559,173.478025,174.685463,175.394039,176.298232,177.396876,178.923662,180.827699,182.822035,183.201213,184.741062,186.269424,187.105343,188.544980,189.613098,191.795774,192.794232,193.610597,194.446515,195.630733,196.494868,197.702306,199.342884,199.701232,200.917468,202.241006,204.470122,204.982726,205.702545,206.272724,207.886660,210.046034,210.468393,211.188212,212.767168,214.369345,214.995877,216.180095,217.666172,218.989709,219.648043,220.507181,221.459199,222.713077,223.874074,225.429811,226.823009,227.963638 diff --git a/data/torah/labels/tetzaveh-4.txt b/data/torah/labels/tetzaveh-4.txt deleted file mode 100644 index 100a2b920..000000000 --- a/data/torah/labels/tetzaveh-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.813063,4.579615,5.531633,6.622971,8.271587,9.339705,10.291723,11.661701,12.451179,15.075034,15.711277,17.047691,17.395832,19.191962,20.143980,21.003118,22.465975,23.766293,25.368470,26.784887,27.922665,29.246202,30.383980,31.707517,32.357676,33.797313,34.865431,36.281848,37.094547,37.837585,39.137903,40.670420,41.552778,41.977134,42.945975,44.176633,45.718806,46.679018,47.700696,48.908134,49.929812,50.881830,51.624868,53.203825,53.941868,54.986766,55.497605,56.658602,57.842820,58.431577,59.143137,59.770076,60.931074,62.616737,63.406216,64.358234,65.999196,66.277835,68.297971,69.853708,70.132348,71.571985,72.031546,73.678369,74.796918,75.795376,77.142133,78.157200,79.294978,80,81.155683,84.422175,85.275529,86.228779,87.947056,89.526013,90.594131,91.062926,91.987328,94.545919,95.149638,96.496396,97.378754,97.686592,99.301303,100.949919,101.294633,102.297698,103.854695,105.366779,105.636259,106.744122,108.170931,109.540908,110.351225,111.094264,112.185602,113.602019,115.320296,118.037030,118.965828,120.568005,121.752223,123.516940,125.049457,126.001475,127.348232,128.880749,130.436486,131.620704,132.781701,133.710500,135.103697,135.458740,136.612994,137.070104,138.393641,140.135138,140.504009,141.389016,142.547393,143.388829,144.340847,145.641165,147.359442,149.147378,149.695664,150.879882,151.181741,151.763500,152.994158,155.130394,155.340394,156.245062,157.266740,158.404518,159.240436,159.820935,161.307012,162.955629,164.139847,165.138305,167.344201,167.669280,168.505198,169.364337,171.129053,171.880113,172.288002,173.449000,174.563558,174.973324,175.762802,177.318539,180.267473,180.754937,181.077874,182.868108,183.980368,184.324493,185.884404,187.788440,189.297737,189.744040,191.058418,192.199893,193.153465,194.546663,195.253414,196.012334,196.848253,198.218230,199.681087,201.097504,201.742312,202.740770,203.553468,203.876782,204.924761,205.194241,206.661411,208.360137,209.497915,210.310614,211.634151,212.818369,213.682869,214.440879,215.230357,216.135935,217.157614,219.618929,221.522965,223.427001,223.964041,224.892839,225.287578,225.663117,226.986654,228.896263,229.058803,230.289461,231.984517,232.286377,233.145515,235.212091,235.450885,236.355553,237.841630,239.118728,240.233285,241.649703,243.367979,245.132696,246.247254,247.315372,248.865013,249.256699,250.371257,250.835656,252.159194,253.831030,254.210909,254.598954,255.295553,256.990609,257.849748,258.223787,259.593764,260.754762,261.869320,262.890998,264.284195 diff --git a/data/torah/labels/tetzaveh-5.txt b/data/torah/labels/tetzaveh-5.txt deleted file mode 100644 index 7ca9d661b..000000000 --- a/data/torah/labels/tetzaveh-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.653095,5.233594,6.162392,7.439490,8.625291,10.249104,11.944161,12.468885,13.444123,13.714673,14.062973,15.293630,17.053496,17.216035,19.282611,20.791909,21.999346,25.341370,25.612283,27.587435,28.387313,30.160201,30.717480,31.878478,32.807276,33.875394,35.338251,35.965520,36.569239,37.544477,38.844795,39.386786,40.036945,40.826423,42.103521,44.463426,44.811725,46.158483,46.655206,47.607224,49.023641,51.926135,52.351705,53.350163,53.867801,54.197290,56.899137,57.781495,60.033831,61.589568,61.952074,62.996972,63.414931,64.552709,65.320387,66.829684,67.341051,67.921550,68.687808,69.593386,70.654954,71.404543,72.605430,74.601538,75.391016,76.017955,77.132513,78.789916,79.011477,81.854950,82.830188,85.291503,85.718410,87.724306,89.232960,89.465803,91.183638,92.298196,93.250214,94.457652,96.245588,97.499466,99.310622,99.962976,100.938214,102.168872,103.306649,104.397987,104.923961,105.985648,107.925973,108.412457,109.295183,110.571913,111.784656,113.446662,115.304259,116.697456,117.672694,118.787252,119.762490,120.760948,121.852286,123.199043,124.197501,125.126300,125.776458,127.076776,128.934372,129.932830,130.908068,132.069066,133.276504,134.065982,135.069560,136.021578,138.114493,139.547860,140.546318,141.086771,142.619288,144.291124,145.243143,146.520240,147.843778,148.981555,149.207291,150.349520,151.454854,152.383652,153.498210,154.728868,155.564786,156.168505,157.375943,158.725864,158.929341,161.229981,162.335600,163.615003,164.567021,166.099538,167.864255,168.978813,169.930831,170.650649,171.695547,172.670785,173.367384,174.389062,176.780717,178.220355,179.125933,181.029969,181.981987,182.841126,184.095003,185.070241,185.720400,186.742078,187.531556,188.831874,190.071739,191.836456,193.415413,194.297771,195.853508,197.905044,198.973162,200.598559,201.480917,202.758015,203.988672,204.987130,206.124908,206.592554,207.591012,208.334051,210.563166,211.700944,212.490423,212.958266,214.119264,215.535681,217.091418,218.531055,220.086792,221.549649,222.571327,223.732325,225.032643,226.077541,226.820579,227.911917,229.862393,230.837631,231.5,232.300488,232.685175,233.934037,235.002155,236.627552,238.531588,240.156985,240.992903,242.153901,243.314899,245.033175,245.402806,245.983304,246.912103,247.840901,248.932239,250.557636,250.961442,251.913460,252.819038,254.197150,254.453419,255.509401,256.322100,257.738517,259.131714,260.060513,260.989311,261.308652,262.446430,263.584208,264.341004,265.316242,266.197874,267.220278,267.855756,268.482694,269.527592,271.129769,271.872808,272.871266,274.194803,275.193261,276.204470,276.521865,277.268463,278.383021,279.636898,280.869219,281.263958,282.006996,282.233008,282.848055,283.712048,284.363259,285.942216,287.614052,289.169789,289.540344,290.533786,290.928525,292.112742,294.063219,294.416782,295.646185,296.574983,297.243066,298.310981,298.566401,299.286220,300.145358,302.165494,303.210392,304.324950,305.276968,306.368306,306.659131,307.738131,309.340308,310.043098,310.902236,311.691715,313.061692,314.044256,315.762533,316.830651,317.759449,318.124703,319.308920,321.163972,321.361665,322.861573,324.404613,325.333412,326.726609,327.330328,328.769965,329.814863,331.091960,332.463646,332.765505,333.926503,335.412580,336.318158,337.572036,338.802693,339.894031,341.380108,341.995406,342.715225,344.456722 diff --git a/data/torah/labels/tetzaveh-6.txt b/data/torah/labels/tetzaveh-6.txt deleted file mode 100644 index 192f293b3..000000000 --- a/data/torah/labels/tetzaveh-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.662684,5.332392,6.289279,6.447121,7.713673,9.516705,9.987686,11.125464,12.472221,13.092920,14.213718,14.742809,15.648387,16.693285,17.761403,18.899181,19.804759,20.896097,21.894555,22.753694,23.036785,24.332650,25.525455,26.918652,27.824230,28.636928,29.542507,30.517745,31.516203,33.874703,34.709153,35.471692,36.493370,37.677588,39.047565,40.208563,41.230241,42.275139,43.157497,43.575456,44.898994,46.152871,47.197769,48.544527,49.510709,50.126613,51.416752,52.415210,53.274348,54.412126,55.642783,56.641241,59.009677,59.868815,60.449314,61.145913,61.912171,63.142829,64.443146,65.557704,66.440062,67.368861,68.335507,69.342557,70.271355,71.890827,72.819625,73.841303,75.164841,76.279398,77.719036,80.087471,80.673449,81.379614,82.192313,82.610272,83.794490,84.445724,85.978241,86.406673,87.544450,88.728668,89.643788,90.446945,92.995560,93.806105,94.618559,95.709896,96.894114,97.362452,98.867810,101.236685,101.514835,102.330641,103.468418,105.209915,106.659339,108.052536,109.074214,109.817252,110.676391,112.291021,113.660998,114.914876,115.472007 diff --git a/data/torah/labels/tetzaveh-7.txt b/data/torah/labels/tetzaveh-7.txt deleted file mode 100644 index 824cc7130..000000000 --- a/data/torah/labels/tetzaveh-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.292220,4.329746,5.351424,6.465982,7.303749,8.093228,8.789826,9.927604,10.832439,12.481056,13.316974,14.338652,15.453210,16.683868,18.365137,19.642235,20.663913,22.103550,23.473527,25.400784,26.561781,28.117518,28.848661,30.241858,30.590158,32.378094,33.167573,33.503891,34.800618,36.333135,37.795992,38.600916,39.297514,40.435292,42.246448,43.198467,44.661324,45.590122,47.099419,48.283637,50.164453,51.279011,52.207809,53.601006,54.791514,55.002936,55.876562,57.116335,58.370212,59.763410,61.342366,62.178285,63.037423,64.384180,66.032797,66.228160,67.120333,67.816932,69.024370,70.092488,70.858746,71.926864,73.529041,74.481059,75.456297,76.733395,77.708633,78.105604,78.869630,80.102520,81.309957,83.051454,84.258892,84.650275,86.600751,88.202928,89.015626,89.851545,90.989323,92.893359,94.124016,95.029595,96.469232,97.560570,98.675127,100.161205,102.251001,102.944754,103.876397,105.571454,106.968817,108.663874,109.045994,110.624951,111.345216,112.459774,113.504672,115.246168,116.894785,117.630304,118.520182,120.517098,121.138599,122.136293,123.599150,124.736928,125.851485,127.058923,128.103821,130.541916,131.064164,132.178722,133.394509,134.547157,135.499176,135.792835,137.099377,138.121055,139.119513,141.325409,142.300647,144.088584,145.226361,146.410579,147.803776,148.546815,151.031350,151.844048,152.610307,153.552342 diff --git a/data/torah/labels/tetzaveh-h.txt b/data/torah/labels/tetzaveh-h.txt deleted file mode 100644 index b30179bf4..000000000 --- a/data/torah/labels/tetzaveh-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.825680,3.155955,5.617203,6.748806,7.097105,7.510714,8.834251,9.120512,10.688565,12.874523,16.009217,18.099013,18.540192,20.560328,21.459,24.112981,25.173319,25.684158,27.959714,29.035608,34.840597,41.667263,48.421084,50.078457,50.811004,56.871412,57.809554,58.306720,60.582275,61.551048,63.277736,63.858235,65.762271,67.515605,69.007289,70.818446,73.419081,76.693094,77.142260,77.489614,80.136121,80.784510,81.261827,82.771124,83.816022,85.371759,86.950716,88.018834,89.504911,90.490561,91.176747,94.636521,95.254267,98.096294,99.698471,101.207768,102.638011,104.642737,105.298692,106.297150,107.431490,108.915898,110.587735,111.679072,113.188369,114.924402,115.743464,116.974122,119.459847,120.571378,122.825550,123.905060,126.029904,128.119700,128.818544,130.240068,131.726145,133.072902,134.930499,136.857755,137.293970,139.427713,140.972580,143.178476,143.853990,145.200558,147.081374,148.706771,150.192848,152.073665,153.188222,155.208359,157.158835,159.596930,160.080363,161.539659,163.420476,165.579932,166.903469,168.784285,170.897301,173.451496,174.512124,176.276840,179.063235,180.735072,182.987407,184.961103,188.235117,189.697974,190.858972,192.066409,193.080652,194.473849,196.795845,199.210720,200.696797,201.672035,203.970811,207.523464,209.682919,211.076117,212.910493,213.2,214.489450,215.696888,216.857885,218.088543,218.994121,221.617976,224.381151,225.449269,227.422965,228.464652,230.740208,232.667464,233.991001,235.453858,237.961613,238.751092,240.539028,242.141205,244.114901,244.636140,245.717078,246.613363,247.844021,249.817717,251.489553,252.952411,254.554587,256.435404,258.084021,260.731095,262.356492,263.587150,265.003567,266.075653,267.511322,269.554678,271.619481,272.180631,273.782808,279.480663,280.249536,282.223232,283.291350,285.102506,286.324963,288.539060,291.028589,292.050267,293.582784,296.462058,297.121561,297.493081,298.677298,300.976074,303.228409,305.573625,308.917298,309.422539,310.493460,312.072417,312.568569,313.838891,315.486339,317.320715,318.115011,319.480171,321.755727,323.492738,324.769836,327.231151,331.364303,332.687840,333.489177,335.752874,337.715520,339.761390,341.128853,342.614930,344.913706,346.713189,348.408246,351.148201,351.887133,352.657498,353.841716,356.424435,358.468048,358.816213,360.496305,361.726963,363.096940,365.093856,368.066010,370.759525,372.408142,374.312178,374.823017,376.332314,377.871036,378.945518,379.386697,380.269055,382.010552,384.727286,385.632865,387.722661,389.394497,390.911680,392.061997,393.292655,394.851662,397.054287,398.899177,401.197952,403.356862,404.796121,405.758563,406.433422,407.723592,409.946655,411.919973,412.198612,414.776027,415.844145,416.228792,417.098022,418.134274,420.218151,421.280305,423.582762,425.522558,425.766128,427.240834,429.223665,431.452780,433.287157,435.237633,437.536408,437.863955,440.531782,442.807338,443.778890,446.289760,448.979714,450.697991,452.044748,452.442880,454.070479,454.494613,456.212890,456.968400,458.775807,460.600726,462.357343,463.819132,464.859612 diff --git a/data/torah/labels/toldot-1.txt b/data/torah/labels/toldot-1.txt deleted file mode 100644 index 68e2e616f..000000000 --- a/data/torah/labels/toldot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,3.529433,4.202812,5.061950,5.387029,6.362268,7.616145,8.266304,8.591383,9.636281,10.913379,11.772517,12.074376,13.119274,14.071293,15.278730,15.557370,17.368526,17.763265,18.692063,19.829841,20.735420,21.524898,23.196735,24.148753,24.938231,25.588390,26.401088,27.840726,28.746304,29.721542,30.603900,31.579138,32.159637,32.879456,33.715374,35.038912,35.596190,36.664308,37.778866,38.707664,39.775782,41.723175,42.675193,43.812971,45.020408,45.412154,46.155193,46.823946,47.497324,48.472562,49.689342,50.432381,50.613278,52.043900,52.923175,54.548571,56.475828,57.520726,58.194104,59.401542,60.376780,61.352018,62.420136,63.465034,64.463492,65.276190,66.274649,66.948027,68.109025,69.339683,71.127619,72.288617,73.379955,74.239093,74.935692,76.259229,77.698866,78.558005,79.579683,80.578141,81.530159,82.366077,83.573515,84.246893,85.384671,86.499229,87.637007,89.005442,90.723719,92.233016,93.231474,94.253152,95.251610,96.087528,96.760907,97.666485,99.802721,100.267120,101.056599,101.915737,102.798095,103.750113,105.607710,106.606168,107.720726,109.833741,111.459138,112.155737,112.968435,113.456054,114.245533,115.708390,116.288889,117.055147,118.192925,119.702222,121.257959,122.999456,123.460771,124.180590,124.528889,125.016508,125.759546,126.990204,127.826122,127.987120,129.612517,130.680635,131.609433,132.468571,133.606349,135.324626,135.719365,136.601723,137.182222,138.134240,139.063039,140.758095,141.013515,142.963991,144.287528,144.937687,145.378866,146.098685,146.748844,147.886621,148.513560,149.070839,149.860317,150.464036,150.881995,151.416054,152.066213,153.018231,154.457868,155.386667,156.149841,157.589478,157.889796,159.166893,160.142132,161.697868,162.673107,164.182404,164.971882,165.575601,166.388299,167.177778,167.595737,168.083356,169.267574,171.519909,173.331066,174.701043,175.281542,176.256780,177.487438,178.137596,179.275374,179.600454,180.668571,182.084989,184.314104,185.637642,187.402358,188.818776,189.654694,190.583492,191.721270,192.696508,193.509206,194.275465,195.343583,196.156281,196.527800,197.851338,199.778594,200.451973,201.589751,202.611429,203.261587,204.097506,204.886984,205.653243,206.256961,207.069660,209.136236,210.784853,211.272472,212.108390,212.479909,213.292608,214.592925,216.613061,217.263220,218.215238,219.422676,219.724535,220.281814,221.117732,222.232290,223.230748,223.834467,224.949025,226.156463,228.110359,228.876372,229.689070,230.617868,231.147302,232.494059,233.144218,233.794376,236.569879,237.580862,237.836281,238.088617,238.806893,239.666032,241.082449,241.336327,242.520544,243.170703,243.983401,244.655238,245.816236,247.441633,247.766712,248.788390,249.389512,250.543855,251.732880,252.661678,252.963537,253.147755,253.960454,254.726712,256.212789,257.443447,258.047166,258.697324,259.858322,261.344399,261.832018,262.784036,263.387755,264.130794,265.477551,266.476009,268.147846,269.239184 diff --git a/data/torah/labels/toldot-2.txt b/data/torah/labels/toldot-2.txt deleted file mode 100644 index fc926f54c..000000000 --- a/data/torah/labels/toldot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577415,3.366893,4.945850,7.267846,8.289524,9.311202,10.379320,11.424218,12.236916,13.026395,14.187392,15.162630,15.998549,16.811247,17.438186,19.202902,19.922721,20.781859,21.106939,21.942857,22.407256,22.871655,23.637914,24.520272,26.772608,27.376327,27.675102,27.905760,28.857778,30.467755,32.255692,33.347029,33.904308,34.786667,35.436825,36.365624,38.455420,39.430658,40.104036,41.056054,41.474014,42.286712,43.099410,44.399728,46.303764,48.207800,49.508118,50.135057,50.738776,51.528254,52.178413,52.828571,53.525170,54.221769,54.871927,56.009705,56.706304,57.495782,58.354921,59.074739,59.423039,60.119637,61.094875,62.673832,63.579410,63.974150,64.528345,65.223401,65.757460,67.824036,69.890612,70.703311,71.307029,71.678549,72.813243,73.924717,74.621315,75.619773,77.105850,78.127528,78.545488,78.729705,79.286984,80.169342,82.143039,82.723537,84.093515,85.045533,85.626032,86.833469,87.948027,88.760726,89.314921,90.169433,91.910930,92.723628,93.373787,94.023946,94.813424,96.831565 diff --git a/data/torah/labels/toldot-3.txt b/data/torah/labels/toldot-3.txt deleted file mode 100644 index b42e497c8..000000000 --- a/data/torah/labels/toldot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.530975,3.297234,4.690431,5.340590,6.385488,6.803447,7.173424,7.753923,8.798821,9.518639,9.958277,10.585215,11.049615,11.786485,12.575964,13.620862,14.363900,15.455238,16.012517,17.289615,17.986213,19.959909,21.028027,21.794286,22.490884,23.233923,24.023401,24.650340,25.300499,27.860226,28.608617,29.853243,30.689161,31.961633,32.611791,32.865669,33.678367,34.816145,35.861043,36.139683,36.766621,37.834739,38.600998,39.808435,40.551474,41.480272,42.455510,43.082449,43.683084,44.421497,45.257415,46.766712,48.508209,49.274467,49.481905,50.596463,52.245079,53.615057,54.358095,55.124354,55.913832,56.610431,58.189388,59.002086,60.000544,60.557823,61.347302,62.485079,63.158458,64.087256,65.434014,66.060952,66.664671,67.268390,68.754467,70.472744,70.913923,71.471202,72.423220,73.514558,74.907755,75.581134,76.184853,77.369070,79.574966,80.434104,82.361361,82.732880,83.220499,84.497596,85.217415,85.890794,86.517732,87.980590,88.352109,89.095147,90.047166,90.650884,91.835102,92.833560,94.528617,95.132336,95.968254,97.152472,97.383129,98.335147,99.287166,99.798005,101.609161,103.141678,104.906395,106.044172,106.671111,107.530249,108.226848,108.969887,109.666485,110.734603,111.454422,112.452880,114.589116,114.937415,116.353832,118.188209,119.743946,120.885601,121.867846 diff --git a/data/torah/labels/toldot-4.txt b/data/torah/labels/toldot-4.txt deleted file mode 100644 index 944d9118d..000000000 --- a/data/torah/labels/toldot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,2.902494,3.390113,4.388571,5.921088,6.594467,7.383946,8.126984,9.055782,10.541859,12.165926,13.169023,14.028161,14.910519,15.491018,16.257277,16.582356,17.255735,18.068433,19.786710,20.498476,20.681494,21.819272,22.861086,23.464805,24.463263,27.017458,27.689295,29.546891,30.684669,31.172288,32.124306,32.820905,33.262084,34.260542,35.769839,36.280678,36.861177,37.441676,38.184714,41.063989,41.528388,42.248206,43.200224,44.338002,45.406120,46.172379,46.636778,47.960315,49.330292,50.328751,51.141449,51.907707,52.673966,53.208025,54.601222,55.506800,56.156959,57.805576,59.291653,62.147707,62.821086,65.050202,65.444941,66.048660,66.629159,68.486755,70.785531,71.667889,72.013104,73.592061,74.567299,75.147798,76.169476,77.376914,78.166392,79.397050,80.511608,81.229884,82.808841,84.782537,85.989975,86.477594,87.847571,88.915689,89.705168,90.378546,90.866166,91.585984,92.723762,94.186619,96.369295,97.344533,98.621630 diff --git a/data/torah/labels/toldot-5.txt b/data/torah/labels/toldot-5.txt deleted file mode 100644 index 323953e8a..000000000 --- a/data/torah/labels/toldot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.345215,3.227574,4.156372,5.154830,6.733787,8.289524,9.287982,10.704399,11.215238,12.260136,13.583673,14.442812,15.348390,16.161088,17.693605,20.201361,21.269478,23.243175,24.380952,25.031111,25.936689,27.097687,27.654966,27.980045,28.442902,29.325261,29.905760,30.834558,31.716916,32.134875,32.947574,34.015692,35.223129,35.942948,36.894966,37.333061,37.820680,38.238639,38.935238,39.631837,40.398095,40.908934,41.628753,42.534331,43.741769,44.508027,44.856327,45.692245,46.504943,47.480181,48.246440,48.525079,49.244898,49.732517,50.638095,51.566893,52.356372,53.656689,54.167528,54.840907,56.094785,57.371882,57.952381,58.811519,59.879637,61.319274,63.523628,63.914066,64.481905,65.410703,66.548481,67.175420,67.918458,69.868934,70.217234,70.771429,71.721905,73.904580,75.042358,75.599637,76.389116,77.085714,77.550113,78.734331,80.429388,81.056327,81.543946,82.635283,83.215782,83.842721,84.376780,85.375238,86.605896,87.186395,87.650794,88.576508,89.505306,90.619864,91.895420,92.800998,94.030113,94.424853,95.562630,97.118367,97.411410,99.198912,99.849070,101.311927,102.124626,102.565805,103.443537,105.486893,106.276372,106.833651,107.483810,108.319728,109.503946,110.479184,111.570522,112.336780,112.497778,113.124717,113.867755,115.609252,116.561270,117.652608,118.302766,118.767166,119.951383,121.483900,122.412698,122.596916,123.293515,123.757914,124.384853,125.127891,126.126349,126.287347,127.123265,128.795102,129.189841,129.465397,130.137234,131.251791,131.805986,132.106304,133.497959,134.217778,134.400454,135.234830,136.372608,138.485624,138.996463,139.530522,140.134240,140.923719,142.038277,142.572336,143.129615,143.733333,144.638912,145.056871,145.776689,146.682268,147.377324,147.795283,148.025941,148.629660,149.046077,149.580136,151.344853,153.016689,153.713288,154.386667,155.060045,155.988844,157.660680,159.262857,159.959456,160.818594,162.789067,164.620499,165.502857,166.199456,167.871293,168.475011,169.543129,170.053968,171.145306,172.182494,173.088073,173.249070,173.852789,174.711927,175.012245,175.755283,176.335782,176.846621,177.427120,178.098957,178.516916,179.445714,180.769252,181.650068,182.416327,183.088163,184.086621,185.572698,186.407075,187.893152,188.541769,189.052608,190.143946,191.374603,191.862222,192.651701,193.162540,194.091338,194.671837,196.274014,196.924172,197.574331,198.178050,198.664127,199.243084,200.517098,201.445896,202.351474,203.001633,204.000091,204.510930,205.370068,205.973787,206.623946,207.459864,208.504762,209.874739,210.223039,210.757098,212.057415,212.730794,213.497052,214.588390,215.424308,216.329887,217.003265,218.071383,218.278821,218.859320,219.439819,220.809796,223.131791,223.921270,224.617868,225.221587,226.103946,226.218503,226.659683,227.495601,228.097778,229.328435,231.760363,232.014240,233.709297,234.150476,234.847075,235.381134,236.170612,236.727891,237.494150,238.376508,240.071565,240.419864,240.930703,241.696961,242.159819,243.320816,243.970975,244.505034,244.992653,245.875011,246.803810,248.475646,248.683084,250.167619,251.375147,252.017596,252.946395,254.200272,254.757551,255.384490,256.243628,256.799365,257.170884,258.958821,259.887619,260.700317,261.838095,262.859773,263.997551,265.576508,266.249887,266.503764,267.177143,267.571882,268.686440,269.568798,270.311837,270.892336,272.485261,273.019320,274.621497,275.364535,276.246893,277.709751,279.683447,280.310385,280.751565,281.471383,282.121542,282.469841,284.164898,284.745397,285.877007,287.067392,287.770249,288.466848,288.697506,289.626304,291.669660,293.434376,293.665034,294.384853,294.872472,295.801270,298.123265,298.819864,299.353923,300.329161,301.606259,302.535057,303.765714,304.462313,305.414331,305.716190,306.296689,307.875646,309.477823,310.081542,310.662041,311.566077,313.470113,315.420590,316.163628,316.741043,317.250340,317.877279,318.689977,319.688435,321.894331,323.032109,323.426848,324.262766,324.772063,325.375782,326.001179,326.929977,327.673016,328.578594,329.066213,329.925351,332.108027,333.617324,334.221043,335.312381,336.471837,337.238095,337.818594,338.375873,338.835646,339.188571,339.995102,340.341859,341.363537,342.292336,342.778413,343.382132,345.425488,345.797007,346.261406,347.004444,348.304762,350.278458,351.021497,351.739773,352.389932,352.990567,353.896145,354.499864,355.521542 diff --git a/data/torah/labels/toldot-6.txt b/data/torah/labels/toldot-6.txt deleted file mode 100644 index 2eb89b254..000000000 --- a/data/torah/labels/toldot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,2.902494,3.831293,4.504671,5.317370,6.362268,7.128526,7.685805,8.196644,9.473741,11.029478,12.887075,14.257052,14.767891,15.859229,16.602268,17.322086,18.483084,19.342222,19.783401,20.433560,21.339138,22.500136,23.289615,24.566712,25.913469,28.351565,29.048163,30.046621,32.670476,33.529615,33.901134,35.967710,37.941406,38.452245,39.195283,39.822222,40.797460,41.237098,41.887256,42.676735,43.280454,45.300590,46.066848,46.763447,48.179864,49.271202,49.523537,50.080816,50.916735,51.729433,52.681451,54.028209,55.723265,56.535964,57.116463,57.859501,58.647438,59.344036,59.994195,60.875011,62.036009,63.173787,64.450884,64.915283,65.588662,65.819320,66.376599,67.885896,69.186213,69.859592,70.695510,71.972608,73.272925,73.992744,76.895238,77.638277,77.845714,79.517551,82.512925,83.000544,85.763719,86.297778,86.551655,88.780771,89.872109,91.125986,92.263764,93.982041,94.678639,95.398458,96.605896,97.232834,97.952653,99.252971,100.669388,101.296327,101.526984,102.200363,103.152381,105.404717,106.379955,106.983673,107.633832,107.839728,108.698866,109.633923,110.423401,111.468299,111.652517,112.116916,113.161814,115.228390,115.666485,116.409524,117.338322,118.522540,119.962177,123.143311,125.147464,126.109297,127.386395,129.127891,130.078367,130.682086,131.587664,131.959184,133.050522,133.932880,134.442177,135.092336,135.719274,136.555193,138.134150,138.737868,139.736327,140.058322,141.823039,142.936054,144.445351,145.488707,147.253424,147.787483,149.087800,150.063039,150.597098,150.943855,151.268934,153.219410,154.333968,154.657506,155.818503,156.296871,156.993469,158.363447,159.524444,160.081723,160.755102,161.637460,162.519819,164.075556,165.211791,165.651429,167.439365,168.484263,169.064762,169.668481,170.318639,171.131338,172.176236,172.406893,172.964172,173.683991,175.402268,176.958005,177.770703,178.815601,180.975057,181.718095,182.298594,182.902313,183.529252,185.456508,186.965805,187.801723,188.239819,189.307937,190.050975,190.770794,191.978231,192.907029,193.766168,194.671746,194.855964,195.622222,196.504580,197.572698,198.151655,199.010794,200.055692,200.705850,201.215147,202.492245,204.297234,205.040272,205.294150,206.222948,206.476825,207.986122,208.705941,209.495420,210.215238,211.144036,212.722993,214.719909,216.949025,217.483084,217.993923,218.806621,219.944399,220.012517,220.589932,221.588390,223.028027,223.817506,223.953741,224.391837,224.994104,225.362116,226.224762,228.198458,229.359456,230.241814,230.868753,231.704671,232.633469,233.306848,233.887347,234.630385,235.419864,236.511202,236.998821,238.183039,240.017415,240.505034,241.015873,241.619592,243.732608,244.266667,245.822404,246.472562,246.980937,247.718730,249.111927,250.641361,251.128980,251.755918,252.615057,253.311655,253.588753,254.447891,254.841088,256.048526,257.232744,257.718821,258.087256,259.503673,261.590427,262.556372,262.810249,263.274649,263.901587,264.412426,265.132245,266.270023,267.013061,267.895420,269.404717,269.799456,270.912472,271.607528,272.974422,274.390789,274.994508,275.294826,275.991424,277.245302,278.127660,278.777819,279.265438,279.938817,280.658635,281.308794,282.794871,283.514690,284.023987,284.581266,285.811923,286.462082,287.274780,288.110699,288.434236,289.502354,291.243851,293.078227,293.329021,293.816640,294.651016,295.463715,296.717592,297.251651,297.855370,298.155687,298.617003,299.360041,300.008658,301.099996,302.028794,302.350789,303.208386,303.951424,304.694463,305.623261,306.134100,307.016458,307.852377,308.409656,309.129474,309.756413,310.638771,311.219270,311.799769,312.867887,314.679043,315.631062,316.374100,317.210019,318.324576,319.508794,321.827715,322.815503,324.314551,325.036269,325.825748,326.172505,326.751462,327.819580,328.469739,329.234455,329.884614,331.301031,331.695771,332.160170,333.065748,333.692687,334.016224,334.689603 diff --git a/data/torah/labels/toldot-7.txt b/data/torah/labels/toldot-7.txt deleted file mode 100644 index c8361dc54..000000000 --- a/data/torah/labels/toldot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.621274,3.248213,3.944811,4.780730,5.825628,6.591886,7.125945,7.706444,8.472702,8.867442,9.819460,10.771478,11.793156,12.512975,12.977374,13.766852,15.090390,16.622907,18.248303,18.782362,19.129120,21.590435,22.031614,23.935650,25.026988,25.677147,26.420185,27.070344,27.974380,28.461999,29.135378,29.785537,31.248394,32.243768,33.288666,33.938825,34.797963,35.308802,35.819641,36.400140,37.095197,37.977555,39.440412,40.090571,40.485310,40.994607,41.313519,41.940458,42.892476,43.681954,44.655650,45.700548,46.397147,46.791886,47.349165,47.716058,48.668077,49.469981,50.120140,51.257918,52.231614,52.812113,53.112430,54.087668,57.361682,57.849301,58.383360,58.894199,59.610934,59.776557,61.097011,62.699188,64.231705,64.742544,66.093688,66.787393 diff --git a/data/torah/labels/toldot-h.txt b/data/torah/labels/toldot-h.txt deleted file mode 100644 index fd3a76849..000000000 --- a/data/torah/labels/toldot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.685805,3.173424,4.148662,4.543401,6.586757,7.236916,8.421134,10.185850,10.743129,11.602268,12.949025,14.110023,14.969161,16.873197,17.500136,17.987755,18.823673,19.822132,20.332971,21.192109,22.399546,22.771066,24.001723,25.720000,26.532698,28.320635,29.528073,29.876372,30.503311,31.687528,32.221587,33.382585,34.195283,35.263401,36.238639,36.839274,38.650431,41.042086,42.295964,43.168654,44.328526,45.365714,46.201633,46.944671,48.012789,48.988027,49.754286,50.427664,52.285261,53.655238,54.305397,55.118095,56.371973,58.508209,59.088707,59.715646,60.574785,61.085624,62.269841,63.941678,65.822494,66.751293,67.587211,68.376689,69.398367,70.350385,71.186304,72.579501,75.342676,76.457234,76.944853,77.429388,79.542404,80.030023,80.610522,81.330340,82.305578,83.977415,84.277732,84.974331,86.297868,87.365986,89.502222,90.105941,90.941859,93.147755,94.494512,95.771610,96.862948,97.791746,99.347483,100.578141,101.274739,101.528617,102.689615,104.361451,104.663311,105.476009,106.474467,107.635465,108.796463,109.562721,111.791837,113.997732,114.833651,115.553469,116.296508,117.248526,118.664943,119.593741,120.290340,121.079819,121.869297,122.589116,123.262494,124.934331,125.747029,126.722268,127.186667,128.603084,130.298141,132.225397,134.756372,136.219229,136.753288,137.565986,138.634104,139.237823,140.004082,141.072200,143.308261,143.935200,144.260279,144.442955,144.930574,146.881050,147.856288,148.831526,149.528125,150.456923,151.060642,151.896560,152.453839,153.196878,154.288216,155.124134,155.653567,156.419825,157.808397,158.806855,159.340914,160.175290,161.057649,162.845585,163.286764,163.727943,165.562320,167.094837,168.116515,168.929213,170.229531,171.181549,171.645948,172.178465,173.455562,174.848760,176.195517,177.542274,178.053113,179.698646,180.789984,181.347263,182.252841,183.251299,185.155336,186.036152,187.568669,188.404587,189.240506,190.749803,191.166220,191.909259,192.605857,193.557875,194.486674,195.322592,196.599689,197.598147,198.643045,200.291662,203.890755,204.912433,205.725132,206.979009,207.513068,208.511526,209.161685,210.183363,212.667898,213.782456,215.988352,217.240687,219.376923,220.421821,221.489939,222.581277,223.626175,225.460551,225.924950,226.993068,227.270166,228.663363,229.869259,230.096832,231.954429,232.951345,234.414202,235.435880,235.946719,237.014837,238.802773,240.706810,241.983907,242.912705,243.795064,245.629440,246.696016,247.508714,249.250211,250.598825,251.574064,253.199460,254.615878,255.544676,256.380594,257.841909,258.793927,259.374426,260.465764,263.205719,265.202635,266.176331,266.896150,268.730526,269.728984,269.913202,272.885356,273.207352,274.205810,275.597465,276.061864,277.315742,279.196558,279.473655,281.424132,282.608349,283.583587,284.883905,286.323542,286.927261,287.204358,288.620776,289.549574,289.710571,291.870027,292.845265,293.843723,294.331342,295.213701,296.119279,296.349937,297.418054,298.902590,299.574426,300.223043,300.382499,301.288077,302.727714,303.540413,303.840730,304.815968,305.559007,307.648803,308.763361,309.529619,311.108576,312.715136,313.676739,314.535878,315.998735,316.439914,317.204630,318.621048,319.665946,320.362544,320.500322,321.289801,322.195379,322.868757,324.029755,325.071569,325.788304,328.110299,329.224857,330.385855,331.057692,331.452431,331.867306,333.794562,334.512839,335.116558,335.813157,337.090254,338.553111,339.365810,340.410708,341.200186,342.198644,342.638281,343.076376,345.026853,346.443270,347.372068,348.231206,348.881365,349.994381,350.853519,352.060957,352.686354,353.568712,354.265311,355.170889,355.983587,356.982045,357.957284,359.652340,360.999537,361.757646,362.129166,363.359823 diff --git a/data/torah/labels/tzav-7.txt b/data/torah/labels/tzav-7.txt deleted file mode 100644 index a3686d208..000000000 --- a/data/torah/labels/tzav-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.270930,3.757007,4.682721,6.517098,7.515556,9.651791,10.650249,10.879365,12.411882,13.800454,14.083719,14.842268,15.141043,16.139501,16.836100,17.950658,18.577596,19.158095,19.659773,20.100952,21.703129,21.837823,22.580862,22.878095,23.853333,24.401361,25.771338,26.255873,26.836372,27.413787,28.412245,29.310113,30.563991,30.978866,31.652245,31.904580,33.506757,34.613605,34.734331,37.396916,38.135329,38.480544,40.013061,41.243719,41.844354,42.703492,43.369161,44.039456,44.684989,45.404807,46.356825,47.308844,48.191202,49.212880,49.800998,50.530249,51.807347,53.409524,53.852880,54.851338,55.614512,56.984490,60.234100,61.080167,63.053863,63.773682,65.166879,66.513636,67.790734,68.765972,69.810870,70.995087,72.039985,73.758262,74.674907,76.033818,77.310915,78.487417,78.766056,80.391453,81.807870,82.852768,83.967326,85.290864,87.241340,89.424015,90.585013,91.418274,93.136551,95.574646,96.410565,98.128841,99.568479,100.683036,101.890474,103.283671,104.607209,107.184624,107.602583,108.520587,109.681585,110.417333,111.905781,112.564729,113.075568,114.909944,116.465681,117.510579,118.578697,119.414615,119.808636,121.225053,121.898432,122.734350,123.965008,124.893806 diff --git a/data/torah/labels/tzav-h.txt b/data/torah/labels/tzav-h.txt deleted file mode 100644 index b7f1d6bb3..000000000 --- a/data/torah/labels/tzav-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.579995,4.063514,5.011654,6.443539,7.178831,9.075112,11.880833,12.739290,13.042143,14.471846,15.342587,16.987320,19.967189,20.644433,21.611923,21.806117,23.354100,24.844035,26.527468,28.636596,29.778234,30.765074,31.597116,33.648195,34.091777,34.710971,35.833259,37.555391,38.697029,39.111442,39.298792,40.361698,43.434976,44.847512,45.834352,47.053390,48.523974,50.052335,51.445794,52.316535,53.554923,54.909408,55.393157,55.548804,57.328134,59.902817,60.514982,61.463122,63.185254,64.984785,66.339271,67.713107,68.390350,70.131832,71.524436,72.840222,73.440827,74.717914,75.054564,76.462195,77.984737,80.541456,82.052734,82.786342,84.572838,85.530411,86.812512,87.354306,88.902290,90.009813,91.789995,92.912283,94.206022,95.601906,96.975742,98.214129,99.259018,99.974961,101.619694,103.187028,104.522164,104.962342,105.252589,106.703824,108.309857,109.412796,110.264187,112.237867,113.456905,114.463094,115.701482,116.494823,117.501012,117.965408,119.919738,121.467722,121.757969,122.957657,124.524991,126.459970,128.046655,129.323741,129.672038,129.810565,131.455298,132.751735,133.583776,134.628666,136.660394,137.903389,139.180476,139.838369,141.444403,143.190437,145.009318,145.783310,147.016167,147.826280,148.290675,150.554601,151.734940,153.316996,154.598710,155.382918,156.698705,158.614335,159.988171,161.478105,163.045440,164.941720,166.547753,167.611992,169.218026,170.069417,170.346014,171.675450,173.345233,174.390123,175.647860,177.195843,178.434231,178.747641,179.267222,180.911005,181.479215,182.695333,183.122416,184.089907,186.140985,187.630920,188.156870,189.879002,190.861390,193.067268,195.273145,195.768583,196.168383,196.728536,197.824984,199.864614,202.229820,203.055920,205.145699,206.287338,207.545075,207.917802,209.038163,211.202277,211.556580,212.291078,212.696091,214.046269,215.793393,216.935031,218.192768,219.682703,220.574481,221.754819,222.276382,223.554350,226.170618,227.389656,228.337796,229.189187,229.427666,230.743453,231.372531,232.417421,233.172063,234.333051,235.571438,235.792749,236.922686,238.023894,238.311167,238.678218,240.632547,241.851585,242.877124,243.593067,245.237800,248.333768,249.398008,250.307447,251.178189,252.648774,253.310923,254.646060,255.968810,257.749896,258.922365,261.043946,264.108112,265.423898,267.455627,268.790763,271.267539,272.080230,273.163819,274.615054,275.776042,276.472634,277.556224,278.310866,280.032998,280.613492,281.871229,282.490423,283.922308,285.160695,286.457132,287.061202,292.552320,294.022904,294.386635,295.516571,296.309119,297.470108,298.092442,299.050015,301.746414,302.423656,303.042850,304.997180,307.145008,308.170548,310.299026,312.504902,313.336944,313.973166,315.482450,317.881826,320.900394,321.906584,323.977013,326.086141,327.150380,329.375608,330.343097,332.316777,333.456545,334.598183,335.720472,337.307156,338.468144,340.112877,341.370614,342.299404,343.924788,345.801718,346.653110,347.736699,349.091184,350.523070,352.903096,353.203142,353.628838,354.886575,356.221711,357.601178,358.317122,359.671607,361.683987,362.999773,364.509057,364.816122,365.869594,367.011232,368.830114,369.398477,370.540115,371.887383,373.664094,375.416265,376.316572,377.602792,378.336004,379.864638,381.954416,382.902557,385.011685,385.485106,386.568695,387.362037,389.006770,389.526659,390.245157,391.328746,393.283076,393.683318,394.283163,395.209485,396.856686,398.149972,398.553398,400.742845,401.823514,403.971342,407.551055,408.537895,410.143929,411.064259,412.515493,413.657132,414.547222,416.230656,416.946598,418.339784,420.216714,420.585167,421.424801,422.490626,422.982471 diff --git a/data/torah/labels/vayakhel-1.txt b/data/torah/labels/vayakhel-1.txt deleted file mode 100644 index 7077b049a..000000000 --- a/data/torah/labels/vayakhel-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.818708,3.653084,4.071970,4.338257,6.121275,6.910753,8.303950,9.302409,10.509846,11.624404,12.878282,13.807080,14.526898,15.755308,16.511272,17.695490,19.006227,21.177579,22.106377,24.242613,25.264291,27.121888,28.496241,29.448259,31.096876,32.002454,33.000912,34.278010,34.828106,36.019301,37.366059,38.744742,40.009605,40.446895,41.956192,42.908210,43.883448,45.717824,46.832382,48.527439,50.686895,51.755012,52.299521,52.536184,53.237474,53.817973,54.700331,55.605909,57.162919,58.482567,59.155945,59.898984,60.483380,61.690818,62.991135,64.618952,65.584242,67.004438,68.010904,69.103161,70.286459,72.748694,73.514952,74.443750,75.697628,76.696086,77.601664,79.134181,80.991778,83.244113,84.544431,85.380349,86.076948,87.818444,88.750855,90.074393,92.489268,93.627046,94.602284,95.438202,96.808180,98.015617,99.246275,100.476932,101.823690,102.938248,104.215345,105.724642,106.786072,107.645210,108.690108,109.758226,110.942443,112.474960,113.360548,113.883511,114.392975,115.521151,116.821468,118.470085,119.747182,120.139768,120.629541,121.581559,122.881876,123.837815,125.370332,125.919839,126.856409,127.313956,128.667565,129.124428,130.424746,130.891101,132.352002,132.832776,134.938587,135.287121,136.278146,136.682841,138.182182,138.693021,139.934098,140.770016,141.722035,142.019674,143.346072,144.414190,145.087568,146.712965,147.145697,148.005409,148.400148,149.238243,149.575565,150,150.724320,151.668566,152.434825,153.619043,154.368729,155.924238,158.130133,158.663060,159.650085,160.125918,161.477829,162.383408,163.126446,164.609678,165.219919,166.027471,167.304568,167.638692,168.848078,169.900983,170.806561,172.013999,172.989237,173.732276,175.079033,175.682775,176.234907,177.210145,178.115723,179.717900,181.900576,182.861426,184.524431,185.113769,186.220092,187.450749,187.881069,189.018846,189.607360,190.509850,190.894413,191.256095,192.344227,192.972776,194.280417,194.860916,196.209056,197.252571,198.405923,199.881596,200.170073,201.245169,201.616688,202.788561,205.239001,206.307119,206.960389,208.507891,209.159770,210.529748,212.944623,213.641222,214.361040,215.522038,215.958667,217.797594,218.577155,219.135463,220.250021,221.364579,222.641676,223.082855,224.081313,224.986891,226.217549,227.657186,228.285531,228.922308,229.572466,231.174643,233.798498,234.232605,234.794803,235.264466,236.529785,237.597903 diff --git a/data/torah/labels/vayakhel-2.txt b/data/torah/labels/vayakhel-2.txt deleted file mode 100644 index 9c0a72f2c..000000000 --- a/data/torah/labels/vayakhel-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.319182,4.910590,5.560749,6.118028,7.232586,8.277484,11.597937,13.734173,14.964831,16.659887,18.819343,21.605738,22.009209,22.812352,24.786048,26.039926,26.826293,27.685432,28.282014,30.617049,32.149566,33.542763,34.892598,36.192916,36.567194,37.890647,39.974727,41.042845,42.714682,45.384977,46.290555,48.473231,49.680668,50.980986,51.281378,52.674575,54.044552,55.158993,56.738067,57.851223,59.570901,60.676786,61.435637,62.828835,63.945812,65.408669,65.930636,66.696895,68.066872,70.040568,72.269684,73.453902,74.243380,75.009639,76.495716,77.411563,78.804760,80.848116,81.800134,82.937912,84.470429,85.462446,87.093559,88.231337,89.113695,90.367573,92.805668,93.455827,94.454285,95.917142,99.214375,101.234511,102.279409,104.044126,105.078561,106.900180,107.645846,108.621085,109.592806,110.943080,112.021887,112.695266,113.490647,114.221899,115.566475,116.950117,118.482634,119.945491,120.470504,121.793551,122.156547,124.369901,124.685612,125.665450,126.780008,127.174747,128.637604,129.937921,131.609758,132.793976,133.908534,136.091209,137.514818,139.024115,140.626291,141.065612,143.096115,145.770216,147.111799,147.917800,149.334217,150.541655,151.563333,152.492131,153.838888,155.232086,157.020022,157.944173,158.875829,159.340228,160.292246,162.869661,163.960999,165.330976,166.375874,167.885171,168.500495,168.988114,170.636730,171.960268,172.774101,174.822734,177.138318,178.531515,179.061772,180.315649,181.569527,182.962724,185.052520,186.097418,186.679424,187.722815,189.510751,190.037220,191.879187,193.730580 diff --git a/data/torah/labels/vayakhel-3.txt b/data/torah/labels/vayakhel-3.txt deleted file mode 100644 index b8e4a93d7..000000000 --- a/data/torah/labels/vayakhel-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066657,3.057552,3.498731,4.566849,6.052926,8.119502,9.094740,10.023538,11.091656,13.599411,13.970354,14.590148,14.826017,15.619547,16.571566,17.802223,19.227526,19.970565,20.713603,21.828161,24.103717,25.311154,26.193512,26.755846,27.940064,29.402921,30.981878,33.350313,34.325551,35.393669,37.065506,38.839671,40.409180,41.546957,42.754395,43.799293,44.758846,45.136528,45.856347,47.737163,49.483359,50.342498,51.433835,53.244992,54.429210,54.677759,55.729527,56.450651,57.424584,58.679766,60.072964,61.141082,62.673599,65.320673,65.683747,66.644211,68.008736,70.309024,72.487243,73.880440,76.063116,77.734953,79.546109,80.869646,82.123524,83.586381,83.901777,85.132884,86.457034,88.198530,90.984925,92.053043,94.189279,96.209415,96.975628,97.503524,98.952430,101.204572,102.010738,103.821895,104.959672,106.120670,107.351328,108.628425,110.137722,110.611070,110.835707,111.740416,112.715654,114.132072,114.960283,115.564002,116.516020,118.002097,119.367055,120.951031,121.554750,123.609243,124.459918,126.720717,127.695955,128.056485,129.008503,129.474721,130.310639,132.005696,133.677533,135.488689,136.696127,138.158984,138.994902,139.847751,141.449928,142.634146,144.073783,144.418881,145.675960,146.535098,147.649656,150.296731,151.433063,152.988800,153.894378,154.235501,155.655056,156.684041,158.395011,159.166275,160.930461,163.089916,164.065154,165.086832,166.108510,166.944429,169.684383,170.613182,171.681300,173.260256,174.421254,175.210733,176.673590,178.528245,178.821979,180.926563,183.427030,184.022317,184.280649,185.102954,186.356832,187.355290,188.841367,190.606083,191.233022,191.836741,193.206718,194.878555,195.141829,196.298289,197.552167,198.448751,199.191789,200.399227,201.476582,202.745779,204.091200,204.857458,205.484397,206.297095,207.086574,208.201132,209.687209,211.242946,212.938002,213.371091,215.842094,217.882456,218.627588,220.459871,221,222.109455,223.927644,224.906181,225.913602,227.260360,228.398137,229.094736,230.743353,233.343988,234.597865,236.107162,236.769376,237.837494,238.859172,239.834410 diff --git a/data/torah/labels/vayakhel-4.txt b/data/torah/labels/vayakhel-4.txt deleted file mode 100644 index 18c020031..000000000 --- a/data/torah/labels/vayakhel-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.135757,2.587307,3.193398,4.563375,6.351312,8.673307,9.079269,10.352580,11.410689,12.415284,13.234141,15.114958,16.206295,17.576273,18.899810,20.130468,22.289923,23.218722,24.240400,25.122758,26.353416,28.157106,29.161702,30.961966,32.146184,33.307182,34.653939,36.000696,37.277794,38.578111,39.739109,41.039426,41.921785,42.571943,43.083879,44.592079,46.358776,46.683855,47.682313,49.075510,49.981089,50.389007,51.341025,52.478803,53.523701,54.731139,55.706377,56.124666,57.631559,59.653769,60.683255,62.347284,62.834606,63.786921,64.901479,66.225016,67.664653,69.382930,70.288508,71.217306,72.308644,73.725061,76.396645,77.481346,78.851323,80.466700,82.161757,84.590311,85.542329,87.469586,88.955663,90.604280,92.043917,93.112035,94.505232,95.550130,96.641468,97.872125,99.311763,101.494438,102.446456,102.790970,104.118293,107.252987,108.297885,109.180243,110.109041,111.292123,111.576443,113.424519,114.360423,114.755162,115.660740,117.594538,118.484480,119.390059,120.745910,122.408653,123.470474,124.660988,125.770643,126.048304,127.163841,128.095404,128.815681,130.235895,130.995463,132.256031,133.927868,134.879886,136.667822,137.947112,139.456409,141.290785,142.475003,143.380581,144.564799,145.841896,147.188654,148.465751,149.580309,150.393007,151.623665,154.247520,154.660322,155.418507,156.499889,157.544787,158.081633,158.564976,159.516526,160.770403,162.953079,163.682726,165.360211,166.280468,167.395026,168.834663,170.181421,171.597838,172.991035,174.662872,176.102509,176.185689,177.160927,178.647004,179.691902,181.270859,183.708954,184.451993,185.241471,186.588229,187.679567,188.010997,188.933168,189.727838,191.190695,192.746432,193.791330,195.068427,195.834686,196.693824,198.040581,200.246477,200.919856,202.289833 diff --git a/data/torah/labels/vayakhel-5.txt b/data/torah/labels/vayakhel-5.txt deleted file mode 100644 index 288cf8f40..000000000 --- a/data/torah/labels/vayakhel-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.766717,2.207897,3.484994,4.738872,5.589366,6.275782,7.761859,8.876417,9.456916,10.269614,11.500272,12.730929,13.868707,15.285124,16.167482,16.968513,18.280498,19.507011,21.062748,22.212718,23.500843,25.430590,26.289728,26.632994,27.657340,28.658163,29.935261,31.189138,31.862517,33.302154,34.509592,34.794358,35.921571,37.152229,38.579985,39.960625,40.983521,41.597351,43.022528,44.554094,45.081972,46.016951,48.355985,49.215124,50.213582,51.862199,52.854022,54.532493,55.135198,55.924677,57.248214,58.362772,59.895289,61.358146,63.164286,63.793795,64.629714,65.651392,66.301550,67.810847,70.109623,71.874340,72.988897,73.824816,74.846494,76.030711,76.680870,78.213387,79.745904,80.814022,81.835700,82.585746,84.141483,85.163161,86.231279,87.392276,88.971233,90.178671,90.944930,91.641528,93.174045,94.729782,95.635360,96.680258,97.655496,98.328875,99.605973,100.975950,101.951188,103.205066,104.691143,105.991460,108.335714,109.215218,111.397894,113.627009,115.600705,116.715263,117.610498,117.977927,119.037259,119.770532,120.952749,122.183407,123.178450,124.176908,125.570105,126.300497,128.134874,129.370013,130.515030,132.040308,133.387066,134.315864,135.244662,135.894821,136.962939,137.874733,138.872906,139.801704,141.032362,141.937940,142.611319,144.167056,145.444153,146.512271,147.208870,148.300208,150.854403,151.922521,152.344046,153.226404,154.735701,156.453978,157.800735,158.729533,159.235445,160.233903,161.534221,163.159618,164.367055,165.829912,167.130230,168.593087,169.614765,170.729323,170.887620,171.955453,173.302211,174.672188,175.670646,177.272823,177.746284,178.735680,178.982180,180.407517,181.030871,183.114576,183.917385,185.496342,186.323989,187.693967,188.947844,190.387481,191.455599,192.964896,193.986574,194.213758,195.117148,196.440686,197.996423,198.210934,199.661990,201.403486,203.353963,204.375641,205.118679,205.768838,206.999495,208.253373,209.901990,210.761128,211.364847,212.897364,214.104802,215.497999,216.937636,218.261173,219.491831,221.349427,222.417545,223.439223,224.553781,226.132738,227.200856,228.268974,228.849473,230.010470,231.357228,232.402126,233.470244,234.515142,236.256638,238.439314,239.577092,240.505890,241.295368,242.479586,243.501264,244.615822,245.367388,246.203306,247.248204,247.702429,249.706584,251.476726,253.589741,255.609877,256.631555,257.978313,258.758684,260.160989,262.342748,264.246784,264.826821,265.852972,266.665670,267.873108,268.871566,270.527528,272.400999,273.724536,274.558107,275.958534,276.701573,277.560711,279.348648,282.320802,283.087060,283.992638,285.037536,286.198534,287.359532,288.752729,289.403119,289.892365,291.192683,292.617771,293.979077,295.086894,296.294331,297.455329,298.351881,299.137553,300.437870,301.387327,303.059164,303.602080,304.670198,305.715096,306.420268,307.674145,308.138545,308.784621,310.065801,311.226718,312.016197,312.805675,313.973156,314.919465,315.639283,316.753841,318.100598,318.337760,319.400916,320.976564,321.573622,322.409541,323.849178,324.779319,324.988298,326.635572,327.797913,328.819591,329.562629,330.862947,332.023945,333.138502,334.415600,335.321178,336.087437,337.410974,339.849069,340.468351,341.606128,343.115425,344.694382,345.855380,346.969938,348.177376,348.850754,350.220732,350.990165,351.776469,352.731661,353.753339,354.480877,355.053657,356.005675,357.097013,357.574565,359.803680,360.420161,360.675580,361.883018,362.649276,364.112133,365.268391,367.734446,369.002339,371.115355,373.390911,374.853768,376.618484,376.870222,378.174221,379.539850,380.329328,380.635385,381.559986,382.539421,383.793299,384.652437,385.186496,386.881553,388.715929,388.948537,390.039466,390.736065,391.734523,392.871865,393.847103,394.892001,396.192318,397.074677,397.910595,399.280572,400.551320,401.509688,402.484926,403.506604,404.544307,406.076824,406.598522,407.330702,408.631019,409.986358,410.662503,412.622121,413.5,414.425860,416.202378,416.693047,418.806063,420.260178,421.778218,423.496494,424.471732,425.446970,426.329329,427.443886,428.581664,428.889179,430.408659,431.244577,432.173376,433.613013,434.588251,435.215190,436.654827,438.373103,439.743081,440.695099,441.879317,443.017094,444.572831,445.617729,445.815912,447.472150,448.641241,448.819388,449.966210,450.949914,452.404598,453.429229,454.172267,455.266086,456.239137,456.526723,458.049635,460.404455,460.632768,463.020617,463.868630,464.229113,466.306726,467.057199,468.507018,468.839906,470.233103,471.370881,473.391017,474.366255,476.130972,477.059770,477.872468,478.987026,480.357003 diff --git a/data/torah/labels/vayakhel-6.txt b/data/torah/labels/vayakhel-6.txt deleted file mode 100644 index f098771eb..000000000 --- a/data/torah/labels/vayakhel-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.727115,1.996987,3.227644,4.125940,5.124398,7.399954,8.414491,8.739570,10.086327,11.502745,13.012042,15.032178,16.264964,17.520072,18.180229,19.434106,21.454242,22.638460,23.915557,25.331975,27.584310,28.652428,30.370705,32.065761,33.621498,35.130795,36.106034,37.452791,38.567349,40.262405,41.423403,43.954378,46.757914,47.867183,50.328498,51.048316,53.068453,54.345550,56.272806,59.120122,60.211460,61.209918,62.092276,63.624793,64.692911,66.202208,67.572185,69.197582,69.559126,71.138083,72.926019,74.040577,75.085475,77.268151,78.614908,80.472504,84.535996,86.347153,87.275951,89.272867,91.293003,93.127380,93.834748,94.616004,95.777001,96.961219,99.422534,100.258453,101.024711,101.907069,103.021627,104.345165,105.599042,106.783260,108.106797,109.871514,111.195051,112.518589,113.540267,115.769382,116.814280,117.673418,118.486117,119.856094,121.109972,121.436835,122.568489,123.640920,126.085351,127.850067,128.685986,130.032743,132.505789,133.434587,134.409825,135.431503,136.360301,137.753499,138.113309,139.402115,141.909870,142.699349,143.326288,144.301526,145.114224,146.298442,147.104820,149.041494,150.063172,151.758229,153.917685,155.589522,156.959499,158.236597,158.933195,160.674692,162.160769,164.018365,165.109703,166.827980,167.465476,169.044433,169.601712,171.830828,172.806066,173.360368,174.823225,176.053883,177.725720,178.411953,179.062112,180.362429,182.429005,183.381023,185.029640,185.695694,187.490955,188.621408,190.595104,191.547123,192.661680,194.217417,195.122996,196.208345,197.305671,199.428926,200.868563,201.750922,202.401080,203.678178,204.932055,205.122192,206.209153,206.825324,208.089969,209.069584,209.742963,211.043281,212.784777,213.142014,213.727222,214.772120,215.793798,216.513617,217.163776,218.092574,218.974932,220.530669 diff --git a/data/torah/labels/vayakhel-7.txt b/data/torah/labels/vayakhel-7.txt deleted file mode 100644 index 137f9acfa..000000000 --- a/data/torah/labels/vayakhel-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.071876,3.368206,4.111245,5.132923,6.038501,7.176279,9.382175,10.218093,11.727390,12.888388,13.584986,14.583444,15.721222,16.575188,17.295006,18.757863,20.011741,22.147977,23.095077,24.423532,25.886390,26.861628,27.743986,28.974643,30.019541,30.692920,31.807478,34.084352,34.418593,34.659978,35.361591,37.451387,37.840574,38.946275,39.364234,40.734212,41.221831,42.847228,43.520606,44.867364,45.209902,46.573014,47.126779,47.999952,48.510791,49.764669,50.879226,51.993784,53.178002,54.385440,55.476777,56.614555,58.301462,60.747707,62.233784,62.504393,63.975281,66.320496,67.969113,70.151789,71.196687,72.613104,73.959861,75.167299,76.142537,77.767934,79.184351,79.372911,80.438229,81.181267,82.342265,83.363943,84.129607,85.569839,86.800496,86.969424,88.727752,91.003308,91.816006,92.884124,94.393421,95.322220,96.088478,97.040496,98.073956,98.886654,99.606614,101.162210,103.135906,103.786065,105.109602,106.317040,107.222618,108.058536,109.312414,110.961031,113.283026,114.861983,116.278400,117.114319,117.601938,118.948695,120.465077,120.734203,121.941641,123.823957,124.729535,126.447812,127.446270,128.816247,129.837925,131.022143,132.043821,133.344138,135.178515,136.316293,137.314751,138.104229,139.311667,140.913844,143.259059,145.093435,146.277653,147.740510,148.762188,149.771998,151.107404,152.980993,154.102778,155.674156,156.440415,157.903272,159.621549,161.850664,163.615381,164.869258,166.192796,167.446673,169.025630,170.581367,171.928125,173.507082,174.946719,176.339916,177.431254,179.178313,181.279778,183.004043,184.118601,186.417376,187.274137,188.388695,189.363933,190.594591,192.939806,193.574526,194.085365,195.153483,195.505766,196.689984,198.547581,200.010438,201.172703,202.564633,203.945883,205.826699,206.918037,208.079035,209.308781,210.941677,213.373185,214.371643,215.486201,216.206019,218.041222,219.526473,220.7,222.286749,222.745970,224.324927,226.484383,227.343521,228.094177,229.343697,230.911454,233.442429,235.346466,236.245298,238.427974,240.215910,241.214368,242.474691,243.728569,245.005666,246.422084,248.488660,249.579998,250.601676,251.465879,252.871589,255.266079,256.156264,257.448755,258.911612,260.142270,261.823387,263.913183,265.050961,265.747560,266.513818,267.651596,268.905474,269.857492,270.763070,271.900848,273.015406,274.129963,275.058762,276.080440,276.648386,278.064803,280.317139,282.012195,283.428613,284.194871,285.379089,286.958046,287.863624,289.860540,292.089656,293.575733,294.783171,295.854412,298.129968,300.335863,303.006158,304.352915 diff --git a/data/torah/labels/vayakhel-h.txt b/data/torah/labels/vayakhel-h.txt deleted file mode 100644 index 56d87d7e6..000000000 --- a/data/torah/labels/vayakhel-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.048128,4.051223,4.469182,6.187459,6.638203,7.743196,8.207595,9.949092,11.219498,12.851586,13.942924,14.152929,14.398356,15.625488,16.671464,18.505841,19.481079,20.340217,20.920716,22.313913,23.962530,25.193187,26.957904,29.256680,29.881444,30.229743,30.523458,31.846995,33.565272,35.422868,36.630306,38.743322,39.116312,40.066859,41.330370,42.961327,44.163204,44.422199,44.679313,46.373925,47.016708,49.342417,50.015778,51.006828,51.562942,53.534174,54.204199,54.932625,55.977523,57.997693,59.369843,61.294926,61.742299,62.734563,63.802681,65.428078,66.751616,67.053475,67.340361,68.881023,69.654383,70.877939,72.502309,73.030225,73.889363,75.073581,75.404375,77.186597,77.835266,78.765554,80.390951,80.815446,81.411481,81.806529,82.837293,83.292606,84.835766,85.618793,86.341076,86.642935,88.291552,88.802391,90.659987,91.774545,92.011570,93.288975,94.629452,95.763089,96.562989,98.559905,99.372603,100.278181,100.683306,102.574424,103.781861,105.476918,107.148755,108.263313,109.842270,110.956827,112.303585,114.230841,114.684305,115.763032,116.413190,117.899268,119.292465,120.360583,120.632976,120.995272,122.140596,123.472057,124.331195,125.770832,126.179670,127.363888,128.007459,129.267924,131.473820,132.750917,133.493956,133.769138,135.003253,136.350010,136.698310,138.393366,139.136405,140.390282,141.644160,142.074883,143.831625,144.721958,146.671561,147.508352,148.321051,149.598148,150.504889,153.429441,154.583644,156.471255,158.212751,160.486166,161.205386,162.412824,163.088375,164.783432,166.664248,168.986244,170.953865,172.579262,175.760395,178.059171,180.566926,181.674057,183.205051,183.810463,185.389420,190.822890,192.935906,193.779455,195.567391,196.472970,198.330566,199.607663,201.581360,202.881677 diff --git a/data/torah/labels/vayeilech-1.txt b/data/torah/labels/vayeilech-1.txt deleted file mode 100644 index 125f2e704..000000000 --- a/data/torah/labels/vayeilech-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.951271,4.437348,9.383198,9.870817,11.078255,12.378573,12.819752,13.260931,15.234627,16.999344,19.205239,19.971498,22.920432,24.801248,26.333765,27.541203,28.887960,29.584559,30.374037,31.279616,32.278074,33.624831,35.343108,36.550545,37.711543,38.802881,39.824559,40.312178,41.240976,42.982473,44.886509,46.465466,48.810681,50.180659,52.061475,53.315353,55.358709,56.055307,57.425285,58.841702,60.606418,62.440795,65.947008,67.665285,68.710183,70.149820,71.728777,72.936214 diff --git a/data/torah/labels/vayeilech-2.txt b/data/torah/labels/vayeilech-2.txt deleted file mode 100644 index 5ff1a18e7..000000000 --- a/data/torah/labels/vayeilech-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.729230,3.959888,5.399525,7.024922,9.045058,10.531135,12.365511,13.526509,14.919706,16.963062,18.216940,19.192178,20.794355,22.582291,24.254128,26.274264,27.876441,28.990999,30.198437,31.312994,32.172133,33.263471,34.842427,36.955443,38.511180,39.370319,40.275897,40.597892,42.130409,43.988006,45.868822,47.378119,49.328595,50.721793,51.929230,53.484967,54.506645,56.201702,57.107280 diff --git a/data/torah/labels/vayeilech-3.txt b/data/torah/labels/vayeilech-3.txt deleted file mode 100644 index bf782337a..000000000 --- a/data/torah/labels/vayeilech-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.205896,4.063492,6.106848,7.592925,8.916463,9.868481,11.006259,13.792653,14.860771,16.579048,17.531066,19.133243,20.572880,21.269478,22.082177,23.661134,24.752472,27.167347,29.024943,31.277279,32.995556,34.876372,35.758730,36.850068,38.196825,39.311383,41.308299,45.441451,47.345488,48.483265,50.642721,52.012698,52.825397,53.963175,54.984853,56.006531,56.772789,57.864127,58.839365,59.814603,60.604082,62.275918,64.412154,67.755828,68.173787,69.144399,70.676916,73.161451,74.067029,75.251247,76.435465,77.550023,79.686259,79.961814,80.797732,81.375147,82.861224,84.091882,84.556281,86.320998 diff --git a/data/torah/labels/vayeilech-4.txt b/data/torah/labels/vayeilech-4.txt deleted file mode 100644 index 49ceb328a..000000000 --- a/data/torah/labels/vayeilech-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.618935,3.640613,4.778391,5.916169,8.005965,8.981203,10.606600,12.557076,13.648414,14.902291,15.738210,17.131407,19.030817,19.495217,21.259933,22.746010,23.349729,24.278527,25.509185,26.623743,28.225920,28.992178,30.153176,33.055670,33.450409,34.448867,35.934944,37.188822,37.722881,38.790999,40.439616,41.852949,42.387008,44.337484,45.777121,47.054219,48.168777,49.571774,50.291593,51.847330,53.356627,54.912364,56.189462,57.930958,59.417035,59.951094,61.088872,62.435629,63.875267,65.129144,65.918623,66.336582,66.963521,67.915539,69.378396,72.800732,73.548253,73.882818,75.521949,76.938367,78.749523,79.980181,80.650475,81.320770,82.969387,83.503446,85.268162,86.522040,87.427618,88.449296,89.029795,90.655192,92.280589,93.511246,95.762020,96.013836,97.596396,99.175353 diff --git a/data/torah/labels/vayeilech-5.txt b/data/torah/labels/vayeilech-5.txt deleted file mode 100644 index f9b8d163a..000000000 --- a/data/torah/labels/vayeilech-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.414875,4.086712,4.876190,6.548027,7.778685,8.541859,11.026395,12.976871,14.044989,14.436644,16.619320,19.150295,20.311293,21.309751,23.283447,24.374785,25.303583,26.464580,28.229297,29.111655,30.737052,33.231746,34.996462,36.366439,37.272018,38.433015,40.290612,41.312290,42.148208,42.399002,43.118820,44.720997,47.042993,47.733424,47.925351,49.030657,49.933151,50.769070,51.303129,52.835646,54.786122,55.807800,57.177777,59.337233,60.683990,61.914648,63.052426,64.701043,66.210340,67.069478,67.252154,68.041632,69.385306,71.451882,73.188752,73.402358,74.814149,76.091247,76.766415,78.298932,80.815764,81.837442,82.320436,83.179574,85.664109,88.589823,90.424200,91.512454,92.394812,93.579030,94.740027,96.690504,98.037261,98.896399,100.219937,102.031093,103.215311,104.678168,107.530755,108.150289,108.470742,109.306084,110.397421,111.860279,113.207036,114.298374,115.691571,119.290664,120.892841,122.378918,123.586356,125.002773,126.372750,127.208669,127.626628,128.578646,129.472614,130.482682,131.837713,132.988379,133.171055,134.332052,136.166429,138.511644,139.719082,140.462120,141.135499,142.226837,143.318175,144.688152,145.175771,145.473005,146.634002,147.373957,148.952914,150.462211,150.897222,152.174320,153.285794,155.050510,156.350828,157.233940 diff --git a/data/torah/labels/vayeilech-6.txt b/data/torah/labels/vayeilech-6.txt deleted file mode 100644 index 78022adf1..000000000 --- a/data/torah/labels/vayeilech-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.721680,4.229435,4.690751,7.268166,7.818886,8.817344,11.232220,12.886576,13.924972,14.983338,16.361210,18.078558,19.656122,22.471773,22.911095,24.109244,25.307394,26.685266,28.841936,30.419499,30.918728,32.676015,36.969384,37.548490,38.546948,40.384111,41.377943,44.852577,47.049185,50.663603,52.101382,53.199686,55.016880,56.015338,57.632840,58.511483,59.949263,60.523742,61.686580,64.018346,64.878900,65.030605,67.406955,68.445351,69.863162,70.399245,71.677272,72.835483,74.173417,74.652677,75.551289,76.549747,78.566632,80.295226,82.072481,82.691525,83.849736,84.708410,85.344340,86.422674,88.159991,88.858912,89.497925,91.514810,94.629999,94.886515,96.004788,96.281272,97.918743,100.734395,101.792760,103.550047,104.427907,106.889222,108.302556,108.554891,109.382961,110.5,111.099696,111.954208,112.588814,113.590140,114.888135,116.166161,117.164619,119.021751,121.477958,123.115429,125.132315,127.169169,127.648429,128.384204,129.040102,130.298160,130.794305,131.972485,133.602247 diff --git a/data/torah/labels/vayeilech-7.txt b/data/torah/labels/vayeilech-7.txt deleted file mode 100644 index 34c597557..000000000 --- a/data/torah/labels/vayeilech-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.947039,4.010977,4.267260,6.064949,8.614732,9.384641,9.934424,11.108425,12.539238,15.144053,15.803899,16.831149,17.821713,18.922339,20.554934,21.765622,24.242030,25.342656,25.782906,26.975251,28.736252,29.891909,30.442222,31.487817,33.377225,34.495665,35.376165,36.466825,36.531822,38.052766,38.675924,39.895519,41.473083,42.454210,45.150213,46.122433,48.011841,50.286467,51.809000,53.625032,54.083626,55.496096,56.871879,57.367160,58.137598,60.027006,63.253145,64.922427,65.509428,65.839615,66.738460,68.407742,70.077025,71.956466,74.524593,75.680250,77.019345,78.138315,79.568599,80.742600,81.182850,82.283476,82.998883,84.869946,85.520885,87.538699,88.639325,89.207982,90.473702,91.500952,93.060172,94.542726,94.856589,95.902926,96.956393,97.891925,99.231020,100.331646,101.780803,102.771367,104.293899,105.522931,106.256682,107.137182,107.577433,108.567996,109.650278,111.026060,112.585280,113.557500,115.318501,117.336315,119.537567,121.096787,121.812194,122.747726,124.013446,124.637134,125.388698,126.131356,127.103575,128.681139 diff --git a/data/torah/labels/vayeilech-h.txt b/data/torah/labels/vayeilech-h.txt deleted file mode 100644 index 9900eb8a9..000000000 --- a/data/torah/labels/vayeilech-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.614251,2.788252,4.916129,6.181849,7.557631,8.291381,9.612132,10.664831,12.328867,13.404785,14.426463,15.982200,17.677257,18.954355,20.092132,21.740749,23.110727,24.271724,25.270182,26.547280,27.638618,28.938935,30.285693,31.794990,32.770228,34.116985,36.299661,38.134037,39.480795,42.359350,44.309826,44.887241,45.281980,47.812955,48.555994,49.484792,50.877989,52.573046,53.475540,54.517354,55.585472,56.862570,58.278987,59.509644,61.158261,62.760438,63.750472,65.144598,66.777193,68.593225,69.033476,70.280852,72.041853,74.444886,75.178637,77.765108,79.122546,79.911328,80.791829,81.507235,82.699580,84.240456,85.726301,87.597365,89.266648,89.945367,90.770836,91.944837,93.320620,94.512964,96.439059,97.961062,100.070595,101.078972,103.977287,106.577350,106.948870,107.413269,107.945786,110.221341,110.708960,112.729096,113.495355,114.467509,116.046466,117.456715,117.648643,118.014085,119.755582,121.218439,123.772634,125.165831,126.257169,127.046647,128.114765,130.111681,130.990956,132.148870,133.588507,134.746421,136.302158,137.227872,137.594765,138.825423,141.286738,141.980253,143.001931,144.279028,145.788325,146.647464,147.669142,148.388960,149.410638,149.967917,150.618076,152.237305,153.235763,154.303881,155.302339,156.254357,157.693994,158.762112,160.689369,161.966466,163.359663,165.403019,166.819437,167.139890,167.906149,169.694085,169.921659,171.288552,172.934085,174.629142,176.951137,178.437214,179.988325,181.404743,183.424879,184.517819,186.073555,187.629292,188.952830,190.067388,190.763986,191.948204,193.643261,194.455959,194.943578,196.034916,197.033374,198.681991,200.469927,202.327524,203.836821,205.230018,206.994735,207.946753,209.130970,210.082989,212.242444,213.635642,214.703760,215.655778,219.208431,219.649610,220.206889,221.135687,223.620222,224.456141,225.129519,225.988658,227.567614,228.264213,228.821492,229.703850,231.909746,234.812240,235.578499,236.367977,237.466427,238.666753,240.554681,241.469601,242.746699,243.512957,244.464976,245.022255,245.625973,246.248286 diff --git a/data/torah/labels/vayera-1.txt b/data/torah/labels/vayera-1.txt deleted file mode 100644 index 12a56e8dd..000000000 --- a/data/torah/labels/vayera-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.204354,3.900952,5.085170,5.921088,6.664127,7.964444,8.568163,8.903932,9.484431,9.947288,11.038626,12.181106,12.943882,13.893114,14.503334,15.469516,16.198391,16.910315,17.503584,19.215592,20.351280,21.164907,21.825979,22.520952,23.131173,24.165157,25.402549,27.267111,27.775628,28.199392,29.013019,29.453734,30.436867,30.674175,30.928600,31.555771,31.911817,32.894949,34.030637,34.522204,34.759679,35.369899,36.268279,37.200560,38.366816,38.892284,39.841515,40.672343,41.045256,42.265697,42.943719,43.791248,44.604875,45.621909,46.316882,46.452737,46.690128,47.452904,47.656478,48.622660,50.504173,50.945055,51.673929,52.250248,53.385936,55.408017,56.967469,57.967719,58.222061,58.933985,60.730745,62.578357,63.307231,63.934402,64.598500,65.276523,66.107267,66.768339,67.819275,69.840331,70.620057,71.128574,71.925251,72.721927,73.094840,74.247478,74.959402,75.739128,76.366466,76.569956,77.434435,78.197211,78.773530,79.943119,80.977104,82.417902,84.272287,84.780804,85.374074,85.865640,86.594515,87.119982,87.916659,88.696385,89.916826,91.425426,92.154300,92.628916,93.866308,95.493729,96.205653,96.477029,97.121150,98.070382,98.934861,99.375743,100.494480,102.750379,103.428402,104.055573,105.089557,105.631975,106.394751,107.174477,107.479754,108.140993,109.005472,109.785198,111.141243,111.988772,112.565091,113.022756,114.421238,115.980690,116.692614,117.506241,118.048659,118.845336,119.743716,120.303084,121.235366,121.676080,123.133829,124.447891,125.007260,125.651382,126.549762,127.617647,128.448225,129.058446,129.482377,130.431859,131.228702,132.042329,133.093265,133.754337,133.873158,134.551264,135.195469,136.907476,137.788905,139.229704,140.856958,141.450228,142.874075,143.467345,144.111467,145.213254,146.348942,147.026964,147.586333,149.535648,150.281473,151.552766,152.095184,153.298674,154.660163 diff --git a/data/torah/labels/vayikra-1.txt b/data/torah/labels/vayikra-1.txt deleted file mode 100644 index de8a5df97..000000000 --- a/data/torah/labels/vayikra-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.036288,2.194815,3.062080,4.276251,5.182062,5.933692,7.012955,7.571859,8.554760,10.385654,10.906013,11.599825,12.544181,13.584899,14.895433,16.552873,16.957597,17.863408,18.942671,19.829209,20.869927,21.390287,22.816456,23.471723,24.416079,24.878620,25.610978,26.426945,26.613151,28.242912,28.611264,29.285804,30.442158,30.619957,31.660676,32.470123,33.067573,34.243199,34.705741,35.611551,36.420999,37.095538,38.521708,39.254065,40.429692,41.142776,42.337675,43.706027,44.862381,45.498376,46.172915,47.117271,48.177262,48.697621,49.584159,50.528514,52.306087,52.942082,53.346806,54.136981,54.753703,55.698058,57.875858,59.070757,60.015112,61.113648,61.270002,61.963814,63.679072,64.066697,64.822673,64.972507,66.210298,67.000473,67.717904,68.315353,69.009166,70.069157,71.120491,71.353445,72.355618,73.171585,73.903943,75.349385,77.700637,78.779901,79.916982,81.574422,82.287507,82.634413,83.463134,84.792940,85.428935,85.589635,86.823079,88.769608,89.521238,90.311413,92.508485,92.913209,94.532104,95.303007,96.131727,96.555723,97.403716,98.078256,99.176792,100.048403,100.236783,101.050577,102.091295,102.367631,103.382557,104.635273,105.463993,106.427622,107.526158,109.010145,109.896683,110.262861,110.841038,111.978120,113.947430,114.448390,114.973095,115.724725,117.035259,117.519247,117.793409,118.602857,119.849153,120.292421,122.007680,122.528039,122.913490,123.742210,124.628748,125.399651,125.997100,127.288362,128.290535,129.389071,130.063611,131.046511,132.491953,133.513399,134.168666,135.151567,138.292995,139.776982,140.952608,142.398051,142.706411,143.804948,144.344579,145.211845,146.329653,147.370372,148.064184,148.969994,149.779442,150.453982,150.820160,151.668153,152.766689,153.672499,154.597582,155.214304,156.216478,157.237924,157.623375,158.336460,159.377178,159.839719,160.706985,161.998246,162.961875,163.983320,164.792768,165.968394,166.893477,167.317474,167.895651,168.917096,170.266176,171.268349,172.538596,173.933332,174.708581,175.652937 diff --git a/data/torah/labels/vayikra-2.txt b/data/torah/labels/vayikra-2.txt deleted file mode 100644 index 0b75d7839..000000000 --- a/data/torah/labels/vayikra-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.712555,3.049709,4.643527,5.425110,6.237344,7.202830,8.214291,8.413518,9.639532,11.095423,11.482286,12.064642,12.815576,13.275331,14.210166,15.681382,16.432316,16.800120,17.535728,18.516539,19.252147,20.110356,21.091167,22.240555,23.543195,24.569981,25.336239,25.711641,26.815053,28.270944,28.700049,29.405007,30.293867,31.688457,33.006422,33.925932,34.891418,35.642351,36.117431,36.730438,37.910476,39.412343,40.209252,41.956321,42.515624,44.216718,45.258830,46.392893,47.373703,48.431140,48.952196,49.887031,50.637965,50.990444,51.634101,52.706863,53.718324,55.373442,56.078400,56.829333,58.024697,59.618514,60.200871,61.518835,62.468996,63.296555,64.231390,65.135576,65.809883,66.790694,67.940082,68.813616,69.518574,70.346133,71.127717,72.307755,74.867059,75.510716,76.093072,77.533638,79.403309,80.430095,81.640784,82.514318,83.878259,85.242199,86.881992,87.801502,88.123331,89.073491,89.962351,91.372267,91.801371,93.149986,94.376000,96.123069,96.736076,97.410384,98.559771,99.893061,100.214890,101.134400,102.115211,103.141997,103.877605,104.751140,105.655325,106.651461,107.708898,108.996212,109.731820,110.375478,111.172386,112.061246,112.965431,113.609088,114.283396,115.647336,116.505546,117.501682,118.038063,118.811918,119.777404,120.543663,121.095369,121.478498,122.275407,123.363494,125.003287,125.754220,126.382552,126.934259,127.976370,129.125758,129.769415,130.734901,132.267418,132.773148,133.309529,134.642819 diff --git a/data/torah/labels/vayikra-3.txt b/data/torah/labels/vayikra-3.txt deleted file mode 100644 index 9911cdede..000000000 --- a/data/torah/labels/vayikra-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.458231,2.015510,2.874649,4.128526,5.010884,5.962902,7.100680,8.444354,8.769433,10.348390,11.914459,13.470196,14.677634,15.815412,17.022849,17.696228,18.416047,19.716364,20.203983,21.202441,22.479539,23.524437,23.942396,24.662215,25.149834,27.007430,28.029108,28.911466,30.665569,31.478267,32.151646,33.521623,34.961261,35.213596,36.049515,37.326612,38.278630,39.044889,39.973687,40.647066,41.900943,42.551102,43.967519,44.896317,45.964435,46.893233,47.496952,48.472190,49.261669,50.144027,50.570543,51.421183,51.862362,52.837600,53.206036,54.204494,55.713791,56.689029,57.664267,59.266444,60.613201,61.681319,62.308258,63.190616,63.724675,64.653473,65.001773,65.628711,66.464630,67.416648,68.322226,69.134924,71.480140,72.447668,73.980185,74.839324,76.209301,77.161319,78.182997,79.088575,79.994154,81.085491,81.851750,82.455469,83.244947,84.498825,85.566943,86.237237,87.491115,88.234154,89.046852,89.905990,91.693927,92.413745,93.319324,94.387441,95.084040,96.802317,97.406036,98.241954,99.542271,100.619025,101.431724,102.151542,103.219660,103.823379,104.566418,105.471996,106.354354,107.329592,108.444150,109.047869,110.859025,112.089683,113.320341,114.086599,114.574218,115.317257,116.571134 diff --git a/data/torah/labels/vayikra-4.txt b/data/torah/labels/vayikra-4.txt deleted file mode 100644 index 7aab68466..000000000 --- a/data/torah/labels/vayikra-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.548027,2.128526,2.941224,3.846803,4.427302,4.914921,5.750839,6.540317,7.399456,8.049615,8.676553,9.117732,9.791111,10.789569,11.788027,12.554286,13.622404,14.969161,15.735420,16.246259,16.849977,17.848435,20.216871,21.006349,21.726168,22.585306,25.530206,27.271703,28.479141,29.779458,30.197417,31.288755,32.055014,32.774832,33.703630,35.143268,36.141726,37.116964,37.883222,38.904900,39.578279,40.437417,41.641771,42.036510,42.756329,43.615467,44.169662,44.982361,46.050478,46.256374,47.649571,48.833789,49.460728,50.877145,51.666624,52.316782,53.222361,54.104719,55.103177,55.307531,56.329209,57.281227,57.977825,58.253381,59.158959,59.901998,60.784356,62.154333,63.501091,64.337009,64.824628,65.614107,66.612565,67.355603,68.888120,69.863358,69.976374,70.742633,71.764311,72.344810,72.994968,74.202406,75.154424,75.920683,77.151340,78.291940,78.580272,79.829714,81.640871,82.685768,83.521687,84.427265,85.216744,86.122322,87.236880,88.188898,89.489215,90.066630,90.902549,91.294204,91.918059,92.153342,93.381351,94.209274,94.859433,95.504965,96.619523,97.943061,98.361020,99.196938,99.495714,100.076213,101.213990,102.800219,103.791405,104.657816,105.633054,106.468972,108.837408,110.021625,111.257979,111.629498,113.022695,113.463874,114.160473,115.391131,116.528908,117.222423,119.381879,120.191493,121.700790,123.047548,123.999566,125.090904,126.066142,126.994940,128.039838,128.898976,129.734895,130.849453,131.403648,132.169906,133.238024,133.748863,134.399022,135.118840,135.556935,136.323194,137.855711,138.640564,139.778341,140.405280,141.171539,141.937797,142.866595,143.795394,144.236573,145.072491,145.676210,146.581788,147.046187,147.742786,148.300065,149.135983,150.598840,151.620518,152.224237,153.129815,153.942514,154.453353,155.637570,157.239747,157.727366,158.400745,159.422423,160.026142,161.001380,162.069498,162.464237,163.160836,163.648455,164.391493,165.343511,166.434849,167.410087,168.083466,168.780065,171.481069,172.413098,173.713416,174.061715,175.222713,175.733552,176.476590,177.498268,178.961125,179.657724,180.516862,181.538540,182.304799,183.001398,183.930196,185.157769,185.479765,186.431783,187.035502,187.705797,188.541715,189.307973,189.560309,190.674867,191.603665,192.462803,193.554141,194.181080,194.831239,195.597497,196.456636,197.478314,197.896273,198.778631,199.475230,200.287928,200.821987,201.518586,202.029425,202.888563,203.979901,205.442758,206.116137,206.998495,208.182713,208.809651,209.715230,210.713688,211.270967,211.805026,212.803484,214.127021,214.777180,217.006295,217.935094,218.979992,219.606930,220.117769,220.370105,221.066704,222.088382 diff --git a/data/torah/labels/vayikra-5.txt b/data/torah/labels/vayikra-5.txt deleted file mode 100644 index b638a5f1d..000000000 --- a/data/torah/labels/vayikra-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.950476,2.670295,3.227574,3.784853,4.852971,6.543271,7.007670,7.588169,9.167126,11.001502,12.301820,12.975199,13.834337,14.948895,15.808033,16.620731,17.804949,18.826627,19.314246,20.266264,22.634700,23.656378,24.515516,26.024813,27.348350,29.113067,30.227625,31.249303,31.992341,34.783702,35.190527,36.583725,37.605403,39.068260,39.788078,40.089938,40.879416,42.086854,43.108532,44.176650,45.357784,45.593067,47.006400,47.447579,48.306718,49.119416,49.792795,50.442954,51.650391,52.764949,53.182908,53.786627,54.227806,54.877965,55.574564,56.480142,56.749530,57.469348,57.953883,59.254201,61.181457,62.087035,62.899734,63.573112,64.316151,65.268169,66.057647,66.328577,66.656196,67.875255,69.477432,70.824190,71.497568,72.426367,73.099745,73.982103,74.420199,75.511537,76.417115,77.136933,77.787092,78.994530,79.667908,80.225187,81.061106,81.966684,84.288679,85.124598,85.449677,86.494575,87.051854,89.048770,90.140108,91.022466,92.044144,92.740743,93.901741,94.853759,95.759337,96.479156,98.203935,99.063073,99.504252,100.824706,102.121939,102.470239,103.329377,104.327835,105.279853,105.976452,106.487291,106.878946,108.086384,108.561705,108.933224,110.094222,110.601977,111.484336,112.180934,112.923973,113.829551,114.595810,115.663927,116.267646,116.778485,117.544744,118.009143,118.733162,119.727420,119.823415,120.865197,121.946782,122.829140,123.757939,124.408097,125.151136,125.778075,126.660433,127.589231,127.771907,128.770365,129.559843,130.302882,130.531998,131.437576,131.948415,132.714673,134.223970,135.157536,136.245790,136.988829,137.662207,138.544566,139.844883,140.564702,141.191640,142.097219,142.956357,143.792275,144.372774,145.046153,145.444354,145.641527,146.764430,147.205609,148.018307,148.270643,149.199441,150.592638,152.032275,153.468829,153.817128,154.235087,156.092684,156.388375,156.829554,158.524611,159.035450,159.592729,160.402343,160.629917,161.566176,162.727174,163.770530,165.186947,165.915589,166.580144,167.587425,167.955861,168.606019,169.347516,170.717493,171.619988,172.061167,172.734545,173.616904,174.429602,175.637040,176.751598,177.866155,178.702074,180.993552,182.038450,182.618949,183.408427,184.964164,185.927067,186.061760,187.060219,188.499856,190.006897,191.028575,191.887713,192.746851,193.489890,195.042543,196.458960,197.434198,197.640094,198.476012,199.358371,201.030207,201.819686,202.493065,203.030575,204.234561,206.626216,207.647894,209.108154,209.386794,210.826431,211.402304,211.683006,212.349696,213.169083,214.237201,215.035739,215.314378,216.057417,216.495512,217.749389,219.710923,220.570061,221.429200,222.195458,223.031377,223.518996,223.942550,224.964228,226.672991,227.912937,229.256211,229.421537,230.310165,232.277991,232.840545,233.791170,234.535137,235.506428,236.147067,236.581048,237.820993,239.120381,240.566984,242.199579,243.232867,243.873506,245.154783,246.332731,247.180028,248.171984,249.184606,249.949239,250.651875,251.788492,252.284470,253.111101,254.144389,254.640367,255.363668,256.107636,257.140924,257.698899,258.256875,258.794184,259.579483,260.641244,260.909899,261.529872,262.191176,263.038472,263.947766,265.249709,266.300029,268.015287,268.944085,269.675912,270.535050,271.928247,272.485526,273.623304,274.110923,276.089107,277.575184,278.527202,279.432780,280.524118,281.564390,281.697542,283.044299,283.505615,284.202213,285.339991,286.431329,287.708426,288.846204,289.682122,290.169741,291.052100,292.166658,293.011221,293.908154,295.045932,296.127771,296.933736,297.760366,300.306635,300.993382,301.468695,302.853301,303.659265,305.105868,306.676466,307.048450,308.391724,309.611004,310.768287,311.491588,312.111561,312.814197,313.888816,314.715447,315.418083,316.058721,317.835976,318.290623,319.344577,320.357199,321.018503,321.462178,322.651098,323.789365,324.488536,324.677993,325.418495,326.513780,327.639051,328.631007,330.139608,330.842243,331.378838,331.622405,332.593696,333.135584,334.168872,335.062079,335.992038,337.169986,338.409932,339.381223,340.228519,341.323804,343.535040,344.031018,344.733654,345.477622,346.262920,346.944891,347.668192,348.536154,349.011467,349.610774,350.272078,351.450026,351.909252,352.177906,353.112444,354.001072,354.972363,356.026316,356.790949,357.968898,359.270841,360.606890,362.094825,363.475966,364.658493 diff --git a/data/torah/labels/vayikra-6.txt b/data/torah/labels/vayikra-6.txt deleted file mode 100644 index 6a868e660..000000000 --- a/data/torah/labels/vayikra-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.530975,2.622313,4.433469,5.687347,6.616145,7.591383,8.450522,11.144036,12.374694,13.814331,15.230748,16.298866,16.716825,17.529524,18.690522,19.572880,20.687438,21.616236,22.730794,23.682812,24.565170,25.679728,26.701406,28.141043,29.302041,30.393379,31.624036,32.158095,33.133333,33.922812,35.014150,36.523447,36.848526,37.661224,38.172063,39.170522,40.238639,41.446077,41.840816,43.442993,44.627211,45.556009,47.042086,47.854785,48.922902,50.292880,52.359456,52.800635,53.450794,54.426032,55.401270,56.051429,56.353288,57.669374,58.927805,59.296240,60.062499,61.339596,62.105855,62.523814,63.290073,64.729710,65.983587,66.889166,68.684559,69.148958,69.775897,71.540613,72.748051,73.607189,74.675307,75.696985,76.509684,77.368822,78.320840,79.876577,80.828595,81.757393,82.662972,83.240996,84.657413,85.470112,86.236370,87.211608,88.256506,89.069205,90.276642,91.693060,92.111019,92.807618,93.434556,94.200815,95.338593,96.569250,97.544488,98.751926,100.934602,101.770520,102.346393,102.513559,103.948570,105.084806,106.245803,107.244262,108.265940,109.287618,111.330974,112.027572,112.631291,113.722629,114.651427,115.112742,115.437822,116.761359,117.666937,118.108116,118.758275,119.988933,120.685531,121.010611,121.448706,123.097323,124.374420,124.834193,125.275373,127.272289,128.199545,129.871382,131.009159,131.953445,132.557164,133.555622,134.368320,134.948819,136.365236,137.665554,138.902878,140.435395,141.039114,141.828592,142.339431,142.989590,143.520565,144.704783,145.909136,146.254352,147.856529,149.389046,150.155304,151.107322,152.245100,153.034579,153.824057,154.567096,155.077935,156.169272,156.703331,157.057018,157.707177,158.471894,159.841871,160.584158,161.884475,162.949509,164.946425,165.526924,166.293183,167.709600,169.149237,170.333455,171.494453,173.328829,174.276221,175.551777,176.689555,177.757672,179.429509,180.520847,181.403205,182.355223,183.701981,184.561119,185.397038,186.023976,187.205110,188.038404,188.874323,189.687021,190.964119,191.892917,193.007475,194.122032,195.004391,195.677769,196.420808,197.697905,198.417724,199.253642,199.810921,201.041579,201.852735,203.896091,204.523030,206.148427,207.262985,208.772282,210.961709,211.635087,213.399804,215.605700,216.789917,218.275994,219.924611,220.992729,221.921527,222.734226,223.203902,223.928952,224.847242,225.379052,226.635178,227.610416,227.958716,228.701754,229.491233,230.280711,231.836448,232.556267,233.229645,234.274543,235.969600,236.430915,237.522253,240.192548,240.587287,242.143024,242.816403,244.256040,245.277718,245.834997,246.601255,247.878353,248.551731,249.410870,250.084248,251.191097,252.186471,253.417128,254.322706,255.832004,256.691142,257.248421,258.104475,259.613772,260.2,261.562706,262.418761,262.672638,264.067378,264.827468,266.336765,267.265564,268.356901,268.960620,269.534951,269.830204,270.364263,271.455601,272.268299,273.011338,273.563991,274.748209,275.836463,276.533061,276.881361,277.647619,279.319456,279.783855,280.294694,281.153832,282.036190,283.847347,284.149206,285.542404,286.424762,287.074921,287.794739,289.141497,290.952653,291.718912,292.740590,293.039365,293.570340,294.684898,296.124535,296.983673,298.028571,298.421769,298.901927,300.109364,300.963877,301.799795,302.330770,303.723967,304.699206,305.326144,306.251859,307.292131,308.578558,310.041415,311.084771,311.429986,312.382004,313.611120 diff --git a/data/torah/labels/vayikra-7.txt b/data/torah/labels/vayikra-7.txt deleted file mode 100644 index e54b75415..000000000 --- a/data/torah/labels/vayikra-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.477030,2.916667,3.868686,4.960023,5.958481,7.189139,9.077867,9.609598,9.957898,11.513635,12.252047,12.456401,13.942478,14.589553,16.261390,17.933226,19.535403,20.278442,21.276900,21.927059,22.577217,23.529236,25.084973,25.897671,26.571050,27.360528,28.242886,29.052501,29.841979,30.654678,33.187414,33.673272,35.437988,36.627866,37.649544,39.855439,40.621698,41.968455,42.363195,43.733172,44.870950,46.078387,46.844646,47.564464,48.446823,49.375621,50.165099,52.180756,52.916952,54.101170,54.542349,55.749787,56.632145,57.816363,59.047020,59.859719,60.649197,61.531555,62.576453,63.226612,64.666249,65.777723,66.451102,66.845841,67.178479,68.197192,69.091396,69.363053,70.459832,71.435070,72.758607,73.919605,75.127043,76.125501,77.843777,78.261736,79.018191,80.643588,81.917601,82.773656,83.025991,84.326309,86.205583,86.620459,87.479597,88.080232,89.009030,90.518327,91.327942,92.860459,93.648486,93.900821,95.215732,97.142988,97.630607,98.977364,99.929382,100.881401,101.746815,102.369362,103.488312,105.291759,106.475976,107.404775,108.356793,109.192711,109.677246,111.000784,111.462099,112.298017,113.062734,114.154072,116.058108,117.195886,117.565863,118.425001,119.516339,120.349174,121.022552,122.229990,122.551985,123.071879,123.975916,124.534737,125.765394,127.630478,128.415330,129.785308,130.014423,131.245081,132.217235,133.053153,133.211067,134.139865,135.923176,136.666215,137.920092,138.709571,140.616385,140.955956,142.608939,143.203406,143.409302,144.152340,144.660095,145.821093,146.989844,147.663222,148.287077,149.053336,150.167893,151.116828,151.859866,152.048612,152.444778,153.466456,154.324052,154.855027,156.085685,157.014483,157.454120,158.703372,159.794710,161.304007,163.091944,163.765322,164.647681,165.294755,166.177114,167.222012,168.266910,168.819563,169.002238,170.418656,170.939820,172.425897,173.978550,175.232427,175.789706,176.927484,177.433697,178.408935,179.080772,180.311430,181.772745,182.280500,182.723200,184.023517,184.693812,186.203109,188.826964,189.032859,189.631952,191.419889,192.368823,192.557667,194.178438,195.153676,196.337893,197.415308,197.681567,198.634647,199.725985,200.608343,201.630021,201.811155,203.134692,203.947391,204.829749,205.874647,206.664125,206.823581,207.888615,208.419590,209.719908,211.879364,213.644080,214.267935,215.077549,216.819046,218.606983,219.767980,220.511019,221.532697,223.065214,223.853150,224.617867,225.613241,226.263400,227.285078,228.306756,228.839273,230.162810,230.788207,231.388842,231.848615,232.893513,233.681450,235.048343,235.393559,236.670656,237.666030,238.741109,239.137275,240.359545,242.081699,243.428456,244.728774,245.817028,246.676166,247.697844,248.580202,249.207141,250.275259,251.134397,251.502833,252.498207,253.956438 diff --git a/data/torah/labels/yitro-1.txt b/data/torah/labels/yitro-1.txt deleted file mode 100644 index ab030e869..000000000 --- a/data/torah/labels/yitro-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.001285,4.684912,5.563093,6.275171,7.560009,8.782927,10.005844,11.414521,11.630323,12.266922,13.076058,14.113216,15.645733,17.178250,18.308288,18.804452,20.320684,22.069921,22.620235,23.790510,25.305234,27.704629,29.082347,30.150465,31.342423,31.948127,33.447698,34.097857,35.398175,36.553487,38.070525,39.277962,40.144841,41.274878,42.528756,43.070555,44.200593,45.903389,46.847667,47.993185,49.045823,50.175861,51.104659,52.776496,53.643374,54.726972,56.058249,56.634451,57.422305,58.227263,59.543061,61.201192,62.050815,63.397573,65.951768,67.050846,67.963628,69.790801,70.812479,72.004436,72.4,73.273793,74.348679,75.704149,76.576860,78.016497,78.929815,79.796694,80.428773,82.583089,84.160692,84.305547,85.625522,87.467638,88.656103,89.755180,90.328461,91.597297,93.644649,94.511528,95.409366,96.616804,98.040961,99.805677,100.889275,102.700432,104.418709,105.282625,106.226903,107.620101,107.959656,109.043253,110.436451,111.770797,113.501485,115.192659,116.307217,118.629212,120.061833,120.271492,121.106007,121.563321,122.770758,124.318755,125.804832,126.764591,127.755309,129.287825,130.216623,130.453266,131.841061,132.652576,134.469493,135.800771,137.488087,139.036085,140.831761,142.147559,143.122797,143.405681,144.675039,145.390093,145.960729,147.137207,148.778083,149.688471,151.034096,151.855428,153.341505,157.381777,159.874053,161.298210,162.753327,163.805965,164.839929,166.805885,167.734683,169.065961,170.474638,171.836875,172.858553,173.678992,173.895711,174.963829,176.295107,176.742027,178.251568,179.638780,181.031977,181.456310,182.152909,183.406786,184.023257,185.431935,186.515533,187.955170,188.867907,189.733224,191.376243,194.100718,195.215275,196.082154,197.877831,198.806629,200.106946,201.608503,202.723061,204.627097,206.794293,208.032691,209.936727,211.004845,212.568322,213.106175,213.725374,215.103091,215.951959 diff --git a/data/torah/labels/yitro-2.txt b/data/torah/labels/yitro-2.txt deleted file mode 100644 index 7e4302be7..000000000 --- a/data/torah/labels/yitro-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.924933,3.195272,5.125914,6.224991,7.246669,8.206428,8.566717,9.862785,11.163102,12.014500,12.313461,13.371411,13.971886,14.971703,15.349815,16.634441,18.166958,19.188636,20.488953,22.005991,22.552291,23.032170,23.400924,24.371029,25.570885,27.923824,28.369881,29.345119,30.490637,31.342035,31.976714,32.941565,34.026412,36.193607,37.299400,38.151171,39.606289,40.419607,42.075964,43.128602,44.274120,44.901890,45.552049,45.815209,46.976206,48.257006,49.360121,51.202238,51.725379,52.499377,54.031895,55.007133,55.812091,57.329128,58.023829,58.735908,59.432507,60.624465,61.537783,62.574941,65.105475,65.754928,66.483192,67.302925,68.479403,71.033597,71.540983,72.206621,73.429539,74.087012,75.767015,77.980650,78.723689,79.621527,80.767045,81.493907,82.097625,83.413423,84.311261,85.025521,86.292617,88.661052,89.899449,90.502415,92.688748,93.335055,93.923293,94.759212,95.672530,96.818048,97.386063,98.020742,99.042420,100.265338,100.843757,101.555836,102.484634,103.815911,106.308187,107.283425,108.552782,110.824973,111.775982,112.745325,113.844403,115.779399,116.677237,118.441953,119.417191,120.949709,122.294367,123.906383,124.456097,125.624659,125.941810,127.458077,129.279889,130.559958,131.021495,132.247275,132.828029,134.275151,135.680107,137.445577,137.865701,139.147619,140.536852,141.604970,142.170066,143.460993,144.130419,145.601016,147.365733,148.526731,149.142978,152.020071,152.979765,154.684807,156.314762,158.048519,158.992797,159.921595,161.272472,162.417990,163.950507,165.436584,166.499083,167.843481,168.905979,169.974097,170.763575,171.924573,172.858237,174.561650,176.677549,176.971636,179.275135,180.027085,181.720970,184.098472,184.561857,185.475176,186.667133,187.978893,189.236809,189.852415,190.549014,191.818371,192.855205,193.845923,195.208161,196.384639,197.855236,199.279393,200.564231,200.931631,201.767549,202.649908,203.965705,205.769248,206.721140,208.300097,209.445615,210.885251,211.207948,212.025281,213.222727,213.744206,215.405403,216.410353 diff --git a/data/torah/labels/yitro-3.txt b/data/torah/labels/yitro-3.txt deleted file mode 100644 index 31e458b25..000000000 --- a/data/torah/labels/yitro-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.919859,3.070771,4.185329,5.145087,6.476365,9.076999,9.939193,10.502405,11.601483,12.639695,13.379456,14.040370,14.838561,15.515454,16.939611,18.208780,19.896285,21.088243,21.420995,22.597563,23.478801,24.748159,25.692437,26.745075,27.503593,28.664591,29.328275,30.704080,32.148301,32.447112,33.332871,33.873933,34.702047,35.349311,36.184691,37.376648,38.785325,39.064315,40.132083,40.854899,41.632879,42.793876,44.238931,45.208751,46.601949,47.561707,47.824866,49.140664,50.210700,51.253513,51.645703 diff --git a/data/torah/labels/yitro-4.txt b/data/torah/labels/yitro-4.txt deleted file mode 100644 index c2fa90492..000000000 --- a/data/torah/labels/yitro-4.txt +++ /dev/null @@ -1 +0,0 @@ -2.159291,3.386221,4.980659,5.801097,6.266177,7.535535,8.448853,9.842050,11.095928,12.133086,13.077364,13.712043,14.842081,16.421037,18.572753,20.028022,21.003260,22.055898,23.415949,24.672013,25.8,26.134532,27.465809,28.239808,29.416286,30.376044,31.165523,31.449831,32.945719,33.886039,34.617556,35.778553,36.355937,37.269255,38.445733,39.235211,40.194969,41.092807,42.331205,43.724402,44.529361,46.015438,47.424115,48.708953,49.499160,50.505358,51.805675,53.046041,54.011953,54.311947,55.293778,56.547655,57.677693,58.281412,59.937769,62.508997,62.987671,63.622351,64.613069,65.851466,67.337543,67.683069,69.055820,70.247777,70.789577,71.997014,72.776221,74.479018,75.008897,75.581655,75.829335,76.974853,79.203968,79.798177,81.123485,82.224496,83.569320,84.637438,85.937755,87.036833,88.244271,89.328729,90.782986,91.201214,91.939659 diff --git a/data/torah/labels/yitro-5.txt b/data/torah/labels/yitro-5.txt deleted file mode 100644 index d20dfef04..000000000 --- a/data/torah/labels/yitro-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.504311,3.816331,5.025234,6.194522,7.231680,8.346237,9.646555,11.442231,12.293630,12.503059,13.787897,14.948894,15.935390,16.837451,18.478327,19.747685,20.028827,20.740905,21.963823,24.316778,26.236295,26.966754,27.392630,28.739388,30.179025,32.083061,33.708458,34.281217,34.900416,35.581535,35.791293,37.100302,38.429641,40.101477,40.323451,41.886928,42.859851,44.640047,45.457044,48.213172,49.110317,51.509713,53.754308,54.862654,55.915292,57.385889,58.484967,59.167130,60.219768,61.427205,62.897803,63.965921,65.761597,66.220951,66.802013,67.591492,67.824043,69.249335,71.305847,72.126285,72.327525,73.333723,74.464089,74.814825,75.934687,77.229700,78.081098,79.350455,80.697213,82.322610,83.437167,84.675565,85.821083,87.477439,89.304076,90.434114,92.477470,94.381083,96.264281,97.409798,97.719398,98.710116,99.220101,99.749203,101.244884,102.669313,102.876935,103.938399,104.929117,106.136555,107.605370,109.139669,110.114907,111.059185,112.080863,113.474061,114.010893,114.908731,115.853010,116.499649,117.741566,119.440101,120.400942,121.793057,123.356534,123.759738,124.617018,125.984998,126.495666,127.570615,129.000531,129.457033,130.231031,130.547653,131.307819,131.901492,133.077970,134.238967,135.554765,136.622883,137.412361,138.604319,140.637436,142.257592,142.951422,143.882989,144.210551,145.347655,146.678933,147.004012,148.087609,149.651087,151.183603,152.468441,152.783351,153.830679,154.598373,155.787179,156.748270,157.870951,158.432691,159.304753,159.598872,160.930149,162.710346,163.360505,165.094261,166.410059,168.267655,170.140731,170.852810,172.741366,173.840444,174.707322,174.955421,176.081097,177.071815,178.155413,179.269971,180.430969,181.700326,181.974401,182.945538,183.863597,185.519953,187.609749,188.941027,189.235146,190.845063,191.773861,192.965819,193.517540,194.993695,197.253771,198.108548,199.254066,200.262295,201.469733,202.801010,203.884608,207.079976,207.893921,208.776279,210.479075,211.763913,213.311910,214.395507,215.649385,216.578183,218.048781,219.587556,220.140099,221.051895,222.089053,223.714449,224.596808,225.788765,227.073603,228.281041,229.488478,231.020995,232.398713,234.364669,235.943625 diff --git a/data/torah/labels/yitro-6.txt b/data/torah/labels/yitro-6.txt deleted file mode 100644 index fdb283704..000000000 --- a/data/torah/labels/yitro-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.506835,4.273125,6.270041,6.765541,7.260900,8.329018,8.620441,9.143409,10.524726,11.707402,13.069639,14.973675,16.268845,17.095576,18.008895,18.725637,19.886635,21.043017,21.865168,22.132336,23.232274,24.095852,24.947251,26.247568,26.722009,27.526967,27.745713,28.723591,29.776229,30.797907,31.726705,32.810303,34.544293,36.510016,37.699255,37.869686,38.975308,40.865382,41.180361,41.876960,42.666439,43.904836,45.065834,45.870792,46.021162,47.433743,47.749229,48.763148,49.784826,50.976783,51.425703,51.998461,53.283299,53.732094,55.607455,56.830109,57.429817,58.595125,59.513161,59.841999,60.617517,62.611177,64.410109,65.069693,66.283186,66.891554,67.911909,68.974899,70.056265,71.170823,72.362781,74.112017,76.016054,76.516060,78.512976,79.488214,79.843991,80.834709,80.940628,81.688131,82.939624,84.045599,85.020837,85.357431,86.383075,87.412354,88.859870,90.593626,91.801064,93.302621,93.839671,94.644629,95.511508,96.811825,98.483662,99.582740,100.852097,102.028575,104.288651,105.217449,106.951205,108.001367,110.140079,111.177237,111.635041,113.183038,114.297596,116.015873,116.542226,118.399788,119.319071,120.225738,120.894477,121.962595,122.715519,126.111227,127.334144,128.557062,132.488974,134.393011,135.105089,136.916245,138.117185,140.160541,141.476339,143.442295,144.207241,145.708798,148.061753,149.006032,151.374467,153.309132,155.361212,156.357919,157.658237,158.819235,160.026672,163.401305,164.500383,165.909061,166.525437,168.339416,168.769012,169.852610,170.338271,171.530229,173.511665,174.765542,175.508581,177.072057,178.852254,180.148178,181.886328,183.093766,184.982322,185.379887,185.650709,186.306805,187.700002,189.418279,190.041932,190.707011,191.817674,193.056072,194.696949,195.442651,196.061851,196.355970,197.083529,198.677965,201.535296,201.782975,202.355735,204.120451,206.550806,207.510565,208.439363,210.947117,212.319221,212.555125,215.306805,216.436842,218.402798,220.446155,221.897489,224.324854,225.702571,226.940969,227.445495,231.055933,232.387210,233.548207,237.186001,238.563718,240.607074,243.470868,245.080785,246.443023,248.099379,249.415177,249.977824,251.788980,252.857098,254.838534,255.287453,256.603251,256.974770,258.940726,259.610854,260.730687,261.154362,261.353132,261.882395,262.857634,264.111511,265.102229,266.464467,267.212057,268.806494,270.617651,272.691967,273.233765,273.760085,274.859163,277.459797,279.301914,279.549593,280.757031,281.205950,282.537227,283.837545,285.277182,286.546539,287.506297,289.797333,290.389211,291.326029,292.579907,293.424698,294.483943,295.505621,296.914299,298.059816,299.267254,300.614011,302.007209,302.596631,303.341189,304.500667,304.972621,306.316990,306.908171,308.056426,308.609445,310.095522,310.625789,312.709133,313.646407,315.658803,316.897201,318.383278,319.776475,321.216113,322.872469,323.659025 diff --git a/data/torah/labels/yitro-7.txt b/data/torah/labels/yitro-7.txt deleted file mode 100644 index 10562a437..000000000 --- a/data/torah/labels/yitro-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.170442,2.808153,4.557389,5.131387,5.343474,7.162231,7.781153,10.072189,11.310587,12.069105,13.400383,14.050541,14.901939,16.124857,17.254895,18.075333,19.391131,20.768848,22.223965,23.880322,24.089702,25.211599,25.939271,26.552107,27.768533,29.626130,30.292389,31.375987,33.140703,34.533901,35.209085,36.577257,38.136979,39.078395,39.372515,41.648071,42.188653,44.295145,46.261101,47.963898,49.078456,50.900548,51.922590,53.434587,55.911383,57.861859,59.781375,60.272467,61.387025,62.517063,64.157939,65.674976,66.665695,68.229171,69.715249,70.845286,71.200411,72.632683,73.324157,73.869393,75.921398,77.444563,78.376243,78.670363,79.800401,80.515683,81.391573,81.735869,82.498187,83.953305,85.331022,86.693259,87.591097,87.834039,89.077175,90.342135,91.910503,92.524193,93.669711,94.768789,95.937069,96.827625,98.367425,99.512942,100.104748,101.060514,102.525132,103.867215,106.364165,107.449836,109.214553,110.778029,112.465346,112.948366,114.230063,114.760740,116.131133,116.641973,117.815334,118.208952,119.756949,120.511860,121.883535,122.605692,123.782170,124.098047,125.330167,125.980325,127.017677,129.277559,130.222673,131.074071,132.173149,132.892744,133.663967,134.143675,134.793834,135.676193,136.852670,138.493547,140.490463,141.588283,142.566340,144.547776,145.241857,146.139695,147.455492,147.853211,149.463128,152.172123,152.621299,153.457218,155.547013 diff --git a/data/torah/labels/yitro-h.txt b/data/torah/labels/yitro-h.txt deleted file mode 100644 index db178b367..000000000 --- a/data/torah/labels/yitro-h.txt +++ /dev/null @@ -1 +0,0 @@ -2.626452,3.443667,4.542377,6.167773,7.653851,9.837177,10.129977,12.255005,13.462442,13.820643,14.950681,15.693719,17.829955,19.269593,20.237693,20.531813,22.327489,23.798086,25.005524,26.352281,27.482319,29.123196,31.104632,31.940550,33.256347,35.609303,38.101578,39.556695,42.064451,44.804405,46.120203,47.219280,48.519598,50.485554,52.175060,52.712587,53.135441,53.848823,55.194277,57.535932,59.796008,61.080845,62.396643,64.223279,65.291397,65.538938,66.560755,68.650551,70.987679,72.349917,73.743114,74.966031,76.947468,78.247785,79.238503,80.538821,83.650295,84.295466,85.105412,85.388098,87.910284,88.823602,89.520201,90.265170,91.362247,92.786405,94.055762,94.760623,96.060940,97.516057,98.971174,101.107410,102.841167,103.371210,105.355252,106.540879,107.438718,108.335005,110.300961,111.980379,114.480553,115.718950,116.068728,117.616725,119.365961,121.672477,124.401160,125.453798,126.181357,127.837713,130.066829,130.409245,131.449337,134.772740,136.908976,138.224773,138.983292,139.587696,142.049011,143.984007,145.547484,147.436041,149.107877,152.153078,152.762493,153.288443,154.433961,155.827158,156.437778,157.055559,158.201076,159.315634,160.151553,162.127695,163.521049,164.682046,166.725402,170.332235,171.291993,172.685191,173.644949,175.703785,176.833823,177.932901,178.496497,179.843255,180.948825,181.877623,182.465861,183.982899,185.608295,186.291559,187.653796,188.876713,190.075515,191.214189,192.508320,194.706475,195.091635,195.888436,198.102072,199.719103,202.381023,203.960615,205.988491,207.412648,208.668871,210.495508,214.267795,214.910205,216.083777,218.312893,222.007307,222.670731,225.317806,226.412404,227.249216,229.215173,230.360690,233.133674,234.586722,236.212119,237.682716,239.555792,241.010909,242.791106,244.292663,245.608461,246.152311,248.518695,249.865452,251.305089,252.373207,254.106964,255.186392,256.011000,258.992758,260.602675,261.801361,264.278156,265.903553,268.922147,270.240503,271.507302,273.605509,274.584881,276.109597,276.920205,279.242201,284.412511,285.603649,288.947323,289.597481,290.619159,290.819477,293.093769,293.976128,296.886362,298.372439,299.564397,300.175939,303.480829,304.827587,305.195127,306.402565,306.897924,308.306601,311.284826,313.229231,315.613147,316.665785,317.795823,318.972301,320.427417,323.925891,325.117849,326.062127,327.377924,328.497589,329.581187,329.917514,331.929911,333.400507,334.840145,336.403621,337.781339,338.875401,339.577090,340.500797,341.461103,342.931700,345.160816,347.916251,348.426674,351.136101,351.706491,352.668186,354.322605,355.622923,358.718288,360.174034,361.334172,363.485888,364.159535,366.574410,367.967607,370.026443,371.528000,372.126663,373.194781,374.092619,375.315537,378.922369,382.126723,383.531923,385.779996,386.297015,389.036969,391.018405,391.516589,392.956227,394.380384,396.207020,398.730255,400.727171,402.944070,404.148769,405.603886,406.780364,407.894922,408.647098,410.825675,414.587307,415.540493,416.438331,418.435247,419.425965,421.763441,422.926139,423.271633,424.463591,425.934188,427.466705,428.627703,430.810379,432.575095,434.541051,435.657338,436.522487,437.963853,438.753332,439.480891,441.462327,442.337645,443.235483,443.933131,446.301567,447.462565,448.139769,449.099527,450.260524,451.498922,451.971427,454.014783,455.222221,457.203657,460.253211,461.661888,463.086045,464.216083,465.764080,466.507821,468.238280,470.130549,472.496632,473.899509,474.317469,476.469185,477.202652,478.044867,479.013809,479.7,481.410217,482.803945,483.498797,485.326650,486.750807,489.351442,490.945879,491.402644,492.641042,494.769707,496.008105,497.060743,498.291709 diff --git a/data/torah/translation/Ecclesiastes.json b/data/torah/translation/Ecclesiastes.json new file mode 100644 index 000000000..a699ad7f3 --- /dev/null +++ b/data/torah/translation/Ecclesiastes.json @@ -0,0 +1,253 @@ +{ + "text": [ + [ + "THE WORDs OF the Koheleth, the son of David, king in Jerusalem.", + "Vanity of vanities, saith Koheleth; Vanity of vanities, all is vanity.", + "What profit hath man of all his labour Wherein he laboureth under the sun?", + "One generation passeth away, and another generation cometh; And the earth abideth for ever.", + "The sun also ariseth, And the sun goeth down, And hasteth to his place where he ariseth.", + "The wind goeth toward the south, And turneth about unto the north; It turneth about continually in its circuit, And the wind returneth again to its circuits.", + "All the rivers run into the sea, Yet the sea is not full; Unto the place whither the rivers go, Thither they go again.", + "All things toil to weariness; Man cannot utter it, The eye is not satisfied with seeing, Nor the ear filled with hearing.", + "That which hath been is that which shall be, And that which hath been done is that which shall be done; And there is nothing new under the sun.", + "Is there a thing whereof it is said: \u2018See, this is new\u2019?\u2014it hath been already, in the ages which were before us.", + "There is no remembrance of them of former times; neither shall there be any remembrance of them of latter times that are to come, among those that shall come after.", + "I Koheleth have been king over Israel in Jerusalem.", + "And I applied my heart to seek and to search out by wisdom concerning all things that are done under heaven; it is a sore task that God hath given to the sons of men to be exercised therewith.", + "I have seen all the works that are done under the sun; and, behold, all is vanity and a striving after wind.", + "That which is crooked cannot be made straight; And that which is wanting cannot be numbered.", + "I spoke with my own heart, saying: \u2018Lo, I have gotten great wisdom, more also than all that were before me over Jerusalem\u2019; yea, my heart hath had great experience of wisdom and knowledge.", + "And I applied my heart to know wisdom, and to know madness and folly\u2014I perceived that this also was a striving after wind.", + "For in much wisdom is much vexation; And he that increaseth knowledge increaseth sorrow." + ], + [ + "I said in my heart: \u2018Come now, I will try thee with mirth, and enjoy pleasure\u2019; and, behold, this also was vanity.", + "I said of laughter: \u2018It is mad\u2019; and of mirth: \u2018What doth it accomplish?\u2019", + "I searched in my heart how to pamper my flesh with wine, and, my heart conducting itself with wisdom, how yet to lay hold on folly, till I might see which it was best for the sons of men that they should do under the heaven the few days of their life.", + "I made me great works; I builded me houses; I planted me vineyards;", + "I made me gardens and parks, and I planted trees in them of all kinds of fruit;", + "I made me pools of water, to water therefrom the wood springing up with trees;", + "I acquired men-servants and maid-servants, and had servants born in my house; also I had great possessions of herds and flocks, above all that were before me in Jerusalem;", + "I gathered me also silver and gold, and treasure such as kings and the provinces have as their own; I got me men-singers and women-singers, and the delights of the sons of men, women very many.", + "So I was great, and increased more than all that were before me in Jerusalem; also my wisdom stood me in stead.", + "And whatsoever mine eyes desired I kept not from them; I withheld not my heart from any joy, for my heart had joy of all my labour; and this was my portion from all my labour.", + "Then I looked on all the works that my hands had wrought, and on the labour that I had laboured to do; and, behold, all was vanity and a striving after wind, and there was no profit under the sun.", + "And I turned myself to behold wisdom, and madness and folly; for what can the man do that cometh after the king? even that which hath been already done.", + "Then I saw that wisdom excelleth folly, as far as light excelleth darkness.", + "The wise man, his eyes are in his head; But the fool walketh in darkness. And I also perceived that one event happeneth to them all.", + "Then said I in my heart: \u2018As it happeneth to the fool, so will it happen even to me; and why was I then more wise?\u2019 Then I said in my heart, that this also is vanity.", + "For of the wise man, even as of the fool, there is no remembrance for ever; seeing that in the days to come all will long ago have been forgotten. And how must the wise man die even as the fool!", + "So I hated life; because the work that is wrought under the sun was grievous unto me; for all is vanity and a striving after wind.", + "And I hated all my labour wherein I laboured under the sun, seeing that I must leave it unto the man that shall be after me.", + "And who knoweth whether he will be a wise man or a fool? yet will he have rule over all my labour wherein I have laboured, and wherein I have shown myself wise under the sun. This also is vanity.", + "Therefore I turned about to cause my heart to despair concerning all the labour wherein I had laboured under the sun.", + "For there is a man whose labour is with wisdom, and with knowledge, and with skill; yet to a man that hath not laboured therein shall he leave it for his portion. This also is vanity and a great evil.", + "For what hath a man of all his labour, and of the striving of his heart, wherein he laboureth under the sun?", + "For all his days are pains, and his occupation vexation; yea, even in the night his heart taketh not rest. This also is vanity.", + "There is nothing better for a man than that he should eat and drink, and make his soul enjoy pleasure for his labour. This also I saw, that it is from the hand of God.", + "For who will eat, or who will enjoy, if not I?", + "For to the man that is good in His sight He giveth wisdom, and knowledge, and joy; but to the sinner He giveth the task, to gather and to heap up, that he may leave to him that is good in the sight of God. This also is vanity and a striving after wind." + ], + [ + "To every thing there is a season, and a time to every purpose under the heaven:", + "A time to be born, and a time to die; A time to plant, and a time to pluck up that which is planted;", + "A time to kill, and a time to heal; A time to break down, and a time to build up;", + "A time to weep, and a time to laugh; A time to mourn, and a time to dance;", + "A time to cast away stones, and a time to gather stones together; A time to embrace, and a time to refrain from embracing;", + "A time to seek, and a time to lose; A time to keep, and a time to cast away;", + "A time to rend, and a time to sew; A time to keep silence, and a time to speak;", + "A time to love, and a time to hate; A time for war, and a time for peace.", + "What profit hath he that worketh in that he laboureth?", + "I have seen the task which God hath given to the sons of men to be exercised therewith.", + "He hath made every thing beautiful in its time; also He hath set the world in their heart, yet so that man cannot find out the work that God hath done from the beginning even to the end.", + "I know that there is nothing better for them, than to rejoice, and to get pleasure so long as they live.", + "But also that every man should eat and drink, and enjoy pleasure for all his labour, is the gift of God.", + "I know that, whatsoever God doeth, it shall be for ever; nothing can be added to it, nor any thing taken from it; and God hath so made it, that men should fear before Him.", + "That which is hath been long ago, and that which is to be hath already been; and God seeketh that which is pursued.", + "And moreover I saw under the sun, in the place of justice, that wickedness was there; and in the place of righteousness, that wickedness was there.", + "I said in my heart: \u2018The righteous and the wicked God will judge; for there is a time there for every purpose and for every work.\u2019", + "I said in my heart: \u2018It is because of the sons of men, that God may sift them, and that they may see that they themselves are but as beasts.\u2019", + "For that which befalleth the sons of men befalleth beasts; even one thing befalleth them; as the one dieth, so dieth the other; yea, they have all one breath; so that man hath no pre-eminence above a beast; for all is vanity.", + "All go unto one place; all are of the dust, and all return to dust.", + "Who knoweth the spirit of man whether it goeth upward, and the spirit of the beast whether it goeth downward to the earth?", + "Wherefore I perceived that there is nothing better, than that a man should rejoice in his works; for that is his portion; for who shall bring him to see what shall be after him?" + ], + [ + "But I returned and considered all the oppressions that are done under the sun; and behold the tears of such as were oppressed, and they had no comforter; and on the side of their oppressors there was power, but they had no comforter.", + "Wherefore I praised the dead that are already dead more than the living that are yet alive;", + "but better than they both is he that hath not yet been, who hath not seen the evil work that is done under the sun.", + "Again, I considered all labour and all excelling in work, that it is a man\u2019s rivalry with his neighbour. This also is vanity and a striving after wind.", + "The fool foldeth his hands together, And eateth his own flesh.", + "Better is a handful of quietness, Than both the hands full of labour and striving after wind.", + "Then I returned and saw vanity under the sun.", + "There is one that is alone, and he hath not a second; yea, he hath neither son nor brother; yet is there no end of all his labour, neither is his eye satisfied with riches: \u2018for whom then do I labour, and bereave my soul of pleasure?\u2019 This also is vanity, yea, it is a grievous business.", + "Two are better than one; because they have a good reward for their labour.", + "For if they fall, the one will lift up his fellow; but woe to him that is alone when he falleth, and hath not another to lift him up.", + "Again, if two lie together, then they have warmth; but how can one be warm alone?", + "And if a man prevail against him that is alone, two shall withstand him; and a threefold cord is not quickly broken.", + "Better is a poor and wise child than an old and foolish king, who knoweth not how to receive admonition any more.", + "For out of prison he came forth to be king; although in his kingdom he was born poor.", + "I saw all the living that walk under the sun, that they were with the child, the second, that was to stand up in his stead.", + "There was no end of all the people, even of all them whom he did lead; yet they that come after shall not rejoice in him. Surely this also is vanity and a striving after wind.", + "Guard thy foot when thou goest to the house of God, and be ready to hearken: it is better than when fools give sacrifices; for they know not that they do evil." + ], + [ + "Be not rash with thy mouth, and let not thy heart be hasty to utter a word before God; for God is in heaven, and thou upon earth; therefore let thy words be few.", + "For a dream cometh through a multitude of business; And a fool\u2019s voice through a multitude of words.", + "When thou vowest a vow unto God, defer not to pay it; for He hath no pleasure in fools; pay that which thou vowest.", + "Better is it that thou shouldest not vow, than that thou shouldest vow and not pay.", + "Suffer not thy mouth to bring thy flesh into guilt, neither say thou before the messenger, that it was an error; wherefore should God be angry at thy voice, and destroy the work of thy hands?", + "For through the multitude of dreams and vanities there are also many words; but fear thou God.", + "If thou seest the oppression of the poor, and the violent perverting of justice and righteousness in the state, marvel not at the matter; for one higher than the high watcheth, and there are higher than they.", + "But the profit of a land every way is a king that maketh himself servant to the field.", + "He that loveth silver shall not be satisfied with silver; nor he that loveth abundance, with increase; this also is vanity.", + "When goods increase, they are increased that eat them; and what advantage is there to the owner thereof, saving the beholding of them with his eyes?", + "Sweet is the sleep of a labouring man, whether he eat little or much; but the satiety of the rich will not suffer him to sleep.", + "There is a grievous evil which I have seen under the sun, namely, riches kept by the owner thereof to his hurt;", + "and those riches perish by evil adventure; and if he hath begotten a son, there is nothing in his hand.", + "As he came forth of his mother\u2019s womb, naked shall he go back as he came, and shall take nothing for his labour, which he may carry away in his hand.", + "And this also is a grievous evil, that in all points as he came, so shall he go; and what profit hath he that he laboureth for the wind?", + "All his days also he eateth in darkness, and he hath much vexation and sickness and wrath. .", + "Behold that which I have seen: it is good, yea, it is comely for one to eat and to drink, and to enjoy pleasure for all his labour, wherein he laboureth under the sun, all the days of his life which God hath given him; for this is his portion.", + "Every man also to whom God hath given riches and wealth, and hath given him power to eat thereof, and to take his portion, and to rejoice in his labour\u2014this is the gift of God.", + "For let him remember the days of his life that they are not many; for God answereth him in the joy of his heart." + ], + [ + "There is an evil which I have seen under the sun, and it is heavy upon men:", + "a man to whom God giveth riches, wealth, and honour, so that he wanteth nothing for his soul of all that he desireth, yet God giveth him not power to eat thereof, but a stranger eateth it; this is vanity, and it is an evil disease.", + "If a man beget a hundred children, and live many years, so that the days of his years are many, but his soul have not enough of good, and moreover he have no burial; I say, that an untimely birth is better than he;", + "for it cometh in vanity, and departeth in darkness, and the name thereof is covered with darkness;", + "moreover it hath not seen the sun nor known it; this hath gratification rather than the other;", + "yea, though he live a thousand years twice told, and enjoy no good; do not all go to one place?", + "All the labour of man is for his mouth, And yet the appetite is not filled.", + "For what advantage hath the wise more than the fool? or the poor man that hath understanding, in walking before the living?", + "Better is the seeing of the eyes than the wandering of the desire; this also is vanity and a striving after wind.", + "Whatsoever cometh into being, the name thereof was given long ago, and it is foreknown what man is; neither can he contend with Him that is mightier than he.", + "Seeing there are many words that increase vanity, what is man the better?", + "For who knoweth what is good for man in his life, all the days of his vain life which he spendeth as a shadow? for who can tell a man what shall be after him under the sun?" + ], + [ + "A good name is better than precious oil; And the day of death than the day of one\u2019s birth.", + "It is better to go to the house of mourning, Than to go to the house of feasting; For that is the end of all men, And the living will lay it to his heart.", + "Vexation is better than laughter; For by the sadness of the countenance the heart may be gladdened.", + "The heart of the wise is in the house of mourning; But the heart of fools is in the house of mirth.", + "It is better to hear the rebuke of the wise, Than for a man to hear the song of fools.", + "For as the crackling of thorns under a pot, so is the laughter of the fool; this also is vanity.", + "Surely oppression turneth a wise man into a fool; And a gift destroyeth the understanding.", + "Better is the end of a thing than the beginning thereof; And the patient in spirit is better than the proud in spirit.", + "Be not hasty in thy spirit to be angry; For anger resteth in the bosom of fools.", + "Say not thou: \u2018How was it that the former days were better than these?\u2019 for it is not out of wisdom that thou inquirest concerning this.", + "Wisdom is good with an inheritance, Yea, a profit to them that see the sun.", + "For wisdom is a defence, even as money is a defence; but the excellency of knowledge is, that wisdom preserveth the life of him that hath it.", + "Consider the work of God; for who can make that straight, which He hath made crooked?", + "In the day of prosperity be joyful, and in the day of adversity consider; God hath made even the one as well as the other, to the end that man should find nothing after him.", + "All things have I seen in the days of my vanity; there is a righteous man that perisheth in his righteousness, and there is a wicked man that prolongeth his life in his evil-doing.", + "Be not righteous overmuch; neither make thyself overwise; why shouldest thou destroy thyself?", + "Be not overmuch wicked, neither be thou foolish; why shouldest thou die before thy time?", + "It is good that thou shouldest take hold of the one; yea, also from the other withdraw not thy hand; for he that feareth God shall discharge himself of them all.", + "Wisdom is a stronghold to the wise man more than ten rulers that are in a city.", + "For there is not a righteous man upon earth, that doeth good, and sinneth not.", + "Also take not heed unto all words that are spoken, lest thou hear thy servant curse thee;", + "for oftentimes also thine own heart knoweth that thou thyself likewise hast cursed others.", + "All this have I tried by wisdom; I said: \u2018I will get wisdom\u2019; but it was far from me.", + "That which is is far off, and exceeding deep; who can find it out?", + "I turned about, and applied my heart to know and to search out, and to seek wisdom and the reason of things, and to know wickedness to be folly, and foolishness to be madness;", + "and I find more bitter than death the woman, whose heart is snares and nets, and her hands as bands; whoso pleaseth God shall escape from her; but the sinner shall be taken by her.", + "Behold, this have I found, saith Koheleth, adding one thing to another, to find out the account;", + "which yet my soul sought, but I found not; one man among a thousand have I found; but a woman among all those have I not found.", + "Behold, this only have I found, that God made man upright; but they have sought out many inventions." + ], + [ + "Who is as the wise man? and who knoweth the interpretation of a thing? A man\u2019s wisdom maketh his face to shine, And the boldness of his face is changed.", + "I [counsel thee]: keep the king\u2019s command, and that in regard of the oath of God.", + "Be not hasty to go out of his presence; stand not in an evil thing; for he doeth whatsoever pleaseth him.", + "Forasmuch as the king\u2019s word hath power; and who may say unto him: \u2018What doest thou?\u2019", + "Whoso keepeth the commandment shall know no evil thing; And a wise man\u2019s heart discerneth time and judgment.", + "For to every matter there is a time and judgment; for the evil of man is great upon him.", + "For he knoweth not that which shall be; for even when it cometh to pass, who shall declare it unto him?", + "There is no man that hath power over the wind to retain the wind; neither hath he power over the day of death; and there is no discharge in war; neither shall wickedness deliver him that is given to it.", + "All this have I seen, even applied my heart thereto, whatever the work that is done under the sun; what time one man had power over another to his hurt.", + "And so I saw the wicked buried, and they entered into their rest; but they that had done right went away from the holy place, and were forgotten in the city; this also is vanity.", + "Because sentence against an evil work is not executed speedily, therefore the heart of the sons of men is fully set in them to do evil;", + "because a sinner doeth evil a hundred times, and prolongeth his days\u2014though yet I know that it shall be well with them that fear God, that fear before Him;", + "but it shall not be well with the wicked, neither shall he prolong his days, which are as a shadow, because he feareth not before God.", + "There is a vanity which is done upon the earth: that there are righteous men, unto whom it happeneth according to the work of the wicked; again, there are wicked men, to whom it happeneth according to the work of the righteous\u2014I said that this also is vanity.", + "So I commended mirth, that a man hath no better thing under the sun, than to eat, and to drink, and to be merry, and that this should accompany him in his labour all the days of his life which God hath given him under the sun.", + "When I applied my heart to know wisdom, and to see the business that is done upon the earth\u2014for neither day nor night do men see sleep with their eyes\u2014", + "then I beheld all the work of God, that man cannot find out the work that is done under the sun; because though a man labour to seek it out, yet he shall not find it; yea further, though a wise man think to know it, yet shall he not be able to find it." + ], + [ + "For all this I laid to my heart, even to make clear all this: that the righteous, and the wise, and their works, are in the hand of God; whether it be love or hatred, man knoweth it not; all is before them.", + "All things come alike to all; there is one event to the righteous and to the wicked; to the good and to the clean and to the unclean; to him that sacrificeth and to him that sacrificeth not; as is the good, so is the sinner, and he that sweareth, as he that feareth an oath.", + "This is an evil in all that is done under the sun, that there is one event unto all; yea also, the heart of the sons of men is full of evil, and madness is in their heart while they live, and after that they go to the dead.", + "For to him that is joined to all the living there is hope; for a living dog is better than a dead lion.", + "For the living know that they shall die; but the dead know not any thing, neither have they any more a reward; for the memory of them is forgotten.", + "As well their love, as their hatred and their envy, is long ago perished; neither have they any more a portion for ever in any thing that is done under the sun.", + "Go thy way, eat thy bread with joy, And drink thy wine with a merry heart; For God hath already accepted thy works.", + "Let thy garments be always white; And let thy head lack no oil.", + "Enjoy life with the wife whom thou lovest all the days of the life of thy vanity, which He hath given thee under the sun, all the days of thy vanity; for that is thy portion in life, and in thy labour wherein thou labourest under the sun.", + "Whatsoever thy hand attaineth to do by thy strength, that do; for there is no work, nor device, nor knowledge, nor wisdom, in the grave, whither thou goest.", + "I returned, and saw under the sun, that the race is not to the swift, nor the battle to the strong, neither yet bread to the wise, nor yet riches to men of understanding, nor yet favour to men of skill; but time and chance happeneth to them all.", + "For man also knoweth not his time; as the fishes that are taken in an evil net, and as the birds that are caught in the snare, even so are the sons of men snared in an evil time, when it falleth suddenly upon them.", + "This also have I seen as wisdom under the sun, and it seemed great unto me:", + "there was a little city, and few men within it; and there came a great king against it, and besieged it, and built great bulwarks against it;", + "now there was found in it a man poor and wise, and he by his wisdom delivered the city; yet no man remembered that same poor man.", + "Then said I: \u2018Wisdom is better than strength; nevertheless the poor man\u2019s wisdom is despised, and his words are not heard.\u2019", + "The words of the wise spoken in quiet Are more acceptable than the cry of a ruler among fools.", + "Wisdom is better than weapons of war; But one sinner destroyeth much good." + ], + [ + "Dead flies make the ointment of the perfumer fetid and putrid; So doth a little folly outweigh wisdom and honour.", + "A wise man\u2019s understanding is at his right hand; But a fool\u2019s understanding at his left.", + "Yea also, when a fool walketh by the way, his understanding faileth him, and he saith to every one that he is a fool.", + "If the spirit of the ruler rise up against thee, Leave not thy place; For gentleness allayeth great offences.", + "There is an evil which I have seen under the sun, Like an error which proceedeth from a ruler:", + "Folly is set on great heights, And the rich sit in low place.", + "I have seen servants upon horses, And princes walking as servants upon the earth.", + "He that diggeth a pit shall fall into it; And whoso breaketh through a fence, a serpent shall bite him.", + "Whoso quarrieth stones shall be hurt therewith; And he that cleaveth wood is endangered thereby.", + "If the iron be blunt, And one do not whet the edge, Then must he put to more strength; But wisdom is profitable to direct.", + "If the serpent bite before it is charmed, Then the charmer hath no advantage.", + "The words of a wise man\u2019s mouth are gracious; But the lips of a fool will swallow up himself.", + "The beginning of the words of his mouth is foolishness; And the end of his talk is grievous madness.", + "A fool also multiplieth words; Yet man knoweth not what shall be; And that which shall be after him, Who can tell him?", + "The labour of fools wearieth every one of them, For he knoweth not how to go to the city.", + "Woe to thee, O land, when thy king is a boy, And thy princes feast in the morning! .", + "Happy art thou, O land, when thy king is a free man, And thy princes eat in due season, In strength, and not in drunkenness!", + "By slothfulness the rafters sink in; And through idleness of the hands the house leaketh.", + "A feast is made for laughter, And wine maketh glad the life; And money answereth all things.", + "Curse not the king, no, not in thy thought, And curse not the rich in thy bedchamber; For a bird of the air shall carry the voice, And that which hath wings shall tell the matter." + ], + [ + "Cast thy bread upon the waters, For thou shalt find it after many days.", + "Divide a portion into seven, yea, even into eight; For thou knowest not what evil shall be upon the earth.", + "If the clouds be full of rain, They empty themselves upon the earth; And if a tree fall in the south, or in the north, In the place where the tree falleth, there shall it be.", + "He that observeth the wind shall not sow; And he that regardeth the clouds shall not reap.", + "As thou knowest not what is the way of the wind, Nor how the bones do grow in the womb of her that is with child; Even so thou knowest not the work of God Who doeth all things.", + "In the morning sow thy seed, And in the evening withhold not thy hand; For thou knowest not which shall prosper, whether this or that, Or whether they both shall be alike good.", + "And the light is sweet, And a pleasant thing it is for the eyes to behold the sun.", + "For if a man live many years, Let him rejoice in them all, And remember the days of darkness, For they shall be many. All that cometh is vanity.", + "Rejoice, O young man, in thy youth; And let thy heart cheer thee in the days of thy youth, And walk in the ways of thy heart, And in the sight of thine eyes; But know thou, that for all these things God will bring thee into judgment.", + "Therefore remove vexation from thy heart, And put away evil from thy flesh; For childhood and youth are vanity." + ], + [ + "Remember then thy Creator in the days of thy youth, And the years draw nigh, when thou shalt say: 'I have no pleasure in them';", + "Before the sun, and the light, and the moon, And the stars, are darkened, And the clouds return after the rain;", + "In the day when the keepers of the house shall tremble, And the strong men shall bow themselves, And the grinders cease because they are few, And those that look out shall be darkened in the windows,", + "And the doors shall be shut in the street, When the sound of the grinding is low; And one shall start up at the voice of a bird, And all the daughters of music shall be brought low;", + "Also when they shall be afraid of that which is high, And terrors shall be in the way; And the almond-tree shall blossom, And the grasshopper shall drag itself along, And the caperberry shall fail; Because man goeth to his long home, And the mourners go about the streets;", + "Before the silver cord is snapped asunder, And the golden bowl is shattered, And the pitcher is broken at the fountain, And the wheel falleth shattered, into the pit;", + "And the dust returneth to the earth as it was, And the spirit returneth unto God who gave it.", + "Vanity of vanities, saith Koheleth; all is vanity.", + "And besides that Koheleth was wise, he also taught the people knowledge; yea, he pondered, and sought out, and set in order many proverbs.", + "Koheleth sought to find out words of delight, and that which was written uprightly, even words of truth.", + "The words of the wise are as goads, and as nails well fastened are those that are composed in collections; they are given from one shepherd.", + "And furthermore, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh.", + "The end of the matter, all having been heard: fear God, and keep His commandments; for this is the whole man.", + "For God shall bring every work into the judgment concerning every hidden thing, whether it be good or whether it be evil. The end of the matter, all having been heard: fear God, and keep His Commandments; for this is the whole man." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Esther.json b/data/torah/translation/Esther.json new file mode 100644 index 000000000..5d49cdf2e --- /dev/null +++ b/data/torah/translation/Esther.json @@ -0,0 +1,194 @@ +{ + "text": [ + [ + "NOW IT came to pass in the days of Ahasuerus\u2014this is Ahasuerus who reigned, from India even unto Ethiopia, over a hundred and seven and twenty provinces\u2014", + "that in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the castle,", + "in the third year of his reign, he made a feast unto all his princes and his servants; the army of Persia and Media, the nobles and princes of the provinces, being before him;", + "when he showed the riches of his glorious kingdom and the honour of his excellent majesty, many days, even a hundred and fourscore days.", + "And when these days were fulfilled, the king made a feast unto all the people that were present in Shushan the castle, both great and small, seven days, in the court of the garden of the king\u2019s palace;", + "there were hangings of white, fine cotton, and blue, bordered with cords of fine linen and purple, upon silver rods and pillars of marble; the couches were of gold and silver, upon a pavement of green, and white, and shell, and onyx marble.", + "And they gave them drink in vessels of gold\u2014the vessels being diverse one from another\u2014and royal wine in abundance, according to the bounty of the king.", + "And the drinking was according to the law; none did compel; for so the king had appointed to all the officers of his house, that they should do according to every man\u2019s pleasure.", + "Also Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus.", + "On the seventh day, when the heart of the king was merry with wine, he commanded Mehuman, Bizzetha, Harbona, Bigtha, and Abagtha, Zethar, and Carcas, the seven chamberlains that ministered in the presence of Ahasuerus the king,", + "to bring Vashti the queen before the king with the crown royal, to show the peoples and the princes her beauty; for she was fair to look on.", + "But the queen Vashti refused to come at the king\u2019s commandment by the chamberlains; therefore was the king very wroth, and his anger burned in him.", + "Then the king said to the wise men, who knew the times\u2014for so was the king\u2019s manner toward all that knew law and judgment;", + "and the next unto him was Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, who saw the king\u2019s face, and sat the first in the kingdom:", + "\u2019What shall we do unto the queen Vashti according to law, forasmuch as she hath not done the bidding of the king Ahasuerus by the chamberlains?\u2019", + "And Memucan answered before the king and the princes: \u2018Vashti the queen hath not done wrong to the king only, but also to all the princes, and to all the peoples, that are in all the provinces of the king Ahasuerus.", + "For this deed of the queen will come abroad unto all women, to make their husbands contemptible in their eyes, when it will be said: The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not.", + "And this day will the princesses of Persia and Media who have heard of the deed of the queen say the like unto all the king\u2019s princes. So will there arise enough contempt and wrath.", + "If it please the king, let there go forth a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, that Vashti come no more before king Ahasuerus, and that the king give her royal estate unto another that is better than she.", + "And when the king\u2019s decree which he shall make shall be published throughout all his kingdom, great though it be, all the wives will give to their husbands honour, both to great and small.\u2019", + "And the word pleased the king and the princes; and the king did according to the word of Memucan;", + "for he sent letters into all the king\u2019s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and speak according to the language of his people." + ], + [ + "After these things, when the wrath of king Ahasuerus was assuaged, he remembered Vashti, and what she had done, and what was decreed against her.", + "Then said the king\u2019s servants that ministered unto him: \u2018Let there be sought for the king young virgins fair to look on;", + "and let the king appoint officers in all the provinces of his kingdom, that they may gather together all the fair young virgins unto Shushan the castle, to the house of the women, unto the custody of Hegai the king\u2019s chamberlain, keeper of the women; and let their ointments be given them;", + "and let the maiden that pleaseth the king be queen instead of Vashti.\u2019 And the thing pleased the king; and he did so.", + "There was a certain Jew in Shushan the castle, whose name was Mordecai the son of Jair the son of Shimei the son of Kish, a Benjamite,", + "who had been carried away from Jerusalem with the captives that had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away.", + "And he brought up Hadassah, that is, Esther, his uncle\u2019s daughter; for she had neither father nor mother, and the maiden was of beautiful form and fair to look on; and when her father and mother were dead, Mordecai took her for his own daughter.", + "So it came to pass, when the king\u2019s commandment and his decree was published, and when many maidens were gathered together unto Shushan the castle, to the custody of Hegai, that Esther was taken into the king\u2019s house, to the custody of Hegai, keeper of the women.", + "And the maiden pleased him, and she obtained kindness of him; and he speedily gave her her ointments, with her portions, and the seven maidens, who were meet to be given her out of the king\u2019s house; and he advanced her and her maidens to the best place in the house of the women.", + "Esther had not made known her people nor her kindred; for Mordecai had charged her that she should not tell it.", + "And Mordecai walked every day before the court of the women\u2019s house, to know how Esther did, and what would become of her.", + "Now when the turn of every maiden was come to go in to king Ahasuerus, after that it had been done to her according to the law for the women, twelve months\u2014for so were the days of their anointing accomplished, to wit, six months with oil of myrrh, and six month with sweet odours, and with other ointments of the women \u2014", + "when then the maiden came unto the king, whatsoever she desired was given her to go with her out of the house of the women unto the king\u2019s house.", + "In the evening she went, and on the morrow she returned into the second house of the women, to the custody of Shaashgaz, the king\u2019s chamberlain, who kept the concubines; she came in unto the king no more, except the king delighted in her, and she were called by name.", + "Now when the turn of Esther, the daughter of Abihail the uncle of Mordecai, who had taken her for his daughter, was come to go in unto the king, she required nothing but what Hegai the king\u2019s chamberlain, the keeper of the women, appointed. And Esther obtained favour in the sight of all them that looked upon her.", + "So Esther was taken unto king Ahasuerus into his house royal in the tenth month, which is the month Tebeth, in the seventh year of his reign.", + "And the king loved Esther above all the women, and she obtained grace and favour in his sight more than all the virgins; so that he set the royal crown upon her head, and made her queen instead of Vashti.", + "Then the king made a great feast unto all his princes and his servants, even Esther\u2019s feast; and he made a release to the provinces, and gave gifts, according to the bounty of the king.", + "And when the virgins were gathered together the second time, and Mordecai sat in the king\u2019s gate\u2014", + "Esther had not yet made known her kindred nor her people; as Mordecai had charged her; for Esther did the commandment of Mordecai, like as when she was brought up with him\u2014", + "in those days, while Mordecai sat in the king\u2019s gate, two of the king\u2019s chamberlains, Bigthan and Teresh, of those that kept the door, were wroth, and sought to lay hands on the king Ahasuerus.", + "And the thing became known to Mordecai, who told it unto Esther the queen; and Esther told the king thereof in Mordecai\u2019s name.", + "And when inquisition was made of the matter, and it was found to be so, they were both hanged on a tree; and it was written in the book of the chronicles before the king." + ], + [ + "After these things did king Ahasuerus promote Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above all the princes that were with him.", + "And all the king\u2019s servants, that were in the king\u2019s gate, bowed down, and prostrated themselves before Haman; for the king had so commanded concerning him. But Mordecai bowed not down, nor prostrated himself before him.", + "Then the king\u2019s servants, that were in the king\u2019s gate, said unto Mordecai: \u2018Why transgressest thou the king\u2019s commandment?\u2019", + "Now it came to pass, when they spoke daily unto him, and he hearkened not unto them, that they told Haman, to see whether Mordecai\u2019s words would stand; for he had told them that he was a Jew.", + "And when Haman saw that Mordecai bowed not down, nor prostrated himself before him, then was Haman full of wrath.", + "But it seemed contemptible in his eyes to lay hands on Mordecai alone; for they had made known to him the people of Mordecai; wherefore Haman sought to destroy all the Jews that were throughout the whole kingdom of Ahasuerus, even the people of Mordecai.", + "In the first month, which is the month Nisan, in the twelfth year of king Ahasuerus, they cast pur, that is, the lot, before Haman from day to day, and from month to month, to the twelfth month, which is the month Adar.", + "And Haman said unto king Ahasuerus: \u2018There is a certain people scattered abroad and dispersed among the peoples in all the provinces of thy kingdom; and their laws are diverse from those of every people; neither keep they the king\u2019s laws; therefore it profiteth not the king to suffer them.", + "If it please the king, let it be written that they be destroyed; and I will pay ten thousand talents of silver into the hands of those that have the charge of the king\u2019s business, to bring it into the king\u2019s treasuries.\u2019", + "And the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews\u2019enemy.", + "And the king said unto Haman: \u2018The silver is given to thee, the people also, to do with them as it seemeth good to thee.\u2019", + "Then were the king\u2019s scribes called in the first month, on the thirteenth day thereof, and there was written, according to all that Haman commanded, unto the king\u2019s satraps, and to the governors that were over every province, and to the princes of every people; to every province according to the writing thereof, and to every people after their language; in the name of king Ahasuerus was it written, and it was sealed with the king\u2019s ring.", + "And letters were sent by posts into all the king\u2019s provinces, to destroy, to slay, and to cause to perish, all Jews, both young and old, little children and women, in one day, even upon the thirteenth day of the twelfth month, which is the month Adar, and to take the spoil of them for a prey.", + "The copy of the writing, to be given out for a decree in every province, was to be published unto all peoples, that they should be ready against that day.", + "The posts went forth in haste by the king\u2019s commandment, and the decree was given out in Shushan the castle; and the king and Haman sat down to drink; but the city of Shushan was perplexed." + ], + [ + "Now when Mordecai knew all that was done, Mordecai rent his clothes, and put on sackcloth with ashes, and went out into the midst of the city, and cried with a loud and a bitter cry;", + "and he came even before the king\u2019s gate; for none might enter within the king\u2019s gate clothed with sackcloth.", + "And in every province, whithersoever the king\u2019s commandment and his decree came, there was great mourning among the Jews, and fasting, and weeping, and wailing; and many lay in sackcloth and ashes.", + "And Esther\u2019s maidens and her chamberlains came and told it her; and the queen was exceedingly pained; and she sent raiment to clothe Mordecai; and to take his sackcloth from off him; but he accepted it not.", + "Then called Esther for Hathach, one of the king\u2019s chamberlains, whom he had appointed to attend upon her, and charged him to go to Mordecai, to know what this was, and why it was.", + "So Hathach went forth to Mordecai unto the broad place of the city, which was before the king\u2019s gate.", + "And Mordecai told him of all that had happened unto him, and the exact sum of the money that Haman had promised to pay to the king\u2019s treasuries for the Jews, to destroy them.", + "Also he gave him the copy of the writing of the decree that was given out in Shushan to destroy them, to show it unto Esther, and to declare it unto her; and to charge her that she should go in unto the king, to make supplication unto him, and to make request before him, for her people.", + "And Hathach came and told Esther the words of Mordecai.", + "Then Esther spoke unto Hathach, and gave him a message unto Mordecai:", + "\u2019All the king\u2019s servants, and the people of the king\u2019s provinces, do know, that whosoever, whether man or woman, shall come unto the king into the inner court, who is not called, there is one law for him, that he be put to death, except such to whom the king shall hold out the golden sceptre, that he may live; but I have not been called to come in unto the king these thirty days.\u2019", + "And they told to Mordecai Esther\u2019s words.", + "Then Mordecai bade them to return answer unto Esther: \u2018Think not with thyself that thou shalt escape in the king\u2019s house, more than all the Jews.", + "For if thou altogether holdest thy peace at this time, then will relief and deliverance arise to the Jews from another place, but thou and thy father\u2019s house will perish; and who knoweth whether thou art not come to royal estate for such a time as this?\u2019", + "Then Esther bade them return answer unto Mordecai:", + "\u2019Go, gather together all the Jews that are present in Shushan, and fast ye for me, and neither eat nor drink three days, night or day; I also and my maidens will fast in like manner; and so will I go in unto the king, which is not according to the law; and if I perish, I perish.\u2019", + "So Mordecai went his way, and did according to all that Esther had commanded him." + ], + [ + "Now it came to pass on the third day, that Esther put on her royal apparel, and stood in the inner court of the king\u2019s house, over against the king\u2019s house; and the king sat upon his royal throne in the royal house, over against the entrance of the house.", + "And it was so, when the king saw Esther the queen standing in the court, that she obtained favour in his sight; and the king held out to Esther the golden sceptre that was in his hand. So Esther drew near, and touched the top of the sceptre.", + "Then said the king unto her: \u2018What wilt thou, queen Esther? for whatever thy request, even to the half of the kingdom, it shall be given thee.\u2019", + "And Esther said: \u2018If it seem good unto the king, let the king and Haman come this day unto the banquet that I have prepared for him.\u2019", + "Then the king said: \u2018Cause Haman to make haste, that it may be done as Esther hath said.\u2019 So the king and Haman came to the banquet that Esther had prepared.", + "And the king said unto Esther at the banquet of wine: \u2018Whatever thy petition, it shall be granted thee; and whatever thy request, even to the half of the kingdom, it shall be performed.\u2019", + "Then answered Esther, and said: \u2018My petition and my request is\u2014", + "if I have found favour in the sight of the king, and if it please the king to grant my petition, and to perform my request\u2014let the king and Haman come to the banquet that I shall prepare for them, and I will do to-morrow as the king hath said.\u2019", + "Then went Haman forth that day joyful and glad of heart; but when Haman saw Mordecai in the king\u2019s gate, that he stood not up, nor moved for him, Haman was filled with wrath against Mordecai.", + "Nevertheless Haman refrained himself, and went home; and he sent and fetched his friends and Zeresh his wife.", + "And Haman recounted unto them the glory of his riches, and the multitude of his children, and everything as to how the king had promoted him, and how he had advanced him above the princes and servants of the king.", + "Haman said moreover: \u2018Yea, Esther the queen did let no man come in with the king unto the banquet that she had prepared but myself; and to-morrow also am I invited by her together with the king.", + "Yet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king\u2019s gate.\u2019", + "Then said Zeresh his wife and all his friends unto him: \u2018Let a gallows be made of fifty cubits high, and in the morning speak thou unto the king that Mordecai may be hanged thereon; then go thou in merrily with the king unto the banquet.\u2019 And the thing pleased Haman; and he caused the gallows to be made." + ], + [ + "On that night could not the king sleep; and he commanded to bring the book of records of the chronicles, and they were read before the king.", + "And it was found written, that Mordecai had told of Bigthana and Teresh, two of the king\u2019s chamberlains, of those that kept the door, who had sought to lay hands on the king Ahasuerus.", + "And the king said: \u2018What honour and dignity hath been done to Mordecai for this?\u2019 Then said the king\u2019s servants that ministered unto him: \u2018There is nothing done for him.\u2019", + "And the king said: \u2018Who is in the court?\u2019\u2014Now Haman was come into the outer court of the king\u2019s house, to speak unto the king to hang Mordecai on the gallows that he had prepared for him.\u2014", + "And the king\u2019s servants said unto him: \u2018Behold, Haman standeth in the court.\u2019 And the king said: \u2018Let him come in.\u2019", + "So Haman came in. And the king said unto him: \u2018What shall be done unto the man whom the king delighteth to honour?\u2019\u2014Now Haman said in his heart: \u2018Whom would the king delight to honour besides myself?\u2019\u2014", + "And Haman said unto the king: \u2018For the man whom the king delighteth to honour,", + "let royal apparel be brought which the king useth to wear, and the horse that the king rideth upon, and on whose head a crown royal is set;", + "and let the apparel and the horse be delivered to the hand of one of the king\u2019s most noble princes, that they may array the man therewith whom the king delighteth to honour, and cause him to ride on horseback through the street of the city, and proclaim before him: Thus shall it be done to the man whom the king delighteth to honour.\u2019", + "Then the king said to Haman: \u2018Make haste, and take the apparel and the horse, as thou hast said, and do even so to Mordecai the Jew, that sitteth at the king\u2019s gate; let nothing fail of all that thou hast spoken.\u2019", + "Then took Haman the apparel and the horse, and arrayed Mordecai, and caused him to ride through the street of the city, and proclaimed before him: \u2018Thus shall it be done unto the man whom the king delighteth to honour.\u2019", + "And Mordecai returned to the king\u2019s gate. But Haman hasted to his house, mourning and having his head covered.", + "And Haman recounted unto Zeresh his wife and all his friends every thing that had befallen him. Then said his wise men and Zeresh his wife unto him: \u2018If Mordecai, before whom thou hast begun to fall, be of the seed of the Jews, thou shalt not prevail against him, but shalt surely fall before him.\u2019", + "While they were yet talking with him, came the king\u2019s chamberlains, and hastened to bring Haman unto the banquet that Esther had prepared." + ], + [ + "So the king and Haman came to banquet with Esther the queen.", + "And the king said again unto Esther on the second day at the banquet of wine: \u2018Whatever thy petition, queen Esther, it shall be granted thee; and whatever thy request, even to the half of the kingdom, it shall be performed.\u2019", + "Then Esther the queen answered and said: \u2018If I have found favour in thy sight, O king, and if it please the king, let my life be given me at my petition, and my people at my request;", + "for we are sold, I and my people, to be destroyed, to be slain, and to perish. But if we had been sold for bondmen and bondwomen, I had held my peace, for the adversary is not worthy that the king be endamaged.\u2019", + "Then spoke the king Ahasuerus and said unto Esther the queen: \u2018Who is he, and where is he, that durst presume in his heart to do so?\u2019", + "And Esther said: \u2018An adversary and an enemy, even this wicked Haman.\u2019 Then Haman was terrified before the king and the queen.", + "And the king arose in his wrath from the banquet of wine and went into the palace garden; but Haman remained to make request for his life to Esther the queen; for he saw that there was evil determined against him by the king.", + "Then the king returned out of the palace garden into the place of the banquet of wine; and Haman was fallen upon the couch whereon Esther was. Then said the king: \u2018Will he even force the queen before me in the house?\u2019 As the word went out of the king\u2019s mouth, they covered Haman\u2019s face.", + "Then said Harbonah, one of the chamberlains that were before the king: \u2018Behold also, the gallows fifty cubits high, which Haman hath made for Mordecai, who spoke good for the king, standeth in the house of Haman.\u2019 And the king said: \u2018Hang him thereon.\u2019", + "So they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king\u2019s wrath assuaged." + ], + [ + "On that day did the king Ahasuerus give the house of Haman the Jews\u2019enemy unto Esther the queen. And Mordecai came before the king; for Esther had told what he was unto her.", + "And the king took off his ring, which he had taken from Haman, and gave it unto Mordecai. And Esther set Mordecai over the house of Haman.", + "And Esther spoke yet again before the king, and fell down at his feet, and besought him with tears to put away the mischief of Haman the Agagite, and his device that he had devised against the Jews.", + "Then the king held out to Esther the golden sceptre. So Esther arose, and stood before the king.", + "And she said: \u2018If it please the king, and if I have found favour in his sight, and the thing seem right before the king, and I be pleasing in his eyes, let it be written to reverse the letters devised by Haman the son of Hammedatha the Agagite, which he wrote to destroy the Jews that are in all the king\u2019s provinces;", + "for how can I endure to see the evil that shall come unto my people? or how can I endure to see the destruction of my kindred?\u2019", + "Then the king Ahasuerus said unto Esther the queen and to Mordecai the Jew: \u2018Behold, I have given Esther the house of Haman, and him they have hanged upon the gallows, because he laid his hand upon the Jews.", + "Write ye also concerning the Jews, as it liketh you, in the king\u2019s name, and seal it with the king\u2019s ring; for the writing which is written in the king\u2019s name, and sealed with the king\u2019s ring, may no man reverse.\u2019", + "Then were the king\u2019s scribes called at that time, in the third month, which is the month Sivan, on the three and twentieth day thereof; and it was written according to all that Mordecai commanded concerning the Jews, even to the satraps, and the governors and princes of the provinces which are from India unto Ethiopia, a hundred twenty and seven provinces, unto every province according to the writing thereof, and unto every people after their language, and to the Jews according to their writing, and according to their language.", + "And they wrote in the name of king Ahasuerus, and sealed it with the king\u2019s ring, and sent letters by posts on horseback, riding on swift steeds that were used in the king\u2019s service, bred of the stud;", + "that the king had granted the Jews that were in every city to gather themselves together, and to stand for their life, to destroy, and to slay, and to cause to perish, all the forces of the people and province that would assault them, their little ones and women, and to take the spoil of them for a prey,", + "upon one day in all the provinces of king Ahasuerus, namely, upon the thirteenth day of the twelfth month, which is the month Adar.", + "The copy of the writing, to be given out for a decree in every province, was to be published unto all the peoples, and that the Jews should be ready against that day to avenge themselves on their enemies.", + "So the posts that rode upon swift steeds that were used in the king\u2019s service went out, being hastened and pressed on by the king\u2019s commandment; and the decree was given out in Shushan the castle.", + "And Mordecai went forth from the presence of the king in royal apparel of blue and white, and with a great crown of gold, and with a rob of fine linen and purple; and the city of Shushan shouted and was glad.", + "The Jews had light and gladness, and joy and honour.", + "And in every province, and in every city, whithersoever the king\u2019s commandment and his decree came, the Jews had gladness and joy, a feast and a good day. And many from among the peoples of the land became Jews; for the fear of the Jews was fallen upon them." + ], + [ + "Now in the twelfth month, which is the month Adar, on the thirteenth day of the same, when the king\u2019s commandment and his decree drew near to be put in execution, in the day that the enemies of the Jews hoped to have rule over them; whereas it was turned to the contrary, that the Jews had rule over them that hated them;", + "the Jews gathered themselves together in their cities throughout all the provinces of the king Ahasuerus, to lay hand on such as sought their hurt; and no man could withstand them; for the fear of them was fallen upon all the peoples.", + "And all the princes of the provinces, and the satraps, and the governors, and they that did the king\u2019s business, helped the Jews; because the fear of Mordecai was fallen upon them.", + "For Mordecai was great in the king\u2019s house, and his fame went forth throughout all the provinces; for the man Mordecai waxed greater and greater.", + "And the Jews smote all their enemies with the stroke of the sword, and with slaughter and destruction, and did what they would unto them that hated them.", + "And in Shushan the castle the Jews slew and destroyed five hundred men.", + "And Parshandatha, and Dalphon, and Aspatha,", + "and Poratha, and Adalia, and Aridatha,", + "and Parmashta, and Arisai, and Aridai, and Vaizatha,", + "the ten sons of Haman the son of Hammedatha, the Jews\u2019enemy, slew they; but on the spoil they laid not their hand.", + "On that day the number of those that were slain in Shushan the castle was brought before the king.", + "And the king said unto Esther the queen: \u2018The Jews have slain and destroyed five hundred men in Shushan the castle, and the ten sons of Haman; what then have they done in the rest of the king\u2019s provinces! Now whatever thy petition, it shall be granted thee; and whatever thy request further, it shall be done.\u2019", + "Then said Esther: \u2018If it please the king, let it be granted to the Jews that are in Shushan to do to-morrow also according unto this day\u2019s decree, and let Haman\u2019s ten sons be hanged upon the gallows.\u2019", + "And the king commanded it so to be done; and a decree was given out in Shushan; and they hanged Haman\u2019s ten sons.", + "And the Jews that were in Shushan gathered themselves together on the fourteenth day also of the month Adar, and slew three hundred men in Shushan; but on the spoil they laid not their hand.", + "And the other Jews that were in the king\u2019s provinces gathered themselves together, and stood for their lives, and had rest from their enemies, and slew of them that hated them seventy and five thousand\u2014but on the spoil they laid not their hand\u2014.", + "on the thirteenth day of the month Adar, and on the fourteenth day of the same they rested, and made it a day of feasting and gladness.", + "But the Jews that were in Shushan assembled together on the thirteenth day thereof, and on the fourteenth thereof; and on the fifteenth day of the same they rested, and made it a day of feasting and gladness.", + "Therefore do the Jews of the villages, that dwell in the unwalled towns, make the fourteenth day of the month Adar a day of gladness and feasting, and a good day, and of sending portions one to another.", + "And Mordecai wrote these things, and sent letters unto all the Jews that were in all the provinces of the king Ahasuerus, both nigh and far,", + "to enjoin them that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly,", + "the days wherein the Jews had rest from their enemies, and the month which was turned unto them from sorrow to gladness, and from mourning into a good day; that they should make them days of feasting and gladness, and of sending portions one to another, and gifts to the poor.", + "And the Jews took upon them to do as they had begun, and as Mordecai had written unto them;", + "because Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had devised against the Jews to destroy them, and had cast pur, that is, the lot, to discomfit them, and to destroy them;", + "but when ashe came before the king, he commanded by letters that his wicked device, which he had devised against the Jews, should return upon his own head; and that he and his sons should be hanged on the gallows.", + "Wherefore they called these days Purim, after the name of pur. Therefore because of all the words of this letter, and of that which they had seen concerning this matter, and that which had come unto them,", + "the Jews ordained, and took upon them, and upon their seed, and upon all such as joined themselves unto them, so as it should not fail, that they would keep these two days according to the writing thereof, and according to the appointed time thereof, every year;", + "and that these days should be remembered and kept throughout every generation, every family, every province, and every city; and that these days of Purim should not fail from among the Jews, nor the memorial of them perish from their seed.", + "Then Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote down all the acts of power, to confirm this second letter of Purim.", + "And he sent letters unto all the Jews, to the hundred twenty and seven provinces of the kingdom of Ahasuerus, with words of peace and truth,", + "to confirm these days of Purim in their appointed times, according as Mordecai the Jew and Esther the queen had enjoined them, and as they had ordained for themselves and for their seed, the matters of the fastings and their cry.", + "And the commandment of Esther confirmed these matters of Purim; and it was written in the book." + ], + [ + "And the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea.", + "And all the acts of his power and of his might, and the full account of the greatness of Mordecai, how the king advanced him, are they not written in the book of the chronicles of the kings of Media and Persia?", + "For Mordecai the Jew was next unto king Ahasuerus, and great among the Jews, and accepted of the multitude of his brethren; seeking the good of his people and speaking peace to all his seed." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Habakkuk.json b/data/torah/translation/Habakkuk.json new file mode 100644 index 000000000..a13c934bf --- /dev/null +++ b/data/torah/translation/Habakkuk.json @@ -0,0 +1,69 @@ +{ + "text": [ + [ + "THE burden which Habakkuk the prophet did see.", + "How long, O LORD, shall I cry, And Thou wilt not hear? I cry out unto Thee of violence, And Thou wilt not save.", + "Why dost Thou show me iniquity, And beholdest mischief? And why are spoiling and violence before me? So that there is strife, and contention ariseth.", + "Therefore the law is slacked, And right doth never go forth; For the wicked doth beset the righteous; Therefore right goeth forth perverted.", + "Look ye among the nations, and behold, And wonder marvellously; For, behold, a work shall be wrought in your days, Which ye will not believe though it be told you.", + "For, lo, I raise up the Chaldeans, That bitter and impetuous nation, That march through the breadth of the earth, To possess dwelling-places that are not theirs.", + "They are terrible and dreadful; Their law and their majesty proceed from themselves.", + "Their horses also are swifter than leopards, And are more fierce than the wolves of the desert; And their horsemen spread themselves; Yea, their horsemen come from far, They fly as a vulture that hasteth to devour.", + "They come all of them for violence; Their faces are set eagerly as the east wind; And they gather captives as the sand.", + "And they scoff at kings, And princes are a derision unto them; They deride every stronghold, For they heap up earth, and take it.", + "Then their spirit doth pass over and transgress, And they become guilty: Even they who impute their might unto their god.", + "Art not Thou from everlasting, O LORD my God, my Holy One? We shall not die. O LORD, Thou hast ordained them for judgment, And Thou, O Rock, hast established them for correction. .", + "Thou that art of eyes too pure to behold evil, And that canst not look on mischief, Wherefore lookest Thou, when they deal treacherously, And holdest Thy peace, when the wicked swalloweth up The man that is more righteous than he;", + "And makest men as the fishes of the sea, As the creeping things, that have no ruler over them?", + "They take up all of them with the angle, They catch them in their net, And gather them in their drag; Therefore they rejoice and exult.", + "Therefore they sacrifice unto their net, And offer unto their drag; Because by them their portion is fat, And their food plenteous.", + "Shall they therefore empty their net, And not spare to slay the nations continually?" + ], + [ + "I will stand upon my watch, And set me upon the tower, And will look out to see what He will speak by me, And what I shall answer when I am reproved.", + "And the LORD answered me, and said: \u2018Write the vision, and make it plain upon tables, That a man may read it swiftly.", + "For the vision is yet for the appointed time, And it declareth of the end, and doth not lie; Though it tarry, wait for it; Because it will surely come, it will not delay.\u2019", + "Behold, his soul is puffed up, it is not upright in him; But the righteous shall live by his faith.", + "Yea, moreover, wine is a treacherous dealer; The haughty man abideth not; He who enlargeth his desire as the nether-world, And is as death, and cannot be satisfied, But gathereth unto him all nations, And heapeth unto him all peoples.", + "Shall not all these take up a parable against him, And a taunting riddle against him, And say: \u2018Woe to him that increaseth that which is not his! How long? and that ladeth himself with many pledges! \u2019", + "Shall they not rise up suddenly that shall exact interest of thee, And awake that shall violently shake thee, And thou shalt be for booties unto them?", + "Because thou hast spoiled many nations, All the remnant of the peoples shall spoil thee; Because of men\u2019s blood, and for the violence done to the land, To the city and to all that dwell therein.", + "Woe to him that gaineth evil gains for his house, That he may set his nest on high, That he may be delivered from the power of evil!", + "Thou hast devised shame to thy house, By cutting off many peoples, And hast forfeited thy life.", + "For the stone shall cry out of the wall, And the beam out of the timber shall answer it.", + "Woe to him that buildeth a town with blood, And establisheth a city by iniquity!", + "Behold, is it not of the LORD of hosts That the peoples labour for the fire, And the nations weary themselves for vanity?", + "For the earth shall be filled With the knowledge of the glory of the LORD, As the waters cover the sea.", + "Woe unto him that giveth his neighbour drink, That puttest thy venom thereto, and makest him drunken also, That thou mayest look on their nakedness!", + "Thou art filled with shame instead of glory, Drink thou also, and be uncovered; The cup of the LORD\u2019S right hand shall be turned unto thee, And filthiness shall be upon thy glory.", + "For the violence done to Lebanon shall cover thee, And the destruction of the beasts, which made them afraid; Because of men\u2019s blood, and for the violence done to the land, To the city and to all that dwell therein.", + "What profiteth the graven image, That the maker thereof hath graven it, Even the molten image, and the teacher of lies; That the maker of his work trusteth therein, To make dumb idols?", + "Woe unto him that saith to the wood: \u2018Awake\u2019, To the dumb stone: \u2018Arise! \u2019 Can this teach? Behold, it is overlaid with gold and silver, And there is no breath at all in the midst of it.", + "But the LORD is in His holy temple; Let all the earth keep silence before Him." + ], + [ + "A prayer of Habakkuk the prophet. Upon Shigionoth. .", + "O LORD, I have heard the report of Thee, and am afraid; O LORD, revive Thy work in the midst of the years, In the midst of the years make it known; In wrath remember compassion.", + "God cometh from Teman, And the Holy One from mount Paran. Selah His glory covereth the heavens, And the earth is full of His praise.", + "And a brightness appeareth as the light; Rays hath He at His side; And there is the hiding of His power.", + "Before him goeth the pestilence, And fiery bolts go forth at His feet.", + "He standeth, and shaketh the earth, He beholdeth, and maketh the nations to tremble; And the everlasting mountains are dashed in pieces, The ancient hills do bow; His goings are as of old.", + "I see the tents of Cushan in affliction; The curtains of the land of Midian do tremble.", + "Is it, O LORD, that against the rivers, Is it that Thine anger is kindled against the rivers, Or Thy wrath against the sea? That Thou dost ride upon Thy horses, Upon Thy chariots of victory?", + "Thy bow is made quite bare; Sworn are the rods of the word. Selah. Thou dost cleave the earth with rivers.", + "The mountains have seen Thee, and they tremble; The tempest of waters floweth over; the deep uttereth its voice, And lifteth up its hands on high.", + "The sun and moon stand still in their habitation; At the light of Thine arrows as they go, At the shining of Thy glittering spear.", + "Thou marchest through the earth in indignation, Thou threshest the nations in anger.", + "Thou art come forth for the deliverance of Thy people, For the deliverance of Thine anointed; Thou woundest the head out of the house of the wicked, Uncovering the foundation even unto the neck. Selah", + "Thou hast stricken through with his own rods the head of his rulers, That come as a whirlwind to scatter me; Whose rejoicing is as to devour the poor secretly.", + "Thou hast trodden the sea with Thy horses, The foaming of mighty waters.", + "When I heard, mine inward parts trembled, My lips quivered at the voice; Rottenness entereth into my bones, And I tremble where I stand; That I should wait for the day of trouble, When he cometh up against the people that he invadeth.", + "For though the fig-tree shall not blossom, Neither shall fruit be in the vines; The labour of the olive shall fail, And the fields shall yield no food; The flock shall be cut off from the fold, And there shall be no herd in the stalls;", + "Yet I will rejoice in the LORD, I will exult in the God of my salvation.", + "God, the Lord, is my strength, And He maketh my feet like hinds\u2019feet, And He maketh me to walk upon my high places. For the Leader. With my string-music." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Kings_1.json b/data/torah/translation/I Kings.json similarity index 100% rename from data/torah/translation/Kings_1.json rename to data/torah/translation/I Kings.json diff --git a/data/torah/translation/Samuel_1.json b/data/torah/translation/I Samuel.json similarity index 100% rename from data/torah/translation/Samuel_1.json rename to data/torah/translation/I Samuel.json diff --git a/data/torah/translation/Kings_2.json b/data/torah/translation/II Kings.json similarity index 100% rename from data/torah/translation/Kings_2.json rename to data/torah/translation/II Kings.json diff --git a/data/torah/translation/Samuel_2.json b/data/torah/translation/II Samuel.json similarity index 100% rename from data/torah/translation/Samuel_2.json rename to data/torah/translation/II Samuel.json diff --git a/data/torah/translation/Jonah.json b/data/torah/translation/Jonah.json new file mode 100644 index 000000000..187258a3c --- /dev/null +++ b/data/torah/translation/Jonah.json @@ -0,0 +1,63 @@ +{ + "text": [ + [ + "Now the word of the LORD came unto Jonah the son of Amittai, saying:", + "\u2019Arise, go to Nineveh, that great city, and proclaim against it; for their wickedness is come up before Me.\u2019", + "But Jonah rose up to flee unto Tarshish from the presence of the LORD; and he went down to Joppa, and found a ship going to Tarshish; so he paid the fare thereof, and went down into it, to go with them unto Tarshish, from the presence of the LORD.", + "But the LORD hurled a great wind into the sea, and there was a mighty tempest in the sea, so that the ship was like to be broken.", + "And the mariners were afraid, and cried every man unto his god; and they cast forth the wares that were in the ship into the sea, to lighten it unto them. But Jonah was gone down into the innermost parts of the ship; and he lay, and was fast asleep.", + "So the shipmaster came to him, and said unto him: \u2018What meanest thou that thou sleepest? arise, call upon thy God, if so be that God will think upon us, that we perish not.\u2019", + "And they said every one to his fellow: \u2018Come, and let us cast lots, that we may know for whose cause this evil is upon us.\u2019 So they cast lots, and the lot fell upon Jonah.", + "Then said they unto him: \u2018Tell us, we pray thee, for whose cause this evil is upon us: what is thine occupation? and whence comest thou? what is thy country? and of what people art thou?\u2019", + "And he said unto them: \u2018I am an Hebrew; and I fear the LORD, the God of heaven, who hath made the sea and the dry land.\u2019", + "Then were the men exceedingly afraid, and said unto him: \u2018What is this that thou hast done?\u2019 For the men knew that he fled from the presence of the LORD, because he had told them.", + "Then said they unto him: \u2018What shall we do unto thee, that the sea may be calm unto us?\u2019 for the sea grew more and more tempestuous.", + "And he said unto them: \u2018Take me up, and cast me forth into the sea; so shall the sea be calm unto you; for I know that for my sake this great tempest is upon you.\u2019", + "Nevertheless the men rowed hard to bring it to the land; but they could not; for the sea grew more and more tempestuous against them.", + "Wherefore they cried unto the LORD, and said: \u2018We beseech Thee, O LORD, we beseech Thee, let us not perish for this man\u2019s life, and lay not upon us innocent blood; for Thou, O LORD, hast done as it pleased Thee.\u2019", + "So they took up Jonah, and cast him forth into the sea; and the sea ceased from its raging.", + "Then the men feared the LORD exceedingly; and they offered a sacrifice unto the LORD, and made vows." + ], + [ + "And the LORD prepared a great fish to swallow up Jonah; and Jonah was in the belly of the fish three days and three nights.", + "Then Jonah prayed unto the LORD his God out of the fish\u2019s belly.", + "And he said: I called out of mine affliction Unto the LORD, and He answered me; Out of the belly of the nether-world cried I, And Thou heardest my voice.", + "For Thou didst cast me into the depth, In the heart of the seas, And the flood was round about me; All Thy waves and Thy billows Passed over me.", + "And I said: \u2018I am cast out From before Thine eyes\u2019; Yet I will look again Toward Thy holy temple.", + "The waters compassed me about, even to the soul; The deep was round about me; The weeds were wrapped about my head.", + "I went down to the bottoms of the mountains; The earth with her bars closed upon me for ever; Yet hast Thou brought up my life from the pit, O LORD my God.", + "When my soul fainted within me, I remembered the LORD; And my prayer came in unto Thee, Into Thy holy temple.", + "They that regard lying vanities Forsake their own mercy.", + "But I will sacrifice unto Thee With the voice of thanksgiving; That which I have vowed I will pay. Salvation is of the LORD.", + "And the LORD spoke unto the fish, and it vomited out Jonah upon the dry land." + ], + [ + "And the word of the LORD came unto Jonah the second time, saying:", + "\u2019Arise, go unto Nineveh, that great city, and make unto it the proclamation that I bid thee.\u2019", + "So Jonah arose, and went unto Nineveh, according to the word of the LORD. Now Nineveh was an exceeding great city, of three days\u2019journey.", + "And Jonah began to enter into the city a day\u2019s journey, and he proclaimed, and said: \u2018Yet forty days, and Nineveh shall be overthrown.\u2019", + "And the people of Nineveh believed God; and they proclaimed a fast, and put on sackcloth, from the greatest of them even to the least of them.", + "And the tidings reached the king of Nineveh, and he arose from his throne, and laid his robe from him, and covered him with sackcloth, and sat in ashes.", + "And he caused it to be proclaimed and published through Nineveh by the decree of the king and his nobles, saying: \u2018Let neither man nor beast, herd nor flock, taste any thing; let them not feed, nor drink water;", + "but let them be covered with sackcloth, both man and beast, and let them cry mightily unto God; yea, let them turn every one from his evil way, and from the violence that is in their hands.", + "Who knoweth whether God will not turn and repent, and turn away from His fierce anger, that we perish not?\u2019", + "And God saw their works, that they turned from their evil way; and God repented of the evil, which He said He would do unto them; and He did it not." + ], + [ + "But it displeased Jonah exceedingly, and he was angry.", + "And he prayed unto the LORD, and said: \u2018I pray Thee, O LORD, was not this my saying, when I was yet in mine own country? Therefore I fled beforehand unto Tarshish; for I knew that Thou art a gracious God, and compassionate, long-suffering, and abundant in mercy, and repentest Thee of the evil.", + "Therefore now, O LORD, take, I beseech Thee, my life from me; for it is better for me to die than to live.\u2019", + "And the LORD said: \u2018Art thou greatly angry?\u2019", + "Then Jonah went out of the city, and sat on the east side of the city, and there made him a booth, and sat under it in the shadow, till he might see what would become of the city.", + "And the LORD God prepared a gourd, and made it to come up over Jonah, that it might be a shadow over his head, to deliver him from his evil. So Jonah was exceeding glad because of the gourd.", + "But God prepared a worm when the morning rose the next day, and it smote the gourd, that it withered.", + "And it came to pass, when the sun arose, that God prepared a vehement east wind; and the sun beat upon the head of Jonah, that he fainted, and requested for himself that he might die, and said: \u2018It is better for me to die than to live.\u2019", + "And God said to Jonah: \u2018Art thou greatly angry for the gourd?\u2019 And he said: \u2018I am greatly angry, even unto death.\u2019", + "And the LORD said: \u2018Thou hast had pity on the gourd, for which thou hast not laboured, neither madest it grow, which came up in a night, and perished in a night;", + "and should not I have pity on Nineveh, that great city, wherein are more than sixscore thousand persons that cannot discern between their right hand and their left hand, and also much cattle?\u2019" + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Lamentations.json b/data/torah/translation/Lamentations.json new file mode 100644 index 000000000..3a8b86a73 --- /dev/null +++ b/data/torah/translation/Lamentations.json @@ -0,0 +1,171 @@ +{ + "text": [ + [ + "HOW DOTH the city sit solitary, That was full of people! How is she become as a widow! She that was great among the nations, And princess among the provinces, How is she become tributary!", + "She weepeth sore in the night, And her tears are on her cheeks; She hath none to comfort her Among all her lovers; All her friends have dealt treacherously with her, They are become her enemies.", + "Judah is gone into exile because of affliction, And because of great servitude; She dwelleth among the nations, She findeth no rest; All her pursuers overtook her Within the straits.", + "The ways of Zion do mourn, Because none come to the solemn assembly; All her gates are desolate, Her priests sigh; Her virgins are afflicted, And she herself is in bitterness.", + "Her adversaries are become the head, Her enemies are at ease; For the LORD hath afflicted her For the multitude of her transgressions; Her young children are gone into captivity Before the adversary.", + "And gone is from the daughter of Zion All her splendour; Her princes are become like harts That find no pasture, And they are gone without strength Before the pursuer.", + "Jerusalem remembereth In the days of her affliction and of her anguish All her treasures that she had From the days of old; Now that her people fall by the hand of the adversary, And none doth help her, The adversaries have seen her, They have mocked at her desolations.", + "Jerusalem hath grievously sinned, Therefore she is become as one unclean; All that honoured her despise her, Because they have seen her nakedness; She herself also sigheth, And turneth backward.", + "Her filthiness was in her skirts, She was not mindful of her end; Therefore is she come down wonderfully, She hath no comforter. \u2019Behold, O LORD, my affliction, For the enemy hath magnified himself.\u2019", + "The adversary hath spread out his hand Upon all her treasures; For she hath seen that the heathen Are entered into her sanctuary, Concerning whom Thou didst command That they should not enter into Thy congregation.", + "All her people sigh, They seek bread; They have given their pleasant things for food To refresh the soul. \u2018See, O LORD, and behold, How abject I am become.\u2019", + "\u2019Let it not come unto you, all ye that pass by! Behold, and see If there be any pain like unto my pain, Which is done unto me, Wherewith the LORD hath afflicted me In the day of His fierce anger.", + "From on high hath He sent fire Into my bones, and it prevaileth against them; He hath spread a net for my feet, He hath turned me back; He hath made me desolate And faint all the day.", + "The yoke of my transgressions is impressed by His hand; They are knit together, They are come up upon my neck; He hath made my strength to fail; The Lord hath delivered me into their hands, Against whom I am not able to stand.", + "The Lord hath set at nought All my mighty men in the midst of me; He hath called a solemn assembly against me To crush my young men; The Lord hath trodden as in a winepress The virgin the daughter of Judah.\u2019", + "\u2019For these things I weep; Mine eye, mine eye runneth down with water; Because the comforter is far from me, Even he that should refresh my soul; My children are desolate, Because the enemy hath prevailed.\u2019", + "Zion spreadeth forth her hands; There is none to comfort her; The LORD hath commanded concerning Jacob, That they that are round about him should be his adversaries; Jerusalem is among them As one unclean.", + "\u2019The LORD is righteous; For I have rebelled against His word; Hear, I pray you, all ye peoples, And behold my pain: My virgins and my young men Are gone into captivity. .", + "I called for my lovers, But they deceived me; My priests and mine elders Perished in the city, While they sought them food To refresh their souls.", + "Behold, O LORD, for I am in distress, Mine inwards burn; My heart is turned within me, For I have grievously rebelled. Abroad the sword bereaveth, At home there is the like of death.", + "They have heard that I sigh, There is none to comfort me; All mine enemies have heard of my trouble, and are glad, For Thou hast done it; Thou wilt bring the day that Thou hast proclaimed, And they shall be like unto me.", + "Let all their wickedness come before Thee; And do unto them, As Thou hast done unto me For all my transgressions; For my sighs are many And my heart is faint.\u2019" + ], + [ + "How hath the Lord covered with a cloud The daughter of Zion in His anger! He hath cast down from heaven unto the earth The beauty of Israel, And hath not remembered His footstool In the day of His anger.", + "The Lord hath swallowed up unsparingly All the habitations of Jacob; He hath thrown down in His wrath The strongholds of the daughter of Judah; He hath brought them down to the ground; He hath profaned the kingdom and the princes thereof.", + "He hath cut off in fierce anger All the horn of Israel; He hath drawn back His right hand From before the enemy; And He hath burned in Jacob like a flaming fire, Which devoureth round about.", + "He hath bent His bow like an enemy, Standing with His right hand as an adversary, And hath slain all that were pleasant to the eye; In the tent of the daughter of Zion He hath poured out His fury like fire.", + "The Lord is become as an enemy, He hath swallowed up Israel; He hath swallowed up all her palaces, He hath destroyed his strongholds; And He hath multiplied in the daughter of Judah Mourning and moaning.", + "And He hath stripped His tabernacle, as if it were a garden, He hath destroyed His place of assembly; The LORD hath caused to be forgotten in Zion Appointed season and sabbath, And hath rejected in the indignation of His anger The king and the priest.", + "The Lord hath cast off His altar, He hath abhorred His sanctuary, He hath given up into the hand of the enemy The walls of her palaces; They have made a noise in the house of the LORD, As in the day of a solemn assembly.", + "The LORD hath purposed to destroy The wall of the daughter of Zion; He hath stretched out the line, He hath not withdrawn His hand from destroying; But He hath made the rampart and wall to mourn, They languish together.", + "Her gates are sunk into the ground; He hath destroyed and broken her bars; Her king and her princes are among the nations, Instruction is no more; Yea, her prophets find No vision from the LORD.", + "They sit upon the ground, and keep silence, The elders of the daughter of Zion; They have cast up dust upon their heads, They have girded themselves with sackcloth; The virgins of Jerusalem hang down Their heads to the ground.", + "Mine eyes do fail with tears, Mine inwards burn, My liver is poured upon the earth, For the breach of the daughter of my people; Because the young children and the sucklings swoon In the broad places of the city.", + "They say to their mothers: \u2018Where is corn and wine?\u2019 When they swoon as the wounded In the broad places of the city, When their soul is poured out Into their mothers\u2019bosom.", + "What shall I take to witness for thee? What shall I liken to thee, O daughter of Jerusalem? What shall I equal to thee, that I may comfort thee, O virgin daughter of Zion? For thy breach is great like the sea; Who can heal thee?", + "Thy prophets have seen visions for thee Of vanity and delusion; And they have not uncovered thine iniquity, To bring back thy captivity; But have prophesied for thee burdens Of vanity and seduction.", + "All that pass by clap Their hands at thee; They hiss and wag their head At the daughter of Jerusalem: \u2018Is this the city that men called The perfection of beauty, The joy of the whole earth?\u2019 .", + "All thine enemies have opened Their mouth wide against thee; They hiss and gnash the teeth; They say: \u2018We have swallowed her up; Certainly this is the day that we looked for; We have found, we have seen it.\u2019", + "The LORD hath done that which He devised; He hath performed His word That He commanded in the days of old; He hath thrown down unsparingly; And He hath caused the enemy to rejoice over thee, He hath exalted the horn of thine adversaries.", + "Their heart cried unto the Lord: \u2018O wall of the daughter of Zion, Let tears run down like a river Day and night; Give thyself no respite; Let not the apple of thine eye cease.", + "Arise, cry out in the night, At the beginning of the watches; Pour out thy heart like water Before the face of the Lord; Lift up thy hands toward Him For the life of thy young children, That faint for hunger At the head of every street.\u2019", + "\u2019See, O LORD, and consider, To whom Thou hast done thus! Shall the women eat their fruit, The children that are dandled in the hands? Shall the priest and the prophet be slain In the sanctuary of the Lord?", + "The youth and the old man lie On the ground in the streets; My virgins and my young men Are fallen by the sword; Thou hast slain them in the day of Thine anger; Thou hast slaughtered unsparingly.", + "Thou hast called, as in the day of a solemn assembly, My terrors on every side, And there was none in the day of the LORD\u2019S anger That escaped or remained; Those that I have dandled and brought up Hath mine enemy consumed.\u2019" + ], + [ + "I am the man that hath seen affliction By the rod of His wrath.", + "He hath led me and caused me to walk in darkness and not in light.", + "Surely against me He turneth His hand again and again all the day.", + "My flesh and my skin hath He worn out; He hath broken my bones.", + "He hath builded against me, and compassed me With gall and travail.", + "He hath made me to dwell in dark places, As those that have been long dead. .", + "He hath hedged me about, that I cannot go forth; He hath made my chain heavy.", + "Yea, when I cry and call for help, He shutteth out my prayer.", + "He hath enclosed my ways with hewn stone, He hath made my paths crooked.", + "He is unto me as a bear lying in wait, As a lion in secret places.", + "He hath turned aside my ways, and pulled me in pieces; He hath made me desolate.", + "He hath bent His bow, and set me As a mark for the arrow.", + "He hath caused the arrows of His quiver To enter into my reins.", + "I am become a derision to all my people, And their song all the day.", + "He hath filled me with bitterness, He hath sated me with wormwood.", + "He hath also broken my teeth with gravel stones, He hath made me to wallow in ashes.", + "And my soul is removed far off from peace, I forgot prosperity.", + "And I said: \u2018My strength is perished, And mine expectation from the LORD.\u2019", + "Remember mine affliction and mine anguish, The wormwood and the gall.", + "My soul hath them still in remembrance, And is bowed down within me.", + "This I recall to my mind, Therefore have I hope.", + "Surely the LORD\u2019S mercies are not consumed, Surely His compassions fail not.", + "They are new every morning; Great is Thy faithfulness.", + "\u2019The LORD is my portion\u2019, saith my soul; \u2018Therefore will I hope in Him.\u2019", + "The LORD is good unto them that wait for Him, To the soul that seeketh Him.", + "It is good that a man should quietly wait For the salvation of the LORD.", + "It is good for a man that he bear The yoke in his youth.", + "Let him sit alone and keep silence, Because He hath laid it upon him.", + "Let him put his mouth in the dust, If so be there may be hope.", + "Let him give his cheek to him that smiteth him Let him be filled full with reproach.", + "For the Lord will not cast off For ever.", + "For though He cause grief, yet will He have compassion According to the multitude of His mercies.", + "For He doth not afflict willingly, Nor grieve the children of men.", + "To crush under foot All the prisoners of the earth,", + "To turn aside the right of a man Before the face of the Most High,", + "To subvert a man in his cause, The Lord approveth not.", + "Who is he that saith, and it cometh to pass, When the Lord commandeth it not?", + "Out of the mouth of the Most High proceedeth not Evil and good?", + "Wherefore doth a living man complain, A strong man because of his sins?", + "Let us search and try our ways, And return to the LORD.", + "Let us lift up our heart with our hands Unto God in the heavens.", + "We have transgressed and have rebelled; Thou hast not pardoned.", + "Thou hast covered with anger and pursued us; Thou hast slain unsparingly.", + "Thou hast covered Thyself with a cloud, So that no prayer can pass through.", + "Thou hast made us as the offscouring and refuse In the midst of the peoples.", + "All our enemies have opened their mouth Wide against us.", + "Terror and the pit are come upon us, Desolation and destruction.", + "Mine eye runneth down with rivers of water, For the breach of the daughter of my people.", + "Mine eye is poured out, and ceaseth not, Without any intermission,", + "Till the LORD look forth, And behold from heaven.", + "Mine eye affected my soul, Because of all the daughters of my city.", + "They have chased me sore like a bird, That are mine enemies without cause.", + "They have cut off my life in the dungeon, And have cast stones upon me.", + "Waters flowed over my head; I said: \u2018I am cut off.\u2019", + "I called upon Thy name, O LORD, Out of the lowest dungeon.", + "Thou heardest my voice; hide not Thine ear at my sighing, at my cry.", + "Thou drewest near in the day that I called upon Thee; Thou saidst: \u2018Fear not.\u2019 .", + "O Lord, Thou hast pleaded the causes of my soul; Thou hast redeemed my life.", + "O LORD, Thou hast seen my wrong; Judge Thou my cause.", + "Thou hast seen all their vengeance And all their devices against me.", + "Thou hast heard their taunt, O LORD, And all their devices against me;", + "The lips of those that rose up against me, And their muttering against me all the day.", + "Behold Thou their sitting down, and their rising up; I am their song.", + "Thou wilt render unto them a recompense, O LORD, According to the work of their hands.", + "Thou wilt give them hardness of heart, Thy curse unto them.", + "Thou wilt pursue them in anger, and destroy them From under the heavens of the LORD." + ], + [ + "How is the gold become dim! How is the most fine gold changed! The hallowed stones are poured out At the head of every street.", + "The precious sons of Zion, Comparable to fine gold, How are they esteemed as earthen pitchers, The work of the hands of the potter!", + "Even the jackals draw out the breast, They give suck to their young ones; The daughter of my people is become cruel, Like the ostriches in the wilderness.", + "The tongue of the sucking child cleaveth To the roof of his mouth for thirst; The young children ask bread, And none breaketh it unto them.", + "They that did feed on dainties Are desolate in the streets; They that were brought up in scarlet Embrace dunghills.", + "For the iniquity of the daughter of my people is greater Than the sin of Sodom, That was overthrown as in a moment, And no hands fell upon her.", + "Her princes were purer than snow, They were whiter than milk, They were more ruddy in body than rubies, Their polishing was as of sapphire;", + "Their visage is blacker than a coal; They are not known in the streets; Their skin is shrivelled upon their bones; It is withered, it is become like a stick.", + "They that are slain with the sword are better Than they that are slain with hunger; For these pine away, stricken through, For want of the fruits of the field.", + "The hands of women full of compassion Have sodden their own children; They were their food In the destruction of the daughter of my people.", + "The LORD hath accomplished His fury, He hath poured out His fierce anger; And He hath kindled a fire in Zion, Which hath devoured the foundations thereof.", + "The kings of the earth believed not, Neither all the inhabitants of the world, That the adversary and the enemy would enter Into the gates of Jerusalem.", + "It is because of the sins of her prophets, And the iniquities of her priests, That have shed the blood of the just In the midst of her.", + "They wander as blind men in the streets, They are polluted with blood, So that men cannot Touch their garments.", + "\u2019Depart ye! unclean! \u2019 men cried unto them, \u2018Depart, depart, touch not\u2019; Yea, they fled away and wandered; Men said among the nations: \u2018They shall no more sojourn here.\u2019", + "The anger of the LORD hath divided them; He will no more regard them; They respected not the persons of the priests, They were not gracious unto the elders.", + "As for us, our eyes do yet fail For our vain help; In our watching we have watched For a nation that could not save.", + "They hunt our steps, That we cannot go in our broad places; Our end is near, our days are fulfilled; For our end is come.", + "Our pursuers were swifter Than the eagles of the heaven; They chased us upon the mountains, They lay in wait for us in the wilderness.", + "The breath of our nostrils, the anointed of the LORD, Was taken in their pits; Of whom we said: \u2018Under his shadow We shall live among the nations.\u2019", + "Rejoice and be glad, O daughter of Edom, That dwellest in the land of Uz: The cup shall pass over unto thee also; Thou shalt be drunken, and shalt make thyself naked.", + "The punishment of thine iniquity is accomplished, O daughter of Zion, He will no more carry thee away into captivity; He will punish thine iniquity, O daughter of Edom, He will uncover thy sins." + ], + [ + "Remember, O LORD, what is come upon us; Behold, and see our reproach.", + "Our inheritance is turned unto strangers, Our houses unto aliens.", + "We are become orphans and fatherless, Our mothers are as widows.", + "We have drunk our water for money; Our wood cometh to us for price.", + "To our very necks we are pursued; We labour, and have no rest.", + "We have given the hand to Egypt, And to Assyria, to have bread enough;", + "Our fathers have sinned, and are not; And we have borne their iniquities.", + "Servants rule over us; There is none to deliver us out of their hand.", + "We get our bread with the peril of our lives Because of the sword of the wilderness.", + "Our skin is hot like an oven Because of the burning heat of famine.", + "They have ravished the women in Zion, The maidens in the cities of Judah.", + "Princes are hanged up by their hand; The faces of elders are not honoured.", + "The young men have borne the mill, And the children have stumbled under the wood.", + "The elders have ceased from the gate, The young men from their music.", + "The joy of our heart is ceased; Our dance is turned into mourning.", + "The crown is fallen from our head; Woe unto us! for we have sinned.", + "For this our heart is faint, For these things our eyes are dim;", + "For the mountain of Zion, which is desolate, The foxes walk upon it.", + "Thou, O LORD, art enthroned for ever, Thy throne is from generation to generation.", + "Wherefore dost Thou forget us for ever, And forsake us so long time?", + "Turn Thou us unto Thee, O LORD, and we shall be turned; Renew our days as of old.", + "Thou canst not have utterly rejected us, And be exceeding wroth against us! Turn us unto Thee, O Lord, and we shall be turned; Renew our days as of old." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Micah.json b/data/torah/translation/Micah.json new file mode 100644 index 000000000..b3bb8eef9 --- /dev/null +++ b/data/torah/translation/Micah.json @@ -0,0 +1,145 @@ +{ + "language": "en", + "title": "Micah", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/", + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "status": "locked", + "priority": 1.0, + "license": "Public Domain", + "versionNotes": "This 1917 translation by the Jewish Publication Society is in the public domain. JPS graciously shared digital images of this text with the Open Siddur Project, from which the text was imported by Sefaria.", + "versionTitleInHebrew": "כתבי הקודש: תרגום חדש (1917 JPS)", + "versionNotesInHebrew": "תרגום JPS 1917 קיים בנחלת הכלל. הסריקות באדיבות JPS. שעתוק הטקסט תודות לפרויקט Open Siddur, משם יובא הטקסט למאגר ספריא", + "shortVersionTitle": "JPS 1917", + "actualLanguage": "en", + "isBaseText": false, + "heTitle": "מיכה", + "categories": [ + "Tanakh", + "Prophets" + ], + "text": [ + [ + "The word of the LORD that came to Micah the Morashtite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw concerning Samaria and Jerusalem.", + "Hear, ye peoples, all of you; Hearken, O earth, and all that therein is; And let the Lord GOD be witness against you, The Lord from His holy temple.", + "For, behold, the LORD cometh forth out of His place, And will come down, and tread upon the high places of the earth.", + "And the mountains shall be molten under Him, And the valleys shall be cleft, As wax before the fire, As waters that are poured down a steep place.", + "For the transgression of Jacob is all this, And for the sins of the house of Israel. What is the transgression of Jacob? Is it not Samaria? And what are the high places of Judah? are they not Jerusalem?", + "Therefore I will make Samaria a heap in the field, A place for the planting of vineyards; And I will pour down the stones thereof into the valley, And I will uncover the foundations thereof.", + "And all her graven images shall be beaten to pieces, And all her hires shall be burned with fire, And all her idols will I lay desolate; For of the hire of a harlot hath she gathered them, And unto the hire of a harlot shall they return.", + "For this will I wail and howl, I will go stripped and naked; I will make a wailing like the jackals, And a mourning like the ostriches.", + "For her wound is incurable; For it is come even unto Judah; It reacheth unto the gate of my people, even to Jerusalem.", + "Tell it not in Gath, Weep not at all; At Beth-le-aphrah roll thyself in the dust.", + "Pass ye away, O inhabitant of Saphir, in nakedness and shame; The inhabitant of Zaanan is not come forth; The wailing of Beth-ezel shall take from you the standing-place thereof.", + "For the inhabitant of Maroth waiteth anxiously for good; Because evil is come down from the LORD unto the gate of Jerusalem.", + "Bind the chariots to the swift steeds, O inhabitant of Lachish; She was the beginning of sin to the daughter of Zion; For the transgressions of Israel are found in thee.", + "Therefore shalt thou give a parting gift to Moresheth-gath; The houses of Achzib shall be a deceitful thing unto the kings of Israel.", + "I will yet bring unto thee, O inhabitant of Mareshah, him that shall possess thee; The glory of Israel shall come even unto Adullam.", + "Make thee bald, and poll thee for the children of thy delight; Enlarge thy baldness as the vulture; For they are gone into captivity from thee." + ], + [ + "Woe to them that devise iniquity And work evil upon their beds! When the morning is light, they execute it, Because it is in the power of their hand.", + "And they covet fields, and seize them; And houses, and take them away; Thus they oppress a man and his house, Even a man and his heritage.", + "Therefore thus saith the LORD: Behold, against this family do I devise an evil, From which ye shall not remove your necks, Neither shall ye walk upright; for it shall be an evil time.", + "In that day shall they take up a parable against you, And lament with a doleful lamentation, and say: ‘We are utterly ruined; He changeth the portion of my people; How doth he remove it from me! Instead of restoring our fields, he divideth them.’", + "Therefore thou shalt have none that shall cast the line by lot In the congregation of the LORD.", + "’Preach ye not’, they preach; ‘They shall not preach of these things, That they shall not take shame.’", + "Do I change, O house of Jacob? Is the spirit of the LORD straitened? Are these His doings? Do not My words do good to him that walketh uprightly?", + "But of late My people is risen up as an enemy; With the garment ye strip also the mantle From them that pass by securely, so that they are as men returning from war.", + "The women of My people ye cast out from their pleasant houses; From their young children ye take away My glory for ever.", + "Arise ye, and depart; for this is not your resting-place; Because of the uncleanness thereof, it shall destroy you, even with a sore destruction.", + "If a man walking in wind and falsehood do lie: ‘I will preach unto thee of wine and of strong drink’; He shall even be the preacher of this people.", + "I will surely assemble, O Jacob, all of thee; I will surely gather the remnant of Israel; I will render them all as sheep in a fold; As a flock in the midst of their pasture; They shall make great noise by reason of the multitude of men.", + "The breaker is gone up before them; They have broken forth and passed on, By the gate, and are gone out thereat; And their king is passed on before them, And the LORD at the head of them." + ], + [ + "And I said: Hear, I pray you, ye heads of Jacob, and rulers of the house of Israel: Is it not for you to know justice?", + "Who hate the good, and love the evil; who rob their skin from off them, and their flesh from off their bones;", + "Who also eat the flesh of my people, and flay their skin from off them, and break their bones; yea, they chop them in pieces, as that which is in the pot, and as flesh within the caldron.", + "Then shall they cry unto the LORD, But He will not answer them; yea, He will hide His face from them at that time, According as they have wrought evil in their doings.", + "Thus saith the LORD concerning the prophets that make my people to err; that cry: ‘Peace’, when their teeth have any thing to bite; and whoso putteth not into their mouths, they even prepare war against him:", + "Therefore it shall be night unto you, that ye shall have no vision; and it shall be dark unto you, that ye shall not divine; and the sun shall go down upon the prophets, and the day shall be black over them.", + "And the seers shall be put to shame, and the diviners confounded; yea, they shall all cover their upper lips; for there shall be no answer of God.", + "But I truly am full of power by the spirit of the LORD, and of justice, and of might, to declare unto Jacob his transgression, and to Israel his sin.", + "Hear this, I pray you, ye heads of the house of Jacob, and rulers of the house of Israel, that abhor justice, and pervert all equity;", + "That build up Zion with blood, and Jerusalem with iniquity.", + "The heads thereof judge for reward, and the priests thereof teach for hire, and the prophets thereof divine for money; yet will they lean upon the LORD, and say: ‘Is not the LORD in the midst of us? No evil shall come upon us’?", + "Therefore shall Zion for your sake be plowed as a field, and Jerusalem shall become heaps, and the mountain of the house as the high places of a forest." + ], + [ + "But in the end of days it shall come to pass, That the mountain of the LORD’S house shall be established as the top of the mountains, And it shall be exalted above the hills; And peoples shall flow unto it.", + "And many nations shall go and say: ‘Come ye, and let us go up to the mountain of the LORD, And to the house of the God of Jacob; And He will teach us of His ways, And we will walk in His paths’; For out of Zion shall go forth the law, And the word of the LORD from Jerusalem.", + "And He shall judge between many peoples, And shall decide concerning mighty nations afar off; And they shall beat their swords into plowshares, And their spears into pruninghooks; Nation shall not lift up sword against nation, Neither shall they learn war any more.", + "But they shall sit every man under his vine and under his fig-tree; And none shall make them afraid; For the mouth of the LORD of hosts hath spoken.", + "For let all the peoples walk each one in the name of its god, But we will walk in the name of the LORD our God for ever and ever.", + "In that day, saith the LORD, will I assemble her that halteth, And I will gather her that is driven away, And her that I have afflicted;", + "And I will make her that halted a remnant, And her that was cast far off a mighty nation; And the LORD shall reign over them in mount Zion from thenceforth even for ever.", + "And thou, Migdal-eder, the hill of the daughter of Zion, Unto thee shall it come; Yea, the former dominion shall come, The kingdom of the daughter of Jerusalem.", + "Now why dost thou cry out aloud? Is there no King in thee, Is thy Counsellor perished, That pangs have taken hold of thee as of a woman in travail?", + "Be in pain, and labour to bring forth, O daughter of Zion, Like a woman in travail; For now shalt thou go forth out of the city, And shalt dwell in the field, And shalt come even unto Babylon; There shalt thou be rescued; There shall the LORD redeem thee from the hand of thine enemies.", + "And now many nations are assembled against thee, That say: ‘Let her be defiled, and let our eye gaze upon Zion.’", + "But they know not the thoughts of the LORD, Neither understand they His counsel; For He hath gathered them as the sheaves to the threshing-floor.", + "Arise and thresh, O daughter of Zion; For I will make thy horn iron, And I will make thy hoofs brass; And thou shalt beat in pieces many peoples; And thou shalt devote their gain unto the LORD, And their substance unto the Lord of the whole earth.", + "Now shalt thou gather thyself in troops, O daughter of troops; They have laid siege against us; They smite the judge of Israel with a rod upon the cheek." + ], + [ + "But thou, Beth-lehem Ephrathah, Which art little to be among the thousands of Judah, Out of thee shall one come forth unto Me that is to be ruler in Israel; Whose goings forth are from of old, from ancient days.", + "Therefore will He give them up, Until the time that she who travaileth hath brought forth; Then the residue of his brethren shall return with the children of Israel.", + "And he shall stand, and shall feed his flock in the strength of the LORD, In the majesty of the name of the LORD his God; And they shall abide, for then shall he be great unto the ends of the earth.", + "And this shall be peace: When the Assyrian shall come into our land, And when he shall tread in our palaces, Then shall we raise against him seven shepherds, And eight princes among men.", + "And they shall waste the land of Assyria with the sword, And the land of Nimrod with the keen-edged sword; And he shall deliver us from the Assyrian, when he cometh into our land, And when he treadeth within our border.", + "And the remnant of Jacob shall be in the midst of many peoples, As dew from the LORD, as showers upon the grass, That are not looked for from man, Nor awaited at the hands of the sons of men.", + "And the remnant of Jacob shall be among the nations, in the midst of many peoples, As a lion among the beasts of the forest, As a young lion among the flocks of sheep, Who, if he go through, treadeth down and teareth in pieces, And there is none to deliver.", + "Let Thy hand be lifted up above Thine adversaries, And let all Thine enemies be cut off. .", + "And it shall come to pass in that day, saith the LORD, That I will cut off thy horses out of the midst of thee, And will destroy thy chariots;", + "And I will cut off the cities of thy land, And will throw down all thy strongholds;", + "And I will cut off witchcrafts out of thy hand; And thou shalt have no more soothsayers;", + "And I will cut off thy graven images and thy pillars out of the midst of thee; And thou shalt no more worship the work of thy hands.", + "And I will pluck up thy Asherim out of the midst of thee; And I will destroy thine enemies.", + "And I will execute vengeance in anger and fury upon the nations, Because they hearkened not." + ], + [ + "Hear ye now what the LORD saith: Arise, contend thou before the mountains, And let the hills hear thy voice.", + "Hear, O ye mountains, the LORD’S controversy, And ye enduring rocks, the foundations of the earth; For the LORD hath a controversy with His people, And He will plead with Israel.", + "O My people, what have I done unto thee? And wherein have I wearied thee? Testify against Me.", + "For I brought thee up out of the land of Egypt, And redeemed thee out of the house of bondage, And I sent before thee Moses, Aaron, and Miriam.", + "O My people, remember now what Balak king of Moab devised, And what Balaam the son of Beor answered him; From Shittim unto Gilgal, That ye may know the righteous acts of the LORD.", + "’Wherewith shall I come before the LORD, And bow myself before God on high? Shall I come before Him with burnt-offerings, With calves of a year old?", + "Will the LORD be pleased with thousands of rams, With ten thousands of rivers of oil? Shall I give my first-born for my transgression, The fruit of my body for the sin of my soul?’", + "It hath been told thee, O man, what is good, And what the LORD doth require of thee: Only to do justly, and to love mercy, and to walk humbly with thy God.", + "Hark! the LORD crieth unto the city— And it is wisdom to have regard for Thy name— Hear ye the rod, and who hath appointed it.", + "Are there yet the treasures of wickedness in the house of the wicked, And the scant measure that is abominable?", + "’Shall I be pure with wicked balances, And with a bag of deceitful weights?’", + "For the rich men thereof are full of violence, And the inhabitants thereof have spoken lies, And their tongue is deceitful in their mouth.", + "Therefore I also do smite thee with a grievous wound; I do make thee desolate because of thy sins.", + "Thou shalt eat, but not be satisfied; And thy sickness shall be in thine inward parts; And thou shalt conceive, but shalt not bring forth; And whomsoever thou bringest forth will I give up to the sword.", + "Thou shalt sow, but shalt not reap; Thou shalt tread the olives, but shalt not anoint thee with oil; And the vintage, but shalt not drink wine.", + "For the statutes of Omri are kept, And all the works of the house of Ahab, And ye walk in their counsels; That I may make thee an astonishment, And the inhabitants thereof a hissing; And ye shall bear the reproach of My people." + ], + [ + "Woe is me! for I am as the last of the summer fruits, As the grape gleanings of the vintage; There is no cluster to eat; Nor first-ripe fig which my soul desireth.", + "The godly man is perished out of the earth, And the upright among men is no more; They all lie in wait for blood; They hunt every man his brother with a net.", + "Their hands are upon that which is evil to do it diligently; The prince asketh, and the judge is ready for a reward; And the great man, he uttereth the evil desire of his soul; Thus they weave it together.", + "The best of them is as a brier; The most upright is worse than a thorn hedge; The day of thy watchmen, even thy visitation, is come; Now shall be their perplexity.", + "Trust ye not in a friend, Put ye not confidence in a familiar friend; Keep the doors of thy mouth from her that lieth in thy bosom. .", + "For the son dishonoureth the father, The daughter riseth up against her mother, The daughter-in-law against her mother-in-law; A man’s enemies are the men of his own house.", + "’But as for me, I will look unto the LORD; I will wait for the God of my salvation; My God will hear me.", + "Rejoice not against me, O mine enemy; Though I am fallen, I shall arise; Though I sit in darkness, the LORD is a light unto me.", + "I will bear the indignation of the LORD, Because I have sinned against Him; Until He plead my cause, and execute judgment for me; He will bring me forth to the light, And I shall behold His righteousness.", + "Then mine enemy shall see it, and shame shall cover her; Who said unto me: Where is the LORD thy God? Mine eyes shall gaze upon her; Now shall she be trodden down as the mire of the streets.’", + "’The day for building thy walls, even that day, shall be far removed.’", + "There shall be a day when they shall come unto thee, From Assyria even to the cities of Egypt, And from Egypt even to the River, And from sea to sea, and from mountain to mountain.", + "And the land shall be desolate for them that dwell therein, Because of the fruit of their doings.", + "Tend Thy people with Thy staff, the flock of Thy heritage, That dwell solitarily, as a forest in the midst of the fruitful field; Let them feed in Bashan and Gilead, as in the days of old.", + "’As in the days of thy coming forth out of the land of Egypt Will I show unto him marvellous things.’", + "The nations shall see and be put to shame for all their might; They shall lay their hand upon their mouth, Their ears shall be deaf.", + "They shall lick the dust like a serpent; Like crawling things of the earth they shall come trembling out of their close places; They shall come with fear unto the LORD our God, And shall be afraid because of Thee.", + "Who is a God like unto Thee, that pardoneth the iniquity, And passeth by the transgression of the remnant of His heritage? He retaineth not His anger for ever, Because He delighteth in mercy. .", + "He will again have compassion upon us; He will subdue our iniquities; And Thou wilt cast all their sins into the depths of the sea.", + "Thou wilt show faithfulness to Jacob, mercy to Abraham, As Thou hast sworn unto our fathers from the days of old." + ] + ], + "sectionNames": [ + "Chapter", + "Verse" + ] +} \ No newline at end of file diff --git a/data/torah/translation/Ruth.json b/data/torah/translation/Ruth.json new file mode 100644 index 000000000..0fcafcad9 --- /dev/null +++ b/data/torah/translation/Ruth.json @@ -0,0 +1,100 @@ +{ + "text": [ + [ + "AND IT came to pass in the days when the judges judged, that there was a famine in the land. And a certain man of Beth-lehem in Judah went to sojourn in the field of Moab, he, and his wife, and his two sons.", + "And the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Beth-lehem in Judah. And they came into the field of Moab, and continued there.", + "And Elimelech Naomi\u2019s husband died; and she was left, and her two sons.", + "And they took them wives of the women of Moab: the name of the one was Orpah, and the name of the other Ruth; and they dwelt there about ten years.", + "And Mahlon and Chilion died both of them; and the woman was left of her two children and of her husband.", + "Then she arose with her daughters-in-law, that she might return from the field of Moab; for she had heard in the field of Moab how that the LORD had remembered His people in giving them bread.", + "And she went forth out of the place where she was, and her two daughters-in-law with her; and they went on the way to return unto the land of Judah.", + "And Naomi said unto her two daughters-in-law: \u2018Go, return each of you to her mother\u2019s house; the LORD deal kindly with you, as ye have dealt with the dead, and with me.", + "TheLORD grant you that ye may find rest, each of you in the house of her husband.\u2019 Then she kissed them; and they lifted up their voice, and wept.", + "And they said unto her: \u2018Nay, but we will return with thee unto thy people.\u2019", + "And Naomi said: \u2018Turn back, my daughters; why will ye go with me? have I yet sons in my womb, that they may be your husbands?", + "Turn back, my daughters, go your way; for I am too old to have a husband. If I should say: I have hope, should I even have an husband to-night, and also bear sons;", + "would ye tarry for them till they were grown? would ye shut yourselves off for them and have no husbands? nay, my daughters; for it grieveth me much for your sakes, for the hand of the LORD is gone forth against me.\u2019", + "And they lifted up their voice, and wept again; and Orpah kissed her mother-in-law; but Ruth cleaved unto her.", + "And she said: \u2018Behold, thy sister-in-law is gone back unto her people, and unto her god; return thou after thy sister-in-law.\u2019", + "And Ruth said: \u2018Entreat me not to leave thee, and to return from following after thee; for whither thou goest, I will go; and where thou lodgest, I will lodge; thy people shall be my people, and thy God my God;", + "where thou diest, will I die, and there will I be buried; the LORD do so to me,and more also, if aught but death part thee and me.\u2019", + "And when she saw that she was stedfastly minded to go with her, she left off speaking unto her.", + "So they two went until they came to Beth-lehem. And it came to pass, when they were come to Beth-lehem, that all the city was astir concerning them, and the women said: \u2018Is this Naomi?\u2019", + "And she said unto them: \u2018Call me not Naomi, call me Marah; for the Almighty hath dealt very bitterly with me.", + "I went out full, and the LORD hath brought me back home empty; why call ye me Naomi, seeing the LORD hath testified against me, and the Almighty hath afflicted me?\u2019", + "So Naomi returned, and Ruth the Moabitess, her daughter-in-law, with her, who returned out of the field of Moab\u2014and they came to Beth-lehem in the beginning of barley harvest." + ], + [ + "And Naomi had a kinsman of her husband\u2019s, a mighty man of valour, of the family of Elimelech, and his name was Boaz.", + "And Ruth the Moabitess said unto Naomi: \u2018Let me now go to the field, and glean among the ears of corn after him in whose sight I shall find favour.\u2019 And she said unto her: \u2018Go, my daughter.\u2019", + "And she went, and came and gleaned in the field after the reapers; and her hap was to light on the portion of the field belonging unto Boaz, who was of the family of Elimelech.", + "And, behold, Boaz came from Beth-lehem, and said unto the reapers: \u2018The LORD be with you.\u2019 And they answered him: \u2018The LORD bless thee.\u2019", + "Then said Boaz unto his servant that was set over the reapers: \u2018Whose damsel is this?\u2019", + "And the servant that was set over the reapers answered and said: \u2018It is a Moabitish damsel that came back with Naomi out of the field of Moab;", + "and she said: Let me glean, I pray you, and gather after the reapers among the sheaves; so she came, and hath continued even from the morning until now, save that she tarried a little in the house.\u2019", + "Then said Boaz unto Ruth: \u2018Hearest thou not, my daughter? Go not to glean in another field, neither pass from hence, but abide here fast by my maidens.", + "Let thine eyes be on the field that they do reap, and go thou after them; have I not charged the young men that they shall not touch thee? and when thou art athirst, go unto the vessels, and drink of that which the young men have drawn.\u2019", + "Then she fell on her face, and bowed down to the ground, and said unto him: \u2018Why have I found favour in thy sight, that thou shouldest take cognizance of me, seeing I am a foreigner?\u2019", + "And Boaz answered and said unto her: \u2018It hath fully been told me, all that thou hast done unto thy mother-in-law since the death of thy husband; and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people that thou knewest not heretofore.", + "The LORD recompense thy work, and be thy reward complete from the LORD, the God of Israel, under whose wings thou art come to take refuge.\u2019", + "Then she said: \u2018Let me find favour in thy sight, my LORD; for that thou hast comforted me, and for that thou hast spoken to the heart of thy handmaid, though I be not as one of thy handmaidens.\u2019", + "And Boaz said unto her at meal-time: \u2018Come hither, and eat of the bread, and dip thy morsel in the vinegar.\u2019 And she sat beside the reapers; and they reached her parched corn, and she did eat and was satisfied, and left thereof.", + "And when she was risen up to glean, Boaz commanded his young men, saying: \u2018Let her glean even among the sheaves, and put her not to shame.", + "And also pull out some for her of purpose from the bundles, and leave it, and let her glean, and rebuke her not.\u2019", + "So she gleaned in the field until even; and she beat out that which she had gleaned, and it was about an ephah of barley.", + "And she took it up, and went into the city; and her mother-in-law saw what she had gleaned; and she brought forth and gave to her that which she had left after she was satisfied.", + "And her mother-in-law said unto her: \u2018Where hast thou gleaned to-day? and where wroughtest thou? blessed be he that did take knowledge of thee.\u2019 And she told her mother-in-law with whom she had wrought, and said: \u2018The man\u2019s name with whom I wrought to-day is Boaz.\u2019", + "And Naomi said unto her daughter-in-law: \u2018Blessed be he of the LORD, who hath not left off His kindness to the living and to the dead.\u2019 And Naomi said unto her: \u2018The man is nigh of kin unto us, one of our near kinsmen.\u2019", + "And Ruth the Moabitess said: \u2018Yea, he said unto me: Thou shalt keep fast by my young men, until they have ended all my harvest.\u2019", + "And Naomi said unto Ruth her daughter-in-law: \u2018It is good, my daughter, that thou go out with his maidens, and that thou be not met in any other field.\u2019", + "So she kept fast by the maidens of Boaz to glean unto the end of barley harvest and of wheat harvest; and she dwelt with her mother-in-law." + ], + [ + "And Naomi her mother-in-law said unto her: \u2018My daughter, shall I not seek rest for thee, that it may be well with thee?", + "And now is there not Boaz our kinsman, with whose maidens thou wast? Behold, he winnoweth barley to-night in the threshing-floor.", + "Wash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the threshing-floor; but make not thyself known unto the man, until he shall have done eating and drinking.", + "And it shall be, when he lieth down, that thou shalt mark the place where he shall lie, and thou shalt go in, and uncover his feet, and lay thee down; and he will tell thee what thou shalt do.\u2019", + "And she said unto her: \u2018All that thou sayest unto me I will do.\u2019", + "And she went down unto the threshing-floor, and did according to all that her mother-in-law bade her.", + "And when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of corn; and she came softly, and uncovered his feet, and laid her down.", + "And it came to pass at midnight, that the man was startled, and turned himself; and, behold, a woman lay at his feet.", + "And he said: \u2018Who art thou?\u2019 And she answered: \u2018I am Ruth thine handmaid; spread therefore thy skirt over thy handmaid; for thou art a near kinsman.\u2019", + "And he said: \u2018Blessed be thou of the LORD, my daughter; thou hast shown more kindness in the end than at the beginning, inasmuch as thou didst not follow the young men, whether poor or rich.", + "And now, my daughter, fear not; I will do to thee all that thou sayest; for all the men in the gate of my people do know that thou art a virtuous woman.", + "And now it is true that I am a near kinsman; howbeit there is a kinsman nearer than I.", + "Tarry this night, and it shall be in the morning, that if he will perform unto thee the part of a kinsman, well; let him do the kinsman\u2019s part; but if he be not willing to do the part of a kinsman to thee, then will I do the part of a kinsman to thee, as the LORD liveth; lie down until the morning.\u2019", + "And she lay at his feet until the morning; and she rose up before one could discern another. For he said: \u2018Let it not be known that the woman came to the threshing-floor.\u2019", + "And he said: \u2018Bring the mantle that is upon thee, and hold it\u2019; and she held it; and he measured six measures of barley, and laid it on her; and he went into the city.", + "And when she came to her mother-in-law, she said: \u2018Who art thou, my daughter?\u2019 And she told her all that the man had done to her.", + "And she said: \u2018These six measures of barley gave he me; for he said to me: Go not empty unto thy mother-in-law.\u2019", + "Then said she: \u2018Sit still, my daughter, until thou know how the matter will fall; for the man will not rest, until he have finished the thing this day.\u2019" + ], + [ + "Now Boaz went up to the gate, and sat him down there; and, behold, the near kinsman of whom Boaz spoke came by; unto whom he said: \u2018Ho, such a one! turn aside, sit down here.\u2019 And he turned aside, and sat down.", + "And he took ten men of the elders of the city, and said: \u2018Sit ye down here.\u2019 And they sat down.", + "And he said unto the near kinsman: \u2018Naomi, that is come back out of the field of Moab, selleth the parcel of land, which was our brother Elimelech\u2019s;", + "and I thought to disclose it unto thee, saying: Buy it before them that sit here, and before the elders of my people. If thou wilt redeem it, redeem it; but if it will not be redeemed, then tell me, that I may know; for there is none to redeem it beside thee; and I am after thee.\u2019 And he said: \u2018I will redeem it.\u2019", + "Then said Boaz: \u2018What day thou buyest the field of the hand of Naomi\u2014hast thou also bought of Ruth the Moabitess, the wife of the dead, to raise up the name of the dead upon his inheritance?\u2019", + "And the near kinsman said: \u2018I cannot redeem it for myself, lest I mar mine own inheritance; take thou my right of redemption on thee; for I cannot redeem it.\u2019\u2014", + "Now this was the custom in former time in Israel concerning redeeming and concerning exchanging, to confirm all things: a man drew off his shoe, and gave it to his neighbour; and this was the attestation in Israel.\u2014", + "So the near kinsman said unto Boaz: \u2018Buy it for thyself.\u2019 And he drew off his shoe.", + "And Boaz said unto the elders, and unto all the people: \u2018Ye are witnesses this day, that I have bought all that was Elimelech\u2019s, and all that was Chilion\u2019s and Mahlon\u2019s, of the hand of Naomi.", + "Moreover Ruth the Moabitess, the wife of Mahlon, have I acquired to be my wife, to raise up the name of the dead upon his inheritance, that the name of the dead be not cut off from among his brethren, and from the gate of his place; ye are witnesses this day.\u2019", + "And all the people that were in the gate, and the elders, said: \u2018We are witnesses. The LORD make the woman that is come into thy house like Rachel and like Leah, which two did build the house of Israel; and do thou worthily in Ephrath, and be famous in Beth-lehem;", + "and let thy house be like the house of Perez, whom Tamar bore unto Judah, of the seed which the LORD shall give thee of this young woman.\u2019", + "So Boaz took Ruth, and she became his wife; and he went in unto her, and the LORD gave her conception, and she bore a son.", + "And the women said unto Naomi: \u2018Blessed be the LORD, who hath not left thee this day without a near kinsman, and let his name be famous in Israel.", + "And he shall be unto thee a restorer of life, and a nourisher of thine old age; for thy daughter-in-law, who loveth thee, who is better to thee than seven sons, hath borne him.\u2019", + "And Naomi took the child, and laid it in her bosom, and became nurse unto it.", + "And the women her neighbours gave it a name, saying: \u2018There is a son born to Naomi\u2019; and they called his name Obed; he is the father of Jesse, the father of David.", + "Now these are the generations of Perez: Perez begot Hezron;", + "and Hezron begot Ram, and Ram begot Amminadab;", + "and Amminadab begot Nahshon, and Nahshon begot Salmon;", + "and Salmon begot Boaz, and Boaz begot Obed;", + "and Obed begot Jesse, and Jesse begot David." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Song of Songs.json b/data/torah/translation/Song of Songs.json new file mode 100644 index 000000000..12b74e028 --- /dev/null +++ b/data/torah/translation/Song of Songs.json @@ -0,0 +1,140 @@ +{ + "text": [ + [ + "THE song of songs, which is Solomon\u2019s.", + "Let him kiss me with the kisses of his mouth\u2014 For thy love is better than wine.", + "Thine ointments have a goodly fragrance; Thy name is as ointment poured forth; Therefore do the maidens love thee.", + "Draw me, we will run after thee; The king hath brought me into his chambers; We will be glad and rejoice in thee, We will find thy love more fragrant than wine! Sincerely do they love thee.", + "\u2019I am black, but comely, O ye daughters of Jerusalem, As the tents of Kedar, As the curtains of Solomon.", + "Look not upon me, that I am swarthy, That the sun hath tanned me; My mother\u2019s sons were incensed against me, They made me keeper of the vineyards; But mine own vineyard have I not kept.\u2019", + "Tell me, O thou whom my soul loveth, Where thou feedest, where thou makest thy flock to rest at noon; For why should I be as one that veileth herself Beside the flocks of thy companions?", + "If thou know not, O thou fairest among women, Go thy way forth by the footsteps of the flock And feed thy kids, beside the shepherds\u2019tents.", + "I have compared thee, O my love, To a steed in Pharaoh\u2019s chariots.", + "Thy cheeks are comely with circlets, Thy neck with beads.", + "We will make thee circlets of gold With studs of silver.", + "While the king sat at his table, My spikenard sent forth its fragrance.", + "My beloved is unto me as a bag of myrrh, That lieth betwixt my breasts.", + "My beloved is unto me as a cluster of henna In the vineyards of En-gedi.", + "Behold, thou art fair, my love; behold, thou art fair; Thine eyes are as doves. .", + "Behold, thou art fair, my beloved, yea, pleasant; Also our couch is leafy.", + "The beams of our houses are cedars, And our panels are cypresses." + ], + [ + "I am a rose of Sharon, A lily of the valleys.", + "As a lily among thorns, So is my love among the daughters.", + "As an apple-tree among the trees of the wood, So is my beloved among the sons. Under its shadow I delighted to sit, And its fruit was sweet to my taste.", + "He hath brought me to the banqueting-house, And his banner over me is love.", + "\u2019Stay ye me with dainties, refresh me with apples; For I am love-sick.\u2019", + "Let his left hand be under my head, And his right hand embrace me.", + "\u2019I adjure you, O daughters of Jerusalem, By the gazelles, and by the hinds of the field, That ye awaken not, nor stir up love, until it please.\u2019", + "Hark! my beloved! behold, he cometh, Leaping upon the mountains, skipping upon the hills.", + "My beloved is like a gazelle or a young hart; Behold, he standeth behind our wall, He looketh in through the windows, He peereth through the lattice.", + "My beloved spoke, and said unto me: \u2018Rise up, my love, my fair one, and come away.", + "For, lo, the winter is past, The rain is over and gone;", + "The flowers appear on the earth; The time of singing is come, And the voice of the turtle is heard in our land;", + "The fig-tree putteth forth her green figs, And the vines in blossom give forth their fragrance. Arise, my love, my fair one, and come away.", + "O my dove, that art in the clefts of the rock, in the covert of the cliff, Let me see thy countenance, let me hear thy voice; For sweet is thy voice, and thy countenance is comely.\u2019", + "\u2019Take us the foxes, the little foxes, that spoil the vineyards; For our vineyards are in blossom.\u2019", + "My beloved is mine, and I am his, That feedeth among the lilies.", + "Until the day breathe, and the shadows flee away, Turn, my beloved, and be thou like a gazelle or a young hart Upon the mountains of spices." + ], + [ + "By night on my bed I sought him whom my soul loveth; I sought him, but I found him not.", + "\u2019I will rise now, and go about the city, In the streets and in the broad ways, I will seek him whom my soul loveth.\u2019 I sought him, but I found him not.", + "The watchmen that go about the city found me: \u2018Saw ye him whom my soul loveth?\u2019", + "Scarce had I passed from them, When I found him whom my soul loveth: I held him, and would not let him go, Until I had brought him into my mother\u2019s house, And into the chamber of her that conceived me.", + "\u2019I adjure you, O daughters of Jerusalem, By the gazelles, and by the hinds of the field, That ye awaken not, nor stir up love, Until it please.\u2019", + "Who is this that cometh up out of the wilderness Like pillars of smoke, Perfumed with myrrh and frankincense, With all powders of the merchant?", + "Behold, it is the litter of Solomon; Threescore mighty men are about it, Of the mighty men of Israel.", + "They all handle the sword, And are expert in war; Every man hath his sword upon his thigh, Because of dread in the night.", + "King Solomon made himself a palanquin Of the wood of Lebanon.", + "He made the pillars thereof of silver, The top thereof of gold, The seat of it of purple, The inside thereof being inlaid with love, From the daughters of Jerusalem.", + "Go forth, O ye daughters of Zion, And gaze upon king Solomon, Even upon the crown wherewith his mother hath crowned him in the day of his espousals, And in the day of the gladness of his heart." + ], + [ + "Behold, thou art fair, my love; behold, thou art fair; Thine eyes are as doves behind thy veil; Thy hair is as a flock of goats, that trail down from mount Gilead.", + "Thy teeth are like a flock of ewes all shaped alike, Which are come up from the washing; Whereof all are paired, and none faileth among them.", + "Thy lips are like a thread of scarlet, And thy mouth is comely; Thy temples are like a pomegranate split open Behind thy veil.", + "Thy neck is like the tower of David Builded with turrets, Whereon there hang a thousand shields, All the armour of the mighty men.", + "Thy two breasts are like two fawns That are twins of a gazelle, Which feed among the lilies.", + "Until the day breathe, And the shadows flee away, I will get me to the mountain of myrrh, And to the hill of frankincense.", + "Thou art all fair, my love; And there is no spot in thee.", + "Come with me from Lebanon, my bride, With me from Lebanon; Look from the top of Amana, From the top of Senir and Hermon, From the lions\u2019dens, From the mountains of the leopards.", + "Thou hast ravished my heart, my sister, my bride; Thou hast ravished my heart with one of thine eyes, With one bead of thy necklace.", + "How fair is thy love, my sister, my bride! How much better is thy love than wine! And the smell of thine ointments than all manner of spices!", + "Thy lips, O my bride, drop honey\u2014 Honey and milk are under thy tongue; And the smell of thy garments is like the smell of Lebanon.", + "A garden shut up is my sister, my bride; A spring shut up, a fountain sealed.", + "Thy shoots are a park of pomegranates, With precious fruits; Henna with spikenard plants,", + "Spikenard and saffron, calamus and cinnamon, With all trees of frankincense; Myrrh and aloes, with all the chief spices.", + "Thou art a fountain of gardens, A well of living waters, And flowing streams from Lebanon.", + "Awake, O north wind; And come, thou south; Blow upon my garden, That the spices thereof may flow out. Let my beloved come into his garden, And eat his precious fruits." + ], + [ + "I am come into my garden, my sister, my bride; I have gathered my myrrh with my spice; I have eaten my honeycomb with my honey; I have drunk my wine with my milk. Eat, O friends; Drink, yea, drink abundantly, O beloved.", + "I sleep, but my heart waketh; Hark! my beloved knocketh: \u2018Open to me, my sister, my love, my dove, my undefiled; For my head is filled with dew, My locks with the drops of the night.\u2019", + "I have put off my coat; How shall I put it on? I have washed my feet; How shall I defile them?", + "My beloved put in his hand by the hole of the door, And my heart was moved for him.", + "I rose up to open to my beloved; And my hands dropped with myrrh, And my fingers with flowing myrrh, Upon the handles of the bar.", + "I opened to my beloved; But my beloved had turned away, and was gone. My soul failed me when he spoke. I sought him, but I could not find him; I called him, but he gave me no answer.", + "The watchmen that go about the city found me, They smote me, they wounded me; The keepers of the walls took away my mantle from me.", + "\u2019I adjure you, O daughters of Jerusalem, If ye find my beloved, what will ye tell him? That I am love-sick.\u2019", + "\u2019What is thy beloved more than another beloved, O thou fairest among women? What is thy beloved more than another beloved, That thou dost so adjure us?\u2019", + "\u2019My beloved is white and ruddy, Pre-eminent above ten thousand.", + "His head is as the most fine gold, His locks are curled, And black as a raven.", + "His eyes are like doves Beside the water-brooks; Washed with milk, And fitly set.", + "His cheeks are as a bed of spices, As banks of sweet herbs; His lips are as lilies, Dropping with flowing myrrh.", + "His hands are as rods of gold Set with beryl; His body is as polished ivory Overlaid with sapphires.", + "His legs are as pillars of marble, Set upon sockets of fine gold; His aspect is like Lebanon, Excellent as the cedars.", + "His mouth is most sweet; Yea, he is altogether lovely. This is my beloved, and this is my friend, O daughters of Jerusalem.\u2019" + ], + [ + "\u2019Whither is thy beloved gone, O thou fairest among women? Whither hath thy beloved turned him, That we may seek him with thee?\u2019", + "\u2019My beloved is gone down into his garden, To the beds of spices, To feed in the gardens, And to gather lilies.", + "I am my beloved\u2019s, and my beloved is mine, That feedeth among the lilies.\u2019", + "Thou art beautiful, O my love, as Tirzah, Comely as Jerusalem, Terrible as an army with banners.", + "Turn away thine eyes from me, For they have overcome me. Thy hair is as a flock of goats, That trail down from Gilead.", + "Thy teeth are like a flock of ewes, Which are come up from the washing; Whereof all are paired, And none faileth among them.", + "Thy temples are like a pomegranate split open Behind thy veil.", + "There are threescore queens, And fourscore concubines, And maidens without number.", + "My dove, my undefiled, is but one; She is the only one of her mother; She is the choice one of her that bore her. The daughters saw her, and called her happy; Yea, the queens and the concubines, and they praised her.", + "Who is she that looketh forth as the dawn, Fair as the moon, Clear as the sun, Terrible as an army with banners?", + "I went down into the garden of nuts, To look at the green plants of the valley, To see whether the vine budded, And the pomegranates were in flower.", + "Before I was aware, my soul set me Upon the chariots of my princely people." + ], + [ + "Return, return, O Shulammite; Return, return, that we may look upon thee. What will ye see in the Shulammite? As it were a dance of two companies.", + "How beautiful are thy steps in sandals, O prince\u2019s daughter! The roundings of thy thighs are like the links of a chain, The work of the hands of a skilled workman.", + "Thy navel is like a round goblet, Wherein no mingled wine is wanting; Thy belly is like a heap of wheat Set about with lilies.", + "Thy two breasts are like two fawns That are twins of a gazelle.", + "Thy neck is as a tower of ivory; Thine eyes as the pools in Heshbon, By the gate of Bath-rabbim; Thy nose is like the tower of Lebanon Which looketh toward Damascus.", + "Thy head upon thee is like Carmel, And the hair of thy head like purple; The king is held captive in the tresses thereof.", + "How fair and how pleasant art thou, O love, for delights! .", + "This thy stature is like to a palm-tree, And thy breasts to clusters of grapes.", + "I said: \u2018I will climb up into the palm-tree, I will take hold of the branches thereof; And let thy breasts be as clusters of the vine, And the smell of thy countenance like apples;", + "And the roof of thy mouth like the best wine, That glideth down smoothly for my beloved, Moving gently the lips of those that are asleep.\u2019", + "I am my beloved\u2019s, And his desire is toward me. :", + "Come, my beloved, let us go forth into the field; Let us lodge in the villages.", + "Let us get up early to the vineyards; Let us see whether the vine hath budded, Whether the vine-blossom be opened, And the pomegranates be in flower; There will I give thee my love.", + "The mandrakes give forth fragrance, And at our doors are all manner of precious fruits, New and old, Which I have laid up for thee, O my beloved." + ], + [ + "Oh that thou wert as my brother, That sucked the breasts of my mother! When I should find thee without, I would kiss thee; Yea, and none would despise me.", + "I would lead thee, and bring thee into my mother\u2019s house, That thou mightest instruct me; I would cause thee to drink of spiced wine, Of the juice of my pomegranate.", + "His left hand should be under my head, And his right hand should embrace me.", + "\u2019I adjure you, O daughters of Jerusalem: Why should ye awaken, or stir up love, Until it please?\u2019", + "Who is this that cometh up from the wilderness, Leaning upon her beloved? Under the apple-tree I awakened thee; There thy mother was in travail with thee; There was she in travail and brought thee forth.", + "Set me as a seal upon thy heart, As a seal upon thine arm; For love is strong as death, Jealousy is cruel as the grave; The flashes thereof are flashes of fire, A very flame of the LORD.", + "Many waters cannot quench love, Neither can the floods drown it; If a man would give all the substance of his house for love, He would utterly be contemned.", + "We have a little sister, And she hath no breasts; What shall we do for our sister In the day when she shall be spoken for?", + "If she be a wall, We will build upon her a turret of silver; And if she be a door, We will enclose her with boards of cedar.", + "I am a wall, And my breasts like the towers thereof; Then was I in his eyes As one that found peace.", + "Solomon had a vineyard at Baal-hamon; He gave over the vineyard unto keepers; Every one for the fruit thereof Brought in a thousand pieces of silver.", + "My vineyard, which is mine, is before me; Thou, O Solomon, shalt have the thousand, And those that keep the fruit thereof two hundred.", + "Thou that dwellest in the gardens, The companions hearken for thy voice: \u2018Cause me to hear it.\u2019", + "Make haste, my beloved, And be thou like to a gazelle or to a young hart Upon the mountains of spices." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/trope/audio/3megillot-etnachta.mp3 b/data/trope/audio/3megillot-etnachta.mp3 new file mode 100644 index 000000000..8ddaccf74 Binary files /dev/null and b/data/trope/audio/3megillot-etnachta.mp3 differ diff --git a/data/trope/audio/3megillot-geresh.mp3 b/data/trope/audio/3megillot-geresh.mp3 new file mode 100644 index 000000000..e6f0fa4b7 Binary files /dev/null and b/data/trope/audio/3megillot-geresh.mp3 differ diff --git a/data/trope/audio/3megillot-gershayim.mp3 b/data/trope/audio/3megillot-gershayim.mp3 new file mode 100644 index 000000000..d0e4aa925 Binary files /dev/null and b/data/trope/audio/3megillot-gershayim.mp3 differ diff --git a/data/trope/audio/3megillot-kadma_vazlan.mp3 b/data/trope/audio/3megillot-kadma_vazlan.mp3 new file mode 100644 index 000000000..56d89d2ce Binary files /dev/null and b/data/trope/audio/3megillot-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/3megillot-katon.mp3 b/data/trope/audio/3megillot-katon.mp3 new file mode 100644 index 000000000..abdffbc8c Binary files /dev/null and b/data/trope/audio/3megillot-katon.mp3 differ diff --git a/data/trope/audio/3megillot-pazer.mp3 b/data/trope/audio/3megillot-pazer.mp3 new file mode 100644 index 000000000..341e34d6c Binary files /dev/null and b/data/trope/audio/3megillot-pazer.mp3 differ diff --git a/data/trope/audio/3megillot-revii.mp3 b/data/trope/audio/3megillot-revii.mp3 new file mode 100644 index 000000000..580278d13 Binary files /dev/null and b/data/trope/audio/3megillot-revii.mp3 differ diff --git a/data/trope/audio/3megillot-sof_pasuk.mp3 b/data/trope/audio/3megillot-sof_pasuk.mp3 new file mode 100644 index 000000000..0e9570cd3 Binary files /dev/null and b/data/trope/audio/3megillot-sof_pasuk.mp3 differ diff --git a/data/trope/audio/3megillot-sof_perek.mp3 b/data/trope/audio/3megillot-sof_perek.mp3 new file mode 100644 index 000000000..d62c85682 Binary files /dev/null and b/data/trope/audio/3megillot-sof_perek.mp3 differ diff --git a/data/trope/audio/3megillot-telisha.mp3 b/data/trope/audio/3megillot-telisha.mp3 new file mode 100644 index 000000000..f6e7c22f5 Binary files /dev/null and b/data/trope/audio/3megillot-telisha.mp3 differ diff --git a/data/trope/audio/3megillot-tevir.mp3 b/data/trope/audio/3megillot-tevir.mp3 new file mode 100644 index 000000000..bde1e7a5f Binary files /dev/null and b/data/trope/audio/3megillot-tevir.mp3 differ diff --git a/data/trope/audio/3megillot-yetiv_katom.mp3 b/data/trope/audio/3megillot-yetiv_katom.mp3 new file mode 100644 index 000000000..e7988b2f3 Binary files /dev/null and b/data/trope/audio/3megillot-yetiv_katom.mp3 differ diff --git a/data/trope/audio/3megillot-zakef_gadol.mp3 b/data/trope/audio/3megillot-zakef_gadol.mp3 new file mode 100644 index 000000000..4aa97dc7d Binary files /dev/null and b/data/trope/audio/3megillot-zakef_gadol.mp3 differ diff --git a/data/trope/audio/3megillot-zarka.mp3 b/data/trope/audio/3megillot-zarka.mp3 new file mode 100644 index 000000000..09a9aad81 Binary files /dev/null and b/data/trope/audio/3megillot-zarka.mp3 differ diff --git a/data/trope/audio/eicha-end_of_chapter.mp3 b/data/trope/audio/eicha-end_of_chapter.mp3 new file mode 100644 index 000000000..c2d141587 Binary files /dev/null and b/data/trope/audio/eicha-end_of_chapter.mp3 differ diff --git a/data/trope/audio/eicha-etnachta.mp3 b/data/trope/audio/eicha-etnachta.mp3 new file mode 100644 index 000000000..9f7fde44e Binary files /dev/null and b/data/trope/audio/eicha-etnachta.mp3 differ diff --git a/data/trope/audio/eicha-geresh.mp3 b/data/trope/audio/eicha-geresh.mp3 new file mode 100644 index 000000000..b6b57b318 Binary files /dev/null and b/data/trope/audio/eicha-geresh.mp3 differ diff --git a/data/trope/audio/eicha-gershayim.mp3 b/data/trope/audio/eicha-gershayim.mp3 new file mode 100644 index 000000000..2829f4b59 Binary files /dev/null and b/data/trope/audio/eicha-gershayim.mp3 differ diff --git a/data/trope/audio/eicha-pashta_katon.mp3 b/data/trope/audio/eicha-pashta_katon.mp3 new file mode 100644 index 000000000..5dadad4a9 Binary files /dev/null and b/data/trope/audio/eicha-pashta_katon.mp3 differ diff --git a/data/trope/audio/eicha-revii.mp3 b/data/trope/audio/eicha-revii.mp3 new file mode 100644 index 000000000..de3dd7baa Binary files /dev/null and b/data/trope/audio/eicha-revii.mp3 differ diff --git a/data/trope/audio/eicha-sof_pasuk.mp3 b/data/trope/audio/eicha-sof_pasuk.mp3 new file mode 100644 index 000000000..e8aa333c1 Binary files /dev/null and b/data/trope/audio/eicha-sof_pasuk.mp3 differ diff --git a/data/trope/audio/eicha-telisha.mp3 b/data/trope/audio/eicha-telisha.mp3 new file mode 100644 index 000000000..d83e1e463 Binary files /dev/null and b/data/trope/audio/eicha-telisha.mp3 differ diff --git a/data/trope/audio/eicha-tevir.mp3 b/data/trope/audio/eicha-tevir.mp3 new file mode 100644 index 000000000..60a71d391 Binary files /dev/null and b/data/trope/audio/eicha-tevir.mp3 differ diff --git a/data/trope/audio/eicha-yetiv_katom.mp3 b/data/trope/audio/eicha-yetiv_katom.mp3 new file mode 100644 index 000000000..39fc12efb Binary files /dev/null and b/data/trope/audio/eicha-yetiv_katom.mp3 differ diff --git a/data/trope/audio/eicha-zakef_gadol.mp3 b/data/trope/audio/eicha-zakef_gadol.mp3 new file mode 100644 index 000000000..c3623de71 Binary files /dev/null and b/data/trope/audio/eicha-zakef_gadol.mp3 differ diff --git a/data/trope/audio/eicha-zarka.mp3 b/data/trope/audio/eicha-zarka.mp3 new file mode 100644 index 000000000..f54aca67b Binary files /dev/null and b/data/trope/audio/eicha-zarka.mp3 differ diff --git a/data/trope/audio/esther-etnachta.mp3 b/data/trope/audio/esther-etnachta.mp3 new file mode 100644 index 000000000..53ea2155c Binary files /dev/null and b/data/trope/audio/esther-etnachta.mp3 differ diff --git a/data/trope/audio/esther-geresh.mp3 b/data/trope/audio/esther-geresh.mp3 new file mode 100644 index 000000000..8a2fdc3ba Binary files /dev/null and b/data/trope/audio/esther-geresh.mp3 differ diff --git a/data/trope/audio/esther-gershayim.mp3 b/data/trope/audio/esther-gershayim.mp3 new file mode 100644 index 000000000..6b08211f9 Binary files /dev/null and b/data/trope/audio/esther-gershayim.mp3 differ diff --git a/data/trope/audio/esther-kadma_vazlan.mp3 b/data/trope/audio/esther-kadma_vazlan.mp3 new file mode 100644 index 000000000..348252566 Binary files /dev/null and b/data/trope/audio/esther-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/esther-karnei_parah.mp3 b/data/trope/audio/esther-karnei_parah.mp3 new file mode 100644 index 000000000..1efb670eb Binary files /dev/null and b/data/trope/audio/esther-karnei_parah.mp3 differ diff --git a/data/trope/audio/esther-katon.mp3 b/data/trope/audio/esther-katon.mp3 new file mode 100644 index 000000000..681a22772 Binary files /dev/null and b/data/trope/audio/esther-katon.mp3 differ diff --git a/data/trope/audio/esther-pazer.mp3 b/data/trope/audio/esther-pazer.mp3 new file mode 100644 index 000000000..aaadd17a6 Binary files /dev/null and b/data/trope/audio/esther-pazer.mp3 differ diff --git a/data/trope/audio/esther-revii.mp3 b/data/trope/audio/esther-revii.mp3 new file mode 100644 index 000000000..843ee7cc0 Binary files /dev/null and b/data/trope/audio/esther-revii.mp3 differ diff --git a/data/trope/audio/esther-sof_pasuk.mp3 b/data/trope/audio/esther-sof_pasuk.mp3 new file mode 100644 index 000000000..f7bd4a190 Binary files /dev/null and b/data/trope/audio/esther-sof_pasuk.mp3 differ diff --git a/data/trope/audio/esther-sof_perek.mp3 b/data/trope/audio/esther-sof_perek.mp3 new file mode 100644 index 000000000..edba32400 Binary files /dev/null and b/data/trope/audio/esther-sof_perek.mp3 differ diff --git a/data/trope/audio/esther-telisha.mp3 b/data/trope/audio/esther-telisha.mp3 new file mode 100644 index 000000000..c1dba1976 Binary files /dev/null and b/data/trope/audio/esther-telisha.mp3 differ diff --git a/data/trope/audio/esther-tevir.mp3 b/data/trope/audio/esther-tevir.mp3 new file mode 100644 index 000000000..a406edcf7 Binary files /dev/null and b/data/trope/audio/esther-tevir.mp3 differ diff --git a/data/trope/audio/esther-yerech_ben_yomo.mp3 b/data/trope/audio/esther-yerech_ben_yomo.mp3 new file mode 100644 index 000000000..1059081f3 Binary files /dev/null and b/data/trope/audio/esther-yerech_ben_yomo.mp3 differ diff --git a/data/trope/audio/esther-yetiv_katom.mp3 b/data/trope/audio/esther-yetiv_katom.mp3 new file mode 100644 index 000000000..0125f2e27 Binary files /dev/null and b/data/trope/audio/esther-yetiv_katom.mp3 differ diff --git a/data/trope/audio/esther-zakef_gadol.mp3 b/data/trope/audio/esther-zakef_gadol.mp3 new file mode 100644 index 000000000..71c909ae9 Binary files /dev/null and b/data/trope/audio/esther-zakef_gadol.mp3 differ diff --git a/data/trope/audio/esther-zarka.mp3 b/data/trope/audio/esther-zarka.mp3 new file mode 100644 index 000000000..93e7b6b1b Binary files /dev/null and b/data/trope/audio/esther-zarka.mp3 differ diff --git a/data/trope/audio/haftarah-etnachta.mp3 b/data/trope/audio/haftarah-etnachta.mp3 new file mode 100644 index 000000000..b627ca3ca Binary files /dev/null and b/data/trope/audio/haftarah-etnachta.mp3 differ diff --git a/data/trope/audio/haftarah-geresh.mp3 b/data/trope/audio/haftarah-geresh.mp3 new file mode 100644 index 000000000..7389a9627 Binary files /dev/null and b/data/trope/audio/haftarah-geresh.mp3 differ diff --git a/data/trope/audio/haftarah-gershayim.mp3 b/data/trope/audio/haftarah-gershayim.mp3 new file mode 100644 index 000000000..97c9e62dc Binary files /dev/null and b/data/trope/audio/haftarah-gershayim.mp3 differ diff --git a/data/trope/audio/haftarah-kadma_vazlan.mp3 b/data/trope/audio/haftarah-kadma_vazlan.mp3 new file mode 100644 index 000000000..367a83805 Binary files /dev/null and b/data/trope/audio/haftarah-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/haftarah-katon.mp3 b/data/trope/audio/haftarah-katon.mp3 new file mode 100644 index 000000000..b971c6690 Binary files /dev/null and b/data/trope/audio/haftarah-katon.mp3 differ diff --git a/data/trope/audio/haftarah-mercha_kefulah.mp3 b/data/trope/audio/haftarah-mercha_kefulah.mp3 new file mode 100644 index 000000000..814c55ab6 Binary files /dev/null and b/data/trope/audio/haftarah-mercha_kefulah.mp3 differ diff --git a/data/trope/audio/haftarah-pazer.mp3 b/data/trope/audio/haftarah-pazer.mp3 new file mode 100644 index 000000000..97fc96444 Binary files /dev/null and b/data/trope/audio/haftarah-pazer.mp3 differ diff --git a/data/trope/audio/haftarah-revii.mp3 b/data/trope/audio/haftarah-revii.mp3 new file mode 100644 index 000000000..32a66c7bb Binary files /dev/null and b/data/trope/audio/haftarah-revii.mp3 differ diff --git a/data/trope/audio/haftarah-sof_haftorah.mp3 b/data/trope/audio/haftarah-sof_haftorah.mp3 new file mode 100644 index 000000000..c5fcaf643 Binary files /dev/null and b/data/trope/audio/haftarah-sof_haftorah.mp3 differ diff --git a/data/trope/audio/haftarah-sof_pasuk.mp3 b/data/trope/audio/haftarah-sof_pasuk.mp3 new file mode 100644 index 000000000..ebd89664d Binary files /dev/null and b/data/trope/audio/haftarah-sof_pasuk.mp3 differ diff --git a/data/trope/audio/haftarah-telisha.mp3 b/data/trope/audio/haftarah-telisha.mp3 new file mode 100644 index 000000000..d707c2190 Binary files /dev/null and b/data/trope/audio/haftarah-telisha.mp3 differ diff --git a/data/trope/audio/haftarah-tevir.mp3 b/data/trope/audio/haftarah-tevir.mp3 new file mode 100644 index 000000000..4cd150d29 Binary files /dev/null and b/data/trope/audio/haftarah-tevir.mp3 differ diff --git a/data/trope/audio/haftarah-yetiv_katom.mp3 b/data/trope/audio/haftarah-yetiv_katom.mp3 new file mode 100644 index 000000000..c319afe7f Binary files /dev/null and b/data/trope/audio/haftarah-yetiv_katom.mp3 differ diff --git a/data/trope/audio/haftarah-zakef_gadol.mp3 b/data/trope/audio/haftarah-zakef_gadol.mp3 new file mode 100644 index 000000000..dfaf83ae0 Binary files /dev/null and b/data/trope/audio/haftarah-zakef_gadol.mp3 differ diff --git a/data/trope/audio/haftarah-zarka.mp3 b/data/trope/audio/haftarah-zarka.mp3 new file mode 100644 index 000000000..99d19c5dd Binary files /dev/null and b/data/trope/audio/haftarah-zarka.mp3 differ diff --git a/data/trope/audio/hhd-etnachta.mp3 b/data/trope/audio/hhd-etnachta.mp3 new file mode 100644 index 000000000..13dd0028e Binary files /dev/null and b/data/trope/audio/hhd-etnachta.mp3 differ diff --git a/data/trope/audio/hhd-geresh.mp3 b/data/trope/audio/hhd-geresh.mp3 new file mode 100644 index 000000000..edf34680f Binary files /dev/null and b/data/trope/audio/hhd-geresh.mp3 differ diff --git a/data/trope/audio/hhd-gershayim.mp3 b/data/trope/audio/hhd-gershayim.mp3 new file mode 100644 index 000000000..d53c5922f Binary files /dev/null and b/data/trope/audio/hhd-gershayim.mp3 differ diff --git a/data/trope/audio/hhd-kadma_vazlan.mp3 b/data/trope/audio/hhd-kadma_vazlan.mp3 new file mode 100644 index 000000000..187cb2a05 Binary files /dev/null and b/data/trope/audio/hhd-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/hhd-katon.mp3 b/data/trope/audio/hhd-katon.mp3 new file mode 100644 index 000000000..bdec0a055 Binary files /dev/null and b/data/trope/audio/hhd-katon.mp3 differ diff --git a/data/trope/audio/hhd-pazer.mp3 b/data/trope/audio/hhd-pazer.mp3 new file mode 100644 index 000000000..2014a1c8b Binary files /dev/null and b/data/trope/audio/hhd-pazer.mp3 differ diff --git a/data/trope/audio/hhd-revii.mp3 b/data/trope/audio/hhd-revii.mp3 new file mode 100644 index 000000000..e29f95633 Binary files /dev/null and b/data/trope/audio/hhd-revii.mp3 differ diff --git a/data/trope/audio/hhd-sof_pasuk.mp3 b/data/trope/audio/hhd-sof_pasuk.mp3 new file mode 100644 index 000000000..97aaf0b8d Binary files /dev/null and b/data/trope/audio/hhd-sof_pasuk.mp3 differ diff --git a/data/trope/audio/hhd-sof_perek.mp3 b/data/trope/audio/hhd-sof_perek.mp3 new file mode 100644 index 000000000..e6811e9ce Binary files /dev/null and b/data/trope/audio/hhd-sof_perek.mp3 differ diff --git a/data/trope/audio/hhd-telisha.mp3 b/data/trope/audio/hhd-telisha.mp3 new file mode 100644 index 000000000..8636b8171 Binary files /dev/null and b/data/trope/audio/hhd-telisha.mp3 differ diff --git a/data/trope/audio/hhd-tevir.mp3 b/data/trope/audio/hhd-tevir.mp3 new file mode 100644 index 000000000..9c97c7d81 Binary files /dev/null and b/data/trope/audio/hhd-tevir.mp3 differ diff --git a/data/trope/audio/hhd-yetiv_katom.mp3 b/data/trope/audio/hhd-yetiv_katom.mp3 new file mode 100644 index 000000000..322247391 Binary files /dev/null and b/data/trope/audio/hhd-yetiv_katom.mp3 differ diff --git a/data/trope/audio/hhd-zakef_gadol.mp3 b/data/trope/audio/hhd-zakef_gadol.mp3 new file mode 100644 index 000000000..9ad369bbe Binary files /dev/null and b/data/trope/audio/hhd-zakef_gadol.mp3 differ diff --git a/data/trope/audio/hhd-zarka.mp3 b/data/trope/audio/hhd-zarka.mp3 new file mode 100644 index 000000000..48adb7b74 Binary files /dev/null and b/data/trope/audio/hhd-zarka.mp3 differ diff --git a/data/audio/torah-1.mp3 b/data/trope/audio/torah-etnachta.mp3 similarity index 100% rename from data/audio/torah-1.mp3 rename to data/trope/audio/torah-etnachta.mp3 diff --git a/data/audio/torah-6.mp3 b/data/trope/audio/torah-geresh_gershayim.mp3 similarity index 100% rename from data/audio/torah-6.mp3 rename to data/trope/audio/torah-geresh_gershayim.mp3 diff --git a/data/audio/torah-5.mp3 b/data/trope/audio/torah-kadma_vazlan.mp3 similarity index 100% rename from data/audio/torah-5.mp3 rename to data/trope/audio/torah-kadma_vazlan.mp3 diff --git a/data/audio/torah-9.mp3 b/data/trope/audio/torah-pazer.mp3 similarity index 100% rename from data/audio/torah-9.mp3 rename to data/trope/audio/torah-pazer.mp3 diff --git a/data/audio/torah-4.mp3 b/data/trope/audio/torah-revii.mp3 similarity index 100% rename from data/audio/torah-4.mp3 rename to data/trope/audio/torah-revii.mp3 diff --git a/data/audio/torah-2.mp3 b/data/trope/audio/torah-sof_pasuk.mp3 similarity index 100% rename from data/audio/torah-2.mp3 rename to data/trope/audio/torah-sof_pasuk.mp3 diff --git a/data/audio/torah-8.mp3 b/data/trope/audio/torah-telisha.mp3 similarity index 100% rename from data/audio/torah-8.mp3 rename to data/trope/audio/torah-telisha.mp3 diff --git a/data/audio/torah-7.mp3 b/data/trope/audio/torah-tevir.mp3 similarity index 100% rename from data/audio/torah-7.mp3 rename to data/trope/audio/torah-tevir.mp3 diff --git a/data/audio/torah-10.mp3 b/data/trope/audio/torah-yetiv_katom.mp3 similarity index 100% rename from data/audio/torah-10.mp3 rename to data/trope/audio/torah-yetiv_katom.mp3 diff --git a/data/audio/torah-11.mp3 b/data/trope/audio/torah-zakef_gadol.mp3 similarity index 100% rename from data/audio/torah-11.mp3 rename to data/trope/audio/torah-zakef_gadol.mp3 diff --git a/data/audio/torah-3.mp3 b/data/trope/audio/torah-zakef_katan.mp3 similarity index 100% rename from data/audio/torah-3.mp3 rename to data/trope/audio/torah-zakef_katan.mp3 diff --git a/data/audio/torah-12.mp3 b/data/trope/audio/torah-zarka.mp3 similarity index 100% rename from data/audio/torah-12.mp3 rename to data/trope/audio/torah-zarka.mp3 diff --git a/data/trope/labels/3megillot.json b/data/trope/labels/3megillot.json new file mode 100644 index 000000000..b6ec9a81e --- /dev/null +++ b/data/trope/labels/3megillot.json @@ -0,0 +1 @@ +{"etnachta": [0, 0.899266, 2.732789, 3.618059, 6.38234, 8.103892, 8.884189, 11.641472, 12.680701, 14.206304, 17.316995, 19.510925], "sof_pasuk": [0.959724, 1.906479, 3.409741, 4.222986, 6.800401, 8.681217, 9.732845, 12.2406, 13.189721, 14.625219, 17.439423, 19.366679], "katon": [0.914652, 3.143768, 4.653172, 6.395782, 7.693147, 10.131243, 11.747013, 13.23309, 14.592272, 16.844608, 18.603112, 19.99808, 23.3839, 25.148616, 26.458406, 28.524982, 30.459952, 34.314465, 35.909107, 37.274194, 38.528071, 40.139048], "revii": [0.882358, 3.320454, 4.649244, 7.742639, 8.904497, 11.946312], "tevir": [0.812698, 3.506213, 6.594467, 7.987664, 10.866939, 13.351474, 15.905669, 18.575964, 21.130159, 22.685896, 26.055572, 28.307907, 30.931762], "geresh": [0.975238], "gershayim": [0.441179, 4.109932, 6.222948], "telisha": [1.068118, 3.088254, 7.267846, 9.334422], "yetiv_katom": [0.745154, 2.92783, 4.321027, 6.503703, 8.245199], "zakef_gadol": [0.850635], "zarka": [0.580499, 2.461315, 6.098028, 7.119706, 10.579479, 12.042337, 15.59499, 19.495942, 23.048595, 24.279253, 27.553266, 30.9666], "pazer": [0.705092, 2.530975, 4.295692], "kadma_vazlan": [0.843113, 2.16338], "sof_perek": [0.954297, 2.061282, 4.824457, 5.738507]} \ No newline at end of file diff --git a/data/trope/labels/eicha.json b/data/trope/labels/eicha.json new file mode 100644 index 000000000..f588b95bb --- /dev/null +++ b/data/trope/labels/eicha.json @@ -0,0 +1 @@ +{"etnachta": [1.509338, 2.741451, 4.281592, 5.267282, 8.255155, 9.826099, 10.750183, 13.430028, 14.292507, 15.925056, 19.251761, 20.976718], "sof_pasuk": [1.643662, 2.629859, 4.306394, 5.391211, 8.579915, 10.45369, 11.407014, 14.760085, 15.746282, 17.833732, 21.416915, 23.011268], "pashta_katon": [1.456479, 3.179979, 4.709282, 6.517743, 7.658651, 10.389549, 11.894577, 13.618077, 14.771123, 17.526296, 19.031324, 20.766961, 23.679919, 25.391282, 26.556465, 29.821405, 31.642004, 33.122757, 34.591373, 35.926479], "revii": [1.483099, 3.992958, 5.56162, 11.009155, 12.720423, 17.882746], "tevir": [2.033915, 4.391408, 8.829042, 10.631831, 17.10338, 18.536366, 20.755183, 24.175859, 25.65507, 27.134282, 30.554958, 32.21907, 34.299211], "geresh": [1.668169, 3.006676, 4.75031, 7.673577, 8.745972], "gershayim": [0.169056, 3.277815, 4.865066], "telisha": [0.094859, 1.573506, 5.708836, 7.555429], "yetiv_katom": [0.085996, 1.537177, 2.859363, 5.514487, 7.148409], "zakef_gadol": [0], "zarka": [0.059644, 1.699848, 4.592571, 6.083665, 8.857101, 10.527127, 12.853234, 15.388095, 17.475627, 18.668503, 20.905145, 23.261074], "end_of_chapter": [0.128839, 0.94482, 3.246746, 4.320405]} \ No newline at end of file diff --git a/data/trope/labels/esther.json b/data/trope/labels/esther.json new file mode 100644 index 000000000..59fc6e8fa --- /dev/null +++ b/data/trope/labels/esther.json @@ -0,0 +1 @@ +{"etnachta": [0.652325, 1.564143, 2.771581, 3.975058, 5.971974, 7.80635, 9.153108, 11.219684, 12.655361, 14.094998, 16.235654, 18.34867], "sof_pasuk": [0.812698, 1.773192, 3.048153, 3.746341, 6.416636, 8.080066, 8.925293, 11.511599, 13.008218, 14.308536, 17.21103, 19.324046], "katon": [0.557279, 1.927256, 2.716735, 3.924172, 5.22449, 7.082086, 8.266304, 9.682721, 11.230566, 13.250702, 14.34204, 15.549477, 18.242992, 19.821949, 21.284806, 23.003083, 24.628479, 27.104076, 29.031332, 30.19233, 31.283668, 33.141264], "revii": [0.626939, 3.599093, 5.17805, 8.034104, 10.611519, 13.769433], "tevir": [0.415568, 3.109082, 6.499196, 8.496112, 11.863005, 13.743822, 16.274797, 18.945092, 20.749526, 22.446427, 25.121599, 27.141735, 29.695931], "geresh": [0.936698], "gershayim": [0.928798, 4.96907, 7.407166], "telisha": [0.859138, 2.739955, 6.315828, 8.126984], "yetiv_katom": [0.952018, 2.600635, 3.947392, 6.153288, 8.057324], "zakef_gadol": [0.835918], "zarka": [0.882358, 2.972154, 7.871565, 9.775601, 12.678095, 16.068209, 20.897959, 24.195193, 29.001723, 30.85932, 33.204535, 37.825306], "pazer": [0.84297, 2.677347], "kadma_vazlan": [0.873692, 1.71798], "sof_perek": [0.789478, 1.670235, 5.571187, 6.778625], "karnei_parah": [0.719819], "yerech_ben_yomo": [1.091338, 3.506213]} \ No newline at end of file diff --git a/data/trope/labels/haftarah.json b/data/trope/labels/haftarah.json new file mode 100644 index 000000000..bf1bc689e --- /dev/null +++ b/data/trope/labels/haftarah.json @@ -0,0 +1 @@ +{"etnachta": [0.859138, 2.758269, 4.406886, 5.991443, 9.265457, 11.332033, 12.988458, 16.053492, 18.282607, 19.629365, 22.647959, 24.598435], "sof_pasuk": [1.301863, 2.726929, 5.002485, 6.057393, 8.780017, 11.816532, 12.855618, 15.804552, 17.713006, 19.802802, 23.309015, 26.072189], "katon": [0.766259, 2.716735, 4.643991, 6.269388, 8.150204, 10.0078, 12.088163, 13.89932, 15.70532, 17.702236, 20.06036, 21.801856, 24.170292, 26.654827, 28.628523, 30.555779, 33.109974, 36.801947, 40.888659, 42.699815, 44.534192, 46.136369], "revii": [0.719819, 3.599093, 5.479909, 9.148662, 11.145578, 14.883991], "tevir": [1.068118, 4.202812, 7.221406, 9.775601, 12.469116, 14.744671, 17.414966, 20.48, 22.407256, 24.195193, 27.097687, 30.069841, 32.925896], "geresh": [0.789478], "gershayim": [1.091338, 4.580075, 7.160065], "telisha": [1.079851, 3.425066, 8.115497, 10.483932], "yetiv_katom": [0.905578, 2.577415, 4.226032, 5.944308, 8.428844], "zakef_gadol": [1.230658], "zarka": [0.696599, 2.321995, 5.781769, 7.058866, 9.427302, 11.470658, 14.744671, 17.275646, 21.315918, 22.825215, 24.915011, 29.094603], "pazer": [1.044898, 3.343673, 5.944308], "kadma_vazlan": [1.416417, 3.082602], "mercha_kefulah": [0.975238], "sof_haftorah": [0.812698, 2.025318, 4.858152, 5.787809]} \ No newline at end of file diff --git a/data/trope/labels/hhd.json b/data/trope/labels/hhd.json new file mode 100644 index 000000000..d9c5b4c95 --- /dev/null +++ b/data/trope/labels/hhd.json @@ -0,0 +1 @@ +{"etnachta": [0.557279, 1.592974, 3.021834, 3.719679, 6.204214, 8.108251, 9.246029, 11.684124, 12.903483, 14.48244, 17.129515, 19.010331], "sof_pasuk": [0.812698, 1.81053, 3.621687, 5.008188, 8.189321, 10.952496, 12.162437, 14.739852, 16.096005, 17.814281, 21.529474, 24.199769], "katon": [1.044898, 2.9, 4.447485, 6.191181, 7.561159, 9.581295, 11.647871, 13.321276, 14.936637, 17.165753, 19.278768, 20.857725, 22.480146], "revii": [0.510839, 2.623855, 4.713651, 8.521723, 10.799732, 15.065172], "tevir": [0.771777, 3.233093, 6.344566, 8.109283], "geresh": [0.987502], "gershayim": [0.968554], "telisha": [1.059891, 3.056807, 7.188824, 9.585099], "yetiv_katom": [0.975238, 2.623855, 3.993832, 5.787226, 7.668962], "zakef_gadol": [0.66925], "zarka": [0.534059, 2.623855, 6.222948, 7.337506, 11.145578, 15.20907, 16.279973, 19.925506, 22.084962, 25.591175, 29.306368, 33.578839], "pazer": [0.766259, 2.879274], "kadma_vazlan": [0.812698, 1.938948], "sof_perek": [0.789478, 1.597946, 4.111368, 5.280169, 8.391643, 9.670177, 11.871695, 14.797409, 18.163789, 19.666023, 22.429197, 26.166362]} \ No newline at end of file diff --git a/data/trope/labels/torah.json b/data/trope/labels/torah.json new file mode 100644 index 000000000..223d096c3 --- /dev/null +++ b/data/trope/labels/torah.json @@ -0,0 +1 @@ +{"etnachta": [0, 1.996916, 3.993832, 6.060408, 7.523265, 9.98458, 11.354558, 12.608435, 14.210612, 16.137868, 17.368526, 18.877823], "sof_pasuk": [0, 3.33343, 5.83343, 7.78343, 8.98343, 10.98343, 13.58343, 14.93343, 16.98343, 18.590054, 19.88343, 21.08343], "zakef_katan": [1.711055, 3.811055, 5.461055, 7.161055, 8.711055, 10.761055, 12.211055, 13.811055, 16.161055, 17.361055, 18.761055, 20.311055, 22.211055, 23.411055, 24.961055, 27.161055, 28.911055, 30.161055, 31.561055, 33.161055, 36.011055, 37.661055, 39.011055], "revii": [1.69031, 5.672958, 7.108563, 10.882817, 13.267775, 14.633915], "kadma_vazlan": [1.531479, 3.090803, 3.954, 6.571437, 8.158606, 9.495169, 10.608972, 13.393479, 14.757887, 16.150141, 18.294211, 19.352324], "geresh_gershayim": [1.383972, 4.856958, 7.311549, 8.956648, 13.65693, 15.798169], "tevir": [1.867859, 4.060563, 6.984169, 8.405366, 11.694423, 12.953197, 14.415, 16.64831, 19.693732, 22.536127, 23.876113, 27.205775, 28.708183, 30.088775], "telisha": [1.778746, 5.832634, 11.292972, 13.195817, 16.215549, 17.249704, 18.573423, 22.048183, 26.929394, 27.922183, 29.204535], "pazer": [2.045704, 7.311169, 9.090042], "yetiv_katom": [2.13507, 3.388563, 5.606282, 6.804676, 7.906648], "zakef_gadol": [0], "zarka": [1.804056, 4.785761, 7.917803, 10.674, 11.525915, 13.981437, 15.785493, 18.516634, 19.644169]} \ No newline at end of file diff --git a/data/trope/text/3megillot.json b/data/trope/text/3megillot.json new file mode 100644 index 000000000..8b71ca44a --- /dev/null +++ b/data/trope/text/3megillot.json @@ -0,0 +1,95 @@ +{ + "title": "Three Megillot", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/eicha.json b/data/trope/text/eicha.json new file mode 100644 index 000000000..ea8dfbbc9 --- /dev/null +++ b/data/trope/text/eicha.json @@ -0,0 +1,88 @@ +{ + "title": "Eicha", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "pashta_katon": { + "name_he": "פַּשְׁטָא֙ קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [ + ["קַדְמָא֙", "ואַזְלָ֝א", "גֵּ֜רֵשׁ"], + ["קַדְמָא֙", "גֵּ֜רֵשׁ"] + ] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "end_of_chapter": { + "name_he": "End of Chapter", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/esther.json b/data/trope/text/esther.json new file mode 100644 index 000000000..4ccc9057b --- /dev/null +++ b/data/trope/text/esther.json @@ -0,0 +1,103 @@ +{ + "title": "Esther", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + }, + "karnei_parah": { + "name_he": "קַרְנֵי פָרָ֟ה", + "text": [["קַרְנֵי פָרָ֟ה"]] + }, + "yerech_ben_yomo": { + "name_he": "יֵרֶח בֶּן יוֹמ֪וֹ", + "text": [["מוּנַ֣ח", "יֵרֶח בֶּן יוֹמ֪וֹ"]] + } + } +} diff --git a/data/trope/text/haftarah.json b/data/trope/text/haftarah.json new file mode 100644 index 000000000..8b65c150f --- /dev/null +++ b/data/trope/text/haftarah.json @@ -0,0 +1,99 @@ +{ + "title": "Haftarah", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "mercha_kefulah": { + "name_he": "מֵרְכָא כּפוּלָ֦ה", + "text": [["מֵרְכָא כּפוּלָ֦ה"]] + }, + "sof_haftorah": { + "name_he": "Sof Haftorah", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/hhd.json b/data/trope/text/hhd.json new file mode 100644 index 000000000..5820fa777 --- /dev/null +++ b/data/trope/text/hhd.json @@ -0,0 +1,94 @@ +{ + "title": "High Holiday", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + } + } +} diff --git a/data/trope/text/torah.json b/data/trope/text/torah.json new file mode 100644 index 000000000..9dc4705bf --- /dev/null +++ b/data/trope/text/torah.json @@ -0,0 +1,93 @@ +{ + "title": "Torah", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"] + ] + }, + "zakef_katan": { + "name_he": "זָקֵף קָטָ֔ן", + "text": [ + ["מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [ + ["קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"], + ["קַדְמָא֙", "ואַזְלָ֝א", "מוּנַ֣ח", "רְבִ֗יע"], + ["קַדְמָא֙", "ואַזְלָ֝א", "מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"] + ] + }, + "geresh_gershayim": { + "name_he": "גֵּרְשַׁ֞יִם/גֵּ֜רֵשׁ", + "text": [["גֵּרְשַׁ֞יִם"], ["גֵּ֜רֵשׁ"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּ֜רֵשׁ"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "ואַזְלָ֝א", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["דַּרְגָּ֧א", "מוּנַ֣ח", "רְבִ֗יע"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["תְּלִישָא קְטַנָּה֩"], + ["תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩", "קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"], + ["תְּלִישָא גְדוֹלָה֠", "קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["פָּזֵ֡ר"], ["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "קָטָ֔ן"], + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"] + ] + } + } +} diff --git a/fonts/StamAshkenazCLM.ttf b/fonts/StamAshkenazCLM.ttf new file mode 100644 index 000000000..453eacc8a Binary files /dev/null and b/fonts/StamAshkenazCLM.ttf differ diff --git a/fonts/StamAshkenazCLM.woff2 b/fonts/StamAshkenazCLM.woff2 new file mode 100644 index 000000000..f6b9d8026 Binary files /dev/null and b/fonts/StamAshkenazCLM.woff2 differ diff --git a/fonts/TaameyFrank-taamim-fix.ttf b/fonts/TaameyFrank-taamim-fix.ttf deleted file mode 100644 index bb7594ffb..000000000 Binary files a/fonts/TaameyFrank-taamim-fix.ttf and /dev/null differ diff --git a/fonts/Taamey_D.ttf b/fonts/Taamey_D.ttf new file mode 100644 index 000000000..6cfc91a77 Binary files /dev/null and b/fonts/Taamey_D.ttf differ diff --git a/fonts/Taamey_D.woff2 b/fonts/Taamey_D.woff2 new file mode 100644 index 000000000..2aefa36f1 Binary files /dev/null and b/fonts/Taamey_D.woff2 differ diff --git a/fonts/index.d.ts b/fonts/index.d.ts new file mode 100644 index 000000000..73275ced9 --- /dev/null +++ b/fonts/index.d.ts @@ -0,0 +1,2 @@ +declare const useFonts: () => [boolean, null | Error]; +export default useFonts; diff --git a/fonts/index.native.ts b/fonts/index.native.ts new file mode 100644 index 000000000..f1237ed60 --- /dev/null +++ b/fonts/index.native.ts @@ -0,0 +1 @@ +export default () => [true, null]; diff --git a/fonts/index.web.ts b/fonts/index.web.ts new file mode 100644 index 000000000..419fecf43 --- /dev/null +++ b/fonts/index.web.ts @@ -0,0 +1,5 @@ +import Taamey_D from "./Taamey_D.woff2"; +import StamAshkenazCLM from "./StamAshkenazCLM.woff2"; +import { useFonts } from "expo-font"; + +export default () => useFonts({ Taamey_D, StamAshkenazCLM }); diff --git a/fonts/stamashkenazclm-webfont.ttf b/fonts/stamashkenazclm-webfont.ttf deleted file mode 100644 index e09c55d49..000000000 Binary files a/fonts/stamashkenazclm-webfont.ttf and /dev/null differ diff --git a/fonts/types.d.ts b/fonts/types.d.ts new file mode 100644 index 000000000..e85d64d22 --- /dev/null +++ b/fonts/types.d.ts @@ -0,0 +1,9 @@ +declare module "*.woff2" { + const id: number; + export default id; +} + +declare module "*.ttf" { + const id: number; + export default id; +} diff --git a/icon.png b/icon.png new file mode 100644 index 000000000..06f58eac6 Binary files /dev/null and b/icon.png differ diff --git a/index.js b/index.js deleted file mode 100644 index a850d031d..000000000 --- a/index.js +++ /dev/null @@ -1,9 +0,0 @@ -/** - * @format - */ - -import {AppRegistry} from 'react-native'; -import App from './App'; -import {name as appName} from './app.json'; - -AppRegistry.registerComponent(appName, () => App); diff --git a/index.ts b/index.ts new file mode 100644 index 000000000..8731dd32a --- /dev/null +++ b/index.ts @@ -0,0 +1,24 @@ +// this is the native entrypoint - web is in web/index.ts + +import "intl-pluralrules"; + +import { Script, ScriptManager } from "@callstack/repack/client"; +import { AppRegistry } from "react-native"; +import { name as appName } from "./app.json"; +import App from "./src/App"; + +AppRegistry.registerComponent(appName, () => App); + +ScriptManager.shared.addResolver(async (scriptId) => { + // In development, get all the chunks from dev server. + if (__DEV__) { + return { + url: Script.getDevServerURL(scriptId), + cache: false, + }; + } + + return { + url: Script.getFileSystemURL(scriptId), + }; +}); diff --git a/ios/PocketTorah.xcodeproj/project.pbxproj b/ios/PocketTorah.xcodeproj/project.pbxproj index 7871e0c71..43a2e39fe 100644 --- a/ios/PocketTorah.xcodeproj/project.pbxproj +++ b/ios/PocketTorah.xcodeproj/project.pbxproj @@ -16,14 +16,14 @@ A1A30CDF26DEF28400F051CF /* audio in Resources */ = {isa = PBXBuildFile; fileRef = A1A30CDE26DEF28400F051CF /* audio */; }; A1A30CE326DEF29400F051CF /* labels in Resources */ = {isa = PBXBuildFile; fileRef = A1A30CE226DEF29300F051CF /* labels */; }; C3914450218AAFC547F4853C /* libPods-PocketTorah.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7280DBAC03DBC62323442EA4 /* libPods-PocketTorah.a */; }; - 17F61969377C482AA4CB0A3C /* stamashkenazclm-webfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */; }; - F6113DFEE1954F8D9BE629A6 /* TaameyFrank-taamim-fix.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */; }; + F3C06901BBAC4D1DB304F694 /* Taamey_D.woff2 in Resources */ = {isa = PBXBuildFile; fileRef = 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */; }; + 32F59A87C27E428E9EA9B039 /* StamAshkenazCLM.woff2 in Resources */ = {isa = PBXBuildFile; fileRef = 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; + containerPortal = 83CBB9F71A601CBA00E9B192; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; remoteInfo = PocketTorah; @@ -50,8 +50,8 @@ E5FD2AC2ADF33EAF3CA0BF8E /* Pods-PocketTorah.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PocketTorah.release.xcconfig"; path = "Target Support Files/Pods-PocketTorah/Pods-PocketTorah.release.xcconfig"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; F7792FFC99CB4370ADC0D201 /* Pods-PocketTorah-PocketTorahTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PocketTorah-PocketTorahTests.debug.xcconfig"; path = "Target Support Files/Pods-PocketTorah-PocketTorahTests/Pods-PocketTorah-PocketTorahTests.debug.xcconfig"; sourceTree = ""; }; - EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */ = {isa = PBXFileReference; name = "stamashkenazclm-webfont.ttf"; path = "../fonts/stamashkenazclm-webfont.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */ = {isa = PBXFileReference; name = "TaameyFrank-taamim-fix.ttf"; path = "../fonts/TaameyFrank-taamim-fix.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; + 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */ = {isa = PBXFileReference; name = "Taamey_D.woff2"; path = "../fonts/Taamey_D.woff2"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; + 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */ = {isa = PBXFileReference; name = "StamAshkenazCLM.woff2"; path = "../fonts/StamAshkenazCLM.woff2"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -132,7 +132,7 @@ name = Libraries; sourceTree = ""; }; - 83CBB9F61A601CBA00E9B192 = { + 83CBB9F61A601CBA00E9B192 /* PBXGroup */ = { isa = PBXGroup; children = ( A1A30CE226DEF29300F051CF /* labels */, @@ -160,14 +160,14 @@ sourceTree = ""; }; 9D49AC8DB40C4707ABF33932 /* Resources */ = { - isa = "PBXGroup"; + isa = PBXGroup; children = ( - EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */, - 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */, + 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */, + 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */, ); name = Resources; - sourceTree = ""; path = ""; + sourceTree = ""; }; /* End PBXGroup section */ @@ -218,14 +218,14 @@ /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 83CBB9F71A601CBA00E9B192 /* Project object */ = { + 83CBB9F71A601CBA00E9B192 = { isa = PBXProject; attributes = { LastUpgradeCheck = 1210; TargetAttributes = { 00E356ED1AD99517003FC87E = { CreatedOnToolsVersion = 6.2; - TestTargetID = 13B07F861A680F5B00A75B9A; + TestTargetID = 13B07F861A680F5B00A75B9A /* PocketTorah */; }; 13B07F861A680F5B00A75B9A = { LastSwiftMigration = 1120; @@ -240,7 +240,7 @@ en, Base, ); - mainGroup = 83CBB9F61A601CBA00E9B192; + mainGroup = 83CBB9F61A601CBA00E9B192 /* PBXGroup */; productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; projectDirPath = ""; projectRoot = ""; @@ -267,8 +267,8 @@ A1A30CE326DEF29400F051CF /* labels in Resources */, 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, - 17F61969377C482AA4CB0A3C /* stamashkenazclm-webfont.ttf in Resources */, - F6113DFEE1954F8D9BE629A6 /* TaameyFrank-taamim-fix.ttf in Resources */, + F3C06901BBAC4D1DB304F694 /* Taamey_D.woff2 in Resources */, + 32F59A87C27E428E9EA9B039 /* StamAshkenazCLM.woff2 in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -287,7 +287,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; + shellScript = "set -e\n\nexport BUNDLE_COMMAND=webpack-bundle\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; }; 05618B5C5538BC95F5F0A1E0 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; @@ -461,7 +461,7 @@ "$(inherited)", ); INFOPLIST_FILE = PocketTorahTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -485,7 +485,7 @@ BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; INFOPLIST_FILE = PocketTorahTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -589,7 +589,7 @@ COPY_PHASE_STRIP = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -605,7 +605,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -654,7 +654,7 @@ COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -663,7 +663,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -711,5 +711,5 @@ }; /* End XCConfigurationList section */ }; - rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; + rootObject = 83CBB9F71A601CBA00E9B192; } diff --git a/ios/PocketTorah/AppDelegate.h b/ios/PocketTorah/AppDelegate.h index ef1de86a2..d3d75b0b4 100644 --- a/ios/PocketTorah/AppDelegate.h +++ b/ios/PocketTorah/AppDelegate.h @@ -1,7 +1,8 @@ #import +#import #import -@interface AppDelegate : UIResponder +@interface AppDelegate : EXAppDelegateWrapper @property (nonatomic, strong) UIWindow *window; diff --git a/ios/PocketTorah/AppDelegate.m b/ios/PocketTorah/AppDelegate.m index 123b85a94..51cdda32f 100644 --- a/ios/PocketTorah/AppDelegate.m +++ b/ios/PocketTorah/AppDelegate.m @@ -31,8 +31,8 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( InitializeFlipper(application); #endif - RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; - RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge + RCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:launchOptions]; + RCTRootView *rootView = [self.reactDelegate createRootViewWithBridge:bridge moduleName:@"PocketTorah" initialProperties:nil]; @@ -43,10 +43,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( } self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; - UIViewController *rootViewController = [UIViewController new]; + UIViewController *rootViewController = [self.reactDelegate createRootViewController]; rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; + [super application:application didFinishLaunchingWithOptions:launchOptions]; return YES; } diff --git a/ios/PocketTorah/Info.plist b/ios/PocketTorah/Info.plist index 4237976e3..78da83bd8 100644 --- a/ios/PocketTorah/Info.plist +++ b/ios/PocketTorah/Info.plist @@ -26,14 +26,10 @@ NSAppTransportSecurity - NSExceptionDomains - - localhost - - NSExceptionAllowsInsecureHTTPLoads - - - + NSAllowsArbitraryLoads + + NSAllowsLocalNetworking + NSLocationWhenInUseUsageDescription diff --git a/ios/Podfile b/ios/Podfile index 4c6c92250..28130344d 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,9 +1,18 @@ +require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' -platform :ios, '11.0' +platform :ios, '13.0' target 'PocketTorah' do + use_expo_modules! + post_integrate do |installer| + begin + expo_patch_react_imports!(installer) + rescue => e + Pod::UI.warn e + end + end config = use_native_modules! use_react_native!( diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 982039563..e07e7a031 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -547,4 +547,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: f3264b52d2b17eaf8e6e330b56e1a67de4fec7ad -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 982039563..e07e7a031 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -547,4 +547,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: f3264b52d2b17eaf8e6e330b56e1a67de4fec7ad -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 30c47d3cf..0a238301c 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -9,36 +9,36 @@ /* Begin PBXAggregateTarget section */ 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { isa = PBXAggregateTarget; - buildConfigurationList = 9E7900BBC6EFA8A1A606176EFE2094EB /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; + buildConfigurationList = CD256B5B9D782ACC884E50AA3ECB39A4 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; buildPhases = ( ); dependencies = ( - D942C1F8BB0AAF1319A11BE18DEB9B6F /* PBXTargetDependency */, + 8E016E52E49BE98FFE4FE75C1C1244CB /* PBXTargetDependency */, ); name = "React-RCTActionSheet"; }; 1BEE828C124E6416179B904A9F66D794 /* React */ = { isa = PBXAggregateTarget; - buildConfigurationList = 9C2985765FD0DA34F170905B27C5DEF6 /* Build configuration list for PBXAggregateTarget "React" */; + buildConfigurationList = 22204F7D0074FAEE4DE81825E9BA4024 /* Build configuration list for PBXAggregateTarget "React" */; buildPhases = ( ); dependencies = ( - 808F9E991E0CF2022A4B179198E7D42B /* PBXTargetDependency */, - 4870473FE725C15F64CC83008ADBD0E3 /* PBXTargetDependency */, - ED644C416567E3A52E589280933A48C3 /* PBXTargetDependency */, - 23E673649C8C535E2E712EDC9A07F3A1 /* PBXTargetDependency */, - D0A04D23EEBF8375541C815FE6BCFAC6 /* PBXTargetDependency */, - A3669986B27CFDF736B89888A8030B21 /* PBXTargetDependency */, - F165B479FED76782D4BA7577B4E1AD15 /* PBXTargetDependency */, - F95981984AA6DD97C177788280BC3E41 /* PBXTargetDependency */, - C42FB9F69E6F36F74A47AD659B7F7BBF /* PBXTargetDependency */, - D97DBE1761E5526835092DE58B80AFFC /* PBXTargetDependency */, + E557B4B80C1237ABC292CD0128E3AFED /* PBXTargetDependency */, + 512BC987D095B46D006FB4B66A511DFC /* PBXTargetDependency */, + DF922E864A21FD15855946CDD138DD42 /* PBXTargetDependency */, + FA8980B62F9A773C690E7605CDC7303A /* PBXTargetDependency */, + A970CD43FFEC54696E3B872BF12BF693 /* PBXTargetDependency */, + 09C5131B1462EA803784551E64B982D3 /* PBXTargetDependency */, + B89A1D5EEDA32B25474893B6E48C0678 /* PBXTargetDependency */, + 7CC7E0A5C3FD6958BE21537FD755E4DA /* PBXTargetDependency */, + E0CE91BB36E668C4DA34D0D641EBFBBB /* PBXTargetDependency */, + 115130FD6E762AED75C709CEFF1DDBC9 /* PBXTargetDependency */, ); name = React; }; 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */ = { isa = PBXAggregateTarget; - buildConfigurationList = 1E18B7F2337CA805697FE3A52A7A9D99 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; + buildConfigurationList = 37E2A9F262AB090D8339D0EAF957EA76 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; buildPhases = ( ); dependencies = ( @@ -47,11 +47,11 @@ }; 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */ = { isa = PBXAggregateTarget; - buildConfigurationList = D6E4F444C0A38D54AA90C847305B52FE /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; + buildConfigurationList = D387C66C593185D12F8F148B90A1CB05 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; buildPhases = ( ); dependencies = ( - BD164D2A5BD51470C683EF116AC47068 /* PBXTargetDependency */, + E2E92E2EA5596E720719896BA4441804 /* PBXTargetDependency */, ); name = "React-runtimeexecutor"; }; @@ -66,9 +66,9 @@ }; B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */ = { isa = PBXAggregateTarget; - buildConfigurationList = 1012EAC54A0F03E7AFFCCBB43A0CB8EB /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; + buildConfigurationList = 8974C6C0BCA8234780AC0486DDB89579 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; buildPhases = ( - ECADB969E54E0B50F1B0267EEF77B798 /* [CP] Copy XCFrameworks */, + 278D3A0D04EFF54AD88838EEF0F81658 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -76,9 +76,9 @@ }; D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */ = { isa = PBXAggregateTarget; - buildConfigurationList = A2A683E598EAA863B5CABDEB817006C1 /* Build configuration list for PBXAggregateTarget "Flipper-DoubleConversion" */; + buildConfigurationList = 1B0C2F41A61845708761182A055961BA /* Build configuration list for PBXAggregateTarget "Flipper-DoubleConversion" */; buildPhases = ( - 2A3E28CE776C003DB682226592AA221B /* [CP] Copy XCFrameworks */, + 78CEDEB816D95DFA51D0D4CE8C6BA900 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -86,7 +86,7 @@ }; E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { isa = PBXAggregateTarget; - buildConfigurationList = 5D2C2656552C5B70F0E8A1E27953B543 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; + buildConfigurationList = 881DAAB4A15927F22D804EF2F7F67997 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; buildPhases = ( ); dependencies = ( @@ -95,7 +95,7 @@ }; ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */ = { isa = PBXAggregateTarget; - buildConfigurationList = 120386F733DE555A852AAD56C82F00D4 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; + buildConfigurationList = D4CC6B7B3D7C534DBF7D6F2708D2BEB7 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; buildPhases = ( ); dependencies = ( @@ -105,3932 +105,3932 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000ED67C4712304B52910E1B1817F599 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 006BF845E2DABA7A653DD6E9D51642F4 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0028B5DE6A9559CA7AF408EE0582EAF9 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CEBB24EE6C172CE5C37B1917A1BF06 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0041F5321E26BB67F98A29CC922E5725 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 595E4B37587954B324E595AEEA8ED2AF /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0045ABCC3A9E6371E934C36340395A6D /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E00437B5B88C5A16FF27610054AADAE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0063366091588E0F11A112BA3CBC27C9 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 406394966EB10514F897D0D6AAEBA282 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AF2A3C24577C30F7180DB2C6BEE6A4 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 051CAA59AFB24C274B04806FCD688CEA /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00E568F139C1384407F505189247ECB6 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E4A9F442E5CBC5B460FD2CF1469BD /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0121DBEDDB1AA17D2E699AD70C4D9C7B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A60DE85867BD2E700FDA5A43D39B0FB /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0124D77EAE98D4BEFD4C2687A3EEDB45 /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C23A0ABA96B6CB515E3445FDE81E7D /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 01468E07CC9A70B0B7660B922EF770C0 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B33D3B720FED836F30DEF46A97B52425 /* Flipper-Glog-dummy.m */; }; - 014BB3A183354AEAF1E828F843051834 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 015F84A9919EA7C159CE4E860430A226 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD94C35B591A8D0F5FD887BB13D9CD2 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01680946FD6568A91EE584A9FB0264FC /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B40B497CE977150A26FD1DC8AB1C9A4 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 020D04CED0C6D27585CB90AF0C3EFC3A /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01132FC3ACC08333CAB6B3AD0096739 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0213E3ABFB6144FB9967FBDB3087D23C /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BFF6247936A15CAF4AD08522509ECA /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02332F8F7C04B8D65908FD9BA76E79FB /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADABD4E30CAA9CDCADA0F150D9AE057 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0235424082FA5C0EE1A28B4CA3342CED /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA6BCB333553B1E18298475B9A4570A1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 0237D457E3315785DF619518498D7C6F /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA84CD5C385B27BC49C6657CFA0116C /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A487983E07C58C4956A63DBE68CEA0 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B9FBCC38BDAD76FEB6882B6D88CBCB /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02C5BF643928D4D8655C6DF7AF96E118 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD5200CB5EA7974D2E999D30C3511AA /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 02D8EC50EC841077DB8A6E52FBC95EBE /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE62216059D5098285DEFC5C80C8941 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02F1FA6D43FD6F60DF0D43DA5696F199 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBBABCF47B45861387AFCD430239B40 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034372BB5AC91E8CAA8D67BB41FA4590 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB294E2B4BCB25CFE7FF51274D924314 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0349954A3C3DEAFC3FEB84652D7E5FE2 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 280A056C513F9A54DC8C3BB641344732 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 035ABDBD827EF6B667B0A81C4BC891BE /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E914DCD7F182197791B30CC9FA2898 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03643914C68DDAF824E99551F1A4481D /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0382A9658B2AF9834BB56EFF733D3C4F /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 873E13892F52A4C634ED4A3ACB300063 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038412A0F856DE51BEC80342AB782904 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9F9B4BE928B32046D7D1FB7C7D3758 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D358CFFE6708D5803DF2A4C956211D /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0A113687718501724E0CB3464ACAE3 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DFFDE97A88D71F3648E4D8A1DD020A /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1932535513730B312147D7069EC14C2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03F1BB53211FFF9C9BC267621C6CB3C2 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C0D9B78639A507C16C9DCDF80D0DD4 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0405331F7D087C95E7DBDB3EE0EF8AF4 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 041F376688E51F9C03FBA9538D0E9460 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04586135370780CBD467DDD4BAC0A4A1 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C504F5E22C71819165243C2772F9C /* glog-dummy.m */; }; - 0466A06643DB829CFF67177A84F737A3 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B16721598F802B670D582E0E7B8BF39 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 04A69AF45674AA87ACEB29560EB2B8D6 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBB4235756F94E94980BCFD6940F1D9 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04AFA7CF94307A20C70F11532518E01E /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 5428E8B7A216A24ACE562A2878E76B30 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04D0FEA166E5B73A725131E828322ADA /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 08319D8926787065308E3CF23A13F49B /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04DA956BC22162F1D70A9AC24F0530AB /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4484626AED358D181DDF77B9714BB92C /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 050A10BBDDC1FF047E24842C3E2D747B /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0744984F91FEBB538C913D2A9F698D15 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0526C03ADEFF5EA56A60F4E640A52BDE /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 47446390A804C02F6910A50AD58044FE /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056C2FA7A34D609828E24339EE235390 /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B14CBC4318218449960EFF37EC2C304C /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0581F47024834320E60959E2F854CB71 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = AD96D492F5D2DDCB9ABBFC7CB11D5377 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 059003919588E5CC861534E9A6D7F82C /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EA520D5FC815078100D9048CDD2B7F0 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 05DF47CCADF5B19ACEC7FD348CF1B6E7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F05A4D19CDAB21C6C202E6DDDE55D70 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 05F113A4765314081AFE4462BD3D97F5 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D48384AEC145E893B5F709E82E12D9 /* RCTTextSelection.m */; }; - 05FCF7F38F3DE981392F6A67CC00D84E /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2480DAD523F9D52380671FA1EFAC50A2 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0627F8239A1598538007D675E2058351 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E866E61D94E3B770562F3A24022D48 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 062804BA86A2ACA508DF19EBF445F338 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D8CD69443892E3ECCE5E0918B509B6 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA622B22D82D669A9FE394DAF8AF3F0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 069A8241775AF6A68E6EDAA0AE7BC547 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 698BF75FBD0B786A52A90D043F3D80CB /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06A12CE82355692D87334E814E2976BE /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB1601793EA3A461334E9DF8DB14F563 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 06CD8B3486BEA190899A3BB8D6BD4E69 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7EFC8C1057284BC886700738D3BC88 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07129E658ABFD9EE19E5093EE183C84E /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B6109028D4C572FC3B55F0A694823E87 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0719E36ACFB0693276C66B4531451C56 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE8A068F5FE1D1364C8461DCA3A8AE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 07445CEABC515B5ADA3980163DB0E861 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = CF44EB9576CCBFA57DC957C87DE3929C /* RCTProfileTrampoline-arm64.S */; }; - 07449E19E529E574288D33B1B4C50B46 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C54E73C063031D845AF36CF81D2B89B9 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0795B9DFC07675243F15E9AB8463B7DC /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = ABC8EB8C180081C475112BF167B9C363 /* select.c */; }; - 07978F4F0930700A73D8D0E3A9DAE062 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3BBFE342AC78030BE9F88133564F39 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A4B1578D660AE9BA806FF86A99497F /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B6234C08FD5E27EE8EC78AAF97D807B7 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A58B9383D0B881444E7A92AC1D7E8D /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9539DBE6F8BE89D65AC6C94CEF0690EE /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07B5408F8471772FBE19E49532E64A98 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D0F4B97E8BAB9616692A195ECC0874 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07C7DFB1C3F3ED2056DEB3E0BFC80689 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ED4E2B9DFC187214285B36BC161FC3 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07D0D8AE24054928577654C8E3571577 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCF68397950076B1FBCD241889521E8F /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 07ECC720E5D0B532E4D189A534B70D1B /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 445514320E89119D3127BA5CEC7FB7CE /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08B6472876B37CDD4870F37C4030043B /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C60695CEB7D05035E7C57DC3CC499976 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 08D5A1FE8D6CCBB53CD446B383BA45D7 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35ED33D74E3170EAFF2AD9FE7AA23818 /* Flipper-RSocket-dummy.m */; }; - 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE652C59178B31AFEE638CBAED7F4EC /* RNCSafeAreaView.m */; }; - 095AE5263A9A9FCD71E88BCD46B468D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 09AB58097DE82F52C0E9A3619F16602A /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFEFCD21FF612FC8246B21ACA8D3887 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09C5B3BD22DCD769D0842ADC36873808 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5879CDFC34BAE8285CB8379001BAADEA /* RCTInputAccessoryView.m */; }; - 0A0A1356883FDE57591AA4D295E0FD12 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91382F601A78D919F80C3112ABF74676 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0A1EE871923E2471FB9B792C55DBDB86 /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5AF4267C1B5686FA094913636724B7 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A2059F26477A669ABE65281A4EBE24A /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = B268A4F1805BF5B52117FD5EB2F83C0F /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A4E9961F90302FBF06F56440056D048 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72AEF06239DAC9A4A3BB41865C18B8A8 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0A835474504177F230F66C4E50FEE4C8 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3037721D5075E235F07CD1CF6F3DDA /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0A979F43637610E59DA38A46D064B4AB /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1804326195F0775552E247AC3FDC4144 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A9CCB8A75CAAA46D9BA8C0B28954BCC /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F366B87D3586798B377FA6CA73F9ACC /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ABAC9E021F368AE01A38CA69AC537EC /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB23F9EB88F1F0812D6C754F6FDFAE8 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACC3FCA049EA486800F9D5E082E9452 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACD60D74ED08EFE2208DB650A7D58C0 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC18C916124C33343938E66DB305724 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ADE3A84893CA58FB95D84081BE1A5AE /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3B0833BC25B5974FFEF64864DC7B82 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0AE492D8D805A6C9EC1FDB00EA22C3AB /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 068EC6DBA015227A76B4AE2D73B63C3B /* RCTMultilineTextInputViewManager.m */; }; - 0AF7E9A3A9464D659549087974DCB0C8 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B092E27641D9DBA6776E8501BD3E1CF /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467A96F5E3DC2DDF88FC4607E2D0D77 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B340D67E9D077B35D5D7A1D9694B433 /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9C5F38B7FD9E7244E93FB3D848EF69 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B8F1583E31EFF3C7F3285A8A8DDEDFB /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 1111E65BF2B52E0D8190F78EE551B1FF /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BDE8E04F8FB221CB39D0E8E73EFCF14 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A108277A2124FA73CF286BCD2C3270 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BEB117BA4A766D432320BD44B6CB04C /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7527E657529339010F4C5B7BE009AFB7 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C141EA1463D7E39A72E6501772F8397 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC814A6EF9F7C7FBE15BAED735CB9E91 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0C3A94ADE61BF5033CBA7E3EC0A41BC2 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95462A9E050F6A5D33A4B9639E8E2874 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0C55F06EBA8D384F38DAC28134032E7F /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A04D1BBC5C3902FE18C3EDEF929B25 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CED21BA3F7F2ED94F7CDF8191BCE1E5 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0CF530B4BE3DF3135B10313F4113A254 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D2C3C4A0D84B8D036DBF36CDE0E5EDE /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A878A3026E64339D4EBE2CAD436ABA97 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D413325F8E58DA75A221C82D1037C0C /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B303AF54F9D894B134992F22DB1A0AE6 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D463780F1326A9D40F46721A95BA49E /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB9555F7B8D493D351640F99BE834A2 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D63DCA4FEBD4795F7FED98235617DC1 /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E8AD1AEAFCBA00ADD4B016E4FE934E /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D9B817983E44B3309F21FD93CE019DC /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 57CFAD62B0C31AA9DCBF31FE329F5A98 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D9F808E05F5E56937B4697B9366814B /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E37BB84A6C88C4C12A3B97D84163331 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DA25FC9579522D7AF8BB7B3FB44C027 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D7B3F2CF77A00299F16992BB1F7F1 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DAB2D6B8F48B7846229304CF3172258 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE9942AA6669A2991F0769E429A3643 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DCC6A040C9FE62C53F848F78613B6DD /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED4D46530146D973B4E6FF80AB25AA /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DEF046ED170C076C63880A8A7B15465 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7886617ECC1A35BAA21D422676D4619 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0DF4FA985E83EDBFC129C0E3A453383F /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B3DA35B1D0E5B22DB59A9E9AE28452 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E020233E41259C63A46A83F98C50C20 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 643E8FC28550BBC7CB5408D937002318 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0E3F06ED2BEBFB6FE947D3D79564C29A /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3F983FA32B5A35DAA7EC873D69E4F4 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E56498D6ABF43FFE7038CA8A539E724 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = DE433456752CF5D378CFDAF3A3F075DF /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EC4580564BA379C0E0C9C39E39B9F4E /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DE23DBDFBFA39930F6547997665453E /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0EC8B56E3192C5CB3B1B140E2CA71E01 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7135BB1B19E7DE931BEA36D6000F767 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EE6CFE3A6FA005BCFCEFDB9217D9991 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12AEB3A52CB763C838A0BBA4AECFF691 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0EF648676E7525E2367DEABB815C39C1 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8BF52E536CD73241106E07095B9938 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F0D1DE40FBD639C00CB7EE17AE3888F /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6F071B52B98D676644B5EB7E75A283 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 20397A4540455F0F51356F60106441D0 /* RNRotationHandler.m */; }; - 0F43BF50494A97208471D4DAF73D1D6A /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F49A2E9D56B8E78B5A453E9F7A788D9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAA2F3BFBCB6E4DBF7962E37385C33B /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9CF986E3635473C71E37AB4F2A0F9D /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D60924DFDEC5D2FB131F804E43DDB404 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0F9E6CA155D2E840C40F57FABDB272DF /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FAA07F7CCD29D14896A52B281C48EAC /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FEC3DC61965F9DB01810E76FC4259A1 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1987D89098A113C9A34CEE83C0D22F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1008E1C014ADB5E2026E2C9563E714BC /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836978870E64F9D8F2C2140A45FB91B1 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1018B22F0E9A5E602040C35446CF3CCA /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A6C34BFE68BD8A8AD60645EB53019 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 103691CB486854EA56C17A2A6B8C67F1 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6203E2F3DE255EB2539CA8AA78F0F3 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 103BE08DC8F8680B444FCCFC4F5989B5 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40769A5F03D3E43807638D01BBB8FEF8 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 10423371820D395BA02C7F34C5EB3932 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88738740EB1738EB25DDFAA6A66B215F /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1049B753064A48E0A0D0572D62DFD3BD /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 01708F274708CDFDAE5CF51D63D2772C /* evrpc.c */; }; - 104E32DE9D825AC7DBB322783134E615 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB5DC6EEA915F3208385DFF7EDEF946 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106981721829F16A23AFC081C0761279 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1083ABE5D3567C036C1EA0B7FACCDFC2 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED42D6EF2BF08496F970F0246DB6572 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1096976A5185E9DDB60DC7E16A6F956D /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F79014F71F02A5BCDBF767649BD551CF /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10A7ACCF41D7162B83EE470BB932D821 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 754F64613BAE5C1353214CD1BDF4F73B /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 10F4EC5A442B7A8AB378FD68F3CC5213 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6596ECF01A2A78F57C8C86D8A90D7C0F /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10FAE0B7E9978FEBF7A5F81169C07A58 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DF99618EC06774F1C02290546281F /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11015C2E9A89F6072B3E93D3F66D576D /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75472DD8C91F2EF6425A96337DED4F32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 111C2DEF5706B2782D2AFD13D07CE8CF /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 850A2EB0B44161C632E717DC766B25A4 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 111C95F5810210A822A11FCA36F792DE /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 694AD1A914BBDAFDECF265CED9DEDAC2 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1125F6621E87B503D1C452D1F2CCDE0D /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 355A1F4908E1306B5091A161BE722E2E /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118257410F9F0971F0010DB4D2D7CEE1 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 119A5418E2F7445B0D7AD27AE2AC0AC2 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0EA47C5B6A6A9034F17DABE68AA07 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11F7C3B7741A80CE94348D0D359BBBD4 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA5886B12664A86E901F4ECF9F68C74 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1210B23B2D05916133EB6F6E4438CE31 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12464B967AD789256BC54B7BE52CE336 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0D5BB58167BE971D92FD73792B06C0 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EBB7067D88C31C6A67F0F16E86C487 /* RNCSafeAreaViewManager.m */; }; - 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34CF249410C053F61A0BC9BCB0D7AFA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12AD4E10C8905AF01D539A39147839A5 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DFA95447F33470564B8F5A2CF14CF5 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12D0A5CD220471E5C2368E0380F0F2E7 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D465747E33C9EAA2C10CCD4C7F655D42 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DA5A3877FBDB9297CB3A98EF307C46 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D19F62BB56CAB37E4AE080519BDC9E /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 12EC46656A8F40FD0342C3D6859CB1F8 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85F0E15BA9473250A828D37C0E07C48 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1325BCE8EEE92182E3B87C341002DEF0 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 197B98B4A1ED2D16B40D747CF181B8A3 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1328433B10FE4EA7663840EC22F20A28 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D72BAF3C9E58367DA704C2DE7DCEF3 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13288FB347E8A967580F91947478F14F /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 3845B94F4AA16FA00DE62B5E0FAD9D96 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13500AFB0ACC544E5E9B867CFAE3CC11 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8282C5E41FB321ABC0FF92D9F49DF3F7 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13585BD34D2315CFC6CB77DE0FE521F6 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E8E69144CB6045D445F3EE89032F8A /* RCTInputAccessoryViewManager.m */; }; - 13702681EDB10E199D454835761A58D2 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAD7D81233AA19A116D956B1A90A28C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13749E2EF8BE6F8DFC4F70505A05F314 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C74EC1A843AC3D02F83EE0EA0AB7C22D /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C30F36D5B590F554331A916A358891 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B043EA5D7F817A8FF3C7D7BAAB1FEAE /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C34E1933D7E242BAA7A6ABC30773F0 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B49023BC83906B7A3718EFA943B9366 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14180E1E40771B078D42FB347C57D5D6 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9813789CD1C5B9D36786B069FFDB93B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1423BC4144BA682FC7F3863F66BE83E7 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FA79DDEC5B7E32B029006F4C2A0CC9 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 142945886B1E7B19714B1B02BF6C7F93 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 143A2E27E7DDEED9D191220BF66048EB /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9301B429E01F4263AA48460FA094E656 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 14450C4B92ED776EA0FC9CBF04660C02 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B45BBEF43A6C81D322DA8E7AC16BE0 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14582BB7B221739C10FFF023463D61E8 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4715AE5BA41877EFEA164C0539AED2 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1469B12ED80741A571827A90CFD3051C /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E492C755013DE4664C8EA962F3037D68 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1486156DFCD66204248160D76650E74A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17D8E5B9BAF4E9951D7A500ED30BAEF9 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1495D06FC3A6901C32A9F45F6E7E3225 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A48B0D6AB9CB43A62DEB123C7FCCA9A /* RCTSinglelineTextInputView.m */; }; - 14A7EA18B10ED0885A5B1C36A84FB457 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E061AF6B8CC2B692F39BBBF26EEF4B /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14A9CBB2D9DE48354B3954C3F433D722 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA42589883697C3463D81CBE075560B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14BCC586B782FE8C87D200DF1F0CDC25 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 294108287609745AC0069A42B2DC9268 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 14BF3E00A64A960184000CB635F93134 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D55CB50D0E4CC5FA141DA50043F3D37F /* RCTUITextField.m */; }; - 15215307368A5F0AB1BC4BF82F90EF50 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE06A2E04B27C5BB61690A32DC3726A /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1521E6C391656E576F18F9DEE4104CC3 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3561C42857555012EBA2317AB7A17A13 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 152CFA479034503D82A9E969F2648FE9 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D15FC030ED8EE2D18D9DC1ACBB98F9E8 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 15478EEA451F676A76EDD0CF48FA4EE9 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D95336007D4418B84A453E1E6E638123 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1562F12399A0CF002FCEE0AEFB87F12D /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 157F63A4ED0A55EAF7501C26082169AD /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2AB7574153B535913C59AD7C58072 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECF5FF2D87CB35AFB67B4EB80D0BDF /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 159CBD9CA9A2CF8031B7783937E0FFC1 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54E33083B550D684115185C80AD6E74 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 15B085462E1F2132917F12E218B15C20 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B55DB9D1C484E0803CA8A3DDF5F92D8C /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15B15B0ECDA21B722AA6F011B776CDC6 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 461B0B1222717797D36C29B289276FC7 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B61C1E0200EF34107F2B76953E1C0A /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C661A6463D8CE8DEB4F7D3A7F841D4 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 15D5E26D1EA687EA03C2CBF7CE656B4E /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6A1915E1A55A9884B1AD2FEE520E39 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1607C6D728347B1022DA59150457EAD8 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A9BFCDCC2084C2B48CA8D0B993281D /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 160F270DC385E9C00587FB20ADE2E7BF /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D98B66A48FB557917983796A157E821 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 161517370693506ED9E5238C33C3399A /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA2305A0C651D1549C01EE007A5F747 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 161998471AC7CF0091F4FB2BE3117243 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7305F5F233F11E6DC13E98F47B8C93E1 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162DAB40BFCDC3C287CD919D540B81E1 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2670B04C5B301D573A6EF48EDEEC493 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1642BC7ED0411204AD9AA6718A2CB9CD /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4AE4515287627AF59945F17C98BA476 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1654ECBFAB990EE2BFA0B40F5F9AD072 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EA5C88ED69A170FF9CB2867F4CF10B /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1667A2F04DF8A206F43B4D7FA13D6D8F /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 166F7009E76DC2189BD62F2635954908 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE5D96D741E1892C62A335769A0A95B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1690A16421C685AF2687D6AA1ADC1895 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C1FD1EB29223453E8FE83D2C81A5BB /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169E459AA8C68CCEBBE8D4D44ABB8B94 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9E2402816C64CF09A0C4CF93A768B8 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16AD04F1B8BAA9DC17972D6547AFC102 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1936D1DADA0B629DCEAA104A755C21 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16C81EB4B980AB5F4A9F1FB7582D17CD /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B6DFF190986547C1DAF15DA91AE97E /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16E7F728286E2D46344A53085FDC7FE8 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6332C2FD9168224CF49C0A43EE216AE4 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16EB7984FEDF206218F48CF178CC237E /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4FE2E0543280CAE66CD5B24B90829 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170B63C109939D6BFADC6145B83BE0E6 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB1AB956B6E9607F4FC3A309A4496D2 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 171B81E579F872501565BCDE8A81B2C6 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 171F5D66053A376243EFA136C0D9B16D /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA6398A5CFBC999D9D2106E05626E9D /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 17443236C031F42CFA1327576788F403 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9166FA9C5AC4407FF1904DA232B276C9 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 174E7754FE69A69D7542788D4CF5D3AC /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B2874DDE27A6575C72734F7C89127449 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1757F83BCB98A32FE0C0E9CDA13A1DD1 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3349D93A7A4CE5E6AD34F75FC72E9A2C /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1760C29E0FECA2E5C1174A1FEAACC27E /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFB59819565B98810B2A812CF5B5BF1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1781FE1A5CDB441EF31FCCFDF939A00C /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 146359A0FE6F9D633A1B749DBFC7D1F0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17822160B0E9A115D2FFF4C3D076A23E /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4874F889D5953046FA4F16DAEF42BC /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1797C4D8CA5D5BA0A9D82C7714271335 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 612C0D938F30EC2E0980D4AFFDD853FC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B7234459F422149BDB97DB3F1F8D36 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D362115F5D1DFCD8AC54D241B690C17E /* Flipper-Fmt-dummy.m */; }; - 17BF6164B0613C296805A0CB4F027B92 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 222389CF1784F763E9954F5A96C7471D /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17CF7C735BE667BDCD3C619FC675FDD7 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5CFA31D6AF98FA51F6F4826861ED80 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17CF891E7CAE976F7AB4694189EF348D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = C5056392FE62AA0ED91450DED60C0BF0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17EB22FD5618D4F28FFF2B89CD009E57 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1C8345901D13386123595034784A65 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18035A2E53C70220C42E897E695D0DAB /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A26503DA5D2A7AEE41B51B9DBC0F51 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189C2E5A75FA82FF486EBC8E9209FE8E /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D12F3348AC20866A7315438EDB958EE5 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 194D530BB5B0D64798CDF79AFD11C974 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB8FC08C45ADF73E91C0D57E1C5AFFEE /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 195790CE9125A47E1836EFF2E15CE6A5 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 211C3BD688AE5855B00A272F4E7BF680 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1963A88BD2AFA43E64FB2A602D786217 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 956D47CD098DE124F33FDE14254C2A3C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19B99B1445AA7A46D295960948FAA5CE /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA567A1A4E232B3C2A7A9CD6A49CFED /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19C7049D5255A4F9817702E75CA2C95C /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E82A31FC89E75D08BB8326C42C0027D /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 19C9C2B298272C81C82EF3DB99C42ACC /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC085A2646149BBC2FCEC1836420F2E7 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19E023F7AFA0C82E80A9B8AA7C9E1BEB /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BA7C52AD9F07EBE5EFF84C54A029A1 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A34F610F6B24E4C1D43BC75CEF4671C /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3C1BC5A627FA1E856A14BD25A8B3AE /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A4083B97A59830A7133B240C0483C18 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E342B6CC6AAADA811C7F325812922D69 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A67EBF4B48A3582B009E5F6292046B3 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A9A3688F92F0988177F7DC2C0E6921D /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE7A0D41676DF67ADB8D4D2C5F38DE9 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AA99C0068BA68F3BDD59759E94F44C2 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C26C452AEC754F91C982DD760CECFE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AAA3F42DCCF3943E96F6B5E5675CDD4 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B5FA86B56852B3501C338AB8266527 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ABBFC749B98CF143A64687AC4E99B66 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = B885F37C6E24A3052473BD896E3BB0BC /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ACDA2E6440BD73EA04A38CBF63655E3 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E11668202A90500738C421568FB750E8 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ACE7BDF2472DB893B8E8A5BB882BFA1 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC9D645678A174021EC4C1314B0061 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B23520B3902888BBEA4F8D9FA31F484 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2203D18515AB76E05967AD3CB9730EA8 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1B643A6AF152862B77B2776B18A6D96C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E404F7B8D082BDC9589DC02C05E896F6 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B6F6160270CE0D3D451BCDD0B035E6C /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B7312FC4375ED3FD9316940C362688BF /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B92D1DEE532D1421A11909859C2FB2E /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BFE175CE4F1F4C39499C6B070CAE03 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA1CF2470B7B86137A0DB4B43A744DF /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0D6518052598F8F5EC966342AE6907 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BEB8616A62772D8641A992537A333F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D7ECF00D6A9939D86922892D5C1983 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF28E5E8242BFE89932EE40513E1BA4 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F8A64CBA73083B7881CEBB1F64AD17 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 1C28E7F2EF354C7A9A8DA951CD65E39C /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 83060F1CF7AADD6EB245B52425F97843 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C4278AC83F24EE17C05DA11A320C56F /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A39F8229634377AC72776DCA6A1F24C9 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C50F05563F7AE675E3DEE74FB9D05C3 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 24367E13F609D8490FCAF7A0BD044BC9 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C78AAF4B32AA2EDAA5821F4D1EA44D4 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 686319D0CFDEDD7325EE90BA66A62073 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9162008569E6F37F06DBC819ED84AF /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F751828F4DE80C7782447F461745099 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9E61C0B825D4F32B1EDE48DC9984C4 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C0D9F1A9BBE4D330BE0E76392A1178 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CB924C2BC953DB1482D82618348018B /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6424A98A69AEC430CA1C3A2108AC2F7C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D09C535A223FE36A73468686580C51F /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D564D6EA1777610D343FF98BA9875568 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2AD2F80DC8C94DCC21B6722387CD80 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AE2818B14E3F5717FC8E1A16BE00F1F /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1D41D254E41C099D677F2928CF4BC6B5 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D66E156B8AD27CCEE5E2D175E50E2B5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB8D16DC2F2753800284C8A38A82434 /* DoubleConversion-dummy.m */; }; - 1D6C9CF4F5F30299476A2A9F3CC06F6B /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AB1EFFD1DF18724BEC712F430E9F09 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DB7E9A5693E70953E5D62865ED4DF31 /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC7324D8427DDFC5BB81BD18C3048D0 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DBE94BC49B4A231D9B2928A5E4DCB15 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D6062671BBC5DCDEB8F7D0A8498B2F /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC6315B96A0A51BBF70458674B413FA /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEF932892395635722A5E2D5574F33D /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1E1AAE4300989B65521CE4DCE9931848 /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7F9AF4ABB9904416FBD2981623AF8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1E29BA57B84EF4C373B79F84526AFCD8 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 635E47E5FF8415F888BBEFD4D3EAB7A4 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E37026DF5FB24BF5EF5C45FCC489F0C /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = D45184467CBEC83CD5A938375357381B /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E4217917F6E843193ED2DE6BFE3E862 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B83EA61AF7E0824DC080143A7B15F67 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1E5B2A1FB4F0C907F0E7B168B0793EB8 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDC12689B9B69B43D8097102DDF3E73 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E5CF2785309F2EDBB32EABAB69AAD20 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A98BB9C1385C8EF9CC18EA1ED6646B0F /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E674C2ACAA61CE310DF2120737F72CF /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CD2436153D235CF2F32141D8B7120B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EC201E1D63ADEE6C6B31E02576964D5 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F0A8384C031624520F90B8AD83FBE52 /* NSArray+Map.m in Sources */ = {isa = PBXBuildFile; fileRef = 836F266F77557D402D1A34A5E87F6120 /* NSArray+Map.m */; }; - 1F10D7FDB5AE4794DBD7455B1C4929DD /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7ADF09EF0D7A10170EBC74AA6A8088 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F1543DFE6A148A0B9873B6023A59D09 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EE74B53CD88DB04E32EDE53C5868E59 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1F26C26AECC5AF4DE0F397724F905D0A /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = D19B626D80378A518582E83B94573772 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F37B5A151923C38C6559C78098A10FD /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F5F9F190D70EFC8363473D0CBF632B1 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACA5ED7877FA8CFF3DEC54E9E7E3E9A /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F737A0E899F42827A4B146DD0F4B08C /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E56AC75DE919E449537F300A0F2943B2 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FA7BBF3930A7EC78B021DC66FAC3DBC /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1FB16F68EF88D81975F0DA3BA86EC532 /* Pods-PocketTorah-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ECB293615637D2E0FD628F7CBC128E /* Pods-PocketTorah-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FCD1297763AC4754AE03618627ED1AB /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE05144F41F28057A870BC5B8659E23D /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE7CF2A08B67B24E6BDC73B93D3F006 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5EF10C0EC05B0C0D2C9D33F9D75487 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2005C7B1D6AFC76FF5A594D5E43B4B50 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14876557842587F0FAD0A3369BDC32E4 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 200D15474803DA3DDCA0C049CEA8425F /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 26177079CCF007025702BD1D99FF14C4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20FD291D13B32E094D8F68AC980514BA /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E5F5FAD8618EF1E97712E1145B17EF /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20FD71FACABF190BE345179BAA1ED810 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B414DD7774E08FC9F166FB33E0CA81CC /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2138349CAD09163D55BD31D47F1710F3 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A55D56A646001538AC26B61CB6B447D1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2145E7D4225008C73DA32503FCD6946F /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C50B797ADFB86D701434E82E51462DA /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2167E85436B88552B764C75DB3C4AA4E /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C5839C2D97AE45A6ADA49D56E1ECAC7E /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21885D6167D5725DFDC790EA1609F098 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6453EDD28468A642429C0A97B87A600F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A4EA8A72430B7D00D9AF467AEB0DCF /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F65F8193EDE5A6BE6683701DB8CEAC2F /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 21B10C31FD1FA92B38314890274F0FB2 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A368B3EC185DDE79A8A50F6D2214787F /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22165E5C6CA9F68CD77D146781071ABA /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583B7887BC7B4CBFB0CF834AE1CEC8 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 002785781A4491EA27742483F711611C /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 222C88FDCBE731E3F6B5998FF6220CDC /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 406EAC5E409148FEE468B622D4EC12B0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 223C032C01284EF48A43D17ED0E33C7F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFB08DE17B2BF9AF36F3DF8F3B5366C /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2244D9C64E9CDF02994D1E61141C5B74 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 441416FD44B099BE6C03D00E34B51238 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2279B4E57451ED22FF7FB7F4C76D2340 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1522C5E2B6B1F6C67DAB583E98DD14A2 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 22BA71DF528ECEEB487D5F570265F044 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9816686ED6EB65319F3950BC977466 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2312BA71316C874C80086C46EDFC395E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE171EFC461D42E4B62B356FC15E69B /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232C233A2C3924077CA53B42D8E197F5 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = E506F619B7D9832C8A6A55BF29FC98AF /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232E2485A63A37357D1D7410555E89EC /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 132CFB1156BEBE2F93B909EAC300DC75 /* RCTInputAccessoryShadowView.m */; }; - 232F531AB314C923D360B53B4A3396F7 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659D2EAE0E266BFEF869618FD97F5D3C /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2330E271F4CAE53C641321BAB39C2356 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5E7FA58ECBD7EC5B4D31DA1B316380 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23337F81E42FE08544DB45FC7D29AE22 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CCDCC0EE34C383825BB4A51D28025A18 /* en.lproj */; }; - 235458E0220A144CC7E8D8F0ED65721B /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2FA00469ED2213E599CBC1616C2214 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23808076FEAF300D80697D6DB7910D72 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4B0196467DB7CB20A07CE038E6515A /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 238DC1CAB1F5E80CBCB27459BB5E3D7F /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 2000725EFCA8AB9B88E32AE0A81CF7DF /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 238F745B92373CDDF7B3719A36E1D0C8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23B8877EC684DBEDFB9635D64759199A /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F699D4943F4D33279261AFFF62E2E7EB /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2424C7F39876FE75056B564614F6590A /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D299ABC2A6DB245E64DC08DB1D2E10 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2486451AE36EDB71B48E5D838D2F0307 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D724B8924540B07B4D2E2F800202072 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2486D89EB9878E6C0F0C6B35CE5526AD /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFFEE304D3D9BCAC368FE71ACC88C3E /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24AE8123021C9DC78EA32B0517B09BB3 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24DB4D462DDD4897A6FA84A2BA706EBA /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25116CF7BEC323884D9460A732BFD014 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 254F575697FDEACE2FC0CFF794C5E1E8 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C374DFD923D150A94A486E66BCB46B0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2552512E5D4C3E2277813D4B9B3D2017 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE425FF852ED1446949B4FFA74BF7BB /* React-RCTText-dummy.m */; }; - 25993A0A0B4F3E55D3EC237C12F24155 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F4218D1CD5CC18780205CEE3BA7AD2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E615D5900E691DA4E06F952D9BBB4C /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25F18CE9BEE923D8E7B161555A893617 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD5699D6498184080F84F83B69BB77 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 262E18ED311AB90F8FDF5A7324AF0515 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB68D666DB329572E746C8E51908C2E /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26328D3F0D7456A2BD255AC1DB9E953E /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7764B47AB1420C405C2040171A4644D7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2636963C379CE4598808D762D7A0DAE1 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 308273E77B713AFDF71E07582EB4D94D /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C071225723F0A7C28F08D470220CB50 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 265892631D2787A5017E28A462E353EE /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 266949C87378B5280475988A640978AC /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DB91AA2FFCB6B6FDD1D24F238BEE1D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8502A11CF3F7BE61B5458BEB1AB84A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26809C8A31E819A1190D6F905F9414DC /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3562FBDD9BB63A2C894FC7E43B4DAC2D /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 269B9753B51218CC4ACFB1F9B49F8EF9 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26A0004B3D043D52FFC45269B06D82BC /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A93E1C59137A70CC462B9A1DB1E1EBC4 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 26A6605DE6877BEDE80411245E4AEB34 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C402A8A4B4477D6980666C2A2714A33 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26B628EDA5DBBB801C2375256AB0FE70 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4DB465D1938196B532680CDCAA0773 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 26B820860214AB200433431B4FF1BE77 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 420461A477A95E5272D68296EBE30AC6 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26FA9AAAA775915B7338F1A24BC9A8A5 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD677F9267A1492AB7F18CE5EA71024F /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27700A200119E35530EB978282181DCF /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BF1D7D179890BEC3EB3B5D5CD41A50 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2772A8A1E151118EEECCBE8AEB155943 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F8DE31CD9775EAEF1B94464800E92E49 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 277F2009641DF2B60BBBCF41601988A2 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7C45B7AC0F57B9D10FB9AB747C3F34 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27AC8DC8A73794EBC441BC4A0EACC3C3 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A21568802433A4F94E4A6497C56F003 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 27BF4533CEDB9747C840CDFEF7B21C66 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6075DB946B44B2BAEBF9F3895E687B05 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D2CD344C23303F3686CEE1757CEA99 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E908AF32152FFD689566289EA1D437 /* RCTUITextView.m */; }; - 27D53EF1F10D8B9AF812537E8CB13A61 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB9144ADFED246D3A72CFB0DF4D2C83 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D9787056030C40E403C92833627A0E /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00231DF05EF85F0468B416035936788B /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2825CD2AA38A4DE1FD665E8675232540 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA20197EB5B0629FECCDEA749DECE6 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2834067064DD766FEED2990DAA6AAF30 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DE67A59E7BBAE90663DEC3EBA391C7 /* RCT-Folly-dummy.m */; }; - 28351F21C9AB9B34323DA0D6B44B1834 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = B66E9853B2AC064122BA26C986B1835A /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 287E478E590A72FFECF20D3FA616FE76 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD7F186FBB4E0CC65A4F3984D8D877 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2893749F9A98FA74D5D7FBA52A5DDF26 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F53E76092A0657E4D4E13180BB7E465 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28DE5755CB584AAA3AB74F9D73FB53DD /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A30800745D5642E8EFF4377E07A6F0 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 28F3A5C0B22C9DFB849AD08F93E9724E /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB3B90A074B8AD38F920B9EBF28CAD /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2934C3B6D89A5513C0FEE689AD25C35F /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D1561D76BE421DB0219FA104980621 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 29BD4EA184884F81A824D4F5965A8CDC /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29D5B128EA4CD9894CCFB5B68DA2187C /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3278C9487CD4F52EA168F98AEF826670 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29DD0D811AD9BE2A287CB3B413A4439A /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B27EE8CD168BC543A49BFA25B71E8FC1 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29EFF900A6B2492FA8697287B371D843 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2DF209CF3D181C70F446B265A9E7EC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A3DF495B71273B1B995B4BA88801579 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 06656CCA8A793DD230A393FEA328A00D /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4321D423FF30EAE9512979583B0E1B /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC917C1636BDE6F0C65EB9BE90CF130 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E51C881022FC5B40B5BC9B3D9CE0E1 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4F53C350BFADB257A25E02A0D90A1A /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = C06F25461298D539B4971D583A6E9429 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A6AC0C65573EE6141EFA6BAB6A8E955 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E347FA8EC8E2CF200AEC60A735D85208 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A6D285DF44AC0407E978625208A3EE3 /* RNSScreenStackAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 738C3A177B5147E5B0E07DBC8D1D731E /* RNSScreenStackAnimator.m */; }; - 2A9B73E00B477FF91B83B0796C420ADC /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972AF50397FBB6D391559B7BD62A6B13 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2AA273EC235368B59BAE84D55C2C6008 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23705347485CA5805991542F2B64A77C /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AA947688DB26CD59CDB45AEAE7BE172 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AC3E14AE62E4169ED899D67E573967E /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AC49AE042A595E1BC1077CB9F8216B7 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EACB6DD8FB576779FEF4B464A0E1757E /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACB112FD0143A7E0668967CBD5DFA15 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B85A202876FA2036DFCC2B0D6BAA8D7B /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AD2E22377E1579ECBFF60DD7686581D /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B773F5C5501C367D6BDC1067A1F81 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AE43A32C471B79DD03E514409E90B9B /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC6FA89A077B23F332444D37A16AE08 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AE9562B0745BCC7C0A2305E0FBC3D68 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 950B41F889B82A60A5887BD4EB9DF76D /* FlipperKit-dummy.m */; }; - 2AECA885338086FDD01E09EB80CD0F5E /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B71B0C0E8149D9006C667D206325F08 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2AFBABFBF913794838312279339ABD93 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 688C6A8E5951E06F8A407B07DD682CDD /* React-Core-dummy.m */; }; - 2B093DC0691CD191470AFB98F64BF144 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C2714A5B8B4D0860A0FFEA4455451E /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B1AD788CD70DA8F927676CE77D81D17 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E757B98D04CC76A1808D6A45D808F /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B27801698010A9C72D3943F74CC061C /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9E2DECCE14D389EE289EC2E03939B2 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B28BBE6F7E3231E2718FF598E6F6143 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4F8064F42CDBE3EB51D1B436491BAA /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD6F472EF6438D116C5A085332EC338 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA0FAB10849FE0ACA26F2CADDF25F55 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59FB226B4F6BC31453972C704A9FF6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BC0FC3FD2FCA839BF814E8A7A9AD0D2 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFFE3554E176A112E0ADB340BEBEDBCB /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2BC875A01B742FD33B7AD044A3129156 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EE652D990EA33113CF8F258B2BE349 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BCC52D27D93F1C0B5EB92EECB5BC52E /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B95179759B4E89892CC09A2CEBC6DB4 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2BDFAA66447EB15BD5AE80EB0FE983BC /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4B99335F2061A076134AA376D6DCF5 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2BDFC2E2AEB08A605457B42084F7B569 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C617D9C0E7CE93EEB631FD362EDF53 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C2BF3BFA518B830A879D750E1D74BFE /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36422C74F791FDB31F77364F3AC7E962 /* RCTTextView.m */; }; - 2C4764B3E66974E0A847139BEB10198F /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 680BDA0E6D1FEC57120D2A0E3E4C7D54 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C6D123EAD0B631FE0266BD06458A6B5 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B326228E53BD05783FBF57A6AD35E2DD /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2C7CD02757F50746084DE37EEDD96B6C /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D7FCA4A5DEBF53A48A7216F8075379 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C852E17B3309DF4B80C3FE9CD14E1BE /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8517DD5D8B56A1A70E7A8E313606A0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C9F27226EE6B48DDA316F76272F79E1 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0779594AFD4D607829C8F8D8737410 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2CC26C27E8D1608E46357E3EFA2215AA /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A3804C01E774EB3C866E7FC2E92B5E /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CEAD4F2BBAF2F4D1F344C6A27AF8D2C /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFB64BD34FF1A3763DBBAD225E5F115 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CEE846FB4863105595B13C59CEE79E7 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F01E3AE3E28646D681B39BB05563E14 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2CEEDCB1C4750DD5936353740B1EC9D6 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = BA11BB2BE6862072AAAEDB0EAA6298CB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2CF10C0756DBF89A6D9F6031E57D220E /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D24FECB3A93FE8BBC6D759FB735011 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CF6E9A0CA3CB392CB186F4C386ED40D /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 717420DB630B98ABD89E4E154F4CB4AE /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D766D03D3666E27CC7B590A172259D1 /* GCDAsyncSocket.m */; }; - 2D385A1B7D58C43E5F1906FC2DDF9CE0 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 889BB9B7777889944AAE4DA788CF6BFA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D3A576E143C1F428540101F83D13EEC /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2D4C7EFD87662B733533C06DAE276014 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4849ECDFCC31C7EB5090D4E177F5CEB1 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2D505408DE85CAAFC809395E19563853 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F437BF7BCAEBB12D271C6201659F87D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D553D28C330528E67D0E991E610606B /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE171B8D02DF186FB3C0033F82C04F82 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DA68CBF4CD7DCBF27695F96F5486029 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 281F25C1F5A88BC2EB28D3AC5D10BDF1 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DE5F8DD21CEACB3EA359C7154631DA1 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C016F7F00C8ADF9388D553393C936A47 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 2DEC2E9367DE8A669A9A38D280E0E29F /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2D723BA95A586876E90A0FC1AFC194 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = B23CDA3E4E71F7954C36344264A810F1 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2E17A167693C08794187308C684D60B6 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD913D627DC554874F1B9A69FF935EF /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8862C16A837D69FC9F5934668CFC87F2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EA334626A796D11BC54E417729B1F26 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2ED38B823A226A2E61708E2409F8CFB3 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB56B36305F848AE7E83188F06AA031 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EDFC2DE82D66B14AA6536B5456FEC7F /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35EF6865CEAD08A9DCCA82597C824433 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2EF3F43E2146E17FFE4BD7642CE12D01 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3526F33A5C1FE6966545B35D5A80B075 /* CocoaAsyncSocket-dummy.m */; }; - 2F0E2E4A8FC45D3FC5A8A510AE60654A /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED5EF609CF0E9CF8E8D1E18D598C2E0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F13D06FE6059AC36FF488F64635ED37 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F1509036645B23782D6A2D2E7813F46 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 223B100218B83CB1C201902880BDA9C5 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3ACC8547B5AEECF6E2DC2AAF1C6C1F /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E6F1367737E793F4BDA2C075676FDD /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2F542EF1D3C6C3557C7660BE2937E1C3 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB20B54CD28EA7D58DFBA45BED2558 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F62497F70674F87E54BFA5503166BC2 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B7EF3EC85E42EDFD44CB89CBD5F7F2 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F80D73D7C0E9BC7DAD9E4DCD23A144D /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F9A4001FAAA9A31B196527E135A1B77 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DB3ED8228FB6CE09A9A6AA429C957 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA631FDDBE4EE16A14CAD121640DA03 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ED44E3B1DF8B0DE6F76C6485962044 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FB40F2E2735E3FCA15E2831F78DB43B /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA178199BCBE725C293D552930B1CE8 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 022862357339CA4479806B31F4C51E7C /* RNLongPressHandler.m */; }; - 2FEF137BFD254DE19A45C282D74AD677 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A4457BEE040DD83522B8BCB0FCA4FE /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30328E3B343143CF55D0FFCAE86BC589 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 415CA2F49853D24BC92F24D6F478246F /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D0BD61C7C47E602BE8339C9E4F1F62 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 304AB42441EF20824352B249448E95F4 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304B29B0303CACF24EBD904A8D4ABC49 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30592DEC6ABE4FB6EC29B6DC9B7C5F36 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D0EC0BC98031B512A1F9A8A91FE6E5 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 306094407D2B8ED8578C8EEFC6CF6106 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A6473CFF1925809ED4B1A50D1743C1A /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 309D644392A17549719CC78AA03E3473 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30A832AD4B2881AF2B9FE498B3DDF380 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E7C6147B7140102E5486FDF2B87491 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30DBCFE73EA6C68ABE8C09F847A3F74B /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADE6EAE9822AFEE73753E25D747249F /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30E3DE52B7A6FC6DE52A193F98DDF1AC /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 047EC85640A6A1990B03AE6712FE7D2A /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3105BD4D9F8BFB22A71C129F06114C7B /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC01E3F3597DF35E68BAA835B2A06F /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31495D37DA4DA47E8A2ECE54AE4035DC /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F781FBDF647F215982CC397B874472 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3156F8BA49140D617CA2295D89CAE875 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B64C9F5118481B733B20D5B173E8E5 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 315CD25BAD10BD20522BBCD575D0AA60 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3365B24231054495B94ACD5A4B42DB /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3164184725DFD06540271D6D9DA2F09E /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECAD751122EA0DD001EE3FB8FEF529 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 316A32CD37F9378AFE722C9284366628 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AB9E5B0667567295379F005BC291C1 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31AB9D52DAF6464ACCA766D2B24B8BE8 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D3C8AA1A111D203B27806D8653517 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31D9BB590F912C7CCA8DDD52C5C35C98 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 021310A003CA9D097F35C86187D3019A /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3255D2D8FCF70DC1525BBE5B070CCC3F /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FF2B6B585404DC16C171524E93AACCB /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 327C6F9C1F3F88D129D3F660DA51BC4F /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = E98D882040B919C92C4A0503CDB9AE5C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32A3BE59A278392E4D6F481EFA230D91 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA02B3EC4347FF44C38570D089D32600 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32B9926CC0A0B05CFDC799A0EF05D7AE /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4CD90605F458E3190929C0450C2CB5 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32BB8FC600D9A044C71447C50E3E4576 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A53C3E24DEA805C884FFF3805DE3D52 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32BD9B61BAF9B335D2FD946ABA0DF7A6 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B41A1368FE7DA67FB83232ECA4A3015 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E3DFB5B3B62BA9AD014723AD763859 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33006F7B42B3852BB7BFCF1BE497044B /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ECD0A180EB18EF56F4CC6AFD57C5E1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3302AFA94A9711343DFC419E7EB5572A /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D79D1BF9A4A41C5CBEF90B3F903A6D6 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3307D0C34712C907D544EAE3F836002D /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 268A32B24ACF3AEFDED7D5A83F40935D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33170C6E9A1CF58EE67E1A2AFDAFC712 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9F84817DF1DFE5D6B70E4A5166FEECE /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 331DD8241319F189DC1B709C40176D66 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 332489F39BFC32705DA63F7D3E59613A /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479951A0E4FE0F1D277BBE25E8FF48A5 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3359F98FB04B468D2EF6B6C974E7B4C4 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03715D477780A22E5642C6321116808E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 338777E5BABFBFA525194F9389AFCB56 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 339FAC9529D9A03940D3911569577A63 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F18BFA79989820D99FFCC9263C9464D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C8A2CD470DABD481F8F24C14655A07 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33D4AE348CE71B7AFA3CF3A92D8A824F /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB1041769552B0B23D758E5EFD3915CE /* InspectorInterfaces.cpp */; }; - 33FE3C3A0BB45CA1A98C0232B274A34F /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC74F858629FF882D0466E8469E1B583 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3401F9A1FD660FAF51677511B787C756 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 341011432BA6046D1F267F4CB2E536AC /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B861328CF637D28DD429D2B9C83724 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34164EE4A97D431F0BF434E7C295BFE7 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 937FBFE739ABB4AF8EF8B6E23F0A4BC8 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34492920FDD480D3E08698801CC9E379 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = D42D543519FE1C8D35263EE18B46D565 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34603F225CE2B5647F84405048321BE0 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFEE0800A8B2D7743DDEB696FB96770 /* RCTTextViewManager.m */; }; - 34DCFA6EBABCFAC2284278F7027690A7 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C2264EAF7A5BB9E013F8218EFF101936 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E543F4566F845223028072E33F373D /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 29512FB8C9364FAC82433EF805225522 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350873C442C62A28D347416A335C468F /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8770D231E438CF5EB44FBABECD2FC4ED /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350E6E24B1E5665CB8C6DE48405DE248 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB9C03D0B2EAA7A650F9E8344D59EEFD /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 351C7921F52A7B9C711A9A3AF2C3D300 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F479EFC1CC6C6698B7DBEB9F905343 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 353AED32576B7A56395EDA84FA654C12 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D0E5F062D001C873E45BAAC01DBFF /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3579E23507F395800A7A0DEA920FA55A /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 799B4CF68E13A865E14534A09372DEE0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 357E43B94E6CD772519999E1D0AEEE3E /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = A94FE452A46275DE5A5F485E43899317 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35D5B8F9C2AAE5C005D0D0B829D41718 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A19A57F23F928BDAE6F8C27DA422B84 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35E2B8A402A4F2D8F644B608C7AED536 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC5F865B044B3CA2076BB1787CCFE3B /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36065407F3E70A3BB8F5D2F244ACCC85 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF3E394CEBB89CF7C60F6C375BB1136 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 364D5ED60E444F2AF03851C0FDDF2352 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D26497877C8AB3B93CC402AE9CE5B08 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3672FB83CB27A441AB5527B104A97400 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29007DDA2D0310384F2C8E992D815272 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B15B80B307F8243B183BDEF003A293 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7B740F593CF212D09EF3F10D55C97B /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36E39358A8C818A21BC6E45B548587C7 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E0440FDD0B5456F9117A1B8BC8D2F1 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 370A70520B8AF07A91D60B7B1766EBF5 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 374CF9566BC5CB82EF4D690692421EF3 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B73BE74E352372C67AD619BAC7622EDE /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 376B57B5385C3A1A44D902B59FC8CD14 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9229D038D92DEDBD3CABB8C00D5553E5 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 377F1166F9D08D626891892EC442C89E /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A74BAEF117A15EBE5076A3D5733F636 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 37AC6637DD8013C04CE4C6728BFBDCD9 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 682F2CCDCEB404F366E11A021BAABA85 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37AF389BFC2B049677A6D2A60083B395 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9250A01316581A641ADDAD4C948F638A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37B52954227BF02DC7BB7B79F67FDD08 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A011E4A3A7812819069078FC73719D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37CC3D2F90F0C4FE920672F3B48503FB /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37D57D4E0EB7BA4763901EDB9F4FF768 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F3C4FA5DBB44207305624510DF9FA6 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37E6806BD575BABBFCEF1CFFBC7C1D27 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 75080D018FAEE92A6E41820913C0F077 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3808B85A31FF1795ADD26AFE530789C2 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB94A2B54B34D00A5070BD2EC0E7C19 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 381AF459AD179E6C16800884C2A33640 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 325707970240FB975CE1DAA9DE525C8B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3821EF90748399D29EA43449EA1E7487 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DA410E9CDEC6B0BC5598CD761717AC /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38256AA6BEBA799AFEF26CE6619F1B86 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B60796AF8059C3D02AD521E655C75C /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387663AC52C90F2A24A592A8F894B4EC /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D2DC8E957E23944E61579B1E2B81D4 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387E78C9BDDA6CA39943D64F54CA75AF /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B0919C9FF7D5620A1738B36BF1443A /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387F0CB539DCD22B9EE0E1E04241BF06 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D735F70B651D93FABB151FDD5C0775D7 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3895FA6F69BE2839E256F888DC630B31 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6D5ABB0B88FA7420A6011553CB9904 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38C4956367B09AA2982804E616B73EA2 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06EC1878DDF591FF157E8AF1FDA249E4 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 38E6EC741C97183793A754864387F6CB /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 55AEBCACD5E7459CD4DC35C5D6F297DA /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38EABAF69B491DA1B30A1632EFD446AC /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2B57C7CD9221E35B76096DFC518CA9 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39047F41F2B8F85C1D8D4E08F1318390 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5395501B28F9FD6C5A48C187338986E6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 393C9A55CD3CD8F7789515565780D160 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BF852E545F4388FFB8CDF705E84037A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3975D492C97E4314DB98DA0278B13F96 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 76430F67C6823C092DD7D0B7A6D89C2D /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3989E5B125906C68FAAC35C691826004 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 609776BC87D29B596E8C1774BC90D0F1 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A3B04E25784C0DB895163D81305E1E /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D82E1D59C4085089131ED9B1A24DAF /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BAB2FF7B7829B1B82B66B4FD6316A5 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 69330C731648F61238A66A15A0FA995F /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A068555ED3CDA0AEB2A685C425F6722 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */; }; - 3A0D13777533A3946402B8A8B1F51C6A /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBD05B38D1FCD7241A981535F12D486 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3A2B86317CCDCAF95249D4ABD1C8162A /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C818680110475C158C8A6B31567D881 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3A651B176FA1F927BCD3851ABAB3B538 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF2C2C7E2C2606DDEC64FE1B0EA162E /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A780A3F7B1264A9C0BAD425126C18C0 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B0D6CC0642205F87846A98A38937BB /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A86F5AE21C5E471AB457470F9C01E96 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57605DB67060E820669113FF363EB43B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADD24C6DD979DAFB63D9FF3FD58D5DE /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AE6B357D719595B61D6A05F50B7500D /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D22FDC36F1D12B6D38566C9E627651 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B1B28000B12AD5800BBE603BDD2458B /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EBE0CE1EF0F386ED2B197CE3273640 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B35439F65EE6AB773DE90B9A94227E9 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25E970EF15B6148D8C2A298FD2370D2F /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B493559A9E8CC93E5A95DF681E69E9F /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B6A37EB00271415E0C73670F37D2980 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B6E99C2D86A7806687DE419258A48D2 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74203902116F50D98469FE641F1C5B2B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B801CC1643737941B479307F4AED774 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C25D22DDF15B5FC6F756A4A654F2BF1 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B8779203BAF4E77E214A15CFFDB4448 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39E7415842E04A64B8ABCA161FA5301 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B8FE3F85C257C938A8C6F5BF0D3809A /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C62746C79D71EBD934EE343B762BD /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B99E4334D0E9DE276707EA3AB748FCE /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B9FB0EFEAC70F364B431F54625DF0AB /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CBE0EEDBBC7C3F5E1C1593C73B7FD6 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB25E7302E0F2A719AC0F33EA6EBEE8 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E44D17D7520E70A5FBD90A01FC9D3A /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BBE0CA538570233C3E5A80A5680ACDD /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C01053F7EE549C2744512EF64E00671 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C30B89A7AE05EE76BD8B435F914A35F /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C553E6D9451BF3A18A348116E097362 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C39A6C3B7F26C69B82693780430CC4 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3C58DBBDB49A6D5683A50E7E1CF67958 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1408C84AEE32EF5B9AE3C6712667EE0D /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CA68EA0F1CD255253D37537B1CE2B4A /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B722F821FB74468DA8D3DCB0C7FE46 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CB769EA58F8BB1FD70F8F9633C98239 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E863ED0A813D9AF4DFD73B26CFACF59 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CC7A0BAE2299902F3887551C1289E28 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BD0DF004099DDA6B2B60F0156305E0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CF432A3D87D29919A969399ACB8CF3F /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CFC5B8CB935EA6C4E2A6907C527806D /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F085FFF71A941BBCAE5631D651C757D /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3D0F0E7F63AE08B492E7F4EE66FCF6F1 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C721A10E64145D004D0D291BE860A84 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D21AE8D9DCA462E616CF716EE17BB04 /* Uploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FD0D70F6A1D7B4BE26F355B2EC30FA /* Uploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D24C19D3AE9DD070FDA674F9DCE6DB0 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5199DEB57F329595B833E0FB7D4F6E4 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D24F4BF0DD715BB6B32C25C257D405E /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B619A6CBDF5542A9D3E27F1584F9F2 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D4D4C1C633B8FB707CA815E626C01F7 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77775C9FACA56950603A1CD117BD51B9 /* RCTSinglelineTextInputViewManager.m */; }; - 3D8044EB200C3826B95E0FF921C944A3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B39E24523A15DF8FC0D12504FF58ED26 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D81F2DE2C822EB82B4A96E1E035AF60 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2D225DE62D006600CC76E6A990C20 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DFB0530C4714727B1EC57EB78A95A70 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E39DC85A6AFDB01943BA60B24B6AA39 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 636E7EF9CDB763A990B36F49C9E60930 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 3E40B5C17428C0C6A0DAD6B4EAB25CE0 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 497AF328E0D9BE61F1C0C72D4EB600A0 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E4892CEF1DE7EA6223108B2341DE34F /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF6A2EC14847FEA4CF5E31362397F939 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3E99A7C3461D0B503648BAFD803291F7 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EBBEE48842197562BB6F174A1E801B5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 17678821E8D1C5B61D85D9102F9C6689 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EF1418859355C90FEE17190DC7CE88F /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7796029FCD0AE6B22925E8EFC55AEF2B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F348EE3BAF4A63A4C66B6FBEBCC7E0E /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93C82060D9A21A87C3D87BA54814E1CE /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F3763744C5EF11A5E4B812ABAC10FB0 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F28D48A35744448D47431429E87BB09 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F3C013F93FE94D620FD7F927BAE680B /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D608E8310AEC3D616E26C2CAA52B65 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5ED5D12E526F95C8FDB3774C290568 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F79229D3C4CE6746DB4EA1E469259633 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F64B6C9F7468BA0374C08FD2BF2EB18 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B180C8408892C83AB5579806DABEBEF /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F908B95A4C65D139F7357FF0E0C8E11 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F95FC12AE6FC9F370E94B9824D9251B /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = D64215DB89058F5FAD89ECFA5FDE63EA /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4352CB013C058F4B4885BADC231B0BA9 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAC8B18BFEAC9602492B83EB2F9D34E /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B99187B73DF6EABC4E78A13B2AE63085 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FC13B3A874855890A18DD62D96D0883 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = B40A7A09256952C8EDD740F1075973BC /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FC51EB27252B38991A9C027DD04AEF2 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E824E92108769081C2755AC398F7AE0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FCEC94C53BFAB1D12EE7DE4C423DB30 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1583F9FF29CFDF0BFDE97263F027BD /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD7FBB741A6104164571D26FD06401A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4007276CAA958171DAE6393C11C954C2 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1072AF5B3FD485F4B75CB05D98982F15 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 400E95B58C229933610D044BF259F757 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1A915ACA228E42EF65F4EB255BC6F78 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4036558F40779A250B6C1CC37DCB7CE9 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C1BFE462894F7A3DC3C2C05A8834A52 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40A9AD4C8AA3D703D2BEC753A2B9B275 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74018F1C21EE82B69B5FDDFCFDA721F6 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40BD3591EE01D66FE2D90119F53E4BCF /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA4DEB831339FE8F745DB65211C3DB7E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 40C528A3446819C159D6B16740F6165D /* RNSScreenWindowTraits.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F720FD7E6DE7B1758C66DC316F4F90 /* RNSScreenWindowTraits.m */; }; - 40DA8F27798FAFA89176BC12562ACF88 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D27A09EA203EEA3BEA25615A05C56F64 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40E9F09393A68144D54C3885D559E353 /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B08B8A97C62E9CAC66DE7A0EA5C71D /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 410D915EE7FFE4A3EA255BFF22D77A25 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F76BBE961F9480969E78CD30C63B36A /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 410F42284075DD1107AEDA887C6D3FA9 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D148AF239D8FD412A753D12BBBE7F2B /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41134B9374FDD5F6769C99BE395CA917 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C51A29C795ED28BF6F36FEAB53307E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4164EB494D335F4C40D908AD0EDC5396 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFB2EFAB2A286C8F568F5EB9CA66446 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A6A02CB3757E27D9F555727B77475E /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41B54FC42D9EE09B53E314268F4600F5 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB7BBBA2219AF4F54991FFB2F22027 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41CA1F08286DFAAF48EE5A8D8A7BC8E1 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CA90619A0A3C540C9B47A2A11A2293 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41D0C2CE99501F16977DFDD6F3FD1FAE /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 98403D210AEC4D0F4A1469B26CD0E9A5 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 420050A59101A25F317BDCBB3FE7F60E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD9520D6560D1A3217505347B504E7F7 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4208C3631C424C1D6EDAFC5FA6524CBB /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D39751AB79764FC7F566A7B40EA7802 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4222F4DC3393A16A729C79237B00BE3C /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12E6DFA171967F457EAD75FD00ADC88F /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 42304F0EB4FEAF23B2D9FCEECACCE874 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B898AF1D98CD5E21FBD1E5A9319FF5F6 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4279D9FD841E7DAFDA4F4274C0A79E1C /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8FA6572451AA3D60067E276A20C9AF6 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 427D5A575572995E07796F4E2A4B7A9B /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D848D69E66CA8A3A4857D3A1EF9BE8F /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42897481E77EC219A261BF3D3A845B22 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9799E005AA7D73AAD7A41BC415751D58 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42A3E730DB8AC6609159F72F54090ABF /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42EF7FF46EE4C5C9ADD20A8C67BBA3EC /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 100819CA9AE63E735C4542915F95A0DD /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43010C4E2C0BF5F1934362358CC58A9A /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4304A6B3077D5BD1444B15F43E0CC3C2 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = F990E906D46436268180123E34A1036E /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 431D005DA6980D17C12FA934FB3CD198 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E058A1EACC2A38032EE2158FC7D77D0 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43245C2BB1177AB2A4A591218463C5D2 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E52235B2861B4DC153FD598C6FB6AE /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4334350103D2F411A7401F040A42E0D5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4335C435C9E9C0E4592BF4E2EF13BBE8 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 413CC5236DCF2C15E2FE5B6737535385 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 434B59832E610FC99831C20317BB43C2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEB4A5BF1C7C8CF408D50F4318B8410 /* ReactCommon-dummy.m */; }; - 435070D69B2096AEE11889DEB14B36CB /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 278F6A98B6DD8A1B84F659032151D167 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4374975FA528ACCA58200DC60AF1B5FD /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6115F203F64D1467902F80278F84ACF /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 43A4FCD531FBE0A5784722C435716441 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F6048675D98546EEAA078A4D222ABF /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43FC85C26EED94860940118F3B042B48 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43AC5D47986C1BE1F484F95A7E080281 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4435D7AA2CC2A78C02637BD68B3495F7 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2ECF64FD678D817D0CA64E88D3BE910 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 44428A5AD5441A6799F074B06EC02734 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5D2FA10B50E6CC8605FD573BBE27CA31 /* RCTProfileTrampoline-x86_64.S */; }; - 448D69F80F308A19B500205B346A97A4 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A14A2FD9F5DC7AC7B1DCCD5CE09D34 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A2D55E41FD2A97AA3AE8220B0D458B /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 001D20F3721EC1B428FAA6F27093FC80 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4500BFB21F0BDBE96F320F6777FF2DD1 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5B4FE3A6A3A770566B92D04C6613F2 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4501C3322FFAC7D53879B3458D6CC1A1 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 90565A84B56C447368ADFADB3942E6ED /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4527AEF9608F0D3DB284D8775B262765 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80FA32D61F0A3EF22D6AD1E9DB0701 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4533E8B1E55E7E2A6B7B2E64FE02DCEF /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 278C94D666FA75B4A8115CB80AE9BB10 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4540AF26C5DFD6D82D35ADF065B2EBBC /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F34547C6C0CCDD99BA977C4FF1773A /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45682FB2503A2CBF4602A77BAD7AC8D0 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 456AABAA54713763CF80938777B185B0 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA24D3D02EEC1FA31295417B049792D /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 459022B0D332790C5922687894B2F0FD /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93507EF6D70F1EE9BE00A05FF660E9 /* RCTConvert+Text.m */; }; - 45B36E6C971F7A316A842376DB9214F1 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 97369C228EF8B5C99986F892910F3704 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45B3B91A49FB093C627A65E009586DCC /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01E736EC9632D7830262989C4CD9DFA8 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 45B8935421D2FEC36A5D770B8645C703 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B494A82A2396E267800E70207DF3027F /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4674F73228D19328B11204EB3522EC3E /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8283A1E63A5A22DBF4C73BF83FFE325A /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 469E698DD20947AD1BCB1DBBC4CB9F4E /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB3E9A39B00AB13E43EFEF8C22031E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46DB9A51A4A4F81BFBEA188AAB2E2937 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4709E2FEA36A82A09BF12DAB885FC230 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = A662CC1CD539C07FDC0F72E802586581 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478B88B92AEC7267F64EF926A1B88F02 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6FAA84B063FA2238DC4AF68F1CADC0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BAF1DFCDE772088DF7D56A0D6E08C67 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4793279038B928D566A5345519A0475D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6280F423EB2A6C3D5DA540275297A248 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 479665FA6893EC2643677686781F0507 /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD49D3319B5BB60C9B4FF8EAC3A5666 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47A2D258858D661F3B609FE0DC1E052B /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4806609B2864A747BCC2EF92C413D95A /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 47CF7169E12BC8425FA9488F13A6C93B /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8FA6257F0FCCBD8BE6982F522FB786 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47D0F1002B70503DFA0408C592B7BACA /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8E7E29485BE254A58EA62510D7FE9C /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47DAB7728A3E28B7DCF6043BEBBED244 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 481F8937F76C1A9EAEEDDBBDCADC4542 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BD995A23EEDB8F1C1414109D8172EC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B14666C87E2EF09B76286A2F266F604 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 487454030D25AC8D2472B2397D3E86C1 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F607B058B43E5CE6B7D6763EFC5793 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 487853D3552BA6A7CB8B74DBC007D961 /* RNSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F962AD8E20DBB399E9529543631F10F /* RNSound.m */; }; - 488647D12CC941DF6F577A2A0ECB7EE6 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E44DBD704F87F4A8EAB9AA0D1F9F48 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4891A0164B0C4AC62F78DE5A9D72D3A4 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91274C5B5145F8669D90071A8B12C65F /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 489BD20BB9B555F02E1F2EFA869C3C16 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A39C9F197AD9D374B6BEF1E938F224F /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48AB52C694A14266664BF085FD1FA795 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EC4E5393EFC87DE5AC654EFB27F229 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 48DF594F693D6C12650B6DFED7FEA4BE /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C2A6D616B01C9E02C8BE7457F26735 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4903713737EAB089E75731B4FABB30CF /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 494662FD0D6F6E33E703B750D4A0CD67 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF6F2DCAB649C9D9C5D3C9C9083DA3 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4954C1AF51E383C5494AD9A0A73F0F7F /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889D1940D4960158EFA980CA019C3A93 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4992D5A2AACCAC28445F70E71EED2E7D /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CE06EE125D8D6E50C90FAD42905541A2 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B373CBDA151DD2E1CB627C64FEE8F0 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A805B318F116BD492087B456B8C5EA /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE49D47AE8AB6732CC8492DB2621A464 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0EFD1EC4C1DCFCED7BA364CB6371B5 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 2852971F02F4CE14DCEA3FCC38E005E7 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A144793F9A63196B0EF626A97F3AD0D /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A2CFFB7B3E47DD8AFB9DD10A50F8D12 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4B4055A9F1F063DB1A15F63AE1C897 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E8B7105944DCCA04D4BE0B0C6EF0AE /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A53407C6930663F2AE98D2E98EC1054 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3177924B76A336958BB6C88C091B0C7B /* RCTProfileTrampoline-arm.S */; }; - 4A86D58DE7588EC79B94D23C048EFAAD /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = D734EC65FFE019523193FFAC02D8B011 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A97CF96C4F30BA4CA9A99ADB56FFB52 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 124AF7726E32FB0488BB4BAF12D81D43 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A9C1F2C47A9558330D4DD84E6C8998E /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B34A915652C148CA0B65E9EBDF74B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AA7793DADC0DD9D6A59EBF0A707C3B3 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FAA4C3245E2E55CE4E58A58F79F20E7 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AC004170B8DE727B1F9371C08BFCBD4 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F12FA965E1E205282FB9435B76E661EC /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AC407E00FAD7D2A072A30377E68DFF3 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C8452DF85B9CC852440334B0F24C4532 /* RCTBackedTextInputDelegateAdapter.m */; }; - 4ACEA4F1801182DFDAC1CF7EBEDB56E7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1256AB077755D17ADE423EA654F443 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AE67AF0EECC45F87FC8996272D4CD47 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B23943A8950296402C812354439A75F /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E83E3A0491885A15E982F40BAEA7AA8 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B38DA5AA571593D44A786B26646119F /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7205E1D5E202376B71C254222D18B /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B4FCAE245E528DEF8D5BC0B88090214 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F21833EA996307E1506428266994F5 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BB0ED2CE00B239055336DCAF5026040 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434514A400F517C34B36D8E1A73E9E /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BBC25A811D714395BF6DC7D3E207B40 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE17F1BCCFF89BB5E5084FC6259A93 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BBF5408EC90B7AF2EDFDC84260261D5 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A71AFCB4279E06022598FEF122082890 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4BD775073023FD720348543AF5C69C10 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AB529C524A1BDFA0DFD4D13103C7A615 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4BDCE0549720A9514E8593390F2E7753 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E949F00CF56EC1B52AD9328482179 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4BF3994158BCF940A832A5F0CC600660 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4718870A6855BD44B5A98FF1CB53C5 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C0EA392EAB9428D200CE8EBC1C49167 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E0DBB592D89926C037E6CB0608F9C5 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C11E5B738F5F22A999871B9AE5B3EC2 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E00A6309ED3A3884828635571023A08 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C27193ED2B2C94E408270FE66883077 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 244284323336068E0A39D1CD40D5B806 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C55519C4C118FBB5FD39B672CC655BE /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C630160D1A80129B3245CFA2EF7AEB83 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C56418245F7FDAFFAECD901AACB659F /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C8291B63E400BAC27222BE8429DB469 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFB1660EAFD9C417EC49383A42932F4 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C89CD2C73AD4F979A6C5CFC38644D28 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF708B2D03A4F50527AFD67DFC4C862 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4C9FEAE64D05A46D0448E594457C6A44 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFFDF748F50AB686609EC5987F9E6FA /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CA2F873C29F26963260B933B37240FA /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B479041D03CBE0889ACF9CF705FA63A /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D8715B7E77BD30B534D554A19AE8F2 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D182FF19AEB4EBA5B0DE72C230211FB /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A71628F64E7EB62105DBDA7C75712 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D19C70FADAEB07BABC9FFCCB0E0DC4A /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D31CD0C23265F496387D933A820A2F /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D520160C382DEDA4E80170CE7D644A4 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF468111BC9891BB8A1EC2D91AFA0BF /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D7BBEFBEF3150470B854982DEFAE262 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B9B790B20C31E1178FD757FCBBC379 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D856C5EBB0A2C20E94D0C76409AF906 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F60C0BC658B9858DB3636145C166FE /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA0A919A11A7A37166BC2139B38F72E /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D2E725B15EE89DFC24D6F5765E3A0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DEF0E02A8CD81D3AF4CC3AFFAB13F19 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 739A241F14116826BC893CDA54F3D1B6 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFC6057B6D76B7C4EF5213EEBA0F755 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18FBE6791D07DA917DB0352B0175182C /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4E54B046722F7DA6CD500CF75550E733 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */; }; - 4E72596F5A666661753B5D60023DC945 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FEA2D7DD4F9EE8AB4268EFDB45160CA /* React-RCTBlob-dummy.m */; }; - 4E890462E16FA91FEEF8E29886E8E535 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17DF278B17D1E0B2CBF510E95DA653BB /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4E8CB8F05195519187FADFB25F3703BA /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4E9438118286308EBA41E1694E4766E6 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DEA1978D246E21E36FB35F0923A8B1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA87579D49957C3FE93BF1F386C56C5 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EACC4753FF14CD255F62686E4B43438 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2DB0F3FBDFB1AD4CC4376BC7A304E0E /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4F0EDCEFE8EAFA19E4FD73239A32FE83 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B06DE9660C7CDAB7CB687D3E34A905 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F13F6FDCDACA7475D41795526E32FF0 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A805F07DD8E98D2C32666F6F775238B /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F9B1E5B5A2C118323EE5E180B92A1D9 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 7990548541F36F4F3367B1D7E4216782 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAB394A512180E0C02C5943C0105343 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC227C60C614E40954C39B3D4F1104F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FACB4E8382E3E3D26A086A1FBD1CD76 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2894C664AC9D24DDC577277619309DAD /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB9A4C1E92205C13359A6186D645835 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E06E9EDAD2A1E8210FCE7094861D815 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC445CB0D7E58358C042A665E0171D5 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FCE5ED6C67B57609C6A5AE430F37EA0 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF527636F53ACE55B46472FB323568D /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FE8C7734F08286547AADAD27BE4450A /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13583D50C301970A74D608B9F34FF9C8 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FF3010B8E7C613DAD5F6C448E1AB8E3 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FD302571E88DC0D638F97150C0009BFD /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 502FEDD176317FBAF300F2BB7860BBC0 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 468FF27DED3B67C8EB7A5DFA50C6F526 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 505EF4E64AA8D8B3A643A2FEFB5DB765 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = D74A7BD2D0B6D2D17F86EFE855B58D46 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5087F030E95D05087ED8A592B0E77952 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 536645E84ED4ED56F2E00517FE6D141B /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 508C04C63EE46D9993A5654EEF0FFDAD /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AA342B3240EFEBB928D364720B57C4 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5096E362E57D91391E9CC331D2AC573C /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5D38305A197F268E87E406F71A7DA2 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 50A8A3CD625F24911FC4364FDDDDD4E2 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F125AFF8307528D21544F722BE5D48B /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 50C8DCE054B605E90321CAFC7F744F40 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7D068829CCD4803409200D37EC78F1 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50EF0C624E52AAC5357C710FC176E554 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7B83CA7FE7EB07D352CE852E44D568 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50F8DC115E7EF876293DFBB9F201BC86 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B538BEE8A70D1D42974F2C038D4B3791 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5113FB30A76482E54A7DEEDA77B5CDE0 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B6DC281720AB2B1F283E5BC82601A /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512DF0C0A19AB7E1FBFAD619A517F08A /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D83FC512C6C5D167E95326D702A397BA /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512FB4DC22B9349A5011626CD547EBC5 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 958327EBD063CF2694EE7BB8178A628D /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5139DB00EC7930480BAA4AACE06B02CE /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 516A158D9A8689C79F1566F336D134B2 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0FFC72DBE4D3A217D4BFE5C425FE1F /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517492A9DB1BE570124104ABD1E074FB /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = C347F404019100CC3CF9861AE1F8105B /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F592236D1CF05E181FD7C7F8C98C05 /* RNPanHandler.m */; }; - 5196D1B8FB13A33CD90F9C1962814D52 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 51E9F882B979A930D26C46685C0ABB5E /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C4AAD24C62F06153E791F0427A809 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51F935528D8F1290B119761A0877EC1D /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EDE3EEE993AB385A79E553E5CDAE5B /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 526D64E4FA9DBDE77645A41AA11C849B /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 166765215E3CD63328BA195CBB0AA6CC /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 527C6A235FFFC226B5734631ABF3B203 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52C03E9F08A2E0FA0A2AD4CB7ACB141A /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9CE0073268E70D881B593D557A7AA2 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53461FEDA516C6ECD84EA0FE0AD43D8B /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 53510E6413009DCD9416191320F10886 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = E88A3386A428E73C00B3E54ABEF6B4BC /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53532B4577B25F53B882673F931E1E34 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E28E368B9F605E05D96B9157EAC98E3E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53585143D6EAFF9E4088796B0BFCDA15 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 610F7941F8B3CDCCD6FDB6341FF7A28A /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5358F81DADE23ABDCA1317F5A326EA71 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0069DD0204BA8E03F0D2EDBE3E80DCF4 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 539FBE7933A89B290886EBEE7AB304E1 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E8CEA50F73B7AEF97AD26AF4956F15 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53BF28E0D7B180B301C3DD5A76DB18D4 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF5266C2DD4A81C9352BB056F7970E8 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53E56388A8BE048355BA858806BDB24F /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 74551B784505A6FA9C0D0AC04BD3A2C5 /* bufferevent.c */; }; - 53E5AB8CE488972464F73BF2FCB718DA /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D364B68D08F784A9EFE3505489DB45B2 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 53F06B1527320C788690D0AC25F99259 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A23FBAC585078DF037080F8B11DD8BF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 540533D9372C0307234E4469ADA97985 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5416013AA610DA4FBFD26125C0191F30 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 023931DE156E179D2AFF6BF42B90EEDF /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 541788C2F8289705936006DD61EE156B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED3B2151A66DF65CB4A03C8B0B96130 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3DC035F4BD910382B1C5722D4574C4 /* RNCSafeAreaProvider.m */; }; - 5424B93286AD384E7E2E134B1802C950 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = BA56E5D6DB8F6894D7BB0B1DC68F1746 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 545E6C6B5ECE9CBCD188A58A5B661BD7 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF344F8BF0C107C69163296F07774D8 /* React-RCTSettings-dummy.m */; }; - 5468B18F248F48CC7444DAB53E55683B /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 40795F4ADE71EC85D96D6B31ED24DB7D /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 548BE340AB48B4B6EDE297BB58A06C4F /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F051DBD6BF88D1F6A965613D82FDEDA /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 548C82B9157623D16051E9DE7DB37512 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 463A0625EF5539121BB4B7BA5D74B9FF /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A4570F23B22804CBB496DB56C64154 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 039AE7D629F4EDF88A50E67C1344340C /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54C07806B8D1F67D62ED5736E02F6F80 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB50DD6D712A40FAA526A8832CF1725 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 54C5E1C510797ED21C29959A0C7CE13E /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54F18C70BDDC854DED682D8528D90BCD /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4682AEEDECF3D46B959B1CD9A3C318 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE719AD41FF7D09A301EB6115E4B43F /* RNGestureHandler-dummy.m */; }; - 551B8EB703468E5E5B6014EC1597E6D2 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B524FF297E72E0EB9BC0AA57C5B4B4C5 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 552567A5283EC43969C1B1525CAF7FBA /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D7075E5E2E8C0A3FB3C53A004D5FA05E /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 555F8411F8AAF4754313EA6E0C0BB92B /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC345DF21D6751E98BF14C5191DF83B8 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 558B378A9D9038E0F1D897815C66DDB9 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C840741219E01A76C26374B681E57C3 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5598554287956A4B29C54CA40A746DEB /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDD39377A56E5B46730E8998D2B38DF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A5376C1B92181AF5F71AC9B31C6A29 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55AB5F71A12976A82E9DDAB37DD0013B /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D91CB8098B67E74DDA6E1FB8A6217EB /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 55BC848F93B6F3BC0BFD16932E22A72E /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = E285B902B4C6ECAB00BA27BCB7CEDDCF /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55D1CAC8587978CF62B9FCA3AD0A7611 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408F1DB02A0AA05FA89128C31892A0C /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55FE0D446BC7879B8BBDF73FB28E9860 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2C408CD0DD40BB60C335CC6A86BFBC /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 560BFB3C0A7957320BA108CA4DB6EBAF /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = CC948F25A85602DCD1A7E4CC0B1F0EBC /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 560D3B2CD9BEE08F0F96F22AD00FDAAD /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B1084B40FC15F65A8AF29E8C5B703 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 560E478C7DAD2874D343E24856928711 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56193C8414EB5A60A894D5DD276CD93C /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E99BB031A2304421F594AEDCB6909A9 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5647405CD8A3A9EB44168DBB68621DE2 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A528BD862DBA9DB2718D18CCAD980CB1 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56577BEAFB5A8FA559228731BCD0D032 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22A2F0ADD667A8463B45A21C881DC3 /* React-jsiexecutor-dummy.m */; }; - 5691A61C0A79F05951CED0E65AE85E07 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81F054842B32747CDF7EC5B4899D516F /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 56BB11B2755061EC6535FF2A130B1EE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49682D90218D3CAFCEBBF65F938A4EE0 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF98A242258EDCF733E50F6AD79147D /* RNRootViewGestureRecognizer.m */; }; - 571A3C2800268655212CD8A153979F3E /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF3530FDA5BBEF430BC2F9865CB4D1CB /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 5720D6E424FF95E01467A4E7493010ED /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7085A217525AEABB13236B72D32268 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57574E7E7CD80D5008C7782B6E7C82D4 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C9DB4376E57B2A4FC33AFEB4AD8548D /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 57651CF500AB69DB15AA16958F433B29 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A18B432DBC48D1FA7AE8E139B4459CC /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6318B540C032DEE88E041320984B139F /* PTChannel.m */; }; - 577CF74AD7EE9638C8E7EE324967DF12 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D6C5AD6765484A6E978DFF23D181E4 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 577D206A262ADDAB758366F598553E1D /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F143A1D7764D57EE6E586A375AFCAD8 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5781CCEE82EB8B63E2C776F1C640AF34 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D670691923A7E0A0EE8254B8100EEE /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5801CE756C7AC67D3B6CF71364450E8E /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C955913DC0661C1D89DC0F5F6640E2DE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580C40C0B2394DCD500DD170AEF464B6 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEBC5756DC77FA3B0EAC683F839FF02D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 581196294395BFA2F0A199BCBA6EB208 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D4D96042AA9D396188A0CDCE9822F7 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5817DDB336D2D4963E6854FB0B44C71B /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B18C52A43F53D95036703A46040CD637 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 581D5C6D857C3D9F6D9BCF9EE02CD188 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B35E1DF1FF22E5A206C8814673B49 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583F288E3265CD4F365A1F93148C9EDC /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F7F7DD5AC6BC1BDB3BB16EDC5198AFC /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5853DA15E38CAAC98718ACF5DDE42D38 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F833468CF0962230B33A1A98CE478C8 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58543B052B0EA81A6E5F640F026F02B3 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E47AADB49E2969E4B6DFD72A845DA74 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589262BFDD33A58E43FEDDEDE807D8E9 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7BD9B0C45D1C66603BE103478FA417 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58A6094B543116497A6D1CD5841155CD /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47197A1AAA0CF0D7B22F3ADF2917F800 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58BDE79580F072338DC062454955E594 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1EBA02D29105DC27E29EA23FFE5967 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58D8C8EC6BF584CC5816275396CA0EE3 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BF3F3CB7B4E98A8CC239BBF3B78409 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 590209CE4EC5722D470F0EF966BE27D3 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1DA8B3732623A4D1637F153454BE20 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 593481BE39D1A2EF37D0F5C3495DB1B8 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84F4510539055CB95E56FBDC763219 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 595F5515FF167E9C5B87D347C002291C /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8EEF2CB96767D51649A68398181E23 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5963371A7C74C388551B264F1A023119 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 596BF884A358433F0F33873E30E5F198 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7B3CDD01C3FB63FB8F283AF9B5C7 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B53473E1F6899EF2EC14C6F0ABF920 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 63462335D68E71CE4F23FC49EBF908A9 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59C44C33BBF8CA68D2C377CEC594E2C2 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F6117E7CE991E89721B0F79289DDFC /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59CD6737F35471E07FED82B5FC2A0BBB /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FFFB9DF9F4DBF89A4C23C10661FC7B /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 59D96C7454F03679C2944B34605C2360 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D73E08A1024DB085F441C030BC2021C /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F58BF9387439E53002A23DB9DE8CA8 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB738BEC3119912B5241D51D3BD34D0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F82B4954E1061EC27632467967EC40 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694C10A80529882CB01503D51F57BD41 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5A0425A9A3985E7E3FD60A575F136693 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B87D5B524A46114E157887AA8116DE /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5A96AA02C9A90A4CA382A3B4F217E85B /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7DBB91DA07446109BFFE2605C96060 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C1359D7D875B44E7CF5F2281160F4 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5AE61F9FC57DDDC07EA764ECFE08C2CD /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A329FA458DA9929C775B3AF8525C3E5 /* RCTBaseTextViewManager.m */; }; - 5B30E28CE342B6241E26BF6CB9C1C64F /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E8801BE83668BAA657EE3CC91CC682 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3A656A2627930A124546B498BB7423 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5B716E8EECBC9441D02A11E49B03B377 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69ED4632DAA40A6870550843D525D887 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B77F97227B9724DA0BDC64F14A4D1F6 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3F7E448EC607E288DAA4610391FA42 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B870BA3FC5070486D5E6E1F20404436 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E96152BFE80CC4D17212C73B577A1E7 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9372DB7033E5A1068D646C532AB78A /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E1C2559A5BF87F350DA10110613364 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B94AD52B2E4117E7F980BF03F321898 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 861044E0F723D0C83103CD21A19CE225 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9602D9206A4F0EF6F9CEC6694E89EA /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E41F3DA37DD4BF0C96EDDD94052246 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BAAB809A460DA832D837C6AA2488F5E /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B23F370069301FF55814CAC881D12A5 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E389890B28E568101A2243F3F8B9FA8 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5C1DB0ABECFAE23AD0A57E29DE8DC910 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C1F2965703CDC0ED4D55D26AAC6EC8A /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BA19783C0D6BA9DA388AE581EFA8349 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5C7DD1522A230199AB7EB769DB6709D7 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A319434D6D8B3CE21F6B5463960E0E99 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C8A0C56A85BE7A8B5E14C80E8C1A3D1 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F8696B0B456E0580AFDF83FCF58170 /* Yoga-dummy.m */; }; - 5C8B3C9DC406231719EA1C707D4E4AE7 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F0FD58C2D2FCD8D06788BE47DE4B2C /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C8FF814D64431E53C5DE08166953349 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4F91488724CF5711C02F42D7DBF88B /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5CCE27EF70A1EC941E407CB86BFA4F62 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = B77A15A61A8C50C9CB7FCA084A53B325 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BF4161DA62BFD3FC59C6536E5160718 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5CDE8B776B0100A5A39D9F999AE84B74 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0227E15A73C3AFBE5B02B54B281F5E /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D0EB3BC96267A61C64BE549CD86D137 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E71AAE54A30038A5E29FC5724DEFE5F /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D12029012324F6D7EA53285941E31AA /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F1301584E0AE32C0EBD24F398A0D5 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33CC91F7E68895E508504D3C95D2A0 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A05C7FC9300F94160D614FA7CCF250 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D4B3D9BCE1E4A0DDC8B3D4E6EA67499 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7898976C55FED104A1F41769CB5805F5 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D4E874A093F62DCBA11E41A2DBD94DD /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A842EF51BDBCA4661FA11CF13F4E8E /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D72F0364B45C0E0FE104337E22393FD /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DE3312BEF5DB24EC7938A9CD8C401 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D783A28D42B69ED3918F66F820C8701 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1071252E38179AC58994676D7F2E6EBE /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 460FBF50587F44609745057EDBD8E7D6 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DAA1C098259F2C2F0FF18A367A12A24 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF3277E2EFFDA839C18AD3C19CE843F /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3FE9CEFC67E758A6E76D03174D4FA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF3AC3040E1A3768C076CDA401D1C9D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED591977873DDD315D87622B317EC01 /* GCDAsyncUdpSocket.m */; }; - 5E281F4C31D41238783357000E1A2FB4 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C10B7AFCE88C78531B9BEB0FD7A049 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E5676637863017A68D5FE7E761109D1 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB07D62BBEEBEE867D32CE1BF1C849A7 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5E7217F86F1FF0A70819898C038CA1FB /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E7F39F76D29D683C9695F9550D9ECA1 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B70FEA55F4F5E3689A95B30999735EFB /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5E8B0ED1727A31B1630CBC902144F4CF /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82B0C32505C9D7E7A9D4223433709C7A /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5EA3794ED1E9F327C8ECFA64C7BB4FDD /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6617D7A49DFC407B3C8F345FBC92FBD /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5EF84B9C5DB8822355614B3FD4E31076 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405DB7227BEA3EAE06BB6C0C581E2C65 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F37EB374A5A633B82689F44CB612063 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6E38BE270EBA01855C659D84B2B932 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F4B6212B18C9A0F7609B867D9ACC8A9 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8DE6254B2D54A1F5BCE86B8854EAD8 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F5DAF651BD75ED44DB15B21D5E4E2CB /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1555112A2702638F412E0E8BC7360DE3 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F637B0D4EAC994E79AE38FAC184E281 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FB4E2F5A090CFE5F0AFB7503E15E7F /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F645D597DC661F2EC812E59B765C491 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7063FA95C884B51B41710206F1F864DE /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F83FD40A6BD496A59E6F28E5853AB8E /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 207394649359263C8AB2435691B2794A /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F88C22D1974021B30131D5CA42B0282 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0EB8C9DAF78F0BAE340499D45B3030B /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F9CDF60EE2A3587410616092DCF8875 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 965FB28B3DF50EBE280766D151BFD98D /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA78D1215DCA99A7576AB8C5B9E36AC /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA8106E52E662AFEA7C07C8C500511B /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA8CD1171E5477FD570B4EACB6A6761 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FFA1AE0471B0ECB5A6DB1E292BB5FAD /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B582B06CFD8D8D6681B05787C57F60 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6066643A038344C34F061FB98662CF0F /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1078245AED5DFF6157868702278C5463 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6073AE4C72DFC75591C7A78330049ED9 /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F534CFFE12090FDBEF218842413134 /* Flipper-Folly-dummy.m */; }; - 609C2D45A998B36FAD6DB1AECD84990A /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A4E39C74D3DD3FF9ED7F096D10BFBA /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADACCC923AC1E1AEE2A6A6BEF94E08 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A4F396A6669DF2B2606F3EDC44B33D /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7E4201F8D4E7A7831824ACEA1A9F54 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D2C5316CCB3862D8065CF3CFF48296 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 333B048382EFF3E05714C44737E8FECE /* YGLayout.m */; }; - 61021498EB15FD2D1795D79FF94DFAC2 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D939C26F31BAB4D9EFDE4D4D37E01D /* BridgeNativeModulePerfLogger.cpp */; }; - 613E0C307DBDBF8E0BEF962FA3AA90AA /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 863C57C4B51FEE3F78CDE65668DE005F /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 613FA6563334594012CB0D496A4DA29A /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C14D23C3F31C56389256B567168050 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6185C3382B0B6FDB3E78942413149453 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 090E6462B15EFA2C3D0B3A2685040FC5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 618DA388F7DF775E9FE06ACF601F783B /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = F402764687E3A48E0AC6E10E700C226B /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618E7AEF02E573C84CE04A368EAFC7F7 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D44F9958B8C17BD0ABE418BE3A74C18B /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D53B5AEE7DC4CEE6614EE9B4F76BF34 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 61B2F52BA9D92E6D607B1DA92315FBC9 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AA3D66FE1B5A5DAC5E8244E4E9DC0D /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CC3C1F9924439C23205A3C506712CE /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23AA0F5D35CF155346A45FDB74934C03 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 62088132D71B465BC1603AE4E27CE35A /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C00C9B89B73381E0FE14920D40E13C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623583B45134AF872867A282FE16E9EE /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 8566F9D6F6F3CE89BCB406146CA3A7FD /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6251F505F5BEDBC996248A04A8D84464 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E49AF705399890E10FD1E0B997F47B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 625965B03111456A02D7718EBA22E071 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626CBF8A008A171CB78C7D99137BAE7D /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4C77BED77C642CED51AD321A61944D /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62754DEA8DBC29FE834A2BB9752A5D05 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D639EB49DF224BD48480088ECD9FA2 /* RNSScreen.m */; }; - 62C657F4994B7457EB2D3EE6A2FD8458 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFCA4305D3BE9A2459D532C3F0B4DCEE /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 631E3CF04890682C482C63D81F4A7FFF /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 748E30D42871A455229C408C89397788 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63320C49A9BADC104823F217A0EB05A6 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0080A3B69398672079012931FA1498BE /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 343ACBFF51516FD5F147F1A62DB55535 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63A2C343EAC50EC05BDAE164F0FDE229 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF920942105D59CBDF8AC26AF11EE81 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63A79FE5DD2A472EBCF1C6B21E4B47E4 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE25E56F5B03E9A5B3A73BF4AECA78BA /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63C01AE793F44DDBDA5AF03A552E5C59 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C0390E0D9A5212FCF001871676E7A4 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63FFC511C02B0DF7F205A007D3DD26BC /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F7F6B23E502BA01C6C8225A8DAC582 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6404FC7DE17D16CFDC647579CCFBCA00 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7879BF85A2370D7D2345CC4DDA98C145 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6417F31C7750AC958DC4376BCE686432 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DD2E19BF23A2B7E19B50E45088D00A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 642D1D390ABA1B5B8C035955C3935202 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9F5DD897F0D44D4A35154E41534594 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64524D7891D69697E0A857C094FF2F3D /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0D3CC3849D05AC4CC30DA5E4E76707 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 646CC9B73D01112B3475E67EE2898FFA /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 7458F397BE6FE5D095086B8666002063 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64744FA5970B2E16D6D0E104897FBB41 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = D1093D96BEEEF431374C1ECD4C8D1E1C /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B3CBA4524822F2DC8D6CA4DF10A501 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E484DE664FD405812B02B80DE8473C /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6503D267FCFC27223CCEEF3B949CE835 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22A580310C9FAE568A064357EC663FB9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 65041CC810044016DF4FB9CD6BCC4F87 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = AF146905C85E80752BD1601E84458DA6 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6510F8AA7D042CB8F29710B0E47A781E /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E263CA6117FC022CD15C9C4848A3B54 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 655C3A0EDDDA94502442730C34EE69D4 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 659D6D4B5839D464A9368EED9434B14D /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0234C21F1ED1900495394037B0A334 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65AA916FC0C53752E490537C95E96F25 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 762D2BB55BB4E8ECE50F1F50C0812126 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65C99BD03EB225D7BDFD7DBB12922390 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D9349603033D89D780C72556E03CEA /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9835B0B1DD5445809B505BC07ECDA991 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65DD451974390EAE8F1F19A9BC5D0B5F /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A0CF04756A50743B89A7AD22B35563 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6619FB8E8AB82B7759B46795BDC3962A /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3CA4C29B5C71E97EAEF43F661C17BA /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66335F1CADB6E8E4C87B01FC702BC8A5 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 84901BEDBB7816A4B61B07A601AF4343 /* evutil_time.c */; }; - 66690BBD1F5E49872A17D0ACDE2B5D1B /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C17138B6C6474BF2C64F8968E845A8B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 66889F1A4DD1087B1FA08A072FE86134 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B64F9FB54A719D80FCA75E09904BEF7C /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D09C076F7839F27BE48A2A65AC9624 /* RNSound-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EAE6D87C9E3D828FFC281A9FB51751 /* RNSound-dummy.m */; }; - 66D877430763F132595BA5ED016E90B5 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7DAB6C523370F958F58A5C659811BB /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 670DAC0D0FD64132063A55686B8F525F /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4233F004D8FF5DFE443AA79A462968 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6715109104A78B7AD1F6126D232A9ACB /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF18BEC10855F4ED5279AD3CF5A4111 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67227AD68146B44BA26C14A52DED79AB /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F037B7DC082451C85B050990F4270C5E /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67515027FC71993CF0151CB6043D43CF /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689EF50BA35FB0724569378C2E0A1729 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 675BD515902273929456086138A39A7B /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4599AA1B2B24C6FB9DCA34C2C4FACE /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6767F6A7564B487A0200CE4B8346C093 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE39ADA806130445D5EA9AABEE9FBF52 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 67771757A742DE2AEC268A9E9A56C4AC /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A25187A779AB5D3E08BFE564BBA0E23 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 678C62B25791BF29046B72CD72B83EC1 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EDAAEB39B89DC09D2D35D420CBE23615 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 678C818CF61B09A112049B289A4961CC /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C48C67B4C4F6D82B4DA17A10FA244 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6791B08A9026857D620B4B2834444B7D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 959B09C304EA4A905C9C966BAA013B29 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 67976ED4BC0B2386E91691AAD50A9D63 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67A4A9E1452B773ABCFF9E178379010D /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FA5FDD1150F80C3A96A4C62B51A78E /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67C2B751638896F87F4127E2993919C1 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 806CFD14CD66757D532F3AADEB04AEE2 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67D4842FCA680F200D924D576911E05E /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAD44CB1162630346828ED67E3B9563 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67DDAE88C98CBA4568BF67E7E6D2A7ED /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 11238CAF93CA6B458918C476B16EC9D1 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67E9046887D7066A96EAB9DAED8DEA1B /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4A6EBE1FAE6A0D748B7D340F859633 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 67EA33BD65812DA57AA621082801EC17 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07672549CC52AE7CE770E8AA3D33746D /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 68002B140644AEA591393A561FBD087A /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E1AF399710B012BEEA86F4D62A64E5 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6815932320E73C1260483E75ED4DFD80 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 490A3291779D204766761E2636D37C08 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 682E83AAC5AB02E73B221F222F15F435 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9E0AD3831F8EC1271DC1EF378FA2F1 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6831DD5B20F59C8EF254723423180F92 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD06B49376D0D11C484A97D78A05B55 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683AB9316607DD4683BC3A03F0AA9CDB /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2C3E6352465D6BFC90D36F55A9BC7 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683F6E14C13BA7B5A3FA21142EC9D2DF /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BF4C462114E425320B025587E34F91 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 684ACD2414ECA4952331C6ECC2E9AC1F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0DB550A169BD0AABA0FFDAFC4EBC8C6 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6859AE25B9AE660AB766B2FCCC7E1A40 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = C94EA59E573031E41549A2EC098AAF18 /* event.c */; }; - 6859E792BF1E82357744520F3C0774C1 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = D950471C76DB1B6A05572F059FD2C7F2 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 686FD10861F0AE810C3019AB82AE2A0E /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF815308F027A9D85182CB728FB49AF /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6875EE62DF07D5BEE458C65A72551032 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 688D4235A080D4054D5B9FCCE4AA21EA /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21F56787EC8FC86F0D709BC3B6E791 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6899A883A27C31C34A2C7E5EABB3F1B6 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC8E9D135E8B19CC9AE62C8417599D4 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 689ECF7EFFEC9539DC6EFF35CC3B7EA8 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F97BDBADEDB08D0CD901AC4308FA29A /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68CE8022A9B5CBFDE470BC04891A50A3 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68DBD4AF4A2B6BC1511558ADDCB1FD83 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AA66A72BB1FA6730FEC5B708E4910 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68DED7885F2B14958D73E7E7F7ED74C3 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2675804FFF6666B5C06AACD4FB5EC9AD /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 6911B2566D1E29AA8E1E9D670B478AA8 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6925CBFDD062ED7A9390EFDD0647BF96 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CB5E2CC4EEB8D454938FDDCF8F4534 /* bufferevent_sock.c */; }; - 69339EE05DF3028CD886A8010EFB8152 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D29880B2F0BEA46CCD0E8AC801F6A5E3 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 698C490324B1F3F8E4C870E1E4612B8F /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63BD0191677E7EFDEEB3EA5A58071B92 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 698DB801585504EF086B74271159D8BE /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEFE733B947CC07895815AE43D23205 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69BFF26F3579E32C27CD800E9DF68D2A /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 758ACE03904649087B07FD4E53C3EB97 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6A107CE4F7992F479F7D41151808E07F /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3520EA9B0EB7C75D394A4D1E4EC73 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6A3796EC83B405AA8D7F344B8036F09D /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A40F0C156D8760EA0DC9F4E2A038CCF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B051F4B5B668BCC3AAB2C742C69458B6 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A9C232098F3B362678293B3DBA8548F /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6AA03FE06352ADD2DB83F9FB7A526899 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA9E115281E34E39A609A88B050BEDE /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AA5FCF85CF084C45AFD68403CCC943A /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFF911405BAAD216C3ED914C8AA0DA /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AAC8B358F34BCC8D6B7D78329D79589 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6F28100485590C5472E05F7C6B2DB /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AD1537E0BDDC8F738F27DEF42251690 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = A40205FC5DAF460D1555EFF2168A50A5 /* poll.c */; }; - 6AD7487757BF6F99AC2689353D0BC79D /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5575C08FDF9E7C8E8E61EFD9AD21A34B /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B3038682E5EBA44C7A69A102A0C6746 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAFE269F43895BEECC1DE8776E5566 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6B30A8EC64D7F745B927929CC987D382 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D3E9C70299CCCB285DA5A4D57E94C0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B4F5ED07CB8D7C4C796720F3FDF84FA /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FDA11B031E280F1B2C859430748E43 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B620B398151131DD3127A2CC1A25E27 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CB7368AD642CECE9F25191DBD9F848 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B9CBAB8AD37C37F931E4ABB3BAA7222 /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9701CD8B20ABD0B6E7BD0F38876E522D /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6B9D3EBCB283E23E952D7D724DA4C9E7 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CCFA53E2429B053FFF182CAAEA95D3 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB03ACDCB577DF7C32B635CBD71CA56 /* UIViewController+RNScreens.m in Sources */ = {isa = PBXBuildFile; fileRef = 21049F85A0376DF4BC42635B02E86625 /* UIViewController+RNScreens.m */; }; - 6BBAA4453C2457A29F01BACA056A484E /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 0406AED3EF517A85467EEA76E4830215 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC1037D90C5F65D1D6335A70460A09A /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9A8F15F553EDF43432DF7D8B7A88C2 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BF7DB4E854B85D7CCE61CF916F2938A /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6F6EA5CD778A4781FB3D198F6AD5D30 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */; }; - 6C1B10E9BC29EC3F3E76E14A56874070 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 706EDDD2EF4666A1819943D2369CF654 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6C2C538EF50FE10072DBB4AD5A3DEA1C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = F69F78C49A046622FBB7EF1319FF6271 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C3C41502A58D1EAB6A17EE593C2E826 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A44D0D17BA1E313CA74B03DB19AC98F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C645AAC4B84930C1C28389B126806F2 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E628F79145BEF78AE1A9AAEAEA9B4A7 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C72533565F9F266790954EDED8C6DA4 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24B29CF1E2FD8262A240DC53472DC8 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8996AA93718F6F8979ACEE5E92CAF1 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C214B8D3FA5244F701131E88F307850 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C90C533C411C819547C9693D9FC7FEE /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C84B0227E27C0732FBB177EBD7B8105 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9BCE7B044DFF257B2E45CD13C83490 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ED3D3C5FBCAC752233D65D8CC5C8D45 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6CB11E6191BE75C04C802347952F9916 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59B0F22AA675448C3C81F6898267FDFE /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6CD314471E7C0C0DCECF9B6E5EE6DD6A /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = B34DDBEB8E2A72E3E933CA7FCD419963 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D12AFF6A7C8B2B4052CA5DC05FB4A6D /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 477CF87B8F45F6961FEAFE00915DF132 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D3F036CE7AC83FB44700F4CCDE8D617 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D9823823394FA2CB510AFB50DB4DFE6F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DE07F74679E3AC3AAEED4229AD335F3 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FB3829703ABB34103D3FABA89F1AF6 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DE1BE54CED2B9B7C58E6E529AED7B7F /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E28F084A1410C08F80D97DAA769B85 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E0AE21EF09B40A9663BBBB03900567E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E74FC23869D125D7577CB7EC2561E27 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3F642AFCD8F966758D909C92C00D66 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 845292F3BDDD255B6D20E1F188BE5AAE /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6E5FDDC033DB7AB946AAC9B1D6B3BDBE /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF32E472F0A02F2DF444DC71FDC358C3 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6E67DB66D90B4F1AEFEB6054FCDC6DB4 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D2E61CBDA4B5B3C05E5B48617E87F /* fmt-dummy.m */; }; - 6EA7454BEFE0760DA7993D9063B4FA12 /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D2007D8F77EA6EB55A4E94CF20B7B12 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA6065D440E7989D080B7CCEB860073 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EF4CFF10D08181389F0586B5F27FF8B /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED31E2D33BFA0F0CAE597A9B3FA09DD1 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EFA5D48BBF8EAD722755C73B6F8D119 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0CA48A334DBAE7209A362102D020C /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1B0AF5D45C7D6CB1309DD447923C8F /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D899DEB17DA96E9F4ADCDD0938C26562 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0651B056FC760A403006F793B0E4C8CE /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6F5A2F5DFF198E3C8E058FD274CAE1C5 /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC9A15CE5DF71950B278AD4A46F01596 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6F763E3BB1B9ACC215BFD0264D1EC9BA /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E4A3526C2ABD58547AFDCFB72E6733 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FB8C82D36CBF253D16043C5205F643B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCE5E8A6769DB6C502C3A73B0BF632D /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FBEC85A0B3CE84FA6EF46F2A6AC1F08 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910E88661A106D3DC40F557001EDD9F /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6FF6431EA9CEBF1AE59AC9C9CEB43D5F /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7003720DBB1ACB2C5848AF8CC33BC492 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DA7D9016EF40B14DA1EF5F3A8E36B0 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 701B266DE41C4DDF7B92176B0D63059A /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C64B98EB1C60BAF911E1A7D56FAE7014 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7051CF76DF952A788AED02FAD6556B99 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 141C21C4F6F654A50F5863C9A1BCA767 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7051E6EBB3648FC1A0C78262357FF0D9 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6185C1E47CDAC547C34864A36E707546 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7070EDC76095AA06E04A931E7737C796 /* Uploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F8F2704281B997DFB6B9B6AACD5275 /* Uploader.m */; }; - 7086F94D984B6BCFF8268A8C4EBA91D7 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EFA3ABB77ADE780BBB0CB7E791921F /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70A8F163C320E2A1BAFA5305220F9726 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FACFBECC1DE749B6343FC53AF6D209DA /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70D7DFBA249E868D89583F84F52CACA1 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDDDF5391FC67075A091C69A7989A85 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7117BD6C3B9B5E5A41F7FC2D0E67427B /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FA298764D7B5E58F90898AAAB1321E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 713E943F2B5A662B5AE8F0113F1FC177 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F274697C93E62D83F265FB45477CD /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7171A35AFE137BD37D25AA85315D76CF /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DC540D25FD1252159C4648F1B3F9B0A /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 717B521A305A6BA6142EB26B312BE1DD /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A4F30351691FECD6D14FBC2A381BCD /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71EB69B7F1EF53F1826FE8B467995A8A /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 958E51FEBD04D1E19D9FF4D6E74DBD95 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 720A40A890BD9ECF1145C35A498BBEE5 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D6CE4FA2371B783A24A6D170A1F0A /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 720C6FED7064F5B2CA7DFABC3737EEE0 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E668B49F2B1469C788E5F401AA1E97 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72727DE75100190813BA537FC5EBC58B /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DE74B85F915F73CEA61E2588EE235516 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72A0E8FDFE35A40DED03137BBD91453D /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F85441076215438C688EF422623C79 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72CB299F705867BDA62014D304DA0DC4 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0BD5C62B585473E46A133282644A64 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730F2CA340A8057976951AD021842BE5 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FADE3C903A7E7F1489DC013F50F20D3 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7337C593EAFBF8CE2326A7F45C58DFC3 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC3B113381E904448C88D8A5902A30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734530C3D3B6CE3CAB7BE35B0B4E47CE /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CC00A49C089118FEF3E74D6A261CDDDD /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73737B97BAFE23D020F38A755E4F7FD4 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC778ADADC4E6449FAF55B6F6BA4223 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73C8401430D6D114E570040E7828CC58 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A584B7C1F82497FEFC2109EB8B472F1 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73D0A6F01221DCD58EC07E10016085BD /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B437382778AB8AA5F1C2865FB3A6B1 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73EE774D71412A7F389AAE6FD4ACC475 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 016446B10A5C7FB2CC9112270A68115F /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 740E1280F413A90104750A85755E384C /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74625B4FFF7B0A7992B31A5B4688B9FC /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA7563F180DB9F920136C354CADF783 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74B4985B5FE3E81FDE0E9874AF01ABC8 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A27656737BC45D954DEDF2DE634BCBB5 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A996B7E127268B2F016F352FF250D32 /* RNForceTouchHandler.m */; }; - 74C05E7D1FD63DB89D76834540C77BDE /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DACE4D331C1E6741C0E56F0792AFE5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74C1082C06D4E50E73BB9053748AC20A /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EDD1ACC1963906C39CCA9EE83861318 /* RCTTextAttributes.m */; }; - 74C7212BC2C91FB3B45AFD40A61DF51C /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F38A27D1E66BEC1B9643C0E12E5C4BE /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7534F3F041C0CCAD5DE4A3B4FB939B1A /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 22860DDBE4C6E12CD6C08067BF9A19B5 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7559ECFEAEEA97ADB467BC764927DE43 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2B6F4D6F5F9BCBC6815FCC124E3508 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 755E368E35E749C480F7D7B5886885FF /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE9DB9E7903BCFA51586A25FD6A74B1 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75971DA33ED0466039DD755313F9069B /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD951DA37390811D4CFB130B8BC780C7 /* RCTVirtualTextShadowView.m */; }; - 759B7CD4ACC6EC33D9E17985CAC68E42 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75CCAD8AFD2D6C6F3A7D01353678CEC3 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF3365750B28E5303A9713B438F442A /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75E345B311E8D451ECE7E8725538B999 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = A384C645ACE3D1B860E2AFD189E08ED1 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75F8E71ADF5DE3991698828312539CC1 /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE4F8CF26E044E4032D85CD05574EEC /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7617CA6091895F1457866CE46154A1E0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F14790EB365EDD3A118597FA366892 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76212F2350FEAF2C477BFB4A353EDB36 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B245661A8374CFDAD3E85B006EBC1E65 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 762CCDAC9B05ED3F8D4AB612FC7AC683 /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79E76AD7BF23CC1516063BA0DBEBAA4C /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = F35D7F0C1D3D6A263A2E72A5A7E487FB /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 765EB4D01244228FCF05E91099ED5754 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F1E447E064E207A297DF9704C3908 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D105260F86EDBB85F565FFED1FA0CDF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76769814FC63607C05019371428ECFD8 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1C1235902A1DE3DA43779A33B13735 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7697EE20D6DF421D9FF34346BB9FF22D /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B1FA3C78EFCB90DEBBB99F8BD59249 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 769A76BE4E0A895769DF5DF863A909FB /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC983533D93206237E17DD0A730445A /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76A1CE627664A84423DFBDEAF00FEA99 /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7734C145A8433DFD2C5F26CC4AE6FF71 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 76B8FE06755E09BB078510C09140D85F /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA942BF4C323C1EC0D603AF8B66862E9 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 76B99D30136CC04801028ECD9C5ADC5C /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27831EA433EC7BAFDFF8C6F126103923 /* RCTMultilineTextInputView.m */; }; - 76C519EBA026F3F3135BC3C4B163DEA6 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF91021FC1940466142D9D1163CBDF84 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76C8D07965D7F1CE68667954037E0547 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DE5C1EE87669FF26F068AEAB57CC07 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76DA115BD46FD88DDEBA0E95BA24DCEA /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B654B0502E64D8D388E089653828E38 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F184D229D829C6E7552F72ED1D44116 /* RCTView+SafeAreaCompat.m */; }; - 76E3C347080045226FD1CDADAF928A5C /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76FC345D3ECD7FD8957A1983AE15FA32 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A72A66152E8DD2210B61F2B4C7A780 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772D3F2D85E65106BB58795A24EBC25D /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C691CB90FBC181EB582C709A3C557BD1 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 778E9B554D8B105704D15FC2FCAEB895 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A7A9527213421D4D056A41BCFEADAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77975773A8D1E3AA9963FDC0A87156AE /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 14819AE9C08ED24BA27D9A2A91153365 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77986D7CE15C5FD04C9B8FB41CD4AF5C /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 628E921912621D5DE7133C3EC8DECAA0 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B521AF8546C6A3AB57B072DA1C030A /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C21131CE83FF0002866082B5E0DC7411 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F830A4ADEA38457BC5427E37E72178 /* Pods-PocketTorah-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 973970D34D7DB6437D971771A1373226 /* Pods-PocketTorah-dummy.m */; }; - 7824723B857C62AA9C9707BB00FFDBCB /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 782FA8EF1A7451825FB758FFBD9DB89E /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7837EDA4A5C5EF4BB7B276D2A7703195 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C38FA84EE1A94A383A12EC9F3ABFECD /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3513F973A4DDF6C03C08134B628D9C16 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 78A50C62312390D12C9BC1BF77F83C46 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5FED0B95D91DFF218C3C2EE3E6AE8F /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78A6F71E2EBF3C7BE06EEF5D634B5E64 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A37DF7979FC3E2158CBC9421500C92E8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 78C133E40E3E4DE0278B59DFFCC92ED3 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8929AE1B886511F1B05FB639F1FED09B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 78E7BCE4FA81CCACAB967762536AC60B /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB54B1D0C851994CFCE97497E38F9A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 792DE99766A60E36947B4FC0C9A94548 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F33522DF97945E97749B0BB4504A8B57 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 793542A32E99A6B3DDB5EA6985C57A63 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D549BE8B11D869215C6059695F3FB01D /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 793E67AF6B01E7DE040D28EADE7BC5A9 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBD232D59F8110C007C1C9DDE34E5ADB /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 79511EFFD14FB24B905F1BEEC1D73853 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1C1AB329BA832DC2E5736E63884A78 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7954E4E69F110D651ECE169B652E7C21 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 795A8817A2AA2D8AF7922DEE174D61B4 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B04CA5C5D51FC952F1FD29903464C5A2 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7994754AEE6DDCA61917726226A86034 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A31DD266D8B42CAB4C022357A01052BF /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7999EE0873B701A72559EF0AE994971B /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C21639310CF4354C53FC396DAAC6824 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79A5357D59FA8CE5AB7F59F6EF3197CA /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = C547A08EC202157DD2CF320B6CDA8B00 /* bufferevent_ratelim.c */; }; - 79CA9B413B2EDAF955723855305AAC0E /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E99346D7B73CBE96F441164CB6349A /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD54A74ED4EEAD7542C5EE601C550 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A45E93EC32EF849525E02D16378A2A1 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A4D90F4CCD818211FB29906B69382C5 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A523EC5C5EAB546EC7920561D2014AC /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9AB485E6572A0507619BCDA0B817105 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7A56E9B55464FF7A13F645DFC22E314B /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CD808AD444B6CA166439D20EC1A6E3 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7424DE08CB0E273B672DCA87A0F04D /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BC52FF366D30ED3D6AE3101FAC521F93 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AA2A64552E04AF207E98657F6D37C77 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C243CCA34A09C91C11935C8F80109B /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AA2EA1C9D3107F88871B385E8FCF46D /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3121962FBD3225705104EF4A46D8D /* RCTTypeSafety-dummy.m */; }; - 7AC739868CD617F6BDB0222B3E728167 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = C53E49B4620BCCF1ABAA4538E59B3F45 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADD0A3100B2521222AEBC63F1017A52 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F86FD43AB5B62D875F08BFD5D46A0403 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADF7CE67183A28A8C544452326F26B6 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B161C56B03D4A6C3E88073A6E570F4C /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B458F12A4DC51576ECFBA5A6FC0C90 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B23CCEBEEE6ACFB9BA9F761785E0F04 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDE936FA21D97DEDF1C966CBFA62D4B /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B2F9C2B7751642CF265D60015D8CC60 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F9FC94115BFF28B5242EE3721E06A54 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7B34571CA6A64F6B4313534188EE9713 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 438438E78A45CDAE16FA464C36EB06B6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B419042993AD48B4380285C17CF3C3E /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2008E3B78762B92B8084A7E1AC60C3BB /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B569366E195BBAC5F10E087C800AF32 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25ED3EB9E53303CDC06391A199009EBC /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7B5E7265FE93026CCBE2BCF7C37A12B7 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBBDFE519F7F12A0FE8B58C45AD0C0D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B73E630DE11FA6E74D0D9D2A2760090 /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7629DDF8F8D34B1BC5CC08586952B /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BA96FD189C3C434DFF9E08BB58EBA49 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F596811D95E9461EC8228E0043F3124 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAE39E7FF696AAA85B17D323DC30480 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4346CCA44B075FD229B5BA4288E490 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB8A24F77ED15B021C7F654203CEC80 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7BDB948D8B85252052E38601401FBB8C /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72B6D9980B03397EDA7BE8CF61FD57D9 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7BE02346BADFFAB3F4ADC17EB4BEB2EF /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9FDBD8CAFB3A2EBA49D7A0E3278F3E4 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7BE7C0DED4C6A7E17781D6FA6A69AF84 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8680897BF960489B1D68A00BC1CAA9C /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7BF1670911E0B6ECA7435608549B0ADB /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 4593FA2F35B448B1369AEFE86B203D5D /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0F5CA8961ACE4C5F87FEA4D6684392 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 33493909D2B8284DC667057A2F50F2C6 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C2C6654C568F2790480064F63542713 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B93F07E105D11EAE9A20F471635CABB /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C6C8BC041D361705C2DEDE21B87D128 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 413491E026B8C93AAB1EA9353EF94359 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C7FFC7A6600A92D60227B374229E01E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAD8F0A186A50A19ED945ADFD291DDF /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C8BDCBEA6B31B8123F6D6B5DA272E92 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFD4DE708F6E88E73103F036EE9A99E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C99EF3F98263E98DE6ABED54F0936E7 /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACAD68F7E9B659E9A31C7B555F1FFAA /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CB99D67E3032C8DF71E727C6E537D36 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC2B6A9EF4977F5F53123635F9516E6 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CCBD8A694FDEE74BE46EA44A58D3AA2 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = B417D4D087B4E916C9512A0BFF8771DD /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CE1E10B696C20F8C1D4B2E469EA79E7 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E6148005F60F622A205EEF1636F51E77 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CE48FBFA98118C7D1532EF901A5DEBD /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E155F2CBE477F86C7D3B59C50CE6E67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D37DEC1E0E731A9EB08A663C3945C38 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8B5840B5EA1904FAEC3A4F9B4ADE0B /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D3F47D64FF1A9AFD6DECE466D1C42EC /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 320E2DF9FB662DB62E3BE712C3F26079 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D87131306931B2077D3D78945C79877 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A6C13B24FA95FFFA1BA0D73F0B2D1C6 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7D9759BA289723CF7A364C11AA690FC0 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 942C6219919354EFAF713FBCE0925FBF /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DBFCA6B6A92D3B71E50C8C2D8E51BF0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33B707A7E5983231D384A99DDD8425 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DC5D1691B368E7CF5DA3F8F06943884 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2947DF840D7DD0848392EEDC47DE0 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DC69B358EA252AECF4E6A8AE7B12AA4 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C134BB772A4E696A45B29C5DF3CED80 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCAFA36562264D73D3EAC7927E19193 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30168E14DC9AAD6A2CFD68A9E99F0D12 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7DCCD64C055135D55EC30F9E8A517992 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947C32708D767B19961DA93E5ADA302 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCE87268ED30A4A8F84D57F8B2FF182 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 894785670DD5D53AF1020B7B73B1F334 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E34F7357AB0993B0CF72989847DD2FB /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 016D4F96A82A9C5D442A00E4F8AD1811 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E39124475CF61261FAA62769D1697A1 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E58C456E69D55CC066146B848647284 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F4B21DAA05F358798A59450F871FB6 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E6F331959FBB80E9052FE6F7BEF944B /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D15D00FBD2248129231ED45080A2C8B2 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E8B86A11BBEC5D87184C71E475986E2 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFC10F9843E9EA7551DCE6B556C9FEC /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EB5FF439AF3F9BC4906F4F407FA0B0A /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA9F73A1BB3C6112362EBB82B6AD5A8 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F0D1E9AA60B3ECBBF9F3CE69EE19003 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 787922EA4CF032C4F0F0D84B324BC2B6 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F3539B8CA05B594EA86B5AF2F06A0C1 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 565B09E8188221A060A4312F08504A58 /* RCTRawTextViewManager.m */; }; - 7F3ED3FC10516099493A7708454F0352 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF5480A13015CB262D394B853A7074A /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F46F020AB681128FB895D1FF50D0598 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35777B618F98E54CD984BD8100990F32 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7F4FF7FBDED533CFDA0BD875F92CF105 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC2178AF7DDF1CE8B0E16CD7CCD0300 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F78CC8C5051406EDD15B4C02E1B7128 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9045B38A5C0743AF660A849C710F49A1 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7ECA797E95C999E7B0BB249DA197FE /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B757BDA17F7E5D5DF31473467076643 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FA7AA30302F39960188DDD02B1FEC13 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8EB6AE463C0C6ABDD9A4BD0AE8AC7F2 /* RCTBaseTextShadowView.m */; }; - 7FAE6271A764F424C5AC7438C7ECB349 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EE347BAFF5A406827DB52341515260 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7FDF8898545A7EE60FA2AABE468CABAD /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D318CCBF05A49A681880D4588ED5D0 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFA4810D69B1CB24FB59F4283839BFC /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFD8E7D1AD7B567D52A4FFEB16A6E09 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7FFE253313FDD532ADE93D72D10EF955 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 001B32E1203D10D3B5FEAFDA5B0840B2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 809D616E5BB0A77A93172E089B4003E2 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 80ACA5C1B3481FED9FD8CCC0A9F52CDA /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = CE16860A64064DA1544BE4470ADA4A8D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80ACC988B4C0D4109E3D1D1E1DC834FA /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B36FE68DE5BED274FB7808B57D10EF25 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80B01C827F31A87986511E2744603D37 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = B57C257E93504E3F944CE741CCA50894 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80C74DE6F22986BACE8B11B942FC646B /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC27FE06014228AF77550F27A680652 /* libevent-dummy.m */; }; - 80E16DEDB9BE3CBDF2564922FACC1EA1 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80E9C130577E2AA0CEDBD2BE29C9DBC0 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 04536393E023ECFBBE9EE37F19F1BF49 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81122D37EDF24C87C35CFFD26B164966 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8905BE9DFE104C70D5BC5DE32EEEB2EB /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81179F52D93E92E73C57BC7292FC919A /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3E5DB2B7D8BF00EC05CF151A2AA5E5 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81466ECDA559EDACC7B9E3E2E7B58D28 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C315F2F84201EBC6B01FE94C5DB5B7 /* RCTVirtualTextViewManager.m */; }; - 8169BA4AE18B65747BF2C790FF164C4D /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0B0776BEF68D661B92D63C774E80BBB /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8189CB2ED5D8A78A09C527C67E47099A /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419C65FB5E4B2D6924B04081395AB2D7 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 81927A87C7C42F75F9D6E7501179D0C5 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281FF3B92CC0C78E87AC084898F69D0 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 819B01BD9B885E0B8812A4A9F018077F /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D601CE05E11A0E1B79B394D5656264 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B4B8B079452DE3ACF7A436BA0D1B5B /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021AC123AD9F9611A267289B603EA164 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81BB5F4A1E3DB445798B3D8479397E4E /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB2F11A092575CF8B3294D4E117F221 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CC62FFB67259CAEE48C5AD634C173A /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C3739EABF7A03FF92C3AA0B1C18C900 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEBA8A56F54BC1602CDA7BA9EFD1801 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8216B03EE68C9D8529B5C22764C72D09 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FC8CE6A42F82E98D59CA2846F9FD8B /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82561C9613753265CDAD854A6666037F /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857E9A237122769AEE904AB7C9E2A629 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 825A927C8B05BD54ADA3B73929B29A10 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32668432E952FDB2FA69FBB37D87D377 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 825FD11C310D2375BCC3DDFC7227F5C5 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42799C27F8BBD3704E93518488F391BD /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 82636592FDBAE8357ED0F0F660C37009 /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B9ABA2BF77797DBAB4A36D2E1A948 /* ontop_combined_all_macho_gas.S */; }; - 8265765422FC4F607663C0A5D31FD539 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F0E881BDE949C4CC9843C0BA7323F1 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 826C0102245AAD92ADB14BF362FE99CA /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0AEFFE65877511253CAD70B364B3D /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82772619B2FC79CA136994709712F994 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828F149117807FFD50CF7CAB07A22013 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4FBEFDD3959CD8584F32D6626C2591 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8295D2C7E51A09CC50D24F967B1FD63A /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8DB9FF1D81BBC96E0D1EC6B6A38FAF /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B592C7FC4BC885E5570C5C9177A2BA /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D01ECCE2BAF9A4A7001E69BD52EB0D /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E145059A78756C334CB692841EDC05 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E5815300CC485F6C1057699479416B /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = C868966CD5FC02AF75644F93E944317C /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E895DE52C241DC881D9AB8468A3149 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F163B8C0FD1158E08E756762D68DADE4 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82FCEEFE492CC3E79FF97CD529067162 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8315897448B4489E2DAE4FFB113BAB30 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CDD419818374803CF96E73A980B2F5 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8346FAE4CFD3ACFBBBE8D6C90C62D4EC /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB9D211F99F3A3BC219CC3814A91C67 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 834BD9B8EFDFEE228F0B2AF12607EC84 /* Downloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D388B8F15D229564332FC10CF40A6D /* Downloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83AE88284B0F511FC2C5DD294D34541F /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ACFC2CB3970CEA53D6304A677EA818 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83B3AA8B4D4CC86F1387162C43AC2B9D /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8955818EDB7A61DCAB3F1B0CF0EBD84 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 83C7A0264CAC9C369D33E80D6737EEFB /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83F42CD8315F9538A14EC202563C0CAF /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 095913D41661B3C7339251599CA7191B /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 83FCCEC4B77338D1799A91A400B41F0B /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 840C1BEA18E7998790FAE6D9189E82FE /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 840E5E63F35FC4BB68B959DB6155A5B4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B85CAEE985AD04FCE729C0D28619BD1 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 843B081EF56D529FD527006878020C62 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 844A34E7374D3C5815343397A3E5ECB0 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8452BBE9F4FD1A973F39D2C587398476 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFE3A4AF54E2B066585223EABFFD8CC /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5A4AC9A28AF65CD1A237080483239 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD849FA66BF00355B6058FC5A42F4A09 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A860C1429C00C6C75A028C9ABF6E2D /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6E0D0566F003FB5C7B6502ED3991 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C7650B64D2C5F048C82A046DE89ABC /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AEE2FB82C802859A02D994170AA480C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 84D1E299CD85811EFAE10D62A2D63850 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928AB04A273E40AD5114E2A1FF2545 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84D759EBD99CE692A3A0B0AFC6824013 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FCBCC7B9B72F7599877B664821A082 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84F6AD74E1ECDEDCD1543F48130EE95C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AE969DA3109FDB6919CFB2C2FB4424 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 850639741A899275A28CF556D695B5A3 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A5D93DB3AAAF2F19A5DD78463692AA /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 852A8415FBC617AEE29FAE4EE81C78A7 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F19AFCD247824F63821BE8D551EE5DB5 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 852CC7B39C30E00F0847E65796472327 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD461841D515FB414F7D7EA662F21AD /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 857A677B3FF37E9A6869C0C0E5575221 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EEA0AB0894ABEE9EA7A78AE9A428CE /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85C7F820EB38CD1197F347626005F3B3 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A3DB454F6863BEF69B6D05D3226EC /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 860C2C56F92ABDB8C771E68D3DCE0DF1 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9038E07B49691E6AD72E6AB365C46E /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86145B06701A9D6A0EA4884275ADBE9D /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7ABA2AC61166E020C106D4F73D0B3 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8635DBDC4D7380D2374E7F858038D53F /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 064F88E0C314D7917C3AC455B6B16D41 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 863D8302E3CF045C3AC5FB3E6EE1AD8B /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0900CFDC968DCDC120FA1AD188942485 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86525D1A6940AC5863168F4FF9D10384 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC3B825903B26034278931BF487466B /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86530E379ECACBE1D2A4278B0BFDE29C /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FACCDBB42010ED200752B0FCA73AAF8 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 866296BC60E7FE2CE746E45295272A3A /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6356E1DC5F2211F6241D0BB69C722E89 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8664592DB8ADC8DF0CDD407A902714C9 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8674AA141FB521977C46158C0666FC0A /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A21289952F751DCB2469587C93F68C /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC4E92F65981E73E4627C92AB1EAFE5 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1EA40D6E673702B48D2483852A5FB4 /* RNGestureHandler.m */; }; - 86D7A4E4FF79DE9B8F11902779E012CB /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = BA367F507ACAC24CC3509AE3C7D41A41 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8703433DDD7D12403DAD980FF61F7798 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20249083CBD42F61650D5302DD9CE7 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 870E95409921B7D48E5D0C1D2A7E1146 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE461F94A49E78E53F67A51475FFC3A1 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAD61AB71F8F9FB7AC542893D5795B7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874697682767858754A37B9E72B6D6D1 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A646D8A12D12AD680632318AE2FE7E /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874C3835EFBF13FB44AD136B5414F1D6 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 63131B7B8B0706A1B47D2418427D766D /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8759DB507EECA719FAEFDC96F04D44CF /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD469898CFBA178DE678BFFE5B5D75AA /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 878B6D4E73159A2E12FBFFBE8DB24ECC /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09A7506EE3C0B1819CB2B589E9F3C496 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87BC764B33E77DD3CD3C79309A01F59F /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DAB357B01B45BC3FA9863FEC50D161B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 87C1350F4A1973FB3FFDE96C2BD30A3E /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EBE944EA032E62C09E05B28ADD9908 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 87CF038D3F6C53F4C6A05F1D681789F5 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = E31A0760216F0EA8E0312CADDCB862CC /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 322BD7E5B5EC21B5AD9CD30FA041AF5D /* RNGestureHandlerRegistry.m */; }; - 87EC15883596CD64392D8181B8FF8929 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 824B921BA1E44F0293359C9ABCA6E75C /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87F4BEB23FF7FB0E32400811CBCCEA1A /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FC7F8C7695410BE739E9B120E1C2E4 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 808F7FD8BA188A305DEEF79A018DC94D /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87FFD3959C98FC570238CA6D88EE37E5 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 880F67C86F0E362AB26729280FD10FC2 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 573E84C8104BF33FFEF10FD605AA0E1E /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 88261C3E2B9C93EDCC33DF02C90AB74C /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D326FF03181C8EAE7A6A75BF779EFD /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 88397D8FD663B0C446BAE68E3420F3D2 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9C8D1144AC1305911BE1C479C8634C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8843AEE605D72A95B2B251183C22E093 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ED72227D1C8EE515258B0727E87FCA /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 88536FC03658EA5B75457F591D5B232A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9152C268CCF62E49334BBE047EFC39CA /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E6662080671988936F22F607DEF659 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D3DC13ADC3A52EDC337C1D63D6F0196 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 88ECF8DE39580A373C4F26C2699DDFF0 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C10F0C4A5EB18414128FFFAAE2FFA115 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88F1088676DE406DA950E5DE4922A6A5 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 852BEC669D087586033D1C3245B99B36 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89026AA704A7279AE975DCEEAC69662D /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3FAF4715ADAAF0F85E57AA28F9FA51 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89164817B9C1BE3F8D64F71039B569E9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC292CCBB55CC4C2785F6536F12A618 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 891FECE8EB33738CC725C796C9526D4A /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA0D786B8524A74AD94BBBAE60112A2 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 893105F275768AA05172931C860EE212 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9640D9886CB8D74A5E508DD0C8C6CD62 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 89794D8F5CC6FB00973FF41E921EF2AA /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE999BEC6F585DB8C3F52C30DF56F01 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899EA4520F13AE21B049E6D6C2D3D624 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = C234316DC0653347D953D887EF77851A /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89F106DFC87C69D95FD027A340B02120 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F850A0CBB180F17B6F63BC327EE54C /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9790A12231D48CA295593060FA4121D8 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8E18869E4A8BA59074A1A14FB3D5CB /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC5F5B94537ED355E5F7A22D8D07A2 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA0721982CA57CB3C1AEF03BEA4FBE9 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AB4FDA6DF3ECF704ABC467CD776AB7C /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 50143941D300EE21434A035E53EC92D5 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AC356B6441B26B30C74564C7190E09B /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AD311A1AE4935F1AEE34CB5B09B02F8 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F9724FF980809D272A854257AB8334 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AD9471D05F7FFD8AC58E4EE3409C7B6 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB7DC441D0D4020F8B0058DA9A08C2A /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ADCCF9344C910FE93876905B03C3B8B /* RNFSManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC73AA554A5B9F74F2524843B83CB3E3 /* RNFSManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AFF955DC5786CD612188CEB0B5F1AE9 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 462D6172891378C9956E3B51AB212C18 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B07786BD78745536CA9867C5FD089ED /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98A1E4704733CC61D865CA6A8967D96 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8B2BA00437FED0AB7CD36118EB29E526 /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEC396FB475BAEA889DE422A3A09C40 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B645BD1CF278AD28B1482857FB004BE /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E3E498C6A1AF2353A0C08B06FB3860 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B797963F26FE00BF56C91F1ECA12B3F /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 69581CD9F9ED6389E978A878EC8B61BE /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8B7793499E8E9301AC66A2DD0A5B79 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB4813F327FD0AFFFA6A0334F8E4A3D /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5D0BAEFABB248FF420C68A206BBA0B /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BC16E8B6EE2DB903AC66BAAED165B08 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 806A14220ABD54C70CE58EFFB3AFDB79 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8BC31C0CBE2ED902A51670E2DE9ADDF8 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A1B2BBEA594E4332D0398182C9E05F8 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8C25C6BCF2DA0390D9A086015E1F56C0 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = A38E222B22DF32AE6EF7493FBAC2DEA2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3A29EB0F88357875AB56C34CAE530A /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E89978546EB18CB3C30E4E335168B690 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C4133A4F539DF21287C956C4D8968C5 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF385C005BC4E8A245EF838FD03C7DF /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C725C09F58D5EC85943500B36020270 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5775F3E43AD337DECA7061948CF9ED89 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C85A808301798B6F22930846FF406C8 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0CAC1BE2755C6628D1706F6182C9195 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8CA7155F95B502D1334712B3748E9D16 /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583A993E49CB6F3C5511D079015769 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 407EEEDA672BACA0BFC59A4D673471D6 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD30F65BAAD012173DA6BBAB10CFB8B /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCB74B363612F72D8F08716004E33E2 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D0CA0D67E9D3845EF2E7DA2682E521B /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F44E7EF97E6D52D92E85A160A18B7FE /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D14BF9D9FADC9A9ED37C8AF0E0E31C2 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D20F4C50291B124CF9EED72291DFEDC /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32286AF09C4ECFA154C32EDA6CCB22D4 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D350CD340D84BF59191927B92C6FA84 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB578D54D72BCDD6A5853EBD35DE830 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D4C5F4C45F6E989142B630D9B0E1540 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = D89F38492F09B3B4A90736262F6DE5E3 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D65F58A02AEBCD8ABE2DC9395A414C4 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 149024AC816B2DB463D0FC39FF024AE3 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8DCA0FDE6ACCD6DB96C97DD383A366D2 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAB51758A5F1B7EE79381AF570114D4 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE0124DC4DBB5D546B86B8CAF9D9CF5 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1801238D726A60C4E37853D55857ECDC /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DF611B6469D61E5147626273B772AB5 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14645535C90D006B4C998ADF46A83176 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8E3CE56DFD5FB59EA560096683C04534 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 962C45277B202FC96D30DACEAF25C449 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4D9C1AA4A452BCACF43BEAB2D859AF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5A56F15C193897C0BEB38C0E6BBD1D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF8DDE95BA05E3BFBE94AAFFAA20912 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 8E5CF5A3B6AB49B20F6687F796969454 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56CA3FD2EE62F4F13976357908A40E89 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E65D0FCD81103BD57FEC66C58B50F6D /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E9B6D18A77A79A94EAC8AF3C7D825C5 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EBAF6A232985EED0210B35253FC0D21 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 342C7CA5A0194CB8A079C01EAD326582 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCFD64B80FF4098F61A34B06AFEE6B38 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8F1F3A7DE48487EDAD2230CC856ED732 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EF17DE2E9F28B9FDD94C84D348BA7A5 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F25D0946E6E25B0BB25E88685E4D0E8 /* RNPinchHandler.m */; }; - 8F30BA79239E27AC039934AE97264A03 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBFD97CB98D6A412874128923D0B586 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F3C6BE3964C50C785E18D290FCDEF16 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDB8A9B7C915E831467EE9CF6340A09 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F4163E140CBA2FF57C7424BCAC2A90B /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECECC3C44FF5C2733FDCE96CCA59FB35 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8F627FD03FFE6672560BA6E61AA5E706 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 26160BABB103E883D541972AC9E65A63 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F8607DC277BA097546F4FF42820CF36 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA0486373A7602A20FBDD9169C7721D /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F94C35E61D41287CE6FAB2C24C7E740 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */; }; - 8FC5E5307B9E2AB8D23D41CF848BBB95 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FBA7CAA1FE61D77E8EFA7AC4EC5C5A7 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8FDA7B60D08C20D6B3AA1DE9A2EF6D6E /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9AF138139744F4BF0A53A7CB191460 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FF37C50C28B883DFC2BA0E36F2761CF /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 804F833368914B9C8CFDE44970E9D236 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 900726122312D406A6DF54D164E55330 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFD1E3393E0108A753C1EC496BE416F /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90086B73188A4AF56984A93F7E9B5F47 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3B70107D40BE55E30774BC0078FF9FF /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9024B5C25F3D2F4BE9645F4A329B383D /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC1785BC9BB001696FB59FF91D49219 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 902D3335FAA0F6F74775CFF11E08A329 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F2C4CC0D9B573EA6DAD45FEC6E9B42 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 903B8D58BC98E141B032A2FB6C77C54F /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CFA0EBD7F4500B21BF90401E326DF63 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 90485BDEE33C69D4E7F133B6FE7BE2D3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 870D09E5DF349263AF142037BCEE2CF0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9096AA4F027CAEB0F28E35105D10BCE9 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 819BC4C7E0710EA600E464B4211691F5 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 909CF4D2BEEDA6562553BD53C5AE4DE9 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BC5D02F59A8A5C2B0135859140E3A54 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90AC36E8F28EC86B055ACB4988775AAC /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F2255703B41BAE2EBA4A8126C32A8154 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90BF7C3C3C43C1A2E90E2469B01E5512 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90D3D539650B3DD6CB6FD82BA95BCB78 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 481CC08F5ADA547F7DE48D6A890ED486 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90E4C7D73A2D82D6E273CC7FFA2A116D /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 86A24DF12BC90DF6A3E4C8FE864C7D59 /* listener.c */; }; - 90E8A481807E6EA04BF21B7464FF1759 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BC6B710B012DEAE094D1B1412724FF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91086A4E707DA11ADFD2B8007783352D /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 911B18979F3C1435E10CC339ABE6EFD4 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F1F2E4B9C79C072284F7FB4D8D1482 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9132B075B8C04D184293C3EFB3D8052F /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C46353071C46B01F731E4CDE42344506 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91476616178EE2D605927A29E4BC48B5 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = B998DA4FF688B612EEC988BD3692216C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91718F9015EE01F2150E7796B81B5B21 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = B8583CE65E0340962185331F990AA529 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91ADE14503349C46AB9BC2C102A28D86 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49570DF58F4892ED30C05041A5467F07 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91C314FFCC1548ED874E4E9152B88332 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 91E012215DBB361D16C7F3DDEF11B810 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF2BCDD2D4A277403E06E47BDC95BC8 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E68233B0E8C0A79C4671749A720AF2 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32998D68A8950B660EB126837DC74092 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 91F28919FE97869C079B00E3242602B0 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FD3BB946D84134E16D48B25A61FD26 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37EAEF1F8F45A170F180691126924AD8 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 923419755578A225FEF95DC7BCBF166A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29939472145D242E113B31915FE185BD /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 924EE91DE3DFC12A786A4EA2282AA59B /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3E7EE5D64F3F7344A495626BF10CD3 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90AD6240EA960B5ED7BAA3968D014A4B /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 92631E35C61C42A8C1A94018DDAACBFB /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D843C6B3633B0F34F5C88CA4C483714 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9277EBE958088EA510AFB1DB562153F7 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = E9189D2AB1E78F078E3503A7E984BDB6 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 927A326C821BFB79AFF464A5503B513B /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0310C51E751EDFFE7BF01F529E8CD45B /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 928676E5C84C71184A1FC7A1E9E086DE /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92899F9A69AB3DE227B52FE86BE6AFD4 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AABDEBF8D9B593F35F9DE17572E16F /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B75BE9F8EF3E604003A8C85A938DD1 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B2F21CE96D7AD2698BB36A842687F9 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = D877921C0CBC5B1811D802759526D355 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DF03C1EF97D1CEEDF0844B96E9BE38 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408C8789D03DCEC361E19CB81C1644F /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F4758BF3860316B5A4C92A73A75944 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D6EA167769949B9E35C1A104948035 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 930EDB9963C64656BCA8CC2B1CFDACF3 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D660EFE296AD4D51DE9D2FE92B6EEB74 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93217B96C741B58843C4C19DD5860DB0 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 73288BE623B8D4A4ECB0AE42C6ACFD76 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9337F105638004FDC032F314A66B2625 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E0F856D188C0799B426989B838775B /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9374215612D3DFD0C3DABA34B98D83EB /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 083901B6F0EA31A29AD1DC2228E31C8C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 938CC4C73102F0AAAF70971F94029317 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C84A847C7A96B70D1A2BFB102673C87A /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93C3E7CC04E98D66B2F8BF43C88D134F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BE92382CFE93CFD925F928A2C0CBB766 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C983CEDD3ECFF1B930F7C13D35A419 /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E266AC3C3719B88CBD362AD8B97CAC13 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93EAB4942A0D514842A7C6C8AF0C75C9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0925416FBF70EF1C01A7354966D0588D /* React-RCTAnimation-dummy.m */; }; - 93FCA411E7B654F62807C2958F7D6978 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55133247894F502C2E944B4CE4088D2A /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93FCC65147B3EED471A3EFAC1656BEC3 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33D8A15C5FE085F02C97B8FF471B0031 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 94228194B20F12302465B4CA114DCC84 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1E754F60C440418FF82BB0902184C2 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 94370FB4B24C3230AA5A8F74C98EA4F2 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 208DA95582883B7AC06A89201D7DFBEB /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 944E159199BA7145D9B4FD8975D52A2C /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 061270F77017ADED958947601710F70C /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 945C8A216689F5643722A008644734E8 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A01439C6B2E8EB95592C9694260E74E /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9466B1B7C34FDE0AC67B95A29ECA1D47 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4557DF8D618AB0F6FB22C732CB4C7510 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB4967A499C79CCD125F5B61F7CA817 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E37802E0E9C519A9AEEEC7AE3C2549 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E65DE5D95C33A16EF2D80FB9A23B65 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F9FBBC7BFF49085E11FA78C9F1DBDF /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94F51F8C5F3435673EC40C38650FFAD6 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4512FB26283A5BA9C810F158C2AFBE97 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9537DF5AE6976642C1D6ABEF178C99C3 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FF2EA9507D6AEC96C4EEBC15D61B88 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956B0A8046E4665CA1C0408F6C915E66 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF306B8D4CDFB40C670DFF34E589AFF /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956BC8145B98BB9BF2B6C83B25753162 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFE5F2049BF7C3C2939C744E90B9E01 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41FF6E2844328F39E0F0980DE4C266F6 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 960F60EBA20A33C25EEC6B14EA9B4955 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F0609C37037E3AA45257919698A9C8 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B3208C7829341A76998D65275951EE /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9643FA2C05128FD8AAF17C7A22CEA754 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1C953EE2EA1DB55126DCCF684CDF27 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 965C1B633FF4046E5DB8B05AABDE4B42 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 966687AE7AAF5F1431C1A445386365C6 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4906837A433E0301C3EFD343CCD79CBC /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 968F71702F287A5F9E2AB812D856EA6C /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBFB1F4B3D3A5816CE8FFE04E4906098 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 969B9B75D32185092F4387B9B61AE3F9 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886372F83458FE1F8BF449827D7D8BA /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 96A80F2D4193AA83210E29D79B267342 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9723982C5D98B238E801F4933229C266 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96D54827539A9D387A163EAC5045AC46 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DB17A0BC5D5053E93A094A66725DD421 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96DCA3FF455E90E7CAE9E7B02775A5F1 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCAE9098DF52F2D00B2ECE68AEC9F21 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96E249C1DAB9FBC2D9A6730B07535D8B /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 96EAB8F931DB55D799179AAC78896FCF /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 783E828E4ACC21B443CFE96ED95B1C61 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FB0C979F7F5D17CD2DBB204B14F1C5 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D019A9C6128BDFE922FB8B6A1D0E08F /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97AD12F4B662D4AE722A4512F81F3260 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906A0D30C9C5D3266E1B2A12CC8C4EA /* React-RCTImage-dummy.m */; }; - 97C7D1ABD068F40BD18967ADA47B905D /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 062C9C4F95A9A9259E70762F93B14B23 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97CEE95C2BCB6A0C8A64C2E7E1AD83ED /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B0117D00BDAD1CF2D3A10E6317FA39DE /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97D9D687049476D48D2B998F52E5B1AD /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = CD657CAAD584A2F7762C27D3C36D5D41 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97EB59E89085A5D8042AC531D5C0EC70 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD388BF037F8BB244D81E7C7C2D30A1 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97EFB583AC649B1A6D18C0F797B6D256 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C315ACA284B288B1B0384A76D258B8 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97F33DE0C863D680562276B6503D1587 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F7735F85712E9A2351AD62E54893490 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97FFC22D07335945A2D52795976C4FA6 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DC155B71F6CD1E706C6280B5A52EC2 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 980982ECDDB76E6912208CE926F480D2 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DEF24C795E0BC84EDC5A8E7A6D9BB0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98150D6325C12532DF7AA7889F6764A9 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EEE0017410D6E235C5B609A4EA3F532 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 98B4989263EC47DFE6BF346A24CCE95C /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A892B2CB2E44B853041A21B0CBB542B /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F7C67C6DA954EDCD8CAC7B26BCA0A7 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3A1E18859C00A225B7935D540F039 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 991D5F810EA529D6F3262356743FEDF9 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2DE16DB639D7A91904B8D3F6ABE17D0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9928CC9B454440DEBABAEEE9F3A3DD5E /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BEC8E9F3F363146BEA0CF91262073B /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9940CC9F712632C437EB47F9F788111B /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 585A16DDD7AAEC8380A5ADCA2DE19BED /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 994474E4B11FC421D77C43625490D5EA /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F0FE27DF265875E250F80ACFDE7C80 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 994E6A081BFB76C0CCD6A0B1C0DB115A /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 996A5A450F6781139B19549A6CADFBFD /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F93903AAEAD0B7868F9383A47A2986 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FEA5E48A5C87B341CB6783FDFA4D8 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E4C6EF709624C105540BBA4D53B6AC7 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9995F9836D56E37A4FD8DDA66DE36D8C /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F691C589C346AE5CF3DC4D65FE0B9D /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A03B281687ABEB2D563A5A97FBB2E37 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2BF9FFA669FABF7BB176459531EAF3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A312F4455C474E5494FA246E2B4C765 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAE3372899549E5F99D2567017DFFD0 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A381A2C749C55F58389CB2A3BBC7872 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4690141267CA3C800D00A4ECD33088 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A3C6C8CFDC7AE4DC9423F8E5F270D1B /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 226EBF97EBD348609A9C046E430F05FD /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A48AA4C255F5371101A1A24F99A7685 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8345514B17F2DA72CDAA5B946944464A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5D0EC9B97AF9875ABED13F8C3F8A90 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4F260ED986EC764D4F2FA9FB9831C0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A694CBAD7FAFF91EADC02FD5ECFF77C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB5023C2D4CAF3D17C27FB17CC0DA0F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A703EFC6795F374A5C628939B66B7EF /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA47A745E8471511C02CFA277C2D1A /* format.cc */; }; - 9A76511F236B79E430737C085D0D3917 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AD14E9B68FD276276AD14CF2DCA10E /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A7BC3C3B02E57B0D762D3C91C7102E2 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ABC72D2D7C37CEDF9AA59CE9628E91C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 157B9C024231B4D5AA33E3E65081B675 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AF6E1710919F7B6225C12EACC47164F /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2104F98A24CF7204082B2E94E15F018 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B04030946E95371A2ED2054C50AACCF /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AD50F4E963DBC1AB36DC8A812CBA8B /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B4926CB2068FC41C607D9E0C0F5AF4A /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A429BF5B8997B2CEFF31B4E58053829 /* FBReactNativeSpec-dummy.m */; }; - 9B5E57DDEFFB5ED16A2AD4F0329579BE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CEEA616551796080820691B8C4009D /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B70266AD9A53DCBAADF784C049E55D5 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 75416609E2AD4BE01E3B877417FEF0F1 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B850C595B4BB0F32E552CEC060E040B /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C4DFC021C55C17D628FDCC3C62603 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B89972EBB0ADD8C97D7DAD9D0CA1087 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A72DAB4ED4ACC5397E4469F53DD2462B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B8AB90E43F7CC0A382EB2B942B0C65A /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C090946A7BF36D3FF8F3C509AEBB9FC2 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B8C031DE73087DECFA58404361223E9 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E2DF139084B891541DAC8109AB3838 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B938F400B7F9715730DD79779D50078 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AED06AC298E4EE63E63C3BD6A16CB15 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B9B0B59910CD3CFBA68029B8533262A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 331C7C9CE809FC0E3180BF47AD081A90 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C3505C773FC866741372A03329B388C /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA89ECF080387178E967172CA9B1D6B6 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9C783B4FF221E9E7E7998E755335BE46 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4534BE3ED9906C9B91D318D5BC943B1D /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C7A9A79401CF36A3ED7B3DE8F9C5DEF /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B47497B2D2D886D4C31D233724AAAE5 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9C997BA2FD569A19453E1C17F538B75B /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A75BB320328199F6AAA83A05B9CB35FF /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C9F07AF2B8ABCA01E5DDD1A9D93BD07 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B4FE1DADEEF2497DB8C48E519CBE20 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA522730085D71C0444D29969D43019 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B441C571CE3735F20A53B51881BCEE /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDF91B523BF80078EC79E8F16CABA06 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1FFCDB58043B264035E10E1551B96B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D01DD01E7C69B99EF58143259B217E0 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AA7C9A9482D08BA6C96DE544E12088 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1FB8189C6857D3443D56F4382A5E87 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9D6311D2DDA2F39F94C10B3AA398AEE3 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F68AA11BD25010453413B085D402F636 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D7D307C9D576C2E53B98A23CB039BD9 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4510B2F18E925EA14E22C825FAF30E85 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DF159D7E3427F9157E568AC5B62F3C7 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = ED27E489CDC6F30C5D39955E7574D4F6 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E094FF4798A9A93ADCCEAB56A0C5750 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A9A78E72C3E6CCB4C59F47CB1ABA2C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E29062A725E7276DA5E1277BDE1615C /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2701A03A7C036E95A93AB9E54CBE55 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E77798B747EFBAE02D3E04B5C9D0845 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B820C2B1A4A9E8F5AF779E25C84401B /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE6025B24400FCB2F40605CCAD80431 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C93C94ED35CCEC4EFA61CC5FCEE129 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF943BF78E2F4CE9BE023076E6AB79C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8E0FA50912A9B819B0F03A37EDEDB4A /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9F0ABCD9F23D9CB8255F4A73926C51A3 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D76FEE6EC7C4A0AE70BA38A891EEAD /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F16922F710145225DD8AB318DF3C614 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1938A13872B10B8EA9D55526D0FBC2A /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F1E52E9277D34CB224D0901FCAE90A2 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C026A12D9EE44169BD5DB4F134A8B674 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F64E763387DDD0BC9A256861F4445C4 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4D3EA3FB82971CF64D83879C8BD6CC /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8458E47876FB7142771426A2880183 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = F283234BB2C8106E306D3614D0B494BD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FA0331495D38D7A62AE50814BB5038B /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FADDD724CC37F3EF85488F764E14919 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FC23781D1D405C5ACAE6436275783C2 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 046E000D3E14978F4828969A1DD1F554 /* NSTextStorage+FontScaling.m */; }; - 9FC2FE88B13FA76D5848807EBE41A723 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 224F362FF97E732698BFB91D428B6DA0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9FC85C40C5DE09785CA6D4EEF2B3382A /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EA614ECF3D0C49338B6FE24957B5A512 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A01581F71BBECD2C6BAE24A0AA557A9E /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5E5AF63C22627E9339CEA5458F49FE /* YGLayoutExtensions.swift */; }; - A01BE161ACB67F905791394C3E8F406E /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C57DCB3477E5011DF915A8934C2BE3CF /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A07941453B5715475C60D74F6BEFC620 /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53782EA8CD98118AE71D18C6A9DAD2 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0C77F860A479ECD4EC097F3DF5EEE9D /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0CA6424FD63459C131A55524D69F6B4 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4DB9385887A533499E2CB46D73DA06 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E4345395EB39B676627952E606F5CF /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE71A7568491DFE091FC518E58EE304 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A13BC664C28FA3B084BDC41C4EC0B3F7 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F64F5788D89CB3AA8B35F54FF8B4F0D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1405C065533A34552AFA470A4FC3F14 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9783BFC3857AB7028548DC9F3F7EB87E /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A140CFEFE97070EF6C90718148311F21 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 85193B8A577DC316FC645CC052E22AD0 /* evthread.c */; }; - A15661E29B8112000558C12CBFD085EB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A16F4C74B0E16364E5326F7274ECFA9F /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1895DF0A9AABE1B878828E972015FB78 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A1773241CC6889A805B081E0BF627885 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E441FE53F2E683B9149146B483C6E /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A17DB04B8D4E7DA18FDF95FA474C1E3A /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3C6AB5563EA4717B179D8C2DD1470B7 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DC0B8AC713F7B5EBA5FF1B58BF9490 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A18B8072024E82A14187CA0C4E4DF078 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFB20BBA7B2DA58F4EFED875A40561 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1951101C30376839912AF3EE86FD0D7 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC84AC02D21D0EF5400118587C1EE82 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3563C3A43537B15CDCCD57E94B04FC /* PTProtocol.m */; }; - A1BD4FE549E86A98CF5D68C4A7BAFF7C /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9E425F50BF3258C9776A835CDCB813 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1E885E2DC0389C74FCD3AAAAF9A4B9C /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECFDACF378928A46D14D8C7B8E960 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A21AD2EB9B962B22E8D1708E151776E0 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BB1E3DF50610EC49D1B7AD116276FA /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A234D2B5097467BC91F3E075B9FA83BC /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD764B26458B45F7F021B264C7F2C2 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A24500D5FE53A7ED3CCDE74E5556CA74 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 854C289F400B52009E3924695128D068 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A262CEDC295E54CED62DA84E496BAA75 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */; }; - A276618C33A90A41F5F4E49B020A07A0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA41BFCD0B340AB539A6F8C5FBFD4B9 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A28226CBCBDF641697B1FD7B4505931A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAF06F38BB873B35CB43A2FEFB5DCB3 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A88E8A9A9098F9745A08795D6B7E28 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB548B4433944FFFBBF7365BE8B9B96 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DB1C4ABB0A8A7F6A049F8781CF832D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABBD4506E25EC301663EB7A6D9B9C523 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A2DD8ECDE3704E4F7B8416CB2DCCBFF2 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2E0487980518CC8C1969E139111BEE4 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E251B1C668CFDCCC0AB74DD2FEC65E9 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3089C5447019B06B991153735C4F997 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B52D48D73B361AA550BAC8BE9B8A06D /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A313613D54A4FCC5BB22C615B4EB7079 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0502CE378AED26C2414EE33002AB6C /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A32EAA088C86897A6E638CB961A5D2E0 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B69C4B62F42A4AE2692142252BECE95D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3A216DB7FE0E7E9BF6F8C26AF7C5D29 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F6C60AA2DBC32EA43F636E556FD48E /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3A520612BEAC463371A09313FE349D5 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B00237205BEB06A6C15AACA633973CD8 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3BC3F04D98456332DA1C2B38AD7E967 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7EE605467868ECED26991BA02659B /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3C24A5829C7754AEBE5E5BF995D4F4F /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B048014F4C45A849913E53123B36A4A5 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3CF106EA24D5103444B3F5A50E809C1 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B46D51A2467FE8F574CC5FD9B404035 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3D663D05C43543CCD4A9E581EDE8B65 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 266D32C5E14597C2B0E8360F5A719CFB /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6127211870119AEDA10BE2DA1AC1AD85 /* RNGestureHandlerManager.m */; }; - A3F23C7970FF9699AE340AAA15CB9294 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D9CADB3ECA68501F71BBBB02D05799 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4012197FE8EE5642258985370D6AFE2 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A414438CA600FB6CA98CFEA66A76C26A /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E8F11A5A8BC0EF91925B1B4CF92CD1 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A44646F42EB8CEAAB585D02CCDE949FC /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A46D87056C2E91BE7EFEF2C80E0782F4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4A52F4D762FDDB87FF4713EB5B0EFDB /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B50410CBB8A8644D8D7CD1273038C3 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4CCCE956A7D65D24F333212D96E6072 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D31B165339A73EF37CA2EFAC05E0F1A /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B29AC3958E2708393198AC0721EEBA9 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F9F5DC9B5B6E6AC6E4002318BCC0BE /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C12AFB926BFC61F88BF8C3ACA256D3D9 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A50383F6AE864E5D66BC3ED47712FAE8 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 203FE9A528DD5DC77925AF4022E450A5 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A51131882122FBB081221358196DB5B8 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = E83A6EB123E0DBDA7D8B7369350D2E0B /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A51D69362414295ADE790DFFAFC3E8DD /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 41071FC06AF3B0D27F48BA33E0427478 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A55A9901E6F92E6B8979FCB5279E0687 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A57DB376FAEA31679DC89D16B910E4A6 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 064156F5E6CBD9AFC6F123EB49C440AA /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58DD114E2E9C5DC1E5E5DE61F219EA2 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD98E27CC077FF843EFB086D0646E69 /* React-RCTVibration-dummy.m */; }; - A5DB4FEE6EF23BE65C4F9E0E2904C567 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF1C3BC09C0874124B8148626392A09 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E39E6C53A8D3FFFCC298CD22443A15 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E8CB04205707E6B7FB1B71AE61653D /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D8653FCA4F54A7CDE3FD3AF4A57603B /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A5F4A4DFFE96A2EC6E96536CFFD2039C /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 532B91993AC65B6E8C8FACE888C9816B /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5FB5F3A7616722F269CB215D37C1215 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13BDAB5EE738F5D4662DC86C2F01A113 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A623C02C41FD4F4ACF19BEF671D21BF5 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 3135DE472C21F1914952DFA2F10C81BB /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A630FB5EE45ACFD6DC52476942781C22 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C245E9F9241983E3C1D21D63609D232 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A64BFE699317549EA070BA1E0BC74004 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A19FDEEEB5AD0772B288B13CDBD834D /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A661AFD04858C6176E3B95CC754DD29A /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A66FD3970C3A99D7C3C58AE1CD8E667D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A67567829735BEA287ECC043387D444A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F10AFC3AC62199A6D15C445B137929 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6905346C2F5B9246D9D2FF96D66019D /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A6A2355C181FA3BBFF3E6066382159B7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = B03F7065C09F384BE16050CB9E9AF532 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6A58275EDA4A06348DF57756194565B /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A33A5C65D23B5D31C09A9725FB5C92 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6FA77EEC5BEB3A19A0275426D802119 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F824926224F0C794A76E339EA4113B35 /* Flipper-PeerTalk-dummy.m */; }; - A7947BD2823ADABCE1F1CD370D7153E8 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F12F841578A44F79FC365F91B4ADE2 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */; }; - A7E4DA4C8C260154E05AFAEC9B816909 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A807B803DB84AC8447810937110C1219 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D62A3B2ECCED4610679785B5E436B328 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A82237AEE4F5C22DBC8CFCA12808E448 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA650AF1434BDC6DD4FD5FE7F7354B7 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A83E3ECE53FDC790892B4B51D73CD1F6 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = D6346EF7D7F9A86B75F74F6CEC9A0273 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A851DC459BC3908BF5CF930C9A4E790B /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A85E709725DDA6DAC37A1A971CECC398 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BED150EA79C7AF762BB00B50D1B1A2BC /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A87C69F51A401773A848DD5F7643A10A /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00773A06980E91B2D5AC0D5F2AEC75CC /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A89926EDD3993B4D45365F2EDF6B354C /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E32C63A31BC22CCBF5D936E10D084D /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A2574792C5D132106D534F06A5B1FF /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68752A228A16A5A43FCA2EE3D59B97DE /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8350C850CAEFA5CE5C0AD018F07F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 537C2E6878CC1C7D1500B538674334AD /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8C4D40CD52B49D2FD6ED077E7D68269 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8A336982DB82A75E3537314CF257C0 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F74F09DCAC19048E4921CBBC1AD9DA /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68EFB860C63432E0FD42D908D0648589 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F8A0AA9DEDCBA00FED6266DB69F6F1 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A91AA70A9D143D3802C4FDB0A3EB928B /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C4106DB42E94BAC2C1E25E8B8EF86E8F /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A92A37468C9FEEE337618B12B885554A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE436D661B0A400A2B070D6F99C04565 /* React-jsinspector-dummy.m */; }; - A9303693905B5A6D505DB4ABFF6D650F /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2C40D89901976811E234C0C36725D7 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A94879A12ED8FCD03B396BECD6CDEFB5 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5F1D10831009F5A4131300CB38B67C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A95A9A02293CC856CC107F691C083121 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9762E2224A4FDA56F20EC482E7486361 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A979E7AF06BBFCE1B95813B405637133 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 593716EB42320D497992F8C146A784EB /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9982BEA90E18EC7BD3FBAED2F877A58 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = C360FF66A9599CC9F671199AA33C44A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9B0FAB6867985FCF71B86E3F1ACC5E9 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD96024252EA663F83D9DED1502C297 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A9CA550D184CBD87AFBD3B0F3D7E59B4 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF742581E6EC34B85FC2398074CE902 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D802A0EEEE813D56CA859BC8476088 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0A11D582E3B8F6C78849CFE3DD53FB /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9DFE2E53ECF1DBE218A0C8AD7D246C4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 931FEF8A0D1F752ACFF9FF38DFDCB080 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A9E0C808A6089B6BF0C70525175212AF /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B64FEEDDA1C83E21D35B2DAFBCE5E3 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9FB7F0C8E37971A252A04D5252B7ABE /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F23E23580E78D6A9C27340CD5041E30 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA27AA414E748FD52982CE4A4C956A97 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0027E6547E99DC457ACBC87E10B38094 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AA38DB9AD673774AE7CD8E5B92C6196F /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D81D4A2D73BD31FBAC25CE7778414C7 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - AA39D19B82B348CC4DCE53A812ED9791 /* RNSSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D855472E6601C53B4F3F3CCD94957662 /* RNSSearchBar.m */; }; - AA4C4C8CAE3051081024E1FE363F287E /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA54A0E35AA242213D0B72853BD786D0 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B150E0FA0B600CC90485F03AFFFA7077 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA5752E1D91211B2BEE6C0436582DEA4 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1A8685BEA6B43CE991972AF8AB4AB04 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AA6D076D8346F084461C7ED869E15F1C /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C0677586087E8355FB96754BE416DBBF /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAC14B4979373C3CB9D0DA298B7C348E /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E6E231A9EF550FC248E4FC2C9933E /* React-perflogger-dummy.m */; }; - AAC163958DD12057694488226D1726B9 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B3AF17CF9AA869F048927EE662945 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAF7F13A2820AD25423EACE79F7E2053 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = CADE0170D737C3CCFB59C1506FFA5DF2 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFE32A4D40A772451E65158863ABCCC /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = C37C27769CBF43FA4312422AE2153629 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB04BFB9C653BD7071C3EC1A746D7514 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F63F2AED47C5751C71ACD38E5D715C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB1AB3E2B25DBE4DAA395DC9F595CDD6 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E38DFE0C8049269C7AB49E361E87A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB26317E3D5F7CD9F140AABB1BC755BD /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D667ADB89A6C56DD1A71A396AF86CB42 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB4F92E667240856C1EC9285294C6B96 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4589E54333ECE035B0051A4AF6D9C0E /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB5CA136B396B4713E607BC32C0C65A9 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB5F876998749B49E24760C505B0FE50 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB6EBA8324D348DD023BD9D771340A69 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 580E0CF224D3BFE56D2AEDDF929091AB /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB81AC0CDA02DE2192E51509C98EE6B9 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = BC216F4FF79ECCD54D416EB88F4C72B1 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB9FD5CE5C4F648466F963FE4A88D722 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ABA8D1277E73BA795E3181BC1198AEC4 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 870E9C56719FEED4D75AE48A56841448 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB677A4ED2318E96B6A5C190E7BAD85 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CEE332BC0A3D3D35AF7868FAAB029C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC0A1E8C027E4D086E541949FC6D0CE /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F14509DF4B9E58995AA268FEE8C4DB31 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E98072EEEE9DE6975ADACEB494678E5 /* RNCSafeAreaViewLocalData.m */; }; - AC0B9698593D0BDE210E161BF7494DB0 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2A1E4797EDB586BE52B3421E3E2D27 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC4C28D1895184ABCABA05AC1A5BA86C /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8D64B064470BFF1DE300201E28B5BC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACADF9CB946CACFD0BB455D948CC69ED /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACBDD77754E4FB3F858BA809A186F6E4 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC6FDBC8A79950C349B540F221EDB65 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACDD660210548EBCDF61066994227F72 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1C7C7242B6CF9AF441FB80B75CFD991 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ACEA0EF6B69E7C8E1DF9E80DE7EB3981 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = D05621DBC7EED33BE891FA356F13D4D5 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF172B98AC938A00453BAB120F53118 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 152BDC33DEC64DB0BC5D6E46F086886A /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0119D3FB32D5C2D12972CAA2E28A14 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA0858D0336CEF51207E1DCB42954BB /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD159BAB1701F55F7832EAB8CB5D37AD /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 9895BB7656BB4449DE52CDAED0707C82 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADB7068D634CE9F1D87AAF3CF6920942 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9E92613F887FDA0F18C04F8B0BC3209 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ADCFDFC442DDDC76A34BCE97945AA6AA /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2256A11032055D585A4B54E0E609B8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDCA44B422CC9AB18BA73DEB39BD23A /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D282B8DE4B6A175A495404798E078770 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADF245935593BABA53971B385B6F5068 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EE829354082462C292D4F8A0CB6087F /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - ADF2B6EC7A2F3145B22196B67ABDB27B /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D9E5C765053A7552922EA5B8486693 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE048A0F9D6E5A2A119404C651426779 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 433D1DCBA0693D7CF49D5F6508652810 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE05F0F0DE7BAF3DFF56E905EF58F04B /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0EAD8D3FD116EEF3E27CCBDAABE3A2 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE19EBCE5173E66A55320029794C0859 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E36E0266AA5E6F3FFD882C9150F0F1C /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEB615237350C9D7263AA6AEBC204531 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D550D2A26097F44F9D821AE27FB48A57 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AEF0A308A64DAE18D45F5719BE16BDE3 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C291AC38789803129D2385D0138DAE4 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF52DFCD2EF0986E129B812189F020E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB627285DA897E8D9E3402E236903D2 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF04547C908AECAB4504E532360CA652 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926F3BE35E594AC65D9048174CCB295 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF26CB81CC7EC2C23B03220BD68C049D /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FD3167ABF947A3FFF92F327212777A /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF4AEED4FA0DD4A82D4CB0E1B5413633 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1FC8AF1CE917589719B731AF773A52 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF78D9BC9F79C057FFE97E77F6DACA9E /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CA108FDD87A616B4785CABFA0BB824 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF7B183D88D316859EF866A5595CE38A /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9AAC8B5A8F47B9151EC637926EA9EC /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B660B236C0E34D8A98DFB7000E5CB8FF /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9CE3B68459B598290B4FC6E2C74B3A /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFDA7D380A973A43B0B93CBF6C4BEDA9 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A28E573601A7B88F3002C67D689E99F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AFDBADF254D0848DEEEEDB953B123BC2 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 38245D20F7149671B41D231A3F93C514 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B01757EC0BF348CBEDAD6B5357A7267E /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B02F3B1F4C310693AA09C0B03102D832 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 366FFCF70007C7D9091777211FD3CFFD /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B07D529D193B8F9074C61ACF4032B817 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0891FC929BE7CB8086AFD92B138BD9 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B096F86A5DA4C7F227C6D043FDF79B91 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B390798E49F4E1B3A544D4F42A5F95 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 4792568423F3FBAFCD1429949BB88B6E /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B0B995828746975A2E1027A9F84D7E1F /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2EA9C1E6592BEE69744094F9DCD43628 /* RCTProfileTrampoline-i386.S */; }; - B0C601827E19667C2B4E7AB22DCF7744 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0DDA5C946999CB3076C42A98F6CBB70 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE2D188010F67558A6BFD895A35215A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 78797BDF3027757C4049CC30BCF9851D /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0F864B94D0D113E9DAAF3FD0D19228D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0FD07390C36010D23C177B4323D40E3 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6109E4A777144EBC185180C773EA6AF /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B0FD505FCEBFF829B10DF8EC6D42E65E /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = F680E04A6FECE0F1398F74EF9CF0E56E /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11945B8ED26CEE59EC2722CDAA180DA /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D22871E1BC549DE27F74FB61872263 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B138CAC64FC3F5C88567D860B37E33DA /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53BFD1834EF514130098B3B8448409 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B195FFFA3E91422E30EF4DDB790A4A03 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9157CD3C8C1F875F3DC66BB1ADC7D1E5 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1CD0DE357EA5FF295C65091A66C9EB8 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB6438819920426AC7869F0C84E38E4 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DBA8B4B7E53267F6E3C8351BC34B88 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1F61B1FD6108E4F6729E432FC815E96 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2544C98887A2F6C72369030C8FE41D7 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFC89ACF531EFE450DE1E0D59812199 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B26D1B2A5ED76E0D5ABDDD7FE87CB2C3 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F125AB1241C19A59F8E483A8C25CF02B /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B29BB934107F2CF1DE07D35123B29523 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 578B71C299EB923AFACC49A3D7637BCC /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B2A01A6B989C511DA084510E9F5D0C42 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 837D52E17368A0D3E07AE7DCED1DDD10 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2B3A577EBA9368D3D93E07440ECD41E /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D42044BE7FB95D5486ED5E944B7A63 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F4F71FB68BD5F8A9687823DFBF58C8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 734EE32D3120AE7046B2B9828AC797A7 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F58C75AA87F8BF274BE40B42759019 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1DDAF4046F2A8BC86EEF2CDC91A567 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31B5BA44176844E8E5907C83770273E /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27FC09672B0674E72175C6B7174499B5 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3403103788710BB268056D1976EB9A1 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610E2115AA17D56D047A4A2A6955F4D5 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B356D10464BD8E5B806A10AAAF298310 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7628D7EBED96386B1DAFEE0D444B3EDC /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3D936D022D570DC3F2304B8E1BB05EC /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E29079056C9F66A6456AE59CA9C93776 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4126D1FE0D730A5B21A4E117A6A9B15 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEA1FDF1A66385D71D221AA2118D64A /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4D1F8569D8FE7BB3B115A2D07982B20 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D12932317AC6A9DD14332B0A0975A9E /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B51CE15EC317C5ABB1E8672CBD4C4A74 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 3610FB2ABC0F193F05860135DC9ADB20 /* log.c */; }; - B51E21F38B5415D4E3F1EFF0AE8006DE /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 931B739392BCB5D3049F9E99FA671F16 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5437A4FEBCD4F2CA175C9FC82A3AC68 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B9B4C0DF02BF287E7BE42C43F2F2C9 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B54C4647277304FCBB334A4FB414987E /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 2379C295EE8587A29238E3AA06DCB5FF /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B56715FE23095F47E97C517E99C5B455 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44314FEEAF9AA1C9B3B735419DF45E38 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5671A5A377DA149EF4419E97C3D37A9 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B30499396765EE1413597F9B3EC5595D /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B57BE675BCED7E410F9F7DB68A26B65B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13467F6D4216ED976B525DE166A0C34B /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B5AEB999EDAAFE4883D0AB78B7A98BD2 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E64EF469BD0F836BCF6F932C81C89A0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B5E4B557D813A74DA0BC517112A025B0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A0333CD6D7BAA40A84517F0F6170F7FF /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B644751AC48A22A73E7D192D27FB8F35 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E23344B415559E527318EF8EF39D416A /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B64A6FEBB21359C4DF8779A935EFD4ED /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 267BD3483E730FB114989CBCB3806686 /* React-cxxreact-dummy.m */; }; - B678090675046F72C58348F0731EA822 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B67D60CA9812317131122406FC91D8F1 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6F044679F7D8CAE6B943B1F625E9A22 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E56C8A4ACBA442CC17D8C10EBC171 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B708A4D32009DFA3697BAD7476CF2EFB /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59CC2AE6A3295A82AE6ABE30291449A7 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B71B41681929875DFE6D3B197A32343A /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1BA91A24B27EF487E9886FE1A3E764 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B735B4D37E37C2D97DF77AD5705D7476 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1D55AECAF0E017F6B0514F5227FCB9 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 12608AEFCFB8FEE3EE339530C02ADA37 /* RNFlingHandler.m */; }; - B75FD6D8A348A975391C3064E9A10F5F /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7B11A2D33AC64BDE8B68638016521F1 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF68B42A419EE32F9038DA618609C22 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C1851DFC05DB5F16A423ACED54AC32 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 39486DD676D4D3A172AE2D468899851A /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C4D196ADAA38E7428077D3C7D09A47 /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DB101DC32C831CCAA12AA5C8C498D /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C7A3BFA99C64811855B347B2AAAF23 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 296923F0C9DFA6A84BD551B1F0BD973D /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7E98510CBBAC11998249E02E14FC208 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A419A85A6D7A4A449877B15F224B8ED /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B7F5B0C9E14332FEAC4F6F619301AC71 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8027B1910619660BC4B7832587A6BC9 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C116AE2D8566BA639936332A2E0448 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B813363ED9A07455FCD21D9D6B645FEC /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B81E606BC4DFE61DCE7AE301922999F5 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B81ED04D0F0347CACEA93EECCC366B80 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 012CA7C21002BA5CBEC49F6DFA575177 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82A72186E8F7425EAFCE122A388D686 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3851C725563AA7610F3D0B33357E763 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82ED51D49049008D1B48C3C0BB02484 /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B6B26EB976F325D1374042C647225F /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B8350C29AC1A065487BCB49025BF71CA /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFD83AD7ADEA32030E69984B48B427 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B84786D723DA20A8DB3396699E302C89 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 425C236277DF2AF63DE2854462927C46 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B888FDBA8F4D9F6D309425F53FC5DCBE /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3884C95D9C30C0C24ADEAF0E30F652 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5635B00B5942895B0D303A040B71EC8E /* RNGestureHandlerModule.m */; }; - B89905191945E31AF481A29F73F3ABD9 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75162085A4EEEB496A3E30575855CD85 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8A6CB9C6B99FB55E59E13509CFAE41B /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3F47258485412BF9CB873AB130997E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8BC1401EFBEA7E0483E3FBD64AEB051 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15593A84444D392694A6FE6B7091B86F /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B96CE956A45309B426FD3AAE6A33A252 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA4B5F801655157F312B28B945ABF57 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1962E47C6B14FED0C788E24606C3BD /* React-CoreModules-dummy.m */; }; - BA23359AD070E24162801A0A8497C018 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 278B9B0C25A10237C65843909CF11662 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA5A33549CED04BF3AEE42FE9CE06947 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A048F7D17EB1989732AB5FEDB9313B3D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA642D4FE5902EDD0421DD02347B5FB3 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 537B35EB5C0E956BF983F2CC2CD7BCE6 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BA69806535C5A49E1C74F2F0ED71D442 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BA7E55350F29CA990D2996AD387B28C3 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FF14741E96009E0CD2A95F214B6E31 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAA9D14DE48711826081713609FF48E0 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BAB031BE72E83A216318F58EE1BF7912 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC4DE7AD60DB810E17645405FE52F9C /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC84EF21F592D2987249A6B488A8B1F /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 185A2520B26F04661D44199A47A748AD /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB05E729C8EA8C7A2E8CEB9CBB0218A9 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1C967CF035869B7882A6F64B1F077E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB25B43ADEAC9B94DF129A05C8814092 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 362492CDD52F6931D05A7127597AEC7D /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB2F3CF1AB978E9C95DE2C4D0798FED2 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29291A120D9A8511845B1567D198E2E7 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB32892D8B4F0A5A106E7FE6DF633F33 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20CFD943D40C64279580A7216C8476EE /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BB692FD5C067AC3446D0700FEE97EF15 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB91E2542DE1571CFA494A70F372DD2 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB6E0CBEC0581796249A77737F95A20F /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = B89215DD5844E0755F7C21A61748C0B9 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBC7A3182A551AC537AE17ADA423CF70 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B69AA263092C9464139BBCB885B827F /* React-RCTNetwork-dummy.m */; }; - BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A40CB4C10FE7A5575D83C9D8CBB18F4D /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BBD4F0B47B14C12B13400B8581C3B44C /* RNSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F025EC6F86394F982C91997A5E9370B /* RNSound.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBD6F3ECB81783761FEEB3F03C160FD2 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C72897DAFE4583A399FD04DEEB09BB33 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BBE53726DB62322D49893092DDF51829 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C58DE25FD026435C363CD30C46646A29 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBE71D5752DFC12C066109C137759B0A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC0CAC68FE6F1FA90FEEF192627281B3 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB810A8EEF3DF7477057C0CED709F21 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC14637988880627B49528938BBDA441 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B20CF0D11C773AA2E5C28B5794B36D5 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BC252CF853472D76ED95ED5D2900D3E1 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ACB218ACC3341EB3A0DD86FCD21B61 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC270096DA92E527CEF325A0B64C9E05 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A7C52E4E3C2B65505B09671B10E86AD /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E29456D931052E0A869AC75931ECB6 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC359EC2511B9BBED4703CACC51343C4 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB0D1B6895FE6921EA07896EE9FDEB4 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5FCDEC5746FB39B4932844D136C80E /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE9612757CEE23F2C1DE8372488D373 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE0CE7977B19EFD8CA95500F19FAF19 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69B015BF74E80576EF70EBA9B2C70B6E /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BCF62E214E1B181CA26DC488CC5A7F95 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 63662B18C5CCDF72589497E36C3EBE2C /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD1D8DC4CA2FE840F559D3976F14A49A /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BD35820E2EA926C279EA0A91A5BC87A1 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD483E2AF616B67AF069A30D2C2FA8F0 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = BC41A305B7A8101FBF03ED6C915C0341 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B66C849D3767BDBD079B891D7E077 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD62179A111F06A5A60CDA6CFE6E6F9A /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D85065292837A18DA01A3D36785793 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD6FCB167BA4478098DBDAA83CD5F08F /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D36EC0E44C227073407DA80EEFF390 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD80E85BE2A909B8C5CF9480E01925D5 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 080092664E56B92DDC7D50543653BADB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD9537EA0F076F00B45A5D551D44C2E0 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = A53464A8375DDB0DD967D77D2FFA7157 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDB600CAEEC8FBC39CCE391E0986A660 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA5C54A728263D7705BBC09214A36F5 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDC2359364A377433B2EFABB04D5DD92 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = F3256C06AED48D37533E4A28CD7F7438 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDD7B2D43DCB8ECDEACB51AE11C3F9FA /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EA87D04A239DA92DDD4C9728EC38BF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE2E20BC90921A8415110436686F9FD0 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB6091CF7D8335EF03CB438B1D36F1B /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE30DC2574E644D0AFCF1C1E6D18ED79 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BC5F9B7B66BB410B7CA253FCB6F739 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE81C0CF7AAC5F792882EBDA959931A1 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C820847C9D349357E627A05521229E /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF6E0D6B4EC10E2FD63DE51022B0B847 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BE93CBA47D692A0A9EC3F53B2422B89C /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69903540D495EDA6E40DC0948E8D667B /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEB020AC013A1C4918D77D7B35646C1B /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4401F67D95770C27DB8DD1BC777AF78B /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC24E98B193979B5F1385D618E029A0 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8489E1BAE110DF19DBD0B6775C068666 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF28A52A70E60F21F70B31414A75F35D /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB0C1831B6B087FB96479D0CD2F07F /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BF2E3DA4F68299CDFD2C8EA9711AE82A /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A44908722D33976D21C1AE7AE7EA60 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF4F74A91340EAD6E62F9BD0F2669699 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28394156411C5367E01C794B6E6BB633 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BF563F43AAC4DC64F78306C3C2AB2F74 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34550A366A4C09A7136A457B195F95FB /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF86B7B808EE614E6B3B30B71434855F /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C3596AB73BE006B80DFBCC318EDDCA /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFA3A3CF41677E925ABC1D365A15D2E0 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 143C6C24FB1524AFC71AAA0DA1B73001 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFADF3C16EEE1DDE38E984BA91EE83B9 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 723071926A9D4A47FFF592235B9BE349 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC24F46BBA77C99C62DDD65C9AEEC11 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFAA2A03FE4362A4D8A4348117B75D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC9DA74CB7AB0B9872C91BE49EC668F /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 685EE70B7B1B844B8D05FF339D4E6900 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - BFC9F8C56DBCFB4C86507D55BD0F1B26 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BFD50BADDEE45BA32134B1774DFE6C4D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F1EBD0A7C6D70C23AB3F7DC4BD8E11 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFE3F0C8B3046D4031A0A6886EF89455 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C708017FD56D68A58BCB9AC2983F8B /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2F0B31CD6C399B0DD2C3E831E7F8D2 /* RNCSafeAreaViewMode.m */; }; - BFFF31FE771A857821785DBA5BE312A3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA06FBC259F0562620B9DC617FE7EA7C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C002314D09C5DE2C117148D4C8D4BA98 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C3077EE039D9375542B86DDE593A3F /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C01A2690B9C18E0CEA2110F0FAF92A35 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6F95884C6F9C210C284F640C34995B /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C022E0A5D20C0C25666329D2492306B6 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4052F78157C29D0CA5E3B1B98A2838EE /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C046B49A8F9B90C5BD68048467EDFD15 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C899451DB1EAB167F9E43801D7618A /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C0636660F948D4FE8F968C83905397A5 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64D2816C07CBFA4529C90913884446F /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C085F4A89DD1B12F07E9A72DD99F9358 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AA1F42E65C4693DCE7811B73E8F3F2 /* Flipper-dummy.m */; }; - C0D0C1F61F924F640C1A2FCDE0A53399 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA99760E4362947E2B3E095B2A88E48 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C1297B38D60BFFACC156E607350CB862 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C95CEE209EB629CB5330BE16A264869 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C148357A1AC854339F050944E3092A8C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 317D4599F6AA494C01E463C0D0BD96AA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1493A9F5A5BDC830711F0E1D457CCD2 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BDC440555051BFCE15C9664EB75BC4 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C175EB5D5B78B198E5CE031E555C236F /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C180EFFE3B6AB9DCACB76456B8B5E5B8 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B114A07D303818E2B73ABE8E6A25449 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1940034B022603CA76115D48BD2A0C1 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1B34B0D5A9EADED04061DD0965A2BD /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C0487C29BDDB7F2A8F7D0A037E027C /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C68A6F78D24D124920BE4AF0C57234 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A957599416C19252DF07C0B4840E8C0F /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1EBE69300A58868FC5F851680613D84 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E275EB8CC6871EF73E6E102545EE282 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C1F3E900AF7056CDEFC1BA6141C4DCF0 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C66EB927486F6D97090190F362F2CC /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1F8FC69681FA78CEBF4DB788AD9DFA5 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1E2BFC655796D1E34E7A7B3C953C0B /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2074FE10E2CCD2C123C1D40D63FE563 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8363F7ED3861401C0D0837FC30400E3F /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C208C5908E10396B9156CA7DA12FAB2F /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58BF368C4AE5399145D7DB97A3C56C63 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C220FAB0305EAE0EEA3378DF1C181DEA /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C24CE25B384CCFE1E12A787B11B3562D /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306314B34EEF69CE10AD1AEABE37098 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C25BD3B0B908A21A015ED5632EF26214 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3ADA391B25A958151D130F7BB8487F /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C28AC02192B4F1F3E4BF679DEDF23A23 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA47D18297F19EB0F26D2158E7CD9404 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C29977B4E772BBCA2A3AE226D6ABA857 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D92D27ECC10CDB6AB78C990C410F34CD /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C6E5185D44C3DB76505E682BF25D32 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C33BB10E60604D7CA6AEC4196EF3A0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C302A5740CA7486F419303FC7154699E /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B220D61041FB9D225D3D9CDD130F1B /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C346B099F2CA0366B622C1C587648F56 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 319DA741C7F7F2C1A3D7C5506377539A /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3880BB6F38E07F8AB875A883CAF5516 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF3E5A223D8C05B5ADEF49FCE30F38 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C38E894C12EA5DBC05E51CA52285D72B /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D454BA8D6BD942D3396E8D44A2C132A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3B022C28677EE302E5409178DCF5EB7 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 7092343B1D33DE3360870D1ADA3A9327 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3EA97A6FB9E0AC3FA5E2BACADD22632 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2199C45602110A3FFD4EDD58F9FF204B /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3EF4F00E989CCD406526F8BF5EC5AE8 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F35C5A76948F07130277EE978776B82 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3FC3EA48700BA024FB5A12BD7E70A31 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = F29B196DD0F5809D7D5A3E6DD4DC648B /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C414A4FA4114DF4B8A8A91F1CE0B0A2D /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 559CAA1CE79018FC5131534287ACF964 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C41F8C480CEE336578C9DEA72196CB62 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BA8727445A85103B20A484F6A9824 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C42161CFE3967CA18D108D1E163FA016 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316572DBBBA4214700F0DE881A4FD92D /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C431EA0125623DB642BFF489EEA53E0F /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFE23C42E5133EB5D77EF80A648F79A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4333C79405311EF697FA5CD529FC07F /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E48A84A2E6838297AD1923F264118B7C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4342EB72B3BA79DAAEE6EA02E28BB6B /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E04E3098EA8C67B1DDCED07834DC958 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45402A8D83582247F04B901B8B342CC /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = AE06C3F45E8ED1217E6364C29634439A /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C475E6305C24718FFCC27C40A5D35938 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C479B5D931058E8AD2F3E16A3AA2B610 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E954738A6FA445136FA1DEDD8AD25 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C485664B1A09B93DFDBAC02223A40ECA /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6B4F389D05DD08ED1C242489DEC44 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C48EC43B119F56B6BF0C87F11AF1377C /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 49144539559F122AEBF2DF84E309A3BE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4BEFDF7D00809AD5763A761B61F09AD /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 109365EEA69A33EBFBD9558F24C5717A /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - C4DB13E0F9C72A3A1FF8610455033590 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83195A9A1B4C10BE984DA6B1ECCBC3 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4DC33A2165C9191192FD32680514251 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 88188AED3DD45D4427399BB1C8FA673A /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4E7E2D752C21BC5A9DBDB10D72DE621 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D561D5F88DCAF5ADD8784EF0C0A0C05E /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4F8AF6A907BF7D17AD5DE79B4D00F22 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C51C560125160B4B307CBB2EB4206EF3 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = DE52D04A4D2C98286B4DF4AB71B28A8D /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C531F65084BFFD6B49CA4C87F6A68150 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CAE6956DC63754F4151FD341B8150B /* RCTInputAccessoryViewContent.m */; }; - C53BFD6C7D99C4FF30CFA7A44B4EECA4 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A61A01371B08BC5CED7076E54456758 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C562EA61556C9237027C739EEAA69863 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AE600242A61E4CB2BD1D4F39D964DB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C370D0C190B7E7C98442328B7E8493 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C5AA99D9FCEB76EBA167DD2D549889DE /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B2AD6B88BB65FF4F12988705168564 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DA077B18475E1915605A0E41B031F042 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E3542359CB53D6BC014C758004042E /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D04D488F7784CCEB19A10783A608A5F /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5FACEBF521A948A3FDEA1BE9D982A7F /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C02CDFE19C2466A12C9C5C91925A8794 /* RCTBaseTextInputShadowView.m */; }; - C60D717DC6EAA83933A3A42A8BEEFE9F /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E399230B72C445A09CD1A3815384A3F2 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C61DC5C1E1F38173E1606E71FF08148F /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C11B0C69CD8E1FDD11D079C547CF28 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C688AB9A098BDFBD62CD5059EEC74692 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C69F364394395B60C58E9AE1E3CC6408 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111ABEC41FDA677AA0D6F159C78F4EC /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A9ADE636C4E814E3F94A54022F8282 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E43DB2289E042B983177083FB17F5B /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6AF5680524EB724FDA42989F1F93919 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F38DBC4B447E091F21632D2E5F334783 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6AFB0F7AE206684F8DF2FB9D4811744 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1049515095397F1274A1E3C42323C750 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6C4F56CBBE269F9EF1E3FAA5928F17C /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF44A98B5123B003C9303CC3C471407A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C6CAFCCB30CEC2CB6ACCFA23125FE869 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF4E4AF8B63079B5069A02F79F7F662 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6D9A96BB731A6DFAD7F38B346BF7A2A /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96996756229C1A176DA9E4552476B631 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C6E5A137CABBBE985D0D68C3782616E3 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5950C073145205AA7E54D5ADDC2C61F1 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6EA26C4931BEE17F484B2BD4F693DFA /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E119E1FAB4BB8F3B6B354D763140B39 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7004EF0A851C06E2B666280491ACE5A /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E49E479DB1908121E3B3CF0056D027AB /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C719B7AA6CF090112C1FB2E461FD7866 /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = EB93DECA3DC21173DE88BDB84A1F9770 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C71D4FA5C43BA1F32A69047349850B11 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 234BE6C9BC68453723AA910E80F6170F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7360B45C8676B3F6BACC99A396E11A8 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D17A71485933786564ABCF5B5617BFD /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C73FDD2E9084CB6AE038461DAB58C58A /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A307BA56EF7AA0A855180DF8534F8B1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C749A35F2BBDA26B9897C4480878B448 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C754BCB092B8DEE80DBFF981C46F2BE4 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D70999AD8391E6C128A8DAC3293E870 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF678C9A3F698F587FD8179A4695CEE /* react-native-safe-area-context-dummy.m */; }; - C78142750EF367A0490A165A449E4BEA /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3550E571FD7C0BF9100D32798938CBF /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B0062AB82A0D491220BE93AF1EBA2B /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7BC1360CB66C844A2112F0634843603 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8667568CAD7BE538D7B8B147C6F9FB2F /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C81B1AA067894C877689CFDEFAB5C708 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = DC918B518B7570D8E7B9C92D305AFA58 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C82E4376C246299836287FC01E1D86B1 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24751F0FE608A5CFB3E03BBAF55091 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84AA4982E532A5A266884BEE0ADD12F /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A890B3AE8FC8EC0511CCDA49A60D60DF /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C851DD317B0E3FE579736029539441A6 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C87BE73E67C77B3DCB49A0FBF265D2FC /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F70A8690C0867CC4864259708F225ECF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C8E7D8C106ECD54D5365CA1DBE12244A /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA726645F5848C06A1F665F7A871429 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C914C001A70C6D0213EDB03AA7F5DB1 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C932549DE381793E7BD2B6E8510A8B71 /* Downloader.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE279B79CE8743DE6ED13BD8CDD6B9 /* Downloader.m */; }; - C94764637D33144DC9DE537393C6E275 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 296BF08FBE4801C81BF144AD487F17FB /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9524BE84A9F7B7FA7B536E850C53C62 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 47436719A8CD489012C991505BA62ED8 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96863EBCC08A18D69DCB3A85A55009F /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE14AF99F22DEE4D3FBF15D727A514A8 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9A2C48A89B8B82C1BF90ABB2CC953AF /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1385A0DE90C129DF72DFDEFA9B8D221F /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D225B63D1FCEEF678056CEDE4BF902 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B8556B9B4496FBAD8CA587401863ED8E /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DD069A637D04AC950FEFB4C4118A4B /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 310D44D0F1AE32494B0EE36FA649FA0D /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA0C3376DFEF1FD718CAB7569EFE78B7 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C770179BCD0084D20DB918109851FDD /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA19CF52D9F228F1805941AD85C18E29 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E17ECB880F4682EC5BAB7113B8A5F4D7 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA3A904F6BE874D5A6D485EB1C5A7CF7 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EFBF388FDBC119680E631058BFA6AB /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FEF93D1B768E833A9DAF5D1997DEB /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CA89F736DA7129D86D74D64E42066C9D /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = A603A8B59A3C57C13E844A2B440AEC4D /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAB32B7B3FE526634946F2C852A815FE /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E56F5263404D525A91C19D4510DE81 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC9E218C0D2339B5D599CE6A32A63C7 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BDB0F7EC1AE9FF02B43376EF4DA6D03 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CAE37131CC11D0AA47D3C392295C6044 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2896391C15EBCE508BCB44924E3A7F3 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CAED20D04326D0BADBF27103D20378DB /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBA4392767C5E04855D4A1DC0684D89 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB085C9B040E85BB331B0507E33CDD7B /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D22CAD7B41DEEF96AF65F8F9E8D93A3B /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB13E1EAE34F8D5EAEC1DC9E06758B47 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD04770CA426767A5C2AC77537D603 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB1BCB777DA2B78157EC2130787FE903 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AAC31DC35E1C7B22C6CE8505263FF5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB3C52EEFAD808FADF43BB4174BD6C0B /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1214102348D72EA0EB70BCDE98F689 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB41ED0FB1BB2FFDA460975D32670EF5 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9F95C360C58814E7E7B7267BE77C99 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6971C0FE4053C0C1B92F7526513730 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B059EFC75C33B83B9DC39E65E19F96D3 /* Flipper-Boost-iOSX-dummy.m */; }; - CB77833E4351A82C6F369C39BB956D45 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = A36F046324435EC8477E25716A3E27F9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB82E879680F52CC99D1C18B0B0CB45A /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 599D94CDDE9A56C3BE2D8ECA5F9B1EAA /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CB8705E7EC94124ED032B99EB5134CFA /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1726BD3CA6FD24E39EFC7E0963E31BC8 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB9B4274208E795C6E7B62AD73D85CB3 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9423CB753E1BE92B8AF67511094526E0 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC40219684714EEE15FAD5311C3DFD1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1DDA77C31999D60488A6C795EAF647 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC15412F89C0649A6BC01E14435D5791 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BE50BBC1E923242A75AB0E64A0CC0B /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC262EB8D4FDBED8A9BE24BB2A20C4D7 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DCBBBBD3C47E4874DC4FCFB2757430 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC381F8DE9C87D1393106D98CB048D3C /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC4AECA0C7811CB3B8A94AB34F71DD2A /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC1C8989F4BA64EA065744609F0F16E /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC5F05823BA46FC86965B83A49A4D3EB /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5962163A6161BE06ACCC86B76485A9BC /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CC952AA53C7FFD24D92F4F3D946B555F /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2E62E10527A54702D7B76BC75970B6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC0EBCD30FFF0955401D6BA69B84ED3 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3A2DAC3265254504373CB84CF33439F /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CCC4EE2C333228EF4E73AC49AD10BE6C /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACA88212EE11138DD6E0B8A90F45B16 /* RNCSafeAreaViewEdges.m */; }; - CD2E5A81740D2AA943C6E2BCB9282B74 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD8D7E359FD0E1C621AC25A8D8FAB6DF /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD967FAF7C505FC0920A7652E87F0067 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A0F653D0FE36182CC0C01DC0BCCC92 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDB1E7DF0501C0FBE176474AB1BF7131 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CDB8E44F871312F36DC46EEDFC04BEB3 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7AFD0430909142721151DD04A3B50D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC17B0FC1B75B822CE0FA0FA4B24DC0 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA233B6F9EC362635DEE7B799415BFF /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC7726B199F0D00245845CD846D2416 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA5F918CC8696290DFA60C44EC64A32 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC9B08B58FDF3C1DEC08A68F6ABD8E4 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDCB203CC27632ED547D3686E9F3F8F5 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 918252241A8D5BDE2E8702BB6C35F59F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDDE963A0AEA6B15A02F235E78F66C6F /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA0A500136C6E7CC77AD66AE4E62E39 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDEB13DCC0D0C4A90B74BBCBBCFC9A48 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E89227B8E627702F61706B4E81CB3D90 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CDF55015A91C96283DFD8C86F5EE196B /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DFA7D8249616A3DF3391AAEB63EB931 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CE1183C18BD52D3B794F5979C36724BB /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5A538A1B54AD8301E1293C4723FE75 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE1EF58CE20585F85BDC2E2FDA7A048A /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 65765772B0AD5D372F437C4965338AD0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE2CAC9465C5C8727A86FCD6AE7D1103 /* RNFS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79416A66096F7BABC8D90E6E496E9DED /* RNFS-dummy.m */; }; - CE490863EDF31EDEC2AFACA6C5E9D2FE /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52C3A26DE64EC549AB71150AA3F8A6AE /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - CE838CA47BB68152DB5CA047ED02EB01 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CE8BAFC856C96E5782EC097AA37F41EC /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1368120C8B255F21300142F40CC51AF0 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CEBC8D06F49BCC8706DC140B838E11C6 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = E429C0E613AAADB75786D45FB752283C /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEC999770B65385FD63EE7B878190052 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEC9EF1EE3EBCE6D7493884A30325F69 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 486FBE52207E52465649F3D35DBB2832 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF7D2998EA5ACCAC01A1D3C41ED6E36 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 248DFAA960C19A98CCB4DD50DBC1CC55 /* strlcpy.c */; }; - CF0AC9539D87DB59AF6624E3AD1E354F /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060565455E28B0DFA081DF7405A1EAD /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF313CF8C7884C32DBCBEE14713C208B /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440CA227BE2EE5FAF05B5FCF00DE3ABB /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CF35866E7B538479D45AC3D310DC5A50 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EF64CF0B9FE07CB54F9AD87B79ACE3 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF37BD40C5F6C8743E76420359090387 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = D1913E3E3D1574583C6B8B72364308B8 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06E52299827A5A71C4951132FE05B53C /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CF48F9F1A20F6DC9A9211814D2F56492 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EB426A3692C95F2D45E8FED7305AC16 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CF6B978E96D4AF9BBD6347AC946A7858 /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ABA7C1626E0F7404A708583764F96B /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFF220115BB7DE30640B98E9EEDA32CB /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC480AF16376C4D9B3BF10E9CF93205 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D013126C641859A7F594B83428CE1BFA /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A9EEA1407AA91F84A0196ADA3713065 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D02964810A49FBBCA18B973DD798E899 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D044ECA1A51FE00804B01F2E3C825F56 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 790A80641739EDEF689A7AD7A2E5C178 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D08A1DAF896B8FFC43DAFCCBF7CD33AF /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3137292B2661860AA20CAD8A7F07484 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0E14655D6955BB987AA8B7C3C6420E2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F77716836A184FFD80F63467A9955D /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C741F27ADA047E119E20E9E979960C47 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D116FBBB2A4E5BE34566110459CF4A80 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D06424EA4FA8610E269D2523EEBFB0B /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D14BEABF40D4FF11DE76214900192340 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1526C4C68ECB65AE924EF5621AAC933 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B7D6C3E73EFED1B452A3C13721AC70 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D183A7CB129E2D7C22E792EEA1271AD7 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = D6091C69F6B592A187DFE080DE1AED95 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1ABEBCF8F77A9767A96AD5508F97E70 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1380B82F2F936BC5A50B3C12CA8DE645 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BC053FC974CB737AC2141A6D03FFCD /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D2B974C0B7DB90A84A530649220E4 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D20801B5BBF78C5BD7F961D46FE740A3 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7686C167B67680D61F2DD7DC38A341C /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D218E8F03A15852546D2847572F0D88D /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 464FDF3170347A6380ED99A3B54B72FD /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D29107A7B7CFD33D3A65210AEDDB7C65 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E588C5EB2AC14366ED603A297AE184 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D29D0ACC7964D0271A28DD2EB143EDD4 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 42450E1DFB56BA7C5BD1AD4B8D305337 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2A1AD2BA573F97E771BB8EF1A477AC7 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC98B2070A4EC5870208276DF296B74 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2B806A28B565C7CEED3C59123A89A4C /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3635E0D8ECE1185D8C84F75B35389008 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BB3AC381695EBC18F73138D388A4C7 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C06132DC7917E0477ABA963C31C268 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32A5A3C0CF6998F9F4617E79A6B0ACB /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 915D2A5626BBCDB6D1C22C7CDB9F713A /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3319770A285D7FEFABE7D4CE214E33A /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 164C6A460C12BA1366E459CC769335E7 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D33E0F5934010E8D5539C4B04B632C11 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B401C6FCEAA81E383D30EE52A396C4B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D34C4808E2874268E4B30885350C6B13 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F7CAFBF7D62857776F202DB7294DE0 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D34EA75EC1263B768231332713358581 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CA81C60DA2C1C06D5D25236AB6722 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D35058C2F3498813F0B7610E81C4DD49 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B95DC7772680B9AE470B6562921004C3 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3764CF35FCF53342A4AC7FB98C9BD66 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C132A8BDE3F1C717560F9A1F10CB7F57 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3BEB7A0721D9A28A0274D0E964EC0F0 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CFB69010842FA58A336E72735D41D8 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3E914FDF07FDD0BC99544E6E11DAF39 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623FB11930AF3E37B82EFA5233304F19 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D3F46875FAAF7E4F0240176B40049E5A /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B552D1EFEF541575E228D151202E644 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44C6A7BA4B0B2A06951207E1456B617 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEB060FC0C7EED8499CE73855CFA8F2 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4532BA2F62243EFC7149A27C15B8234 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8555C0EA56871609F305237F8C2DE546 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4622DC60DA45F7165A66D573744005E /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D841FB6ED6ACE38B3EEC6989971C39 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46601E79967E7DFB89049D2336CB30E /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B424E2C3EABD731B143CBC8939FEF3 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46726277B3868065D21F73E2F246457 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69354C203ABC4F487BD2A5F9B79A81 /* RCTRawTextShadowView.m */; }; - D46CF84BE00F2CBDA459A24548BCF83E /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0EE59EE353D2BBE364A6C22BCB508 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46F2C3C63ED5A396CF8582008303ACF /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D4751835B72FA1290B8777AEC7120CF3 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FF13F55CC4AAC886AC1655B67B2CF7 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4BDC8F8037CDADBF887FF5A6AB8F6F3 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB49437EE6662AE3F79D5CCD51792BA3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4DA91A7E1325BFF8FF4698C686DFD38 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D80238F4A32910A3C3FB4AA8C8BE4 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D50E62A153C44C6CC9ABF79CBFD48102 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC27BBE71CF896A473E9442705F5C9 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D511760F682C5164378EDB224C6F7EE6 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB09C9C94A7F82495AC97A3F1227268 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D524657E775A9CA4A65E759E975BA472 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89018834D534769B75F8DC590BE1B936 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D52F4A2DC2334FED9963B2B2302E92B0 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7935B83BC24DF19D7956C52B5F0FD9AD /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D566A2486E13F6E1DABB65A14B33BDB1 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E519D49602CAEAC5F3BDA5098AB1A1F /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5697870E7280CC18EAEEB7A08E6E42D /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CB2935256EA07996D8EA7D1D69CF1D /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D595FC6C187DC1528C902F295765A2CE /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34F263893795DF638CDFB4BBBA1B64E1 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D598434AA7BFD5E7568290B146470B8A /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51DCC33865E389A68F9FB1AD9E429 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D5DA7FDD90A69D15733EFBC65D7F9B46 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5267CE5B1FB92B94F1B2E029F7927D89 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E14D9F04797FDF01165C325615760D /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 95195942758D876BA106A6603AB4CD9E /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3560247C6E46DDA3B30411435C7E1A1F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D636E7FAD40CE34860CA94BB65C53C53 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = D4284B649987FFCDFC846B07E9E1E383 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D64BF2417AD4E222D18BB0D518BA77DD /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE13C53C40A4DE3388B5D63D41BD451F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D6785E69AABB9B83108A4D5224D3A615 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CF0A0117B039E5FB5EDC434A029166B /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D68D4B329A8BF0BD84193D0CB1FD903E /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A284B21F5FAED59FA8A35F863AB4FCA7 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6957BA8AE8792E8CD6C7C93799BA1E5 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D50449A0C52E56FFDA06D422DA0688 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6ADDE5F2DB795A99676F0B4B8DD5A93 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68F9095BC49613AB556508B230A337A2 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D6CAAF9E82CF0B0703CE316A18C69ECB /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D6EEB0CCAC842C5084765AC47C7CA28A /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8F34C28A3467C2F89B08FD4B16050E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D70351ADED509E67F300B15FEA58821D /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B46EE3E25940AC908C66811A34A1667 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7088287E774FDF0755908900AC8E32D /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */; }; - D7229F4E2BE77C49FFD4C9C76A80B83F /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4EEE64DB388662057CFDFAFB42528E /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D72BE1C5CE6B01D9202828EF43A2B535 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A773416BDA54B843A6B250EE5C0DEC17 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D752E942FFC4EA7BD44FD34BC186775B /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D75D68262594AD560AE7EF9BFC2191A0 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CCA1E139B68E3B9FC446CF5886F40D /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7B61BF57679D9A602EE9D48DA3F26C7 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4FBE679DA69BB2666679AE9F5BF878 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7C4BA4CB7AE262E7D419E056EB118C9 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D5ED2F40665DDC7957BC6B4DDB1673 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D7D9782CC4F90E9314183D62871D4C8F /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 134F0D04FF8A8D1D7A28CDC260AE7781 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D86F0AAD9B58E6BCBBA3ECDF404524B6 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D884B9DCB79D69CEB9A90838E6274CFF /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6883BC5EB041B40DF7AB2C1130903FF3 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D89BA75883211F1113630B0827A51F02 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A518B86ECA3DCDF27243BE02AB3497 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEFB975DF39466F41BE2F5855D1278B /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8AD269AB7F763F52B434676DFA317FC /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7CDC56D6028643CF8EF4DF99A8D5D0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8B9E62F1A31E9899B133D0A8FAF57D8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B28C5C264B060B9FF25F08309558996 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8EE94CC6C7A9227088576E7E1550E69 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1268A95F1A58F3EA1AC85789DB2A6077 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F7436444CB84598A9A0D4053B4A498 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C580B97F36D58B9BC212C9F46DF6F87F /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8FAD9EAB5286B939AE385C497B53851 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF474746FD313D8E8496FDE44A98010D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8FEFAB103598F83D4288510BC34F532 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EA15F9CF8862F3570AF4914DC754C5 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D910B0D1A126C6C4DE6BCB2490E9765A /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9282A245796E9DE62F3894311023886 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1E80AE43DC84B849F0AFA26E4349BB /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D941BFD7B83D8424B905EA09095BC0B7 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C8121F55F0F6EB83C17DF1C99D92C7 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D94D8087907C94BCA56BF4E4E3738049 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E349D8CC5F54AF6A723AEF764E8604A /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9506B18DBF1172F2843B56EF60880D2 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D9B1FA2CC490AF956E376E82D534FE /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D955A36E581E5BB439E1FE0DAE938601 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D601244E007A1B405CD39E44E38CC84 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D977614A0D34C13E18A6DC5F4C070114 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F075A4F39EBA3044CBC9451FEE99B5AE /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DF68295481CDCE73B7CFDDFD064745 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A9D95B6B33893138BD930F10E50C80 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DA367F71AA2F445D3462AA6BB9E7EAB4 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E1507635FB3A6B7DE79AC2B0BDC498E8 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA3BBB40AD0EEE5B225A05D1A002E0F7 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = FACEB6076300CA9679DF7FE305B64C7B /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA5340A5386F8EDD4DA7887A6D3EC2A7 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 62330B7E1CA33260E262D72292FB2564 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA66587A75268FA7B7AAE3EC9AD3434B /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FD325C463FF44B34CCDDF2574BD0F5 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA855B4799B4010FA0561564907CDE42 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3FD87E8D3685FEC4D82B0C4645705FB /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DA9BE5F1CC4843F8DC4B4C82BA7D50CB /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C782B0971E28444D5AE09C8580D79435 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA470BEB07DC2899E85CF5EA7906F02 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB696DAA46DEFAD66FA6780FBAD04BCC /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DAA47B5A58863AFF7CA77F48EED875AF /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717FB48C565A515F9CE9BF60592582C7 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DAB797CF397C4568657B54A3D8367058 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DABB931125F1425121B3CC1124BEB01F /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E89E7D6CD4AB18A5AC9E2C777D9F55C4 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE0681B9D03263B34393EC6CC850491 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1D420D455EFA5EAF6FEF74475F5D54 /* React-RCTLinking-dummy.m */; }; - DAEEA93B997ED66D763ACB0567550B04 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F614579E3985C51C8ED2E4037912FB /* RNSScreenStackHeaderConfig.m */; }; - DAEF666C1D4B5A7B7B951BDFF4D04037 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866778BE666FEEEA577F6111F3EAADC /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAF6454E60A1B3F9286E0B1C6028ED16 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E49BBEDD3C3E5926A39C940729F502 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DAF8F8BDA05E2DAA00A72086DC560FC6 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE846EF1DD9DD88BB8C4E52C3F03FB1 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB199E7D3E4E0D877B287A176EEF3CE1 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE05D158994FBEBCAD230240A845761 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB2268E2809AFB87FDA3A1E8F5DE68AA /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7765DE553AA96A930B2B993A3A9BE9CE /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB28A0845B6F272D15C6799AB3109CDC /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AF5C76547E28D942A8322024EAF93 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB499775365AAEBCBD66BC5EDF02D820 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DB61F8E288B0924C4A0DB02DAFD84911 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB45DD1B0AC7F6AE5A60AA62873F714 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB6A23357BE7BC6509DCDEF5B4378506 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B635324625BE3E988BBF3BB7300156D2 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBB7C6A12539B4690B9A6406FDAB4538 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 878FD6B98E602FF283F8FDC85CA5D4B2 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD0195D363BA1BB3CC3462C315D0BBE /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 602D5CC6712247731B817BE5150A6B1B /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD462C81027F7857F8490F752BE5EAF /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F94D80D073F02A43420AD4D66D1BD5 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBD8896568155EEAA17C95361582FF4D /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBE804DE9CEF67E1623754AE04D01EC5 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBD5FE66FA339472B4BAEF7CB6650C7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF50B2B9BB054F4372C419992BA98F3 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 526C4BB2CE3D8B5940A129B9B15AF8BD /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBF84EBBDF43C741A5B3A2DA9A90623E /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A44E020E5B15A1D893C8EBA09DC0072F /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0C9797707FEBB9BC641970639B6A41 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 62D9B85BBC1CC4E991ABA857D3146DC5 /* evmap.c */; }; - DC44C2AA1EFE56F5A38E4AC9FF4C847F /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6DF753E72643E4ED36FD225C9249 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC54FFB09F78BCC9E04864BC85AD537B /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A44987F80CD7936D4065EFBA3F6ABA33 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC68F41CD0D711CC3F800EC091188F00 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1959C6DDB752A16DC60D3EA7FB3697 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC7B6C02A926023240203039C10E163B /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E5733090ABE9C4A129DF7D7DF3D29 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC96F7A06538AE5390B241E9E3AAA154 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 566903189F64A2CEFCC8FA57C309F6E7 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC9B2C1E9AA3F50556C4C6B7F73EC5CD /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB21C8AB637D887FF795AE54809B835 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB885BED86AF85EB774342F66F855C2 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 557A4EF6293C9D3B7AC2609835885816 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DCD9A8F1E6311BDFA5717EACA78B8147 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FA651216E5171A38230135A63794EF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE82FA8BF1A0D93929E89D8096A59CC /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 181E06A36FE52CA8FFD348745452B944 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD1917E1C0396C8ED69634A0901ECBA9 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 581CE49EC111C9E47933FB3DBAFA7529 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD319CD23AA59CDE596846ABBFC440A1 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C881044F22CAA58C6A71C46E7BB21C /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DD4156B5F01833C7E21AC57647F0F19F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 72194A1754F2C3D06F9B102512379422 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD4A45FFB85240D7284DE3DFE1485EC8 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB758B38819BEB96C41AB3B41C42880 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD4A5AF65B4E46A771F647A629E9924A /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFFCAB6A668CC8083D9FDDFB21F12A16 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DD4B930529658C5730C0D0910E77ACA1 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0694198CD56C1A83B138E10F0611B123 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDAF4341498AD3CFA5D7DE181DF0C331 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC1D28A222F7F8B5FCE170E9CCF2E17 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F3A1BD5D2F0BDA29EA68352F082532 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDF0D3D1AF06DDA3F5FF94E7ECFFB17B /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3301DBE01170B251F85420B4E17C7191 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DDF916D1BDFFE10C2C33D0D59AD85F2E /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07628ECD580436372FABAF0A61AC31D2 /* RNSScreenContainer.m */; }; - DE0DA0A9F7C46915C4ABBB9B80E76602 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3917C30E99F5061D5E4F4B02F1A5E4CF /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DE2BABEC295E3EB3F98060732BDFC9EC /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737F88CD628108AA8E175C2DC58A144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE50D1EDA37E587E5426FB72A1DE490D /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 69840657BB147FACE1051D29CFA3B3EE /* kqueue.c */; }; - DE7979492A876EA082D7A9D9D3C6BC6C /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 27716042DDC5A5116584BB0069AE8059 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEEB202BE612449A5A956092C966D4CC /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BA67564C344789FF80CE63A95B3956 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEFD875E766E9FF5B184656E70AAD265 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6F8FE3970F1BF9A7D294340E830EE2 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF5FE8F93E0DCC7C384109A420442B1C /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF64E2408CDE86B330C05471907EB9AB /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 370BE1295F24AF8F54BF7EBDD0ED9142 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DF7834967A9A965F19A5565417E8DDA1 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 5840ADB5D06973D084C44748B0306C35 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF78A04CFE030E6B4502928DB3EDC67E /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B6867710FFD0F3595932D7CED43986 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DF7EFB6074417F6E5632ED6A8D9D239A /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 859B60DE21CF193FCB61B5F3A5D93AB3 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DF981DC26A0157A177E871DFDAB15EA8 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9D21EE61A565E67A915AAABBC662EF /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD2ADDD2136F77D56D6DCA5A9EEC11B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFB9F07D9C8C13C184D0C9A35BEE064A /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE00273E79C3EECB668CF0195532E8E /* bufferevent_pair.c */; }; - DFCBD9F6A33609D9152AC7F59B8D24B1 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C62C69D900C6375D9A3FD2B9C4F5C5 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00E44C6F3D0739CF4E77CFC4AE9D068 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D9EDA71B96B53D6F178BF8A94F59DD7 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E013986002DC6F905113FAB5A5908802 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E07DF9D413D175D48D735234D06725C7 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF5CE0870A093115842635070C31DB /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E08BD66FA3B80170874D701CCA57C407 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65C6BC961861AAAE14F506F525154305 /* format.cc */; }; - E0979662095B85486BEE661D93F7CDA2 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 205848CE013CF0F6A82C7111C75866A9 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E122057F63E8AE951580ED777D08CA57 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E128A7C38AD47F3FD0BC6AF3EBFCA1FE /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B606415AF1D4B4A249668D9D9AA41B /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E13DB6951DBD7BC2C669720630316E91 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECC6128C9E56D0D7F0280C011D9008 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E14C2F13D3826C128117FC3F21B7CEC0 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1691C6E1DA7D81D9A7CD1BFA19B5DEBB /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E17C8D3EE083FF16CD250E0C70E2C77C /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40BAF975A071BE1349CD3F33BFBFB014 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E1A334C17E2687554286F325B11167BF /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9A93A19D32D1081C325F076109E172 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1BCC4B1531BC01270DC579AD23ABCC4 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = C99394619052268DE463CF56303433A6 /* UIView+Yoga.m */; }; - E1C40ED595EB4928EB8989F2CA5837FA /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E7D09E85167861A2431708E6A76E86 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1FC2C3F4AFFAF1558A0BEDD18F4311C /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 329C4B9228CDA855266F5E4284433F3A /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1FD7EEF07B8079C1BA938E1C7522FD6 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DBBB0D26ACFAC130E174B47593908B /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2053AEC1816860B57490F440F1084AB /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E05E187B2D2A5B1952E8CA8E15F2AE /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E22EE25BA0AFCDDBBABF8D09138A8D40 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6C067520D9CF32C7812E8B8666877A /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2903179F7DB30AB034C6A23968421E8 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7913A299A9B2B5AA96D6BFD4C3866B8D /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E29865A621F5BEAF28F33AA3E8869426 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 366207BA9EF22A7C9550F411FCFC6C74 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E299C8A33FB36A4793CA01059CB85042 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAAEE9ED5AD7AE0DE5EB55A37C8E937 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A1BFBFECBD7D362E1272A0B9B4911E /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A4A08DE523026A701EEAB1DFACF878 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BE85FE2A4876ED18EA405B3597A9A2 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D25205909C5820B07E9A10864AECC8 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E2C1FE6D4F33AA5FA41A4229DC4493AA /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05549E686B609D3EC452BC8237A47B /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2C419CFAE58E6C484CF58F41B340E31 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA59A362DF27A60F43504E35FBF3897 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D48EAFB03E2EB8EE7361FF74409125 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FC5A3CB282D2C1733ADC0756D5945C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D88B1D0AA40CF57DBD5D482E6B7F0BD4 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39567F6A313DE5DB539C6F8C02246C7 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EE09B06F68846C9FC9E57B3187C415 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BD9BFB51EAE6F13656DCD39D5089DF /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F04E0FD3E318415DEF0B0CE5778F9FE3 /* RCTBaseTextInputView.m */; }; - E3CD4679E6ED6546B381478FE590CE47 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED6EC59D9EB9058DE09709B2C1E19A9 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E437C802668254C0E08CAE9CE4FE53C4 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E44D7A2C054C6E5492C515F877541D23 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF15077D3F32C094BB6A2C4EA6895A3 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D459996C8D199B278DCEB621FF3FBCC5 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E46FC715D989C7B5CEF7CA376F1F82D2 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DC8BCE0B16A7C130B40A6E48B243D3 /* RCTBaseTextInputViewManager.m */; }; - E47C31F18DAB5B2E7B17EBA385995B80 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 911A847FEFE78ABC2511672C2F7AF421 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E480AF56AB203C04F4FA058BE36E82B4 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49005BB90BA88BA9B8D97B90B3D9F1A2 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E48ABC9126C85531DE35635C9F63DB0D /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DF8035E3DE6854F5CE8530FAB268888 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F503335521BD9E50642757737E5A00 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = E61E05ED71A6C4F9CA747FB587173F72 /* PTUSBHub.m */; }; - E4BD745C55BE57EA87C14B4E7F8C5F18 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = A135AA31C4DEF5ED89164D42B364859B /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E4C59F5D985D6AF81C40630BB5F042D4 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E4DB49F8B07605439E3285823EDEFD56 /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8C6CC9F54F5FCAB4E2A7D49CF052FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4E96C5A609595F895588C104262975B /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FFAF78372A6B8AA0ED3B06253386FD /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E50CED42F8A433CB191666686C00A5A3 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E32C94B79B203FF823FF01D6053472E /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5153BD74D5359F72196ACE31BD82F5D /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B63399DF7BB14971E96ABD224D409F7 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E53F8116BA30AB1E506300A1A5394C36 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA8942391BB25692B95EA8AE03BD62AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E54668AC9DFFE5B9FE014C7BBB1F72D8 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD271FCEE121FE29A39DA5FA7992063A /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E54FF6C4D27A77C1B805D75E7BFD1355 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A6577314AD266CE9069AFD9C8EA591 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E55202C9A17DEEC54605ABAB63B329F1 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E5CFC6E5BBA7182EE33A6DDB0D6A8 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */; }; - E592531CE39DAA391C42543110CC50F9 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 345DB3A734591C08E8CD63C1B09A6787 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E59632FD0BD3AF930BC5453D232EE116 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5990294C7F71135333F44EC9E378BF5 /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F596D311BEBAAAF63D1608CDB51BF8 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E5D058095288E1A8D996AE4C65B5DC1F /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1D14DC8CC641A1F72379F273060C7D /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5D1CAB60C324077E138DBFBB52419AA /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E4EF9D0E0CD45E6D558BA04BA5B645 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD3A96F1AC3EC9227ACFED9CD8D7978 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E6EE5820EC7F1659EF4683E45FEB5E /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D942A7AF80504800F840BCEC3B5D258 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E8E8119382513714FD0F3C8102362B /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 985B1BEEEB3523A69ECBF24B851DAB89 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E61FD6CFE2317924E45DAFE9EFC11FA9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82567DA1C6A658398372D50699E8863F /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E633B22DAAF41AC8F8A2E08CE6AECFFF /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 22674D3B3366C14C5A886CB0D300062E /* make_combined_all_macho_gas.S */; }; - E63CE800D6401B04DC6A8E41314DD2AC /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59737DEF9411E245B384F02F1712080D /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E63D9B410E301EA8786711F287DC92D0 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8009FDE1879B9AF596C2B7F6EEB1A0 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E66B30842D413DE0029F89539A550CF6 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E66BEC137FF0933404E4343140F40B9B /* NSArray+Map.h in Headers */ = {isa = PBXBuildFile; fileRef = B20130E225E7E248D5BD128F60A625BB /* NSArray+Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E68447FCA4AC394114710B4CA1FE8265 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48A004EA2A963EDE65191323BB6DB0D9 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2080D44EE39EE883D8CF491A775C4 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E6AE2C06273C1B2F20E2FA92A198616D /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB78F97FCDAB7A8E0C479C575730692 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B6FE5FA268BD7E8A56E1CA4BCC4B56 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F318767A8CDCC692929B7821190527 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6DF15096C53ADB172156699EDBF9DA1 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A48D9F33C1B078CA89F5C81F3F879F10 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E702E11BE90636400C4840627DF7F175 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693654C9E9A9F8C3F710EAFC70F936D7 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E720A07E09DDBCF421091E59A544B2B6 /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9C4E4C7CB5576887DADE868D1D35D3 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0680A502E2A17C3EF531E236F28F29C9 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E76B9924616F10EE60A2386B60109138 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24971A438813A2B19369A6E521A600D7 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E7CA1525B44BA477EF10422B8E06BF82 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B223F39B8852A43883E130596331A5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7FACA08D2B50B6052606FCDC141CB30 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E80CA12F81EB6A39A021383A904B408E /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C832A55D8682D12B62F89CCFCBFBB46 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8230222C27127A5B8C4B828DF6972AA /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = E767731126AB948E874B970EF1BE7AFF /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E82F4C8731650D2C101CC039FA9547CF /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BB89C268CE435089C4531886FF937E /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8977EF2209E88A1C76ACE89AE139B5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E87957730C741EEC52C1B1960FBEB137 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E87B29D3C1716C91BA9D1DB823E3404A /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB902FEF5E3B8E76F96B2A39AD4EA4A /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A0948F54CF4DC178B9160F56C53162 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A0FB2ADA10DF302CBE8EAE12796348 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B2234606FEB52BCFE1EC0CB3C8A13F /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E53B3820297CFA55F0E95F0A0F24E99 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B5C6977CC809859567616DB4F538D7 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21479F41A69BD70AF0BC1B6F5C346CA7 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E8DBE7D5F37E21DA5BAF1A3472B2FB1E /* Pods-PocketTorah-PocketTorahTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2A3A770A47C3B40FDEE98174A54759 /* Pods-PocketTorah-PocketTorahTests-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8E4CA8829A628529A8C2D1F06084676 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B110D356A2384A3387573DABF96705BD /* evutil.c */; }; - E8EB6F48B7919F8F0F5DFEBBAAD64274 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C5AC027D097FFB1A98B0799EB1FFDD /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8FF284D6FE7707D7721D916CC37E0BD /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - E905184EF7D8753CFF9D7CCF1F6382D7 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6196398EF9A93DD0FC638C56649AEA01 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E90AB03B7332CB7B295225896F1DFAD0 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BF1BB5D347FCAF9BAC7CA0348207DF2 /* bufferevent_filter.c */; }; - E92D206BF41854AC86FD7948F9FF689D /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E93AEC49BD440B21DC6B3854323D1D74 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FC70249E74F930D4851FE4975964AF /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E943626B3F9FE3FA68D19D21A4018790 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708DECA4A15932361BF726582EBDB58 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F62E33F0F51D8BC5E4951330FE3DA38 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9702B05B4DBDDA1883727C572D0F164 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 187910F899833FC9D70ED5D05BE4AF17 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9718761D2CBA581E508C76598A7419E /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECA7202BB34315AC679A52E994E29C /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E975731B61807007171DB2ED1C23AA7D /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4554F52622C8AF0D7D3BBB8D7D0BE6C4 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E97A962F15889971FA8F7DC568553468 /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F79EE77CF8C6A6393EC47355285B448 /* event_tagging.c */; }; - E97DC4AC0A8715A6C6A61875CCBBDC69 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FC59A22F155226ABB1D12219E5323C5 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E98D3737DC0F4FB4CF332C4CE01E23A0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC88FBE381ED0BA6A6614CA3A08DF40 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99563E95E65151714CDEC4992BA9013 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF97552DDEFB806ED6C339BFAB7DFB27 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D173ADA0D346425D066FC8BA2FC1E3 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 301ABF3F2A4F5813FB276181CB585506 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D291E176E3E09ACE6BEDDECD550D4A /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D4A8364489D206437B51D142918FE /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E9D9981CBB57D240AB763DBC92DAB8E5 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 97664F7F97C1D7F1A40B14470F2E08B6 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D9AE33C065BA4500D1D5BFE59CC697 /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B83DA7354475737493C4DA3E59E5428F /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 862182A82AF9A2F1C1B02C44F29FC2F7 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E30FAB4AFFC8D00550652824815096 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A2A52AABB17FF2878DC4117F6AF504 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E697820478CBC72FB1B7AF87DE70EE /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E21C516096440394B4FE6F6C87DCD /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA0439541BA01A07DF03E9BDB9402556 /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */; }; - EA1BA7E9AC502DEE21C460AF07F13CF8 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BE773D55EBAB66F156A532DDEF39C6 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA31A21E8987D47CFA4D774D8DB6D85F /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA4F637F75A9E3FA971877CBB1DA877C /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 232A922D2DBFFACE84798E53FCE13117 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA55F18066A9AF49B71EDB22FC022230 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92E1A3C0B3D9E1A025BD74F195E43BC3 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EA56242A1AE9BDA9FD7EE6C2643F894D /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D23A27796719003161563112418CDA /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7391D45DF5AEFEEFED3E62AB4BD24B /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00E2DFDE250675BDE9F7579396C1EBE6 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - EA75A95C1B45E7FF5F97A2A20E67E167 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC32709DCE19273858F8C0B061FBD0 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7B28F302EDCE8217513AB19A1AD2D4 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 4130A5ACCA6EFF23A23A3BB955B8D0A3 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA8F5370BCBFA81EA30836B2BE742054 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34205B64B6A66C24015D607918E608D2 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EAB6CB82E9D390CBCC02DBD3CC810F66 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1CCF886E153E054E11425759D114E /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAFCB0C8E933F88DD0CE49987F993543 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A2673F63032E40510A03F8B41758FFE0 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB4A12CC6619B739F2847B37980F6424 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB561BF06269128A0FD1F87FDFBCB45F /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC66DA440F96FE6EDE7C48BE3C2E99E5 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EB59767A6CCC79F9341AC35F2424E74D /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF68F65545CD4127830A13FA089D047E /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EB7DE7BA15F1695C79EBA25F28FDDD12 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D72AD290B7F1305411B9F0AB9301A99E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB84B3EA5A690DFB66A6FD01B3BCBBD6 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C172C2AC8CECF2D55876796EAF9136 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBDB54BDD1531ABD081440F727F2D4F4 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4403E2252782EAC71F12A8E8511A35D9 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBE25824698811CA5B08E8B397D796FF /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F45FD38E7D63130DDBC450CEE794475 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBF2DC6C77F843BB5AD4574C7F4E08C6 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7087737310AD93EB6E58A920ED555CAF /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD6B5351705AA3627CEAAD69D8735F /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63C37011AE46ACD7DA57392DA7E9264F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EC1A06A7624B2C7CDEA4F9A7108E9BDE /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = DC86FDE65694EC1882455BF21EC6433C /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC49DC644AC102C5B7309D4486ED7E70 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72086FCF0DC64B39CA97D5546DAB8DE0 /* YogaKit-dummy.m */; }; - EC76E93FA92256BC7C522FC6A2A50CC6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24353E11C2066459B75324DE956102C /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ECB5488FD0AED02A38BEA55EA7ECAE4E /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4456A958761B3AC70D23A5FDD299DC /* http.c */; }; - ED104723FED207976BEBCAF3AA5BB1B8 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5BDE449D967E54E3B89C8631FD9F49 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED3B64D0B0246095E49A2905503C736C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C284F6230F276B009930072A0DEAB8 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED4C9009029CAE7C477B8883EB0D7376 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E018B141AAB76D59DFF9587E3C4B71A /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8DE13CAC870D1763D18E3B225FEDFD /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1932B1D65BCD050283BB9C2ABD61AE /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDA1E3FF88D267C9938B928816F14384 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C43981102668A46B15E99845CA99725A /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDBE83108D09E2310C305791B8706107 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7777D92621445BF0257E10F0F86ACD /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDCCD054982971D84CC2AA9518D7D153 /* Pods-PocketTorah-PocketTorahTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF60D3F88C5D5AC810BF03BC257FF9ED /* Pods-PocketTorah-PocketTorahTests-dummy.m */; }; - EDEE04EF79CF10115A759D46919AA1EE /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7DF8CF3F60C532F00794B61EB72DD2 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE387EA30A0F46372A53860B2BDACBEC /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54AAE3C35B7A3282C19FCAFBAA1098 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE3A550888F80DC343EE32DC8480CB44 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EE4008AEA39CE6167CCE046B8AB0EFB9 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE593974CD5FC835F7CE900EF0B6672D /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A884779B437B2F780CCBC1B235E2CC9E /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE630F7B37DAF19904AC57AA95A90605 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8800BFA7C423DE55B79D0BBAF96E07 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE736F98C8EB6340A50177697CCC1FED /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE97BF6641D599746B3FAD742740491C /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 642789143FCED44970FC89FC9ED02076 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EE9F9141A96EEE2F261651B9FD56F13B /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEA89A07AB3A2B17474C94BCF0B6398C /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B086A4330C0AD5C69B023ED3A5A530CE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEDF0AB0E85109C41ACC87CAF1045D64 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC1104C46B075BE7C612CB2CF026D2 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF48F6ACB8F2EF7850F4CCE3C57E0213 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F32ED5DFCFB86A8C891E7FB88D4D37 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EF50C64E26A794E976D9C705722594C2 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A4ED7EE1798A13A53A6943A56B909 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EF5752E48D0A90209506A18949229D58 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7593784F7F7B9489F4800EB0DCA31CA /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF7F30569A36D55A19EDDCD9E76DEA0F /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA821AF452BCA0DF297118D5C08D190 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8015E57C8BC50A02AE455C107D24C6 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E04D5E6F7758C911C78A8F2C9330991 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EF8E06E12BF9E382A58D6699A60783D7 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = B43F9E1D766BC8A3CDE1D810DB905D4E /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFE1DD6DD9B13668E58A8A60A61C091A /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8907EDA3BFD3370864303D8879F2A6 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0200672854751847954D177CFFAFDA6 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB0E0E0FB8E6079D2751D4B9292889 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA5BC897FB48083288C669DA5BF70A /* RNGestureHandlerEvents.m */; }; - F089F33D807E628074104DD4D0166E5F /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4364E71F687B75D965CDCBFFD505DF26 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0A65AA978F5761BC44AF039DD6ED767 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AB0BEA70A1745722B585DC5EB21EBBC /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F0AC141D2BF3C396F34B1F230E039C04 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0DCEC0FF964EF5CB2CC24074839C68C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E981ED29B5B67E990D16AB3350BD778 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F10066FFFCB05691561796C75A21D831 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = A17B3BE7712A4141EAECE30D5429FB8F /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F12031F81659138A16837B7729DC6D09 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = F617EB88974F7A9F8B1E81336CE97CBA /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F13444C30B355D4D57F501F668BD0B40 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 95355AE2B185AA69CEB2212FDF6A0C5E /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4331CC86D8FE43E33C1F58E475978 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1AA497BC246CF26FDBB4E773EA144DA /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09B84401E7363B850813E0B7E7060CBD /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F1B95A3FD0FA9103E9A49363059BECE3 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBB8BD5D0F704F0198C3358FA585BA9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1C2434D7455A486ABBF2618833DD870 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = F997CDFDC3F950F4321544ABA1A6FBA3 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1C637DA5E3CCF7CB5C8FD48580CE8A6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D8284150801A62CA7E047500EF644F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1F76EA0B1E982ABE19206F0F692F3C0 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AADF5B14C133962B4DA914DC4BBB0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1FAE23D977BBCACDC961879EC80C2EA /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 616C1C80D899AB471879C55DB0AF5AD0 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20D596F7CD415D3AFD84303D9393063 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E481D28C154EF3890946004BBC4AA0FE /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F2171715A8E987FD96524175D5431E0B /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03754738FE1C6C2DB32A407E13988594 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F22CC32128EB28C1B0B19CFCCF9B8DBD /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21136489EF0918C0CA925FD75031201C /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F26BA284EAEEA6487A44C5F0D662F6FF /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 941D502FDA5F931A5218BF6631F228F4 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2761979738D37446DCC3FEF1C76B37F /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2970910CF9424403F576E30A89D4C6B /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E08ACC272ED6B459E6C95093C5C43D /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2C247DB363678F3DC306A0CE4C0F76E /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 892EE75436EBB2EED13791DCA0F304AD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2D294EB3CA9801EF8D72C0F2C390392 /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B16B55A28D94C3DBC963722A2B360 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2D93F5FBA8C9892662DDE4FC1E24E56 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EAD435E5F12DCB3602C909D1667A40 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2EC99F11D5864673C8C3D746C012092 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04B88D1C743D994F31A79AE586024654 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2F318BFAB4C7BE1F30C4B682F30BC9C /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = CD36B16D26FE47D9B2EFBF363B489E80 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F5BF5FDF31EB0474CFC44516D7B51C /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B698000109AA8D5925E35FB4720F2051 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6DA7F82EABD052DD60F6BF00E9BA1 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39065F212EE27FAEBEE1EDBD603C999A /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F31271EABE68E04907ED2E06DBF97A11 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D44576BD9116ACB2F1CAA4A5F1E2B6 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F325782D6C930D9D4F38BDE60AFF4E9A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC905D622F26BC529606C504C75AC5 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F339733408C6F47DB8F8B5F5006792D9 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3412E526244382A4B1A93D6DF2A5214 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A2CBC2F986BD86376D47AB4678EB54 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F350610A8D5B847DE766C99AB03F5C2E /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7EF89C8323A3F60C59729AF4F8BF71 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F353A9E90FE4A06A8C1D419F96E703BE /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FDB6AD7D684B0DD23F222E270EC62 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3702748B3F3DC2584C50EA60EF84F24 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85661831E7A848AE409B5F8C193F51FA /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F37E11D2E6EADD387D02F4929E40D3D7 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1706057CB8DEE69C738EE8165697D41 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F37FAEF367C69475DA31B98606F50AE6 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E16051BA7BD627C9AB75B48E0DD6F898 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F39ED1FDABC34CF8863A9E75D3E90EB3 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3A16669A9187B992F2752A21222ECAF /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F476B1AAEFABF46F6A7E75BDED7FB8 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3C44ABB2C7C2DE97D911A26C210F038 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7C77CA417908065DDFD485417C2112 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F44CA0D7D752814FCB27A2653A8C6199 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0936719542299A7A47B01D65358B2353 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C76256057A0341883ACC15FF403F57 /* RNNativeViewHandler.m */; }; - F47834738C3399C03CB112AC256CD918 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 539684657BA19BE9F7D4E4E08DEC08D8 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4C07AC498E193D01F7FDD07A05BBABE /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 579FB2596F4990AC591309C89E855282 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4DCCF69ED1E5E13B5B83A9C2AFCD243 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A75690F45D1B241C11F87CDA9C9099 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4E28D1A9A7B4979E541F1952A305E2F /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4E867078D0B77FDF15AEBA1EC609DAE /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F0A66AB6EC8800C964068BBBCAA627 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5ADFB605B8C8A7D3EFAE771A31EA317 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F50700DD8B762BAC3CA897955D17229A /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 9253E47942126D94991D7FC3EB7BE96B /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5074EB40B929214373B7B5052BF6CD4 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9918FCE1B59BDA1730BE0D5351618952 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F537D0E7FDEC95EDC02E63526DEB4707 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0161A1977ED5A24F2684E0CC23918B /* RCTTextShadowView.m */; }; - F5454F659A305ECE34662FE4085EB602 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8B004748103E03DAD3B65FFF4DC5DD /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F54EA1054DE8DC14BB84006AAEDB8D23 /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 13835FDD97758D2FC12518E68308E94A /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5508099B73B75C57B5F3D44DF739988 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E161985708E2F9BC60485ABCCC4854 /* RNScreens-dummy.m */; }; - F56BD5CB7C40AE3B5BD089AF0B202886 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F57B7E124F92805253A074ECB091CA6B /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4093C6C84BEFC50EBFCAEA946AAAF18E /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F57EE452FA5C2DA56006CC898DDCF109 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9690A3FA35BE5F86BDF2F083E7C1BC23 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F58DAE748DFA409884FB2D24F39DF21B /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B750836A1F8C2CDFB2C121C9A7F06F /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F59D3802E68A8AC58DB6C2BD24F43509 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5A95F1DF5BF7978C8FA6D656544E492 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9675816D613911331E79B1233FB826 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5F70200664CD997CBD73F703CE5AA83 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 894AABC43BB995A4FCBAE713CAC89AB8 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6357A61B76836F258561BD9A54C8E23 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41336D60BB8F42E32D0556ED9ED8767E /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F63AFAA4D03B3CC3099E12244840C969 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 97066889E6264F98AF2B000F17E84C95 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F64CA34CFB153459C83EACB2C3508319 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F64F3B7461C26BB1BEAB00DCD555D4D3 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F67F823CA923ABF8333A01C1E7DD0A43 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 57159D28816431B552E8638AAAFAB87D /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F67F8AFB69B4FD5C901519DE73D6A8E1 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 60781BC8185F6740EB14D70CCEC71EC4 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6926C7721428DEC68F295586A4AF249 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CF4029BA130BCD265C8014CB2016F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69E7BE90C2667C917C5CEC2B45685EC /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6A97971FB44B83D9913FBC5A237CBCC /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCDE045707349A13EF741E0B5A830AA /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6C9E5C1FBB3B8E7008D56CE3DDE4B70 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = CBED0CFE7C701F3F82CE9F6D51C8D3BA /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6DBE28E82ADF1F07CCE41043242DBD6 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5382F4B22049F6BCACBDCF80590CBA0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F6EFF1C140FA04207053C809B8CAF974 /* RCTWeakViewHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC4521F32E0BE1AE496403358CBDB58 /* RCTWeakViewHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7008F4E54E2070AA7576EADA3F63D7A /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F714313E3248DFE9A4CE2074A19160E2 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 86887B295E195B4823ED2094604452C5 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71901B84F5DF07CEE87EA173F83CBA9 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A9CAC2EDC5FB6CB8779F6A74D9A6798 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F71C6015584E5D9D4C7603AA780F6F01 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EFCE1712AC3B4B562B9A6AF697797 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F75A61A7B3D556C89394BC300BE7923D /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A535D13DF2B6A16C6E11351DDD4F14D /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F78F87FC10FB8462432A84F29EDEE659 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB703BF1700EE2C37C9A6619993BF6F /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7A1306EBD449F65F1055DCC89783DD2 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5A6DE1504421AB3F7972497240B278 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7C66CC03AAF94B783484ABEE5C3B16E /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F30F8DFBD584C23306AA6609F39605CB /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7CB8740EA5F92AA4C55118CC794F1A9 /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A0BB33A3ED915AD91F44FA4BD0696C /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F7DADD5810D465ECE396CC7B3F9891CC /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 895FB49C292C7D98777E20119FD62162 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81AA1BC06F6F67B3B0F0EB0E9B18DE1 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CABB154F90324995E4AE3B490EDDC52 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F82667B7219D966CC9D195FBC83B1D57 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0DBED9AA06BBD50ED3FD77795AD34B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F839D85A1A39503C94F9367D65818F12 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = F3463515B975A0F8730B0D7396545990 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84A5618898221ED4167189B39C04CC0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17E51E807CE09FEC00030AEB10D23B4E /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F84C063F6276B9DB507D459F1CE4037F /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 786973C9E14B615CBA8E35021827B2A3 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F86C472CD83E17E77DA8D309C7470F32 /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = CD02E45313EB5B57C1F0B60570E700C2 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8A8612FBA6A49C1FEB4CFA7EF35F86D /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A19D25EBB4B72DF62BE8C9596AA5B /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8C7577C8DABC84EFE4F057EB5DC4F35 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEF8D6D51EE9654CA3153CD06E38181 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8D8B4471F7E9C0898E25769413E9EA4 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D832E5E8D443151EAA0DE4FD3C1DFA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8F5E39637B71DB5012A10D3D766E400 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F91C5B4BC291A95539C64CAE5024B7B4 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AE773D321878B89B9DD52036DABB8E /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F965DFC65E9A687E0FAA05A21BE89D91 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9882C22051E2E701697E9C8E5C53B59 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B92697BD1F3C17CED3BAE77E797EDDB1 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F98A4876D5BF0E0C3EC9D45135BAF833 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 481F2F9828431F52D8A5D15079D62ADF /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F98B281C4CBB361B17216C2B912B959F /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1DA2D1B2927D4E5F64C7BB107602B6A /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F9FA5CF10193AC6EB3D50C5F5CA4B3DB /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE872751A23184E29358AF6141B2901 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA35E24FDA2AF119569A6D7D71DE1C62 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1AFD923B7EF1571C232F7FAD4BA508 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41C654DD4E044323A991D9DA9BCB37 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 960F396533C585E6DBD0C070374F324F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA674782411DF1941A97EBD72EE14FF2 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 821623E26485D6B6BECEF967A2394009 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FA6A90F4CBED2BF22BDD5348B460CA85 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0BA2D90C3C1AAD185ED9AC53D51ECA /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA868B3D1C99A2CAFFA51EB7C1572479 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20CB3E5C0266061AE5305BE77E2B3CFF /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FAE5D591FAD4466CC7B2CA56C95D0962 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E665EFB85E7D96C1EF2D9263D2D36 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FAE5E67FD96E2ED6640558D8DF3BFD4C /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E6C3570F4EDA55947E6C543AAE54D7 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAFDF3FE4E3215D95EAAD0F734428AFF /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB00EF2C5EAA02E6E6E4058C3B3B9FD2 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1586BAFB4966C4B3555A0D19061A3BDE /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB207C0751FE845B40183CB9686F19A5 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BD7C95C66DA051127D712C91807817A /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FB332B52B971BA431EDC2F3A0B5BD57F /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFE81577F0F8CB79EFE274DCD3230C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB8AA8144FABCFE8FFE3A4380CB13356 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D84BE54931FF24BA032F44401F35C2 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB908788343A9762F393EC05C175B7B8 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 155173B327F4B122364E2865D4CB8E4E /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB921A53EE97252D891CEEF85064C8CF /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84111C002B69B2071B9CFD7831DFE289 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FB96E81F998A3F5544439088EA430E3B /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBD6A75E1F943EE7010AACA0755454B7 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A355E139E1A7D027E79E30047A0F232 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC110ED5EEF2CF32062B023797D38EB0 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0E236C476AD7919503F1A8DFFB7807E /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC139B24457C478EAAEBFA6C8589595F /* RCTBundleHolderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A018F03609C1B3CEE93B1F8DAEC5530A /* RCTBundleHolderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8A998B2B87E2B8684D15F3A672B359 /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D58F38A7DE8535C59BF5554A407C70 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B66B4F07C8326F0109D7463260AD969 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FD3104E2CC37FE17C5CF8FCB44546DAA /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AB28FE125C6D0F3711ACD12DDB8FAA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD661EEC32AC744B12D69B4861533B65 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD6BAE0F2E879BD3B5CC1A9AB73DB711 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5B5C939F26EE3210621E71B4496512 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD81820358D4F6123CFB27176D32F879 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C36DC1AB407DF041E74925570A1C9B31 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FD81E7D5E6FE10E243114A752DB267EC /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BC6E32796D6FFD82258102EB8F4D87 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FDBBEB2D201363ABBEF91CB15CBD4DA9 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C25724E865D89FF6A24B130399CD384 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDBEC5CAD6FC7E2E5A539817B9670721 /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D822B24D75585724F32397070E810D7A /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FDE6F1C9D83AD4E7491B3C975602618E /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E03E8423D33C640AA4AC9B5EAF4C7D /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE0EDB326F76525EF7D6F3262CE2514C /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE168A651BA70AB712F170643721AFF9 /* RNFSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBA3C14D6E9B6D29C1B31D72D89282E /* RNFSManager.m */; }; - FE1F31B321740210E2A7660D51E3F923 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2C55B59A62BFD2CE89C374812C3A83 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 244E1923F2E04531CF2F06357ECC0D7C /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FE3218A715F0E54279B5EA1908B9F351 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBCC0664BE6EC6D372E85C9EA504382 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE39B8375760092243491DE38F589D99 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F06AFB3EF8C41AADDD5624388AED2F1 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE40D13805858885168556871AE3A6DD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C57822A2406DAD17116072A50C725BF4 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FE42D558AEB0F5CB4180C398C118B4EE /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A5367AE6BFA606D4E11ABFD2B0E16F0D /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE54CDE6BE19432D90D43D1FD7442F1F /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFF825EDDB380002C55AFF2CF1BE39E /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE870A96F95875881DF1D2106E1047F4 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 327331FECC65A2DD61BD9D2E0F31DAA2 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FE9E3900ADA32FF2BB894E4B1460358A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD9CD46F71D9B2CB704FCFB2090E2E4 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEA294AA043D52FA0188C731E4ED3E17 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EECF907F4D60C0D7EFE50EC6A79CC5 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEA5FC593BA84536CABDC518F758A813 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFF2C464D3BCB1A642B92876B18DA5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEB36F1B0527C45DD1B377B7E26DFC58 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 262D28155040273041E2E3C92A1E02B9 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FECC716F4106BBC1CEB842D1A3370579 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3671788BCFAB3C0E329BB28599CB8873 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEF64FC10909AFB11BC13A5954662C7F /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B5A9D305D50885008EEDD2609AEB86 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF19E4D2D0820F2781D08F59F302E4F3 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEF9C944B36DA6FD504021B7D45BF6C /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */; }; - FF640DD30A3EFEBFA3E5D957FA731949 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD47E9E507068BADA59763DB96455A3 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF69A167E72A21613AB002C2DDA3EB3E /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43ED3D8737E075D6CB7AE2AC9404AD1C /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97D27CE0290DB7F2AC5D00DE81C3B4F4 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF946701CF6DAC8B4DE38080007736CA /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 226B295B4F12785725DBDA0B510CB992 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF9C48E2A238F8574E632C408F79445E /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD1A867E2E435D33828B33684D591C7 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FF9D593A19A9C5F538D7DC691D898FF9 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20816CB2D86C9A3A6160A10A7BDC43E5 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFBA41317FF692C86BC03A7A82681122 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A8EC8E52EA0F89FF4B23E6ADDE5CEE /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFCB89066E8555D5302D40796F8F32A2 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9E356CBCF41D667DFC32A24D5E814D0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FFD82C0AF4D7ACE6A3CDCB9399DE761E /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE21CF32B7017DE4CC928ED808005BC /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C93100305406F07A35C81C46BAC35 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE41A003B2A985232642D42426A2290 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 271218B9394DE4C2183D665DBB5FFBB8 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE4847290DD9A0BCBAA347331736A3F /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1DDFC6A65AA312B46202C901CF3898 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFEAD2FEE16472E7394D2DFCAB71B063 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E0596DECF5F390564DFEFF032A7791 /* signal.c */; }; + 0008E7B55E253DD0F8FED753C01F64CE /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03754738FE1C6C2DB32A407E13988594 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00141250B535176C58BAD2E83A7689AF /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 88188AED3DD45D4427399BB1C8FA673A /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 004E4D1D8616A94C8CA27C59ADC6E7EB /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 5840ADB5D06973D084C44748B0306C35 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 005BF8E0A292680C28D165F5C6690AE8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6203E2F3DE255EB2539CA8AA78F0F3 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 006C6F9986A8F6377966FD14E13E3F81 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F125AB1241C19A59F8E483A8C25CF02B /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 009634B38FF0B42C1EC2FC77A2ED6E66 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 406394966EB10514F897D0D6AAEBA282 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 009EB561687B35763A83C88DD5C09C31 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00AB2FCD464123A8956B46D043533193 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DF99618EC06774F1C02290546281F /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D048F0A7403410FE41995E0597B5A6 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D22FDC36F1D12B6D38566C9E627651 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 00E31BE440E471C6C5C12195C05FD2C8 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A37DF7979FC3E2158CBC9421500C92E8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 010A872FC34324611DA502FA530D1FB4 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6E0D0566F003FB5C7B6502ED3991 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 010CB58172B562C548BC26C6D9502CED /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A19FDEEEB5AD0772B288B13CDBD834D /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0112FD62F72319CED98B610E971E61AB /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2E62E10527A54702D7B76BC75970B6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01480CBB01971F7052CC0C0D7FDBECF2 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B4FE1DADEEF2497DB8C48E519CBE20 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 017452C4516327B27AD2BCB2E55C553B /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9250A01316581A641ADDAD4C948F638A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01752934B9788FEDE249D64AD6E27809 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D50449A0C52E56FFDA06D422DA0688 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01B3E1F21D960A1658B4BFEA270E2E4C /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E8801BE83668BAA657EE3CC91CC682 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CA579758C310F82F955681D7F3AB01 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 98403D210AEC4D0F4A1469B26CD0E9A5 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF8736D9437701F49DA14AF808828F /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D942A7AF80504800F840BCEC3B5D258 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01F288F49D7AC9CCEF89B086C6535539 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 845292F3BDDD255B6D20E1F188BE5AAE /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 020BD5E0139B8CF985336067482D1EEC /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F28D48A35744448D47431429E87BB09 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 021C198FE10C90913966B192011221A3 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B46D51A2467FE8F574CC5FD9B404035 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02576FCEEB89A5BC24E83940FE638F5C /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B6234C08FD5E27EE8EC78AAF97D807B7 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02692A83CFFC27BAF389D2B759D60446 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 026B361B851ABDB4400DD32DEECC87FF /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 166765215E3CD63328BA195CBB0AA6CC /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0292A301ACAE2566FF1A48C6F7DFA7E6 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EA87D04A239DA92DDD4C9728EC38BF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A1A0925B8A9040BBDFB7261DCE1B2C /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = E61E05ED71A6C4F9CA747FB587173F72 /* PTUSBHub.m */; }; + 02B5A900DBBEF8E297DFE5D4D96BA072 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AADF5B14C133962B4DA914DC4BBB0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02BB0A2D41A41693B0F5FB2E454430A6 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C782B0971E28444D5AE09C8580D79435 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02C52A733C46641EB35137A8AD34782D /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AA66A72BB1FA6730FEC5B708E4910 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02E8DD000556639AB81C212BA1716DB3 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98A1E4704733CC61D865CA6A8967D96 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 02FE178C1A30181C61895DF3DB38F493 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2F0B31CD6C399B0DD2C3E831E7F8D2 /* RNCSafeAreaViewMode.m */; }; + 0300C005B5590CF8587DA854CDB42583 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9816686ED6EB65319F3950BC977466 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0333FD4C53A7A12705204AE6CE8D3DC1 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E347FA8EC8E2CF200AEC60A735D85208 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03374F026A11EF4DC4C86C5FE138AFAB /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DE5C1EE87669FF26F068AEAB57CC07 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 035FD58B363EE97C3309BD343ADD7C1A /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = A135AA31C4DEF5ED89164D42B364859B /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 03A17C9BFAE60DBBAA96E5E5B915F394 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A3804C01E774EB3C866E7FC2E92B5E /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03B4052189C4770CAE325A76294C9B1A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CE06EE125D8D6E50C90FAD42905541A2 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03C8251493A4E58CFAE872C049C856BD /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBA4392767C5E04855D4A1DC0684D89 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03DDCB17E0A373A5AFEB82C68D700FA1 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F3C4FA5DBB44207305624510DF9FA6 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03E53C88ABFBF1AEAF0E43B2898D5398 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2675804FFF6666B5C06AACD4FB5EC9AD /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 0420364915157CBC8792A5260DF018DC /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6B4F389D05DD08ED1C242489DEC44 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04254940BACF1BCC5370DD001F7C2B58 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE9612757CEE23F2C1DE8372488D373 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0445E1A7FC08CE161E8254DEE0092141 /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECECC3C44FF5C2733FDCE96CCA59FB35 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 044BECF1A8B1CBD68A4A0F3EBA387112 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E1C2559A5BF87F350DA10110613364 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044D587C0C34533CE14EDD59545C582E /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 680BDA0E6D1FEC57120D2A0E3E4C7D54 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04531209595CC00D5254766E3B9A5AF1 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C4AAD24C62F06153E791F0427A809 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 046D985F7AA6986C0BD26B552F95BCFE /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C0D9F1A9BBE4D330BE0E76392A1178 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 048742BFB92CE4F17116BD385AD8F851 /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 863C57C4B51FEE3F78CDE65668DE005F /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0497605F99BC609608698970ED0AC9D4 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C10F0C4A5EB18414128FFFAAE2FFA115 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B7E634C6388455EBAF25A84C6AF192 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E161985708E2F9BC60485ABCCC4854 /* RNScreens-dummy.m */; }; + 04B81A8CCA3F3F540FF5DCB8A332299F /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D282B8DE4B6A175A495404798E078770 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B85A2FC5483FA374E75FD0470C4501 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3F983FA32B5A35DAA7EC873D69E4F4 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04E64CDFB355A72A56DD66F11CCAA53A /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0549A366348E4B3141B4E979FC053DDE /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = E88A3386A428E73C00B3E54ABEF6B4BC /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05841898625D0BF838D922CA86C45D6C /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9918FCE1B59BDA1730BE0D5351618952 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05943B8C41B2FD0A56EBC3B6DDFCB13C /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44314FEEAF9AA1C9B3B735419DF45E38 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05972C3E9ED201C6707090175D8D3A3D /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95462A9E050F6A5D33A4B9639E8E2874 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 05B4CAFEC156AF204101411E76794021 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F93903AAEAD0B7868F9383A47A2986 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05CD328966902884BF037B8C1B929CB7 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = C547A08EC202157DD2CF320B6CDA8B00 /* bufferevent_ratelim.c */; }; + 05D30AED0BC6231306C4C524DF8B2A04 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A71628F64E7EB62105DBDA7C75712 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 060DB0EDCC4D3D87C43F0F81F65F63F1 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 062A7CA7E61CC3E136E48BF2589B7E2E /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 065F8EBFD1AADD84F3C85A3FF9895A31 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A23FBAC585078DF037080F8B11DD8BF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 068884631AB6CB1B7987CA81E65D0286 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06931219F2FDAE94B021A559647962AD /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB627285DA897E8D9E3402E236903D2 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 069CC00E01F1FF1F5C476C231F4932D9 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E2F7D5F0D9BE1AB9DD0EB7A66AEF61 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 837D52E17368A0D3E07AE7DCED1DDD10 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0730F794A0B184793942DB8EECC85277 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = B89215DD5844E0755F7C21A61748C0B9 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B2688C5A6DC4EF9A6742850D35CEFF /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 790A80641739EDEF689A7AD7A2E5C178 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 07C5DF193495CB2917E5E2D81DF39180 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = C360FF66A9599CC9F671199AA33C44A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07D08F98894730AE2108E0E8F7FD6335 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 333B048382EFF3E05714C44737E8FECE /* YGLayout.m */; }; + 07DB5F9A6000FB87722B60B317034D46 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3561C42857555012EBA2317AB7A17A13 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07DC2355BC966074AABE369467E2D501 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 07E715A50355B20C6E9FD472E248F224 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AABDEBF8D9B593F35F9DE17572E16F /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07EF7A1A238A6AE8E22301DB6D2CB941 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D2E61CBDA4B5B3C05E5B48617E87F /* fmt-dummy.m */; }; + 07F37B136730DDEF184A8636EF850B53 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A55D56A646001538AC26B61CB6B447D1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 082FC987F9BB628256A7223ACB6195B1 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0849AFDC75A3A705F3129F540AEFD66E /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 7092343B1D33DE3360870D1ADA3A9327 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 084A958EE3A3F5C6FEA18C15D7800EDB /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CBE0EEDBBC7C3F5E1C1593C73B7FD6 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08555B883D4F8431E0BCA50DF4C7925A /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCE5E8A6769DB6C502C3A73B0BF632D /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 086901935ABDDF06FFFC25ACD24375F0 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEF932892395635722A5E2D5574F33D /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0891FA52147C349B1764A0CCDFE73CCD /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90AD6240EA960B5ED7BAA3968D014A4B /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 08B408A045C7E4F657945160875142B1 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3513F973A4DDF6C03C08134B628D9C16 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 08D1785E3A8004506DAC10F038E97924 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CEBB24EE6C172CE5C37B1917A1BF06 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08FA63A978893C3CFCB0B90911F9CC46 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B245661A8374CFDAD3E85B006EBC1E65 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 08FCD71E18A57213BCDBA2AB3D95D882 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 787922EA4CF032C4F0F0D84B324BC2B6 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0919671A81407C959346C3FCAD4FD675 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14645535C90D006B4C998ADF46A83176 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09459BED3C0265051CC6E2651265277D /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = B268A4F1805BF5B52117FD5EB2F83C0F /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0961557C6F52166BD1110515C7CA30DD /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 06656CCA8A793DD230A393FEA328A00D /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09834715D605D2F56B38FB79516925C1 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 581CE49EC111C9E47933FB3DBAFA7529 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0991ADC4BD5CAD7CF018CD353CF1D37E /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 477CF87B8F45F6961FEAFE00915DF132 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0995F5A1FF725A43C1D8DE511519C7F3 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E404F7B8D082BDC9589DC02C05E896F6 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 09BC8D45B0B7408B85495BB3BDF97312 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6F6EA5CD778A4781FB3D198F6AD5D30 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 09D5628DD05655C862B50A76EF7AF634 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F18BFA79989820D99FFCC9263C9464D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09E84EB33970B54F503734A7FA8BC370 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D44F9958B8C17BD0ABE418BE3A74C18B /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A129011232614CCADFFED2753498562 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F94D80D073F02A43420AD4D66D1BD5 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0A391C877E77B7F4392C18CB35FB2CBA /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED591977873DDD315D87622B317EC01 /* GCDAsyncUdpSocket.m */; }; + 0A45333A61CC7CC505DF47D6766B4BFB /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F70A8690C0867CC4864259708F225ECF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0A4E9247A05A338309524A9C0DBDEB86 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECC6128C9E56D0D7F0280C011D9008 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A54D4B1BDB729F9E7B7DF1009D1DC1A /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = D89F38492F09B3B4A90736262F6DE5E3 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A5E15AE38D2BF523C3527ABD261F84B /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B722F821FB74468DA8D3DCB0C7FE46 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A76C4FBF791C771BD52B03980C800DF /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DCBBBBD3C47E4874DC4FCFB2757430 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B0F5F96E0ADEBE1B798BDF45528DCA0 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C50B797ADFB86D701434E82E51462DA /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0B2D4A7D6361E6231474683044C6BE0E /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E0440FDD0B5456F9117A1B8BC8D2F1 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B51A9E2EC117499629C78D2DD3D5A47 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A368B3EC185DDE79A8A50F6D2214787F /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B6FEB9911631952929FEAAA6D0F5EE3 /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = CD36B16D26FE47D9B2EFBF363B489E80 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B8BE6E648BB736E09B0AF84A632181B /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFB1660EAFD9C417EC49383A42932F4 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA25F6EECDAE27457BEF715A8F22C07 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0BB01EA53D6FB25A87F5DC30947F8D85 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BF0D6EFAE827BC0750B8230BDF8716B /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 819BC4C7E0710EA600E464B4211691F5 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0AD37AE307BAC4CDF2E87D1BFAC45C /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC74F858629FF882D0466E8469E1B583 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0C3C8ABC1AF99345E49F632B8A8E0053 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42799C27F8BBD3704E93518488F391BD /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0C7CF234E81E5D3A134CA1B819F06376 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CB49F99F3A01421582BB4074AD30322 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D80238F4A32910A3C3FB4AA8C8BE4 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF2F3DAE2BB3E6D3C525D71BEAD6D7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = E285B902B4C6ECAB00BA27BCB7CEDDCF /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CD1D98DF962B6B9198EBBD0B55F3433 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 343ACBFF51516FD5F147F1A62DB55535 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CE7B20766C150A6D360D2EBE9BC5636 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CFF43836F9A9C72C962F72A0F736D04 /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 599D94CDDE9A56C3BE2D8ECA5F9B1EAA /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0D0A83E57C9B8F31620E5F4E0E665EF2 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E5CFC6E5BBA7182EE33A6DDB0D6A8 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0D1D9E97CACB70A80C3FB87FC1B8B819 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0234C21F1ED1900495394037B0A334 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D3603D6C6295171CDC205989D549000 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 959B09C304EA4A905C9C966BAA013B29 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0D4E45ED1F014F0DA78D53CB701E44F0 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 29512FB8C9364FAC82433EF805225522 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D67B061CA8E4E076492F14AD3F02FA3 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD7F186FBB4E0CC65A4F3984D8D877 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D8069035D9A9B646FCEB9C0CF30B960 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7DAB6C523370F958F58A5C659811BB /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D8CA72CDFE00BAE6A4105BD9A34B925 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE17F1BCCFF89BB5E5084FC6259A93 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D9E04A04206366C86B044BB895A02D9 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3560247C6E46DDA3B30411435C7E1A1F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DC35B7D4BA9B432C3BCDC6223A04A71 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D3DC13ADC3A52EDC337C1D63D6F0196 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0DFDD8605EAEEB0CF65788A0FD62DDC4 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0E017AE2696D5127874849A0ADCD7A4F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 046E000D3E14978F4828969A1DD1F554 /* NSTextStorage+FontScaling.m */; }; + 0E1ACF3A0A9C9BBA61A8E36478A465B0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15593A84444D392694A6FE6B7091B86F /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0E2179890EEB7AF1441BC5ED52CCC448 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 366207BA9EF22A7C9550F411FCFC6C74 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E6B3E403BE3021438075B5BFC384591 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C2A6D616B01C9E02C8BE7457F26735 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EC9B6A7A8F625727CBBABCC61180653 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE13C53C40A4DE3388B5D63D41BD451F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 0F5CD1F4C729EA7F8E4871F1F66BD28F /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB20B54CD28EA7D58DFBA45BED2558 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F657B3BD8F60DA81E5E545BEB90EAA4 /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3121962FBD3225705104EF4A46D8D /* RCTTypeSafety-dummy.m */; }; + 0F6E3FCC46F9CF4BA09FE93B55B06237 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF6F2DCAB649C9D9C5D3C9C9083DA3 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F867300D9FC297CAB44ECADDDFADAB0 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4B0196467DB7CB20A07CE038E6515A /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0FADB7BC290F3511728F35D57C6CA3E2 /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC0CEA215B247271ACCFF6E6199A975 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A773416BDA54B843A6B250EE5C0DEC17 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0FD280C3D347889EF9D2A76EF6C9AC7B /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1DDA77C31999D60488A6C795EAF647 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 105A1BE1CB2836BC540A8CE41A8B7D7D /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE425FF852ED1446949B4FFA74BF7BB /* React-RCTText-dummy.m */; }; + 10602A185D367F75F44FBC3EC7B6DC96 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 579FB2596F4990AC591309C89E855282 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10684A73F1D69B42CF658919A4859CBC /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADE6EAE9822AFEE73753E25D747249F /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 107598A104131C40F1F687324E9CE1D9 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F0FE27DF265875E250F80ACFDE7C80 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10786810E8C876327F653DF61EE6EFFA /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D7ECF00D6A9939D86922892D5C1983 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 108AD08E70FC29158269C6CC985F5CE5 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CCA1E139B68E3B9FC446CF5886F40D /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 109963092205C98BAEF64B6E1F15D575 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E7C6147B7140102E5486FDF2B87491 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 109C80F53B9BC28B9D4CF56E61095CC0 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF3365750B28E5303A9713B438F442A /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10BDFF1E58F5F89C47F6833A870D1756 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4364E71F687B75D965CDCBFFD505DF26 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C60684E9D9B534EA328D4425D8075B /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = F283234BB2C8106E306D3614D0B494BD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 10DB9DE581C363CB42C14BE0F2903A87 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11121EB3F538EE3C0374896FF61A9F0D /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F7F6B23E502BA01C6C8225A8DAC582 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 113A4A99620CC453B58A967A850E8122 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D3E9C70299CCCB285DA5A4D57E94C0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116539D3774510C37CF34CD0747840E7 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116B682D351E8D783648E5169B1C9227 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7085A217525AEABB13236B72D32268 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 117DA897050065FE5B79FFD8A6AF3B8F /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 57159D28816431B552E8638AAAFAB87D /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11CDAC39454C52C90D4C908E2D74087F /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 808F7FD8BA188A305DEEF79A018DC94D /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11DAA9355059465C61C2653A503F92DE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6F8FE3970F1BF9A7D294340E830EE2 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DC6F7D7D39D23864187E09D6D5DFBE /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 55AEBCACD5E7459CD4DC35C5D6F297DA /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DFA6BF7B4030703765A0CE69D5B2C5 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBD5FE66FA339472B4BAEF7CB6650C7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11EEE6086C8B840D5B9E85EF28C03568 /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 47446390A804C02F6910A50AD58044FE /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 122CF817B91489202E09ECF68EF4A18A /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BA67564C344789FF80CE63A95B3956 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 123FA432D5AB9C496F8EC724F84F17DB /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E00437B5B88C5A16FF27610054AADAE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127160A437CFC8897CB8521D0EDD082F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127822D046B0FE79AED0BB3FB031F560 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE71A7568491DFE091FC518E58EE304 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1298A08931A0207E0CF1544887EEFBFF /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9045B38A5C0743AF660A849C710F49A1 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A24B692F4A15CB5FC064685F127506 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24751F0FE608A5CFB3E03BBAF55091 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A29EC97A7C0EB53616978A39BCBDA1 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DC0B8AC713F7B5EBA5FF1B58BF9490 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12B064285E5E9857868EF30A81DC51E5 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B606415AF1D4B4A249668D9D9AA41B /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12B6F31B180642CF6A98269E4041B9A5 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DE3312BEF5DB24EC7938A9CD8C401 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C10D011C68BAC1C84E616DD4E6831B /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F34547C6C0CCDD99BA977C4FF1773A /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D4CC86C3A8079687A9264897BF21AE /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FEA2D7DD4F9EE8AB4268EFDB45160CA /* React-RCTBlob-dummy.m */; }; + 12DCB35EEDC7FBBFB487DF103A1AD782 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A60DE85867BD2E700FDA5A43D39B0FB /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 12E62CDF915591A120C7ADD2D739F0D6 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5A538A1B54AD8301E1293C4723FE75 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13176DE6F3D27044B3AFB6D3B39559B0 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A88C0DEA5D2B71A1E9B6477298CD7 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = B23CDA3E4E71F7954C36344264A810F1 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 131DE23662A26855F24BFB947AED9B6A /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = F990E906D46436268180123E34A1036E /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1369C77D96A919AE6BF3E4873B14C828 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECFDACF378928A46D14D8C7B8E960 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13742E192D1132D91BD868C341AFD4A3 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBB4235756F94E94980BCFD6940F1D9 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 137BFA02B95AB9A57447A76967D682D9 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B69AA263092C9464139BBCB885B827F /* React-RCTNetwork-dummy.m */; }; + 137CD1E8F1FFE5C27359EE1BE6C5E92F /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1801238D726A60C4E37853D55857ECDC /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 138AF5373DF0E0731FFAEB4025FF276E /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 464FDF3170347A6380ED99A3B54B72FD /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 13981AC26543B0D00FA5AD775D268CDD /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9166FA9C5AC4407FF1904DA232B276C9 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13BB30F688423AB6EE619CA1448CABC7 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */; }; + 13E831D83D8FF9EB78DCB5AED2BDFC73 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3526F33A5C1FE6966545B35D5A80B075 /* CocoaAsyncSocket-dummy.m */; }; + 1414089ED9BC32FD61DE9ECAC4730F38 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18FBE6791D07DA917DB0352B0175182C /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 147E33C218CD3626C37C59DD66D98B1B /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE05D158994FBEBCAD230240A845761 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1482BA0BAD138D8C5A4A410F9FA7277C /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6318B540C032DEE88E041320984B139F /* PTChannel.m */; }; + 149D6AD7BB7D86E12A8CC623096023B1 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFB59819565B98810B2A812CF5B5BF1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14B12FF5EBC429876A962D073B4EB9D9 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3365B24231054495B94ACD5A4B42DB /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 14BD9E9D669BA5E9E7E742EEB126892E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E74FC23869D125D7577CB7EC2561E27 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1512D1CC1AAACE64E3A764D686D319AB /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CDD419818374803CF96E73A980B2F5 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15245274201474A5B379579AB0951FB2 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5267CE5B1FB92B94F1B2E029F7927D89 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15347C18DEEFE12C8E8BCABC6026AD82 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6F28100485590C5472E05F7C6B2DB /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1586831F3A7882C0E8F8788C8224B8A6 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F143A1D7764D57EE6E586A375AFCAD8 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 158CCDA59CE536CD3B95C736052245A6 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 862182A82AF9A2F1C1B02C44F29FC2F7 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B0EAEA2FF302B438CAED06876D3BF8 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1605A45F1421D2A28AE9B83E32B8E459 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D6CE4FA2371B783A24A6D170A1F0A /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16218C92C89B5B6C5CEF2E9058DD5676 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF2BCDD2D4A277403E06E47BDC95BC8 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16936226440B6E4E1CF11E386A4CED64 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C1FD1EB29223453E8FE83D2C81A5BB /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1699DBCA40D2B41676425E33CB72B92C /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B538BEE8A70D1D42974F2C038D4B3791 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16C5C9C726EA751C916A02413742F95B /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E0DBB592D89926C037E6CB0608F9C5 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16D239DD91096961FAB224B7FABD7FC1 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0FFC72DBE4D3A217D4BFE5C425FE1F /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16E79BF3EC81B72EDE9ED24EA8EA9095 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C291AC38789803129D2385D0138DAE4 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170672615D71E160339A203444607513 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC3B113381E904448C88D8A5902A30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1731FC9097EFD49C8B68F149F2931EFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A19A57F23F928BDAE6F8C27DA422B84 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1733138F86870DEA3661A560A76194C4 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EEA0AB0894ABEE9EA7A78AE9A428CE /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1742C10FAD6D8D5DA4779D85FCAB91B1 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 174CD5AAE3A6021B042C944D54A96081 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC9D645678A174021EC4C1314B0061 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 175137F0C576F75103110728B1081787 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C132A8BDE3F1C717560F9A1F10CB7F57 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17583DF540FCC855CFEA6916DF299DC0 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17DF278B17D1E0B2CBF510E95DA653BB /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 175F9061C18C0C00329BD9AA016DCB38 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7764B47AB1420C405C2040171A4644D7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176198BB179A5F1E098756D59210A5E2 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF920942105D59CBDF8AC26AF11EE81 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1763235EA2EF68C7344DE4DD9CA12F9C /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F075A4F39EBA3044CBC9451FEE99B5AE /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1793B48859D6219F84E66C10F1571C1E /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E275EB8CC6871EF73E6E102545EE282 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 17BEA13019480091FDEC0F76318B16E1 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C075E8192976E1ABF248A5E8A9549A /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B49023BC83906B7A3718EFA943B9366 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C70693886A1290C509BCAB33ABEDA4 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 918252241A8D5BDE2E8702BB6C35F59F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180539BC4E99A7D986A68B97BCD44B6C /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59FB226B4F6BC31453972C704A9FF6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 182CF10C6B092DA3011E738AB2104C9D /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D53B5AEE7DC4CEE6614EE9B4F76BF34 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 182D91220AC55CA4AFCA336CF13B327E /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FFFB9DF9F4DBF89A4C23C10661FC7B /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1839F50BDF7C321E850FB8284337CC02 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187638CB6BDD7413C101FC0933D8C72C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 580E0CF224D3BFE56D2AEDDF929091AB /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1893D155C76C79CAD22188EE137DA1CB /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D841FB6ED6ACE38B3EEC6989971C39 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18A46EA146AD40EC977EBDBC1916550A /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FDA11B031E280F1B2C859430748E43 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18D52ED637B30DA90AE271879B27358F /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FD325C463FF44B34CCDDF2574BD0F5 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18EAB88805DA858BCD7CA53E4E47AB05 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFFEE304D3D9BCAC368FE71ACC88C3E /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F792D7347A6B01FA4669F3101B1A35 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689EF50BA35FB0724569378C2E0A1729 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 191515F44BA643C05D8AA63215D8586D /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C14D23C3F31C56389256B567168050 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1916B46A9FADF7391F032CBEA7EA458A /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8907EDA3BFD3370864303D8879F2A6 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19313C225B4F376798DE91EDABAA2287 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FC8CE6A42F82E98D59CA2846F9FD8B /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1939C74BB1DDE1E8030A4E5DE73C26FB /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4AE4515287627AF59945F17C98BA476 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 19547C6B694C886F0B3E3C8591CFF5AA /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0BD5C62B585473E46A133282644A64 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 196AB1CF982ECE79C246EDE8D8D318A1 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1726BD3CA6FD24E39EFC7E0963E31BC8 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 197D70906AF13E19B382CA0573112573 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 199F172BE75D6E07E532072095FAA552 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F037B7DC082451C85B050990F4270C5E /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A11D0A3DE4A692FD7E14918441F1BEB /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF2C2C7E2C2606DDEC64FE1B0EA162E /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A29B8899A13FDAA932E4C89DB881DDC /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53782EA8CD98118AE71D18C6A9DAD2 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A3614AA59B63246A66CB36C558A8AE9 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A38D0574BF7FF01344141B127C038E8 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947C32708D767B19961DA93E5ADA302 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A4E9B5EABFF8B9D16FB1419DF21C5EF /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F79EE77CF8C6A6393EC47355285B448 /* event_tagging.c */; }; + 1A6496134604040A454FEA502E106962 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F05A4D19CDAB21C6C202E6DDDE55D70 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1A6D518B2E55735527CEEBBD0C0C89EC /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 27716042DDC5A5116584BB0069AE8059 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7289017F2035D262307784279E4128 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 950B41F889B82A60A5887BD4EB9DF76D /* FlipperKit-dummy.m */; }; + 1A7CD406F3279E21547A2AD312BD4FC0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C01053F7EE549C2744512EF64E00671 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AF425BCF6172B35E3795733E1D50978 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C54E73C063031D845AF36CF81D2B89B9 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B08AF55874A014E415A81A8FA8784AD /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A18B432DBC48D1FA7AE8E139B4459CC /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B12A085872F7C84B68246968026A60C /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1368120C8B255F21300142F40CC51AF0 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1B26906879719A0441BD87446CDC2394 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BD995A23EEDB8F1C1414109D8172EC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1B471D8C0C03FAA73B6FC11126424A64 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA567A1A4E232B3C2A7A9CD6A49CFED /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B4995AFF6E944C9876A843BF3F1AAD8 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B5ACFEA82D57335BBA3074C6D962482 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E36E0266AA5E6F3FFD882C9150F0F1C /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B75A57DCEBC224777EAC823C19823E3 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54AAE3C35B7A3282C19FCAFBAA1098 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B7725CCFB67EABA487C7C298A9DBF45 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E519D49602CAEAC5F3BDA5098AB1A1F /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B807B8B8A62532AEFA5ECD2DC922ABB /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B898AF1D98CD5E21FBD1E5A9319FF5F6 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B98301A3B30F63F1536748916C34082 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 97664F7F97C1D7F1A40B14470F2E08B6 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB8697E658C7E344856DEBE48792DE4 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 2852971F02F4CE14DCEA3FCC38E005E7 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BC0AB006291AD7DFD4124B3F177B595 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81F054842B32747CDF7EC5B4899D516F /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1BD95C30A9816214E35881DBAE29E2B9 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C38FA84EE1A94A383A12EC9F3ABFECD /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD9AA87D702B8757474668EF43DE129 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C4A513A3291B6FE19403CB64F563363 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA47A745E8471511C02CFA277C2D1A /* format.cc */; }; + 1C652558F1C1EDDF945E3EC32DA064C8 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B27EE8CD168BC543A49BFA25B71E8FC1 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7C62B8B1D0572E7AF366B79AACBB63 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EB426A3692C95F2D45E8FED7305AC16 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1C7EE0FC736259433B0C9BB5440AEA52 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3671788BCFAB3C0E329BB28599CB8873 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CDA54DDE47C03A1AE725123E22963F5 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D88B1D0AA40CF57DBD5D482E6B7F0BD4 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE5D223CBBFE2018301E6342A900D4B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40BAF975A071BE1349CD3F33BFBFB014 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1D326FFF8D6F65C18FDBA89671C1B3AC /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FACFBECC1DE749B6343FC53AF6D209DA /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5B87BD4F0DA8A3B450675291276CB6 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4093C6C84BEFC50EBFCAEA946AAAF18E /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1D62BCC4F5C170E401864789E63BA104 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1D62FB701FBB4E81F6FFFF57A2393582 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E0F856D188C0799B426989B838775B /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D6F15873217829B53BBE34AE0F829B3 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DD7C88B7E1A68EE82784E410FB87B30 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9799E005AA7D73AAD7A41BC415751D58 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DDA5A5341DABF37DAF6F8279FFA3BD1 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75472DD8C91F2EF6425A96337DED4F32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 1E08C9012D0F52CC8CBC44C33A136D3E /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A33A5C65D23B5D31C09A9725FB5C92 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E17E922623296D0095F5F05780AF51B /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49005BB90BA88BA9B8D97B90B3D9F1A2 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1E2E9039DC3EAB0659DD96211ED7FCD6 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EE09B06F68846C9FC9E57B3187C415 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E63C00D17E6A3E4CB3B9DDC57A82ECB /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3E5DB2B7D8BF00EC05CF151A2AA5E5 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E916E50FCBA086A035A9B150B78E801 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928AB04A273E40AD5114E2A1FF2545 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9227AA342ADB64D333694840EFF153 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE171B8D02DF186FB3C0033F82C04F82 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1EA17B644B3C61F3437F6918235AA015 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C00C9B89B73381E0FE14920D40E13C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EC9CC03BE5C7AE2E8BD01A9445C1BD0 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EEE0017410D6E235C5B609A4EA3F532 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 1F0E885423ED0241EF41DF3AA10F34B4 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF306B8D4CDFB40C670DFF34E589AFF /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F44EF4DBFC1D98C22E2E24704081432 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4DB465D1938196B532680CDCAA0773 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1F4659119CCB582B58521C9464BE7746 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F476B1AAEFABF46F6A7E75BDED7FB8 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F4FFDFD1FD116B52649E70C574D68B1 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F6A701C76B69EE340BF416DF0F14CF7 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AA7C9A9482D08BA6C96DE544E12088 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F7B92A0BE00861976277DE3FA22DAB3 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBB8BD5D0F704F0198C3358FA585BA9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F9F8ACDEC7A00F34E930527B1652DD5 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACA88212EE11138DD6E0B8A90F45B16 /* RNCSafeAreaViewEdges.m */; }; + 1FD0C645774BABE39A710F9105576F0C /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E757B98D04CC76A1808D6A45D808F /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FFB2FBD6D24BF6F3E1F8DAA3075792F /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06E52299827A5A71C4951132FE05B53C /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1FFFA3B4A136951E784A23042390EE0E /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E389890B28E568101A2243F3F8B9FA8 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2019CB65540F470107E12AF2FF908292 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 205596977FD6B3508FC60A3BB137B6E7 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 366FFCF70007C7D9091777211FD3CFFD /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2072542F6A712864E61535436B3B8AD4 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB78F97FCDAB7A8E0C479C575730692 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2090209E9CE3B98599D4BB049355A63F /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF815308F027A9D85182CB728FB49AF /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 209F64CA4DECE0BFA336BEDDAF94BC5A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33D8A15C5FE085F02C97B8FF471B0031 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20B5B9502F18EE6AB5BBE62F8A4377D0 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 20C17893945A1FB61A6580407AAFCDB4 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5879CDFC34BAE8285CB8379001BAADEA /* RCTInputAccessoryView.m */; }; + 20EA9C10DD34B76F7F4D8F2674762448 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 78797BDF3027757C4049CC30BCF9851D /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20EB0995CD8C69FB1D4D153441505550 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = D6346EF7D7F9A86B75F74F6CEC9A0273 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20F4C0FE67CF410B1DE70F67B548CDD9 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20FF39CCAC8F193E70A04A961E12B5BB /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3C6AB5563EA4717B179D8C2DD1470B7 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 211B4B9F095ECAD34F93FB0429574E32 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 628E921912621D5DE7133C3EC8DECAA0 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21430D25363C0B89A6AFC0DA42F5A1E9 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8489E1BAE110DF19DBD0B6775C068666 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 214F298CC3B8BB1EE7167E9F276DF4D7 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA0A500136C6E7CC77AD66AE4E62E39 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 216C5FEAC4AE273EAE2F1B297BD3A98E /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF6E0D6B4EC10E2FD63DE51022B0B847 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2181C3EA5E96EEF625AE03EE8FE8B476 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 595E4B37587954B324E595AEEA8ED2AF /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 218610C5AAC6383E7D04A9D4DAE023B4 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 878FD6B98E602FF283F8FDC85CA5D4B2 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21A5D64FA1DDDC7B604B4A7E1A0E8D8A /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 889BB9B7777889944AAE4DA788CF6BFA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21BB87FDCD0CA1673110DB07DA6E9592 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFEFCD21FF612FC8246B21ACA8D3887 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E057AAB996347248B41A314A66F467 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21FC16D69B02E1A34A1C54A5B7158D7C /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E824E92108769081C2755AC398F7AE0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 220BB6F6FD466BF27770C2B1DB6811D4 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9423CB753E1BE92B8AF67511094526E0 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2212A54F9B623283A5512133BFC39646 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7B83CA7FE7EB07D352CE852E44D568 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 221A333D3E9E08886851BE6DDC7313AA /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A93E1C59137A70CC462B9A1DB1E1EBC4 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 229A2C647EA849252A8999D065DC2024 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 22C93DC44CCF84C080854E5577EEDC94 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A75690F45D1B241C11F87CDA9C9099 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22D3261D5A02F0FBF525FB69C6A36B4F /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7734C145A8433DFD2C5F26CC4AE6FF71 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 230619F381C5A1735E452BCA5B0B91B3 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4DB9385887A533499E2CB46D73DA06 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 231125BFB890C955ECF3246595C85333 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0A11D582E3B8F6C78849CFE3DD53FB /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2390DFAD1DE953B6447A8889AAB34271 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E155F2CBE477F86C7D3B59C50CE6E67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 239C060E55752BB419CAA6D8434EBF0B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23A73F0D0164F168BF0E04592C303C92 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = BA56E5D6DB8F6894D7BB0B1DC68F1746 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 23F4BB37A689BC83D238A31C54733214 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A19D25EBB4B72DF62BE8C9596AA5B /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244F332605033A8A164973CBAA22BD8C /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 799B4CF68E13A865E14534A09372DEE0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2464B5B169296F28CB594830434D3CF9 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3278C9487CD4F52EA168F98AEF826670 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 247584700C0F31BD6EBA377D82D26F07 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BA8727445A85103B20A484F6A9824 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 248860125DFEDCC382C743300C2254F1 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24ABFA2616609CB1B788152A3CB5F10B /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BDB0F7EC1AE9FF02B43376EF4DA6D03 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24B38A0C2327B1CBF5FA576F60FC7518 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C691CB90FBC181EB582C709A3C557BD1 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24D325CF1F07ABD0E2E26E67370F06A0 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1C7C7242B6CF9AF441FB80B75CFD991 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24E592540B1BB4BE6B46BC4AE8EB5D34 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 854C289F400B52009E3924695128D068 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24F7348BC38498A63089EA23D92C0DB0 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 250DB9CA1F07C7633A38F215FB4A4E86 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EE347BAFF5A406827DB52341515260 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 251EE8498C08AA226A09C6391DC1557E /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5EF10C0EC05B0C0D2C9D33F9D75487 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25226123E3D4CF8A5C1BA6A4EBE82A83 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C64B98EB1C60BAF911E1A7D56FAE7014 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 254A0CCE26FF36AAF45721958A837DCD /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E266AC3C3719B88CBD362AD8B97CAC13 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2576F56A9F73AF9A8C3730C29857E131 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B70FEA55F4F5E3689A95B30999735EFB /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 258CC42E3A01848F5DA938F5F4DD235A /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B7EF3EC85E42EDFD44CB89CBD5F7F2 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C9CD17B3D6A7116F58DA6E6EEF67B9 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4589E54333ECE035B0051A4AF6D9C0E /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E883BD85A0CFAF403509317E5E5FEE /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A6C13B24FA95FFFA1BA0D73F0B2D1C6 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 263B30FB870DD5D3B96E6FA3C036DB9C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9157CD3C8C1F875F3DC66BB1ADC7D1E5 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263C7D57AC964651643FAD279EEF3B09 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 268F22FE38C4B8CDA1FBD493E08725C2 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D4D96042AA9D396188A0CDCE9822F7 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26A71725176F24AF9F5AD7C013DCCFBD /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8E7E29485BE254A58EA62510D7FE9C /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B96DE41FC3D0F17A43BCB7EC124440 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AA342B3240EFEBB928D364720B57C4 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 26D05D640C13BC839952CCC43149371B /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA8CD1171E5477FD570B4EACB6A6761 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2713A5C98762C3DD8131CCFB33BC62CE /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22A2F0ADD667A8463B45A21C881DC3 /* React-jsiexecutor-dummy.m */; }; + 27211B1F374531557C5FA613A4C509E1 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72B6D9980B03397EDA7BE8CF61FD57D9 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 272D37556F1081CC89443E015A89E3DE /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4F260ED986EC764D4F2FA9FB9831C0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 274B72428BF429FB71F5CB6ED565AB09 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BF1BB5D347FCAF9BAC7CA0348207DF2 /* bufferevent_filter.c */; }; + 27546DCCA2CB0FF94254B87C6D5A46C6 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0069DD0204BA8E03F0D2EDBE3E80DCF4 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 275B75B10A4C0E6152A93ED5DB9DF819 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B92697BD1F3C17CED3BAE77E797EDDB1 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 275E0594DDC049563B563A7B8B4273EB /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27647A4C22A8F2D8034DD6465D9B463F /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 244E1923F2E04531CF2F06357ECC0D7C /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 276783EA20100FBD0BAA9FF0DD99E3C4 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = B66E9853B2AC064122BA26C986B1835A /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 276F5B42E248D710D360D014FB077ED4 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C026A12D9EE44169BD5DB4F134A8B674 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27908D1934D43A4EF3AB4F966BAA0970 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279149665868E1E15882471C736DD593 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6D5ABB0B88FA7420A6011553CB9904 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27AC70FA5DB2067A03A9DBA86363A17D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F1301584E0AE32C0EBD24F398A0D5 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27BA0BC837A1DE8144D4D35592A9C69C /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0651B056FC760A403006F793B0E4C8CE /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C7968A768CB77DF237B82ECB7D0C1E /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7ADF09EF0D7A10170EBC74AA6A8088 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27E801122DA8200CE496AEEF971B723E /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AE2818B14E3F5717FC8E1A16BE00F1F /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 27FAC98A4369CCA897A5DF57D906AF4F /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4052F78157C29D0CA5E3B1B98A2838EE /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2811D2D56ADA95441F30012631794E6E /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A6577314AD266CE9069AFD9C8EA591 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2813CE06D229DA5F09262FFC557E8B10 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28259DB68F715E7D0559719C729C4B57 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EDE3EEE993AB385A79E553E5CDAE5B /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2840E3E84E39CC821E38684115BD9E3D /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69ED4632DAA40A6870550843D525D887 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2845596B0F0165049E01CAE4DB1B3629 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = A662CC1CD539C07FDC0F72E802586581 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2849A9E900F461F96DF714769ACCF739 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 285642D53CDF70209EE98316407FAEEC /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4534BE3ED9906C9B91D318D5BC943B1D /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28A571A4AC3F235C1570153FA442F855 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 894785670DD5D53AF1020B7B73B1F334 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28B7533956CDC50C1EDA3929B75A4C97 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A7C52E4E3C2B65505B09671B10E86AD /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 28F1F778F6ED998688E5F285FACFC9E5 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = D19B626D80378A518582E83B94573772 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28F649D9BCAE6AD08F71413DB266DDD7 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 157B9C024231B4D5AA33E3E65081B675 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28FC678DE6C9C5090FAAFB04FC9A434A /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = DC86FDE65694EC1882455BF21EC6433C /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 292E6FC46037AC85A236B1A314492B36 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30168E14DC9AAD6A2CFD68A9E99F0D12 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 2930CAAEDD506BD11572FD3E07BF8E9C /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1804326195F0775552E247AC3FDC4144 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2935FAB42139FFA016E99618987C0C49 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 294A7CC55583475C8B2F0D28DB71C2D7 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A355E139E1A7D027E79E30047A0F232 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 297D8197D7874F749893C37B0D822813 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C840741219E01A76C26374B681E57C3 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 297DDE56225EF0F8664E4F1A43C22B5C /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F64F5788D89CB3AA8B35F54FF8B4F0D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AD77CAB78713CF09EA28B19D7AA8B6 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29C290BDF4EBEE54784BDA7FCA99F51F /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29FC64D8E278C5E270476561852AD5D4 /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A26503DA5D2A7AEE41B51B9DBC0F51 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A16AF092C51B81CED6CABA24389E7E0 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FBA7CAA1FE61D77E8EFA7AC4EC5C5A7 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2A210FC1B5D31AF0BE7731B96D7B22CA /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8905BE9DFE104C70D5BC5DE32EEEB2EB /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A24DEFC5AED63EB335BE6179807A1D2 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9C8D1144AC1305911BE1C479C8634C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2D96AAC73E98AF11A12ADC33CE73FE /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F1EBD0A7C6D70C23AB3F7DC4BD8E11 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2EAC5CB8B44EF197EA94E3AB48759A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B55DB9D1C484E0803CA8A3DDF5F92D8C /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2A76CB2C533F850741C0B993B715AACF /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B46EE3E25940AC908C66811A34A1667 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A82D81D4FB6F53E062788C24403B2C0 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63BD0191677E7EFDEEB3EA5A58071B92 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AA5CDA41D1C29657398D4C53327D5CA /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 960F396533C585E6DBD0C070374F324F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AC440E274C9C8B24812B35DB4212CA2 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 325707970240FB975CE1DAA9DE525C8B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AD59E5508F200D07A67322991351D67 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72086FCF0DC64B39CA97D5546DAB8DE0 /* YogaKit-dummy.m */; }; + 2AD924D96AB313F7A8D1EABD531C68C4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B99187B73DF6EABC4E78A13B2AE63085 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AE2E320B2A31DD006975563B565B84E /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4B99335F2061A076134AA376D6DCF5 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B0A7F0AC6868333380968CC7B8F70F9 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 65765772B0AD5D372F437C4965338AD0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7057E78E81C05603F61A7AA1F7144C /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D27A09EA203EEA3BEA25615A05C56F64 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2B7324798284128DA828B203821F301A /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 97369C228EF8B5C99986F892910F3704 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B745A142C08920E15D6FCD6FFBDA8DD /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B8556B9B4496FBAD8CA587401863ED8E /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B888A5F578DE6E85B7EC3405B65BD0F /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68F9095BC49613AB556508B230A337A2 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2BABFE56F5359DB2480A3CD61CFC84FB /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1936D1DADA0B629DCEAA104A755C21 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BBFC8567EF3B48E23353B86BAEDD929 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C043C3A132DF0D7EEFC6ABC13856F08 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 461B0B1222717797D36C29B289276FC7 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C0E007C286FFB06B471F94B2E8FBF17 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = C37C27769CBF43FA4312422AE2153629 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C1701D3A9E1E79D7A9379AC171CD37C /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C2C6B2BE027A947982434926155E455 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C11B0C69CD8E1FDD11D079C547CF28 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C3FB1E7A7D960BAA78714930BF315E7 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = E9189D2AB1E78F078E3503A7E984BDB6 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C424D586C13EC51C1B2E75A178D6D5D /* RNSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F025EC6F86394F982C91997A5E9370B /* RNSound.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4F53A87C2FBDF417C94F78CE82AB81 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B16721598F802B670D582E0E7B8BF39 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2C7F159BAB483D483D0F2980420D8598 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DACE4D331C1E6741C0E56F0792AFE5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C80C1EFB9F9033A7B3501A2A0E228FA /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C979D07B693C7312ED14D446E28AEC3 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CC383E9C60F089D384AA98F18F6BF1E /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A646D8A12D12AD680632318AE2FE7E /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CC576353EFCA3AB5B61E69B711F0FC3 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBCC0664BE6EC6D372E85C9EA504382 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE29EEC6D4CA4BAEB589AED54CC3EAB /* Pods-PocketTorah-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 973970D34D7DB6437D971771A1373226 /* Pods-PocketTorah-dummy.m */; }; + 2CECFA844B302ABED92F1889FFBB1BE5 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 602D5CC6712247731B817BE5150A6B1B /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D19DEBF1BC07CABE382A73764A7B41B /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886372F83458FE1F8BF449827D7D8BA /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2D95D3F50D16DC33CE2A320673D60CAE /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C504F5E22C71819165243C2772F9C /* glog-dummy.m */; }; + 2DC145BA4993080003A3839358FBE392 /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB2F11A092575CF8B3294D4E117F221 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E80B8C76D893A4EB3192FED183BD6A1 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 051CAA59AFB24C274B04806FCD688CEA /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E82B7E04F435DA8504E3D15C0079583 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A8EC8E52EA0F89FF4B23E6ADDE5CEE /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E9CAC826E0CC9A192406F5FCA5E0F9F /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC4DE7AD60DB810E17645405FE52F9C /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ECB067495CA23329F7F65A4739193FC /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 445514320E89119D3127BA5CEC7FB7CE /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EE06B667F15654E6E8C07912C118B83 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F14509DF4B9E58995AA268FEE8C4DB31 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EED2F50AD7F4B8697FC0C2E37F0A2A2 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D12F3348AC20866A7315438EDB958EE5 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F033075A85210D3A9566E6FC44F9412 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CCFA53E2429B053FFF182CAAEA95D3 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F2D30392820849FF90B85E61692FE00 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E1AF399710B012BEEA86F4D62A64E5 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F469B822451DDDEAB711DF87295F84E /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4E8191D1A2EC412E5BAA5D29151805 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DA410E9CDEC6B0BC5598CD761717AC /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F621F4F9E903108781304D253963E42 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F9196D8D11152EB2F7146548B6E6250 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17E51E807CE09FEC00030AEB10D23B4E /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2FBC6C1764546D3AA0372D981E38088B /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0680A502E2A17C3EF531E236F28F29C9 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2FBF7DF8FB76D38DE56EFD778586D25C /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 33493909D2B8284DC667057A2F50F2C6 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 301585011500BEC3E892EC7D8FF55D97 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E061AF6B8CC2B692F39BBBF26EEF4B /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 303BE7DBFC468D805C325E67E6CAD6CA /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304E0F005FA6ABAFA3F9996E4F0B48ED /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8BF52E536CD73241106E07095B9938 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304F07C1B6520ED9B4E97400A9726222 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 305F3C34AE97DA29607EE5266C4B6E75 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 306587CD37A696B2609AB6E7FDF25982 /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC66DA440F96FE6EDE7C48BE3C2E99E5 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 30E708AF08775EE9F4FA414D953A270E /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6883BC5EB041B40DF7AB2C1130903FF3 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 310A89EC8C67B881528778E8740FCE7D /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F30F8DFBD584C23306AA6609F39605CB /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31499C1EA4108EA4D8F3F367EE9C8681 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 141C21C4F6F654A50F5863C9A1BCA767 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3150F3CF6B4511BF2DAA7E92B555C75F /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E7D09E85167861A2431708E6A76E86 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3152F26633B1B6F0536C0135F069CC04 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B6DC281720AB2B1F283E5BC82601A /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31820BF389178EA6D522DFC5271E59C6 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E41F3DA37DD4BF0C96EDDD94052246 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31B0B8A2426403CA7510F17E1F1C3910 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 022862357339CA4479806B31F4C51E7C /* RNLongPressHandler.m */; }; + 31EB76A2D3A7A56A8ABF850F75FBF401 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BE50BBC1E923242A75AB0E64A0CC0B /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31FC30FF8E70120E6504283E5C97B2B2 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F4218D1CD5CC18780205CEE3BA7AD2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32027977F4649F7D873684F7BF3FF33E /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFC89ACF531EFE450DE1E0D59812199 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3223CB08A7CD0BD3C0A0AC3AA390895E /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F8696B0B456E0580AFDF83FCF58170 /* Yoga-dummy.m */; }; + 3224FE9B79EBEACFA2649045A63E15C8 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FB3829703ABB34103D3FABA89F1AF6 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3235E517AE279643C16E1EC13564EFA5 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A4ED7EE1798A13A53A6943A56B909 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 327F2F7F16ED76A878F94EB089756590 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E665EFB85E7D96C1EF2D9263D2D36 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 328410B7378CC2B224A2C7609F0976A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFB2EFAB2A286C8F568F5EB9CA66446 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 329B76DA62E68378EDC77D50AED9E3AC /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1256AB077755D17ADE423EA654F443 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32CBA9E246CEE84C545F415C814C8C52 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1DDFC6A65AA312B46202C901CF3898 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3316C7330C8D34AF5814C2CEBE6FAA5D /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4FBE679DA69BB2666679AE9F5BF878 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 333B11ADCF268A98E0FD8021C907BF16 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C243CCA34A09C91C11935C8F80109B /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33630874389B4589F1B12F00BCDDA739 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F7735F85712E9A2351AD62E54893490 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 338D89D7CD023AE8A0A46A237016B81D /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB294E2B4BCB25CFE7FF51274D924314 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33C3777A2A060C2C948A70798DE11627 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 33CB6D1A6FFD74EE5306EA619B457B33 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 931B739392BCB5D3049F9E99FA671F16 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33D3AE789B357D5BDA6B1B2B1FE656C5 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33E9CFA3F99A30EBED1FF3696C2ADA9F /* RNSSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D855472E6601C53B4F3F3CCD94957662 /* RNSSearchBar.m */; }; + 340ACF576D8400DF319B5AF1FEA93A6F /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9E356CBCF41D667DFC32A24D5E814D0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 342703A54CACC1F09DDC72E2CD400A05 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BC5D02F59A8A5C2B0135859140E3A54 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34313163D15E33FE7C6C67B84B60C94D /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF68F65545CD4127830A13FA089D047E /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3438843BC3ADCE0990DA07FA428DE1FF /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 17678821E8D1C5B61D85D9102F9C6689 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 344450656F0B35098C1B045F43D0E694 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 962C45277B202FC96D30DACEAF25C449 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346155E266204CCA2FE111FB465EFC76 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C62C69D900C6375D9A3FD2B9C4F5C5 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346B75C07DF1CC1D613C551849DA73D8 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BA19783C0D6BA9DA388AE581EFA8349 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 346D7384CD354479F547621127F30338 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C116AE2D8566BA639936332A2E0448 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346D74866E6C80A8C968B080277B64AA /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F9724FF980809D272A854257AB8334 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34B1E7A745E1B1EA64BB23C107562ACD /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE8A068F5FE1D1364C8461DCA3A8AE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 34DB330FC6315045AD8B7B3E82C90095 /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3509001180770289DEC7D86A8DF3C743 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DA7D9016EF40B14DA1EF5F3A8E36B0 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 351524A6CD7078E7F0A79A6816787E05 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DB91AA2FFCB6B6FDD1D24F238BEE1D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35194D4D0BB5AA9751766D5120C94B6A /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03715D477780A22E5642C6321116808E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 351C4A4254A440FD48649AC0EEEDFCDF /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BF1D7D179890BEC3EB3B5D5CD41A50 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3544C88ED8A09EFB50552D1B580DC6D9 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 69840657BB147FACE1051D29CFA3B3EE /* kqueue.c */; }; + 355A2C8B6440CE5CBF7DD671DC575F3F /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C1BFE462894F7A3DC3C2C05A8834A52 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 357E53A1E216DF4B1D72995579804A79 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 064F88E0C314D7917C3AC455B6B16D41 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3580704A1653A7F5F6CEB4825DF41F4E /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6DF753E72643E4ED36FD225C9249 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35A05603712AB5732215D24E39CD121B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E8E69144CB6045D445F3EE89032F8A /* RCTInputAccessoryViewManager.m */; }; + 35B3AF8C03A090820DFB060B6032417E /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9F9B4BE928B32046D7D1FB7C7D3758 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35C8F7FAEE4E8D8C12B6AE40593005C1 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 593716EB42320D497992F8C146A784EB /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3604D8EDA5D5FD29BC821B078A66FAE2 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA99760E4362947E2B3E095B2A88E48 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3608A8FB04B1ED539D0F2AD4430607F9 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36097BA298469C834436FE5E2B0D40A4 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 413491E026B8C93AAB1EA9353EF94359 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 360E95A99FA56A6C1E878C8AC56659A1 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BF4C462114E425320B025587E34F91 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3627C0BF10A3EE91C41A0EFEE684F38A /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 490A3291779D204766761E2636D37C08 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3629C504D86CF293D390A1FBD235D76A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 365202B24670B360C782D9A2DDC15813 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33B707A7E5983231D384A99DDD8425 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 365C73651984DEA1C22FE5DBA2751F61 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FFAF78372A6B8AA0ED3B06253386FD /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 366EF256A4109CEFFA4415F0AE94DA74 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3A2DAC3265254504373CB84CF33439F /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 36A7E3CCAB96A58BEDD8E37ACFB8FF55 /* Downloader.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE279B79CE8743DE6ED13BD8CDD6B9 /* Downloader.m */; }; + 36AAF4AEFBF6E9983F55FE0447B5D79C /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00E2DFDE250675BDE9F7579396C1EBE6 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 36B6FC7A43136E9E399BF84DFDA36C9D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF8DDE95BA05E3BFBE94AAFFAA20912 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 36F8B603E04DEDC9911BF74AE351721E /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 958E51FEBD04D1E19D9FF4D6E74DBD95 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 371041FB190BC1E550A855844426A3CF /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 894AABC43BB995A4FCBAE713CAC89AB8 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3738E3C4BB98EE830082E772A4DF63C7 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F45FD38E7D63130DDBC450CEE794475 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373DFF0F20217A98C3CCA44CEB4A1D58 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12AEB3A52CB763C838A0BBA4AECFF691 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 379BD47C42EC697D6813FB39D80DF2C5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37CC173A36CC27C7C1E7AE6581B7E27D /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A0F653D0FE36182CC0C01DC0BCCC92 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38B0D57173EF76C55389FF07529CE19D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717FB48C565A515F9CE9BF60592582C7 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 38D6C57E12730A34E8AC2322FBA4DA1D /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EE74B53CD88DB04E32EDE53C5868E59 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 390AEB2A8F2BC79CCB7E5DBFF3D55613 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8B5840B5EA1904FAEC3A4F9B4ADE0B /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3910C7F201E0A8A73C962CE8958BC637 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B820C2B1A4A9E8F5AF779E25C84401B /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39275B865370B5D39883587255DE397E /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB1AB956B6E9607F4FC3A309A4496D2 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3931A59FB3A5F3521018080D24505032 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1706057CB8DEE69C738EE8165697D41 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39B9FE327E351758F47377B2D51C5D75 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF97552DDEFB806ED6C339BFAB7DFB27 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C68D54F76C49812C8E80FBF56FA552 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D36EC0E44C227073407DA80EEFF390 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A13D258451A227895A9B5CF52C352CD /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A606D9CDFBC562DDF8E7B15B98B1F8A /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF68B42A419EE32F9038DA618609C22 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A93118AE02B5DFEACBB5BCC8720F6A1 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EC4E5393EFC87DE5AC654EFB27F229 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3A9A3B61FEDC845A66206B1028457B88 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD96024252EA663F83D9DED1502C297 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AB303EFDD25B01002536EC2307BB014 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1268A95F1A58F3EA1AC85789DB2A6077 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AB8C842489A40AF221659CE80FA61C3 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B45BBEF43A6C81D322DA8E7AC16BE0 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AC7CD705624379154D54A047AD00CD9 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD764B26458B45F7F021B264C7F2C2 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AD20DDC62AB5DB62E80CF48C5CACE3A /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BF4161DA62BFD3FC59C6536E5160718 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3B069609F9D6EA452BF2F6AFF6A474C2 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1EBA02D29105DC27E29EA23FFE5967 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B23D8B65B97C3B2701027C27C9F9E09 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E11668202A90500738C421568FB750E8 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B75D7ACC177AA3064FB4AD3C7CD8A14 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B76A31C7ADD7B160BB5DFD16616D012 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D832E5E8D443151EAA0DE4FD3C1DFA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BC77CEB9109D27C3922C58D1C7220A8 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BCDAE414F198014ACC6F9549FD48F11 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B3AF17CF9AA869F048927EE662945 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BDA106C1DC5ED3DE602EAC2DDFFD488 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A048F7D17EB1989732AB5FEDB9313B3D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE0EC7846512A2FCE30FB8FCD3CB92F /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A31DD266D8B42CAB4C022357A01052BF /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C07687284E5E7CFE4CEFEA3860B63F7 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC292CCBB55CC4C2785F6536F12A618 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C41FCAB8324AD83150189689799A444 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA41BFCD0B340AB539A6F8C5FBFD4B9 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C64AC3915BF4239FA180950775EF977 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FCBCC7B9B72F7599877B664821A082 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C6CB9863D19AC83A2AD49E2E76F6D23 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306314B34EEF69CE10AD1AEABE37098 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CB9EBF6A924DBB784AEB0163D5364B7 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DFA7D8249616A3DF3391AAEB63EB931 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3CD62EB3B8D6B2428D02FA7B7B14AD10 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B043EA5D7F817A8FF3C7D7BAAB1FEAE /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CF7829A6329DA0977B8FE83E8CA7090 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3CFCA081C6703D21765E2047315EF769 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3E7EE5D64F3F7344A495626BF10CD3 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D17F030EB456D780A7FC6F9E15FB2FA /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B6109028D4C572FC3B55F0A694823E87 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D1C3DAC0E470C62D452B354A499A23F /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D39DA88F3C78B7E348E3FE9D9071EAB /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = C94EA59E573031E41549A2EC098AAF18 /* event.c */; }; + 3D420B0D42066CD7A48F79D20784BB7B /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */; }; + 3D83EAB973856C624AFCA8D2822FB8DC /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 786973C9E14B615CBA8E35021827B2A3 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D86EA04B64DADE246A9DAAD03D66ECF /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC9A15CE5DF71950B278AD4A46F01596 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3D8F041EF8CF88973E45E483C2378148 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D3C8AA1A111D203B27806D8653517 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D9D6C302C53D1D9C5678E7B4363DCC7 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2701A03A7C036E95A93AB9E54CBE55 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB364ADB2D5D80C923DC3CDF0F89631 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDE936FA21D97DEDF1C966CBFA62D4B /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DBEC8CB656C31E96BF8DA530A125656 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DEFAD95D4FBA866BD256A8970D4605E /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A2A52AABB17FF2878DC4117F6AF504 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0A9E9F589BD5CFAE3C0D8FB0726361 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54E33083B550D684115185C80AD6E74 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3E4D3F6CD4478BA0921D1759B26E12D1 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6196398EF9A93DD0FC638C56649AEA01 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 3E623000FD2BC9A9C00D9E9525F4D378 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA650AF1434BDC6DD4FD5FE7F7354B7 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7E607F2E26FA24BB5D5ECE2BC486B0 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEFE733B947CC07895815AE43D23205 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E812B4851E7172D798843C802124F17 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B36FE68DE5BED274FB7808B57D10EF25 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EC8263F6676D0C02354EE31F27DFA32 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7AFD0430909142721151DD04A3B50D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE0AC94A9E8946D4BE19F2E73DFE86B /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C48C67B4C4F6D82B4DA17A10FA244 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3EE176997BD9606EB674EA1C232DD903 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A7A9527213421D4D056A41BCFEADAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1F27243F9EE106AC612044924DCC29 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF344F8BF0C107C69163296F07774D8 /* React-RCTSettings-dummy.m */; }; + 3F301EC4D23B99774F8B609260697E94 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F7CAFBF7D62857776F202DB7294DE0 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F4D809D9197F4031E16CFD5239AB24D /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 40795F4ADE71EC85D96D6B31ED24DB7D /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F791B792C8ACF974E014F3774FC0981 /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F699D4943F4D33279261AFFF62E2E7EB /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F92D4699A5206FB07817A27AE2295F0 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 83060F1CF7AADD6EB245B52425F97843 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F97FB1FE091E69231DC37EBC12BC445 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D72BAF3C9E58367DA704C2DE7DCEF3 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F99E5E18AD21635ED67DDCE503A92B1 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32998D68A8950B660EB126837DC74092 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 3F9C1F953C77D6426C50DC644802332C /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2C40D89901976811E234C0C36725D7 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FD2A4631EFB38670095694C73A7B450 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 698BF75FBD0B786A52A90D043F3D80CB /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 400D403AD0D454298C48EBD8DFB872BB /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 400F57C721015F8DF10CA2AB32D98590 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9723982C5D98B238E801F4933229C266 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40124D076681E0C70B8D26FDA722E14B /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D019A9C6128BDFE922FB8B6A1D0E08F /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 403510D0677A23DB66C1393387CBAA00 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C708017FD56D68A58BCB9AC2983F8B /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 405D548C1E89F6CDA759C596CD4F929E /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD04770CA426767A5C2AC77537D603 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40742A2E0FC7D64350A13D5CAED03E91 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C881044F22CAA58C6A71C46E7BB21C /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 40B12306208FBFA5F3B46523744E6F33 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AEE2FB82C802859A02D994170AA480C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 40BACADD74463D46C45D071CBA63A65A /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9690A3FA35BE5F86BDF2F083E7C1BC23 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40DFA28207EF287C032E04B3286DB138 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21F56787EC8FC86F0D709BC3B6E791 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4100A50B6E06B7E7371F41E6C72CED11 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9AF138139744F4BF0A53A7CB191460 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41249B67F3D6CBFC045292200FE38FD0 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2670B04C5B301D573A6EF48EDEEC493 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 417947E9A1FB9420783CE01BD87C094E /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32668432E952FDB2FA69FBB37D87D377 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 41800F2D2976DB745F724C7B1535DC41 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2104F98A24CF7204082B2E94E15F018 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4189C79FC4DDBDC65E2FF140D9CCF495 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBBABCF47B45861387AFCD430239B40 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41B31958A77B52D7D986E35E582051F6 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E668B49F2B1469C788E5F401AA1E97 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41DA0507458EEF4F307A8C26262CAF67 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 956D47CD098DE124F33FDE14254C2A3C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420EE1BA63EDFEC4A2D266C924E17505 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23AA0F5D35CF155346A45FDB74934C03 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 42234362AE4CC385B64B274C9EE28D9D /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 424DD917456BD0A6E6A5AEE5939BFFA9 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64D2816C07CBFA4529C90913884446F /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 427AB002C4F10399C5C3890236C4BA02 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E018B141AAB76D59DFF9587E3C4B71A /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42850A19AD476C66B757EBF7C9C5B39B /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E47AADB49E2969E4B6DFD72A845DA74 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42906F9BF11072E6A03E2082860BCB58 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405DB7227BEA3EAE06BB6C0C581E2C65 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C5E279DDFC4C648FD113947DE992EA /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB5023C2D4CAF3D17C27FB17CC0DA0F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42E0C4B60C428A5F38D22962CF9574FB /* RNSScreenWindowTraits.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F720FD7E6DE7B1758C66DC316F4F90 /* RNSScreenWindowTraits.m */; }; + 43444FF3336429288B35D2BA195114EE /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4372149D65B64897F2FCE6303747AD92 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F23E23580E78D6A9C27340CD5041E30 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43A0A0542786111FB55F167D23F3DE41 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111ABEC41FDA677AA0D6F159C78F4EC /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B4B6022A74CFCF8E244FF380C5E361 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 682F2CCDCEB404F366E11A021BAABA85 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44322B4A360012839790F102DADFEA9A /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A04D1BBC5C3902FE18C3EDEF929B25 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 445706F305B023065D4486CA9D9C3BFC /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B71B0C0E8149D9006C667D206325F08 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 446F4E31CA9C2274DA268CB000F14463 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A890B3AE8FC8EC0511CCDA49A60D60DF /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 447234A214854B496D1F7F8D4F9FD6AF /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E981ED29B5B67E990D16AB3350BD778 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 447D02383CD5702A075EA7A1B6625FB9 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FA298764D7B5E58F90898AAAB1321E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 448652F0821C3075F4E42EE217050CF1 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 280A056C513F9A54DC8C3BB641344732 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 44D6CAE7692518A3DAD6FB3D374FAFAA /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7796029FCD0AE6B22925E8EFC55AEF2B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 44F84B59348482DD3473A51A1DEB4152 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BD0DF004099DDA6B2B60F0156305E0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 450C64379008B86DAC01C2B3CACCC656 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34550A366A4C09A7136A457B195F95FB /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452B0D78166B063E0DDA1A6C3B797609 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452BBEEB7FE64221E3DA99533743E586 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434514A400F517C34B36D8E1A73E9E /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45763E413D3F93700574732BF2002F46 /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4597056662F42EE03859EC732603F9C8 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9152C268CCF62E49334BBE047EFC39CA /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46029CCE3AD30E15F5856CC4DA02832D /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = F3463515B975A0F8730B0D7396545990 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460EAF1CC9CCB37F63C2B8C3E517DC13 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E06E9EDAD2A1E8210FCE7094861D815 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460EC7939BD5E5B063AC6587893395F1 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463DB7338EBC5FD5E2B051664496F1DA /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463EB179534E68A3E66C8C7096DAFCFF /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BFE175CE4F1F4C39499C6B070CAE03 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4678E3AF28B68D95C5DF80235BF83F07 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F86FD43AB5B62D875F08BFD5D46A0403 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468F3EE46E02418C1A4BF1C8A3B652B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46CB1295A9F70CD12014FD564B932EA9 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C1359D7D875B44E7CF5F2281160F4 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46DB83F6EA3CDB193FA4FDCF8B23766B /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BF3F3CB7B4E98A8CC239BBF3B78409 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471409AC9447C75C16F1C20D956A60B1 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B23F370069301FF55814CAC881D12A5 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471F2D6BBF674620C3126733E4F63405 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4744D51159AE0BD6EB09DCF250B12346 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8555C0EA56871609F305237F8C2DE546 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 474A5823124F0640D89A1D31012C27EF /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 478254B4F586C7DCAE58F13085657092 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEA1FDF1A66385D71D221AA2118D64A /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47947F51DD9A1B07BB4769B90AFA1B8E /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 75416609E2AD4BE01E3B877417FEF0F1 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C1FF673D9D876A35D97F4D3B9F7250 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C53A42ABEF5D9308B2548FEB341558 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9F84817DF1DFE5D6B70E4A5166FEECE /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 47EA24E9E1DCE35D509598C7DCA8F16B /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25ED3EB9E53303CDC06391A199009EBC /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 47EDD16AF57A03350239DB37CADF677C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E342B6CC6AAADA811C7F325812922D69 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4802F30FA46C9129C20324A20CE8BBB7 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021AC123AD9F9611A267289B603EA164 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 480B4AA08C7E43421E992FAE76F19B01 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EE652D990EA33113CF8F258B2BE349 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48669390BB4B6452FEC6E5C2FAA9908E /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1385A0DE90C129DF72DFDEFA9B8D221F /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48746B9A7378D0AA7E7A4E2F21CA7136 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 616C1C80D899AB471879C55DB0AF5AD0 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48AB452D3DF2B57C327820F1031AFF94 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E1507635FB3A6B7DE79AC2B0BDC498E8 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B58DC9CF428213900B176BC83D50D5 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4715AE5BA41877EFEA164C0539AED2 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B6FE7796210F11A28D1D5D14ECAB96 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED5EF609CF0E9CF8E8D1E18D598C2E0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 490B1930CC3D6D1C1A461C2C152EAA95 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 9895BB7656BB4449DE52CDAED0707C82 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 495F8A70534F324AAF51F3F5FE3AF427 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C33BB10E60604D7CA6AEC4196EF3A0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BFA5514624BF8CF971B9CF27BC3930 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 758ACE03904649087B07FD4E53C3EB97 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 49F4459C16D706792DA1695C7D33581D /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 01708F274708CDFDAE5CF51D63D2772C /* evrpc.c */; }; + 4A15F685D9926091A678D7A87D8BCAF4 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C36DC1AB407DF041E74925570A1C9B31 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4A3391FBD1A3F56074288FE9847F8DE0 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0936719542299A7A47B01D65358B2353 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A3BDDAA9787935122D0884801921629 /* Pods-PocketTorah-PocketTorahTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF60D3F88C5D5AC810BF03BC257FF9ED /* Pods-PocketTorah-PocketTorahTests-dummy.m */; }; + 4A5AF6FC3921F6B7CE26C72BA5D60D86 /* UIViewController+RNScreens.m in Sources */ = {isa = PBXBuildFile; fileRef = 21049F85A0376DF4BC42635B02E86625 /* UIViewController+RNScreens.m */; }; + 4A61F79F7FA769209EF5A4AF551AC135 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2C3E6352465D6BFC90D36F55A9BC7 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A7BE37FFF5B54019F34B10D206D0D53 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A25187A779AB5D3E08BFE564BBA0E23 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4AB17CB6EDB9D6346CCB7F848AC85670 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AC53825F4C68FF1DA724133245F3825 /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00773A06980E91B2D5AC0D5F2AEC75CC /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4AD080DC8C230C6C14071C87A6FD4AB6 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3550E571FD7C0BF9100D32798938CBF /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AFE771E3FB102CFD6AE40A45DBB9703 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DE74B85F915F73CEA61E2588EE235516 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B39C0291A26F57C9DAB2C871248B258 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E56F5263404D525A91C19D4510DE81 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B40CDF5F9C54070AB939AD3D8F6CCBE /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B4853699B5CD42C9253204AFD5725C6 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE25E56F5B03E9A5B3A73BF4AECA78BA /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B94910FEA542C42E37B3883A83C415E /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED4D46530146D973B4E6FF80AB25AA /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD0C4F22F6E43527A14979990365521 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B5FA86B56852B3501C338AB8266527 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD4C0A34970741A268EB7F79D0AB988 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF3530FDA5BBEF430BC2F9865CB4D1CB /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 4BDE3517A3EF9615D1DA5E2CAB02812A /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43AC5D47986C1BE1F484F95A7E080281 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4BF2AF88D8D2D33FF0B57874C027C13B /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7305F5F233F11E6DC13E98F47B8C93E1 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C7B91F0146636DC7CA7CE13241A8B19 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9675816D613911331E79B1233FB826 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C8FCD218C050C482BC72061E5630112 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFE5F2049BF7C3C2939C744E90B9E01 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCB2C383658680CEE1BCE8D64473D2C /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCB88DE3117A6C2DB12347478A89223 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E44D17D7520E70A5FBD90A01FC9D3A /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCE23088FD685038FDB76DD81CD6CFC /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB738BEC3119912B5241D51D3BD34D0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CD72077373FB72B4260A9F730835F5B /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 635E47E5FF8415F888BBEFD4D3EAB7A4 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF25B65C6506C6D0457B6F8C2487D14 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA2305A0C651D1549C01EE007A5F747 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D092F64451D55EC19BAF7E6957FEA6F /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5635B00B5942895B0D303A040B71EC8E /* RNGestureHandlerModule.m */; }; + 4D1799542E403F68AA2BFCCDAF9E964D /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24353E11C2066459B75324DE956102C /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4D455DC36228659682B95B5CD95767C9 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F14790EB365EDD3A118597FA366892 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4D4E95B80BE3ED39A80590477FD09F42 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC6FA89A077B23F332444D37A16AE08 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D56CCD0E9852AAF34BEF9A42DB479E2 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B458F12A4DC51576ECFBA5A6FC0C90 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D59A04EEAFB378941F0E84CDFF80F48 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E2DF139084B891541DAC8109AB3838 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D6213D7F4F58F4D3C9EE87E279E3A48 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C4DFC021C55C17D628FDCC3C62603 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D92A01AC9733D3664FA6800E70C6A06 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83195A9A1B4C10BE984DA6B1ECCBC3 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B32F4F7706D6850CCCDC5335225CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1D420D455EFA5EAF6FEF74475F5D54 /* React-RCTLinking-dummy.m */; }; + 4DD49221AC2F681A7812EEECA3F8C092 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D95336007D4418B84A453E1E6E638123 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DEAFC3CE4CFC786A5A84222A9D3310C /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = D4284B649987FFCDFC846B07E9E1E383 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DFDA58645E4E6E29DE4DFE7730F95E3 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD1A867E2E435D33828B33684D591C7 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4DFFBE840FF7BD40F7669C6AFF55C6A7 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A61A01371B08BC5CED7076E54456758 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4E13E0636D39EC0DC9ACF5DF56B338 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84111C002B69B2071B9CFD7831DFE289 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4E614301DAAC6F021EC1FE7B6DE6CC67 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD6F472EF6438D116C5A085332EC338 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E70654BCF094B46912CD864E9F7B765 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBFD97CB98D6A412874128923D0B586 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E8EF08384B51BE1DBEAA5247E1EA92B /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0027E6547E99DC457ACBC87E10B38094 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 4EA30F570B0739332D51B23CB36702B9 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBE7582870A6472135326778455DE6D /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEB060FC0C7EED8499CE73855CFA8F2 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF5DCD06CAA4A034FC9782A764D3069 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1408C84AEE32EF5B9AE3C6712667EE0D /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4F1F59FF05F433DF4DE1855EA893FD88 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BB1E3DF50610EC49D1B7AD116276FA /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F28AF0037D3A70CD572D5C408897CF0 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F4F037D8F3788A1D308CA13290F30BE /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63C37011AE46ACD7DA57392DA7E9264F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4F726086D03A59DFC09A0ED85A400191 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B401C6FCEAA81E383D30EE52A396C4B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F778255D3688D6A157102326AD2D62C /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = B998DA4FF688B612EEC988BD3692216C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FDE1D16EDE2AC606E98C9EF91FD08D3 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DE23DBDFBFA39930F6547997665453E /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 501DC57EB1DB404ED82F553B356A8BBD /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FF2EA9507D6AEC96C4EEBC15D61B88 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 505D085DCD32F7B144A31F794C0F5898 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 415CA2F49853D24BC92F24D6F478246F /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 509AB1B1B052809F79EEA91AABF5B90D /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 12608AEFCFB8FEE3EE339530C02ADA37 /* RNFlingHandler.m */; }; + 509BE31C7D08AC00AC7608ABA12BB3C1 /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D608E8310AEC3D616E26C2CAA52B65 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50BD2DA9E63C43C7B6A5CBE25794DF7A /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50DD2914E486A96C3A7910A6BF403CBF /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7629DDF8F8D34B1BC5CC08586952B /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 51074A3012EC4053E6F6681DE181C2B9 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5170E84BD46E3B1A927D6AB7D250D598 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F6C60AA2DBC32EA43F636E556FD48E /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 518C2A528B99675A2F81B1923E1D50F7 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0AEFFE65877511253CAD70B364B3D /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519310658692B7722DEBD914C457C017 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BD7C95C66DA051127D712C91807817A /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 519D88248AE5B73E057B968ECD575A31 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E29079056C9F66A6456AE59CA9C93776 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51BE94CCB1DC3D365377A9548D78FCF7 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD2ADDD2136F77D56D6DCA5A9EEC11B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51CB0C1921918EFFE74A4069434B85BB /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E99BB031A2304421F594AEDCB6909A9 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51DA9FB3FADC947B2EE7989E4522B929 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = A40205FC5DAF460D1555EFF2168A50A5 /* poll.c */; }; + 51DF9CD642DC07D0B8EC10699781F189 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 62330B7E1CA33260E262D72292FB2564 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51E32B5489CE757CE5B9DB5B6FA7ADEA /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D24FECB3A93FE8BBC6D759FB735011 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52241B37FAFD50B4619D508E79EE1AD4 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CAE6956DC63754F4151FD341B8150B /* RCTInputAccessoryViewContent.m */; }; + 527CFE08D11A6009536FFEF454E67D84 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3851C725563AA7610F3D0B33357E763 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5297DFB0E2FE976944820F9E66E0CAA6 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 342C7CA5A0194CB8A079C01EAD326582 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52A22C11DE66A4B99AF09DEC66E99E00 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5333166E9C106B1E496CE38DB02D2B29 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4690141267CA3C800D00A4ECD33088 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 539A5DBE1B1B1FBA80FB3789A852F739 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35777B618F98E54CD984BD8100990F32 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 53B86CFF5AECAB61C3E32FA0167D0720 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C2D455E8C0B1C6E747BA4A6FD629B5 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C39A6C3B7F26C69B82693780430CC4 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 53C6259F13804EE98D35D7069FE8DDDC /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 42450E1DFB56BA7C5BD1AD4B8D305337 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D1E4182523909B3D1954068D32C091 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3FE9CEFC67E758A6E76D03174D4FA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D8C85D647AED0FA559FD17CCD93065 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA59A362DF27A60F43504E35FBF3897 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53F952F384B240B34B9CA7FA4F2DE7EB /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A805B318F116BD492087B456B8C5EA /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54027FD11EFF8FD562FAA195C3409A82 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B114A07D303818E2B73ABE8E6A25449 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5417D26D26F92F9F59F1261B24D7B86E /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1AFD923B7EF1571C232F7FAD4BA508 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 541E1A9E80136990C5D9D32CF1D894A9 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EF64CF0B9FE07CB54F9AD87B79ACE3 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 547B37258B0DECE684A81A053B5AF73E /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D549BE8B11D869215C6059695F3FB01D /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 54805617A5383362A3676B42385A87C4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5489E898A7423542C25BFAE0FF07FFEA /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EA520D5FC815078100D9048CDD2B7F0 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 548E2739B52BA5CD1D6CB9D59175F3E6 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB6091CF7D8335EF03CB438B1D36F1B /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54949B0F1B491015DC76DB7A61370CC0 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34F263893795DF638CDFB4BBBA1B64E1 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 54A6992A1399269371BB27537C0954C9 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = C234316DC0653347D953D887EF77851A /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54CE46DAA7657062E122300E64163EAC /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B04CA5C5D51FC952F1FD29903464C5A2 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 54F6840B5915D236DB1ADFAB9B6D29E7 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 413CC5236DCF2C15E2FE5B6737535385 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5505D9AB71600240668F4F02B15185CF /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = BC41A305B7A8101FBF03ED6C915C0341 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 551154625012D9B5D0594ADE04F5BD0D /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFB20BBA7B2DA58F4EFED875A40561 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5541CBA258AAD97397181CD6A060C1BC /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 536645E84ED4ED56F2E00517FE6D141B /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 554E4E8BBB108F345D37D9FDC34C2DBD /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 38245D20F7149671B41D231A3F93C514 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5558F214577EE29A1873E64110799D49 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5565799205623B941D8B6EC1A3F8B818 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A74FD8746011750EB1E6EC9AECE69 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E37BB84A6C88C4C12A3B97D84163331 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 559979199E5B386DD1CD3AB4684620BD /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA4B5F801655157F312B28B945ABF57 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AB32E78381C9E04B2D2AE0AA0B5A0B /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55C72BD32925091CAFD37B168C8B2FED /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 100819CA9AE63E735C4542915F95A0DD /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55EE13D855A043047DA22C3DACCC832C /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 308273E77B713AFDF71E07582EB4D94D /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 560CDB5F3ADDBB0DF05CB5BA859AE083 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = DC918B518B7570D8E7B9C92D305AFA58 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5658043D48D9800E7ADA6E302546A5C8 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281FF3B92CC0C78E87AC084898F69D0 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 567CCA3A61638548CF286736D9833F40 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13BDAB5EE738F5D4662DC86C2F01A113 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 568E99A3E379FFED22AB990C8A3F2721 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 4130A5ACCA6EFF23A23A3BB955B8D0A3 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56968482536AF4D1FAD13FFA07179F7C /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2DB0F3FBDFB1AD4CC4376BC7A304E0E /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 569F490E66EE3104261615B61B58B8EB /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = E506F619B7D9832C8A6A55BF29FC98AF /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56DD3D049B01D00C71929DA7496F7372 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE461F94A49E78E53F67A51475FFC3A1 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56F27288024AD48A48CC39FFF7A53EB3 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F04E0FD3E318415DEF0B0CE5778F9FE3 /* RCTBaseTextInputView.m */; }; + 570BDB9C228B48C746980CBED34FC4AC /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E23344B415559E527318EF8EF39D416A /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 571EE0DB8C63FEA2E705FF359AAC5EA4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BAB2FF7B7829B1B82B66B4FD6316A5 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57276F784F3B52DCBADF98CAC04D4E02 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57407727C8819D551F8BAB6A939D843A /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D91CB8098B67E74DDA6E1FB8A6217EB /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 578B55A858AC47B62F1D76600BB27195 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48A004EA2A963EDE65191323BB6DB0D9 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 5797537BC22D0F0F7BD94FF313A26259 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A9CAC2EDC5FB6CB8779F6A74D9A6798 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 57A31A934E9AB7339028B3A71AD68FB2 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1932B1D65BCD050283BB9C2ABD61AE /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57B460C6E0E4407120A39E4EF0B10E6C /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57E43FBAD23B637B047A3DBD1F09D383 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8EEF2CB96767D51649A68398181E23 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58066B4DEC92F08A5542EC6C8705E5F2 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE06A2E04B27C5BB61690A32DC3726A /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 582E1822BA5C4AD3F90C26E0EC03EE67 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFD8E7D1AD7B567D52A4FFEB16A6E09 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 586464A1A150291AA7D0B188745BFED8 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB8D16DC2F2753800284C8A38A82434 /* DoubleConversion-dummy.m */; }; + 58760E375A56F6C5F8887245D80C147C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB49437EE6662AE3F79D5CCD51792BA3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 587A867CB9B58FBB21C3F5BF6E42B619 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7EFC8C1057284BC886700738D3BC88 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 589DA9E04D7F7B6DEE549E4B55500BFA /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 021310A003CA9D097F35C86187D3019A /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58D7C14DD2E2EE134515D5640E780120 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58D9296A929B444D67EF2C544C6C2C6E /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DB4F148CBAAB7C8C5083ED08415B5F /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C315ACA284B288B1B0384A76D258B8 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 58F70D66178AEDA4B9D2BD1B8A118F3B /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D326FF03181C8EAE7A6A75BF779EFD /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 593EFE3FBB6E3203B69D91B111D929EA /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA622B22D82D669A9FE394DAF8AF3F0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595A6ADB6D68325BE26B613B90033AB1 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21136489EF0918C0CA925FD75031201C /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595FC7BC8040EE4155EDC87A50CCFB3D /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A108277A2124FA73CF286BCD2C3270 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5961BAEE20736C8C7E0700B53E3D986C /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1962E47C6B14FED0C788E24606C3BD /* React-CoreModules-dummy.m */; }; + 5965AD2026A99A9964CC39223713F208 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 895FB49C292C7D98777E20119FD62162 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5976588EF6D88AC2837B21ACA6C437E3 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F19AFCD247824F63821BE8D551EE5DB5 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59CBF685076045CBD3340BA815434A9C /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF678C9A3F698F587FD8179A4695CEE /* react-native-safe-area-context-dummy.m */; }; + 59D3107B9E110EBA642C74CA514E89D8 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 59EC220D7FAF6444A0E9945FCB8B159F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A528BD862DBA9DB2718D18CCAD980CB1 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59F557814345D81361C5E33BE3045F96 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FF91DD228D9266ECD397C25F725141 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 296923F0C9DFA6A84BD551B1F0BD973D /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5A5547107DFC15ECB69BB3E4352158E6 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A429BF5B8997B2CEFF31B4E58053829 /* FBReactNativeSpec-dummy.m */; }; + 5A619527FB974148A119DAFAB043F509 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B9FBCC38BDAD76FEB6882B6D88CBCB /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A61A1F5DF7E556A76B6081D9579EA99 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D670691923A7E0A0EE8254B8100EEE /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A811E725EEB38FCEF59998397DACF83 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E82A31FC89E75D08BB8326C42C0027D /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5AD265D3096EDC8F589A13EBFC1FC755 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29291A120D9A8511845B1567D198E2E7 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B06203D48FD2BFBE214225F8FEE3507 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEBA8A56F54BC1602CDA7BA9EFD1801 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5B257480C06F08B71C62258A895682A9 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = B8583CE65E0340962185331F990AA529 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B31453B6EBDE8B645AE44EAD78489AE /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 438438E78A45CDAE16FA464C36EB06B6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3817926F064504598D2F218C4C9118 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0EAD8D3FD116EEF3E27CCBDAABE3A2 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3BCA90FDB12DD96A9EE9B789278532 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F8A64CBA73083B7881CEBB1F64AD17 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5B800D70EECE3D4D5A04BE4795CE2EE8 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2947DF840D7DD0848392EEDC47DE0 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8482BF9A1DA43DE73563CDE022CFF1 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D31CD0C23265F496387D933A820A2F /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BB3EB327DAD0BC22FA1C82F4398CDF6 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 685EE70B7B1B844B8D05FF339D4E6900 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 5BD0ABA42F1079D166BD28432253C734 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91382F601A78D919F80C3112ABF74676 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5BD8B072A5F955A942C4E9B95F70E86A /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 69330C731648F61238A66A15A0FA995F /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BE0EE548545CDDF54FB079C109FD079 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC88FBE381ED0BA6A6614CA3A08DF40 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C161141A2A56876D607608F914D1863 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B757BDA17F7E5D5DF31473467076643 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C1BDD624C9ED4BA252F9241EE4BEFCA /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CFB69010842FA58A336E72735D41D8 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C2946FD52A2E525835FAE4EAD39EC18 /* Downloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D388B8F15D229564332FC10CF40A6D /* Downloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C2B6012C86F3F7F3BB0A868A4576ADB /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EECF907F4D60C0D7EFE50EC6A79CC5 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C38F4B2183C22F9D013F1EF6D4F21CD /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9790A12231D48CA295593060FA4121D8 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C69A7E530F46CF368296795F83FA463 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4510B2F18E925EA14E22C825FAF30E85 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5CA0D9D07A02747CA9839AD71468C74B /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 095913D41661B3C7339251599CA7191B /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5CBA291C574464519366116BE693A70B /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C76256057A0341883ACC15FF403F57 /* RNNativeViewHandler.m */; }; + 5CFB344115043115C5C117851BF4515F /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D03E7CFE2CDDF5B2AB273873051D9FE /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 688C6A8E5951E06F8A407B07DD682CDD /* React-Core-dummy.m */; }; + 5D0A2ED662A0E2C77322426ADFDC87CE /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D70999AD8391E6C128A8DAC3293E870 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D349E2C93E418A621DE030E4D3B74C7 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = A36F046324435EC8477E25716A3E27F9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D47776F08B8492643C23AA3C743C97A /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF44A98B5123B003C9303CC3C471407A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D53D4428FAADE3C711D6A5B3D607139 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4C77BED77C642CED51AD321A61944D /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D54D610192636044A0BF51DB27B5724 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6453EDD28468A642429C0A97B87A600F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D5B4333018D472FC1F7844CC72B4EB1 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9AB485E6572A0507619BCDA0B817105 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5D9781FC8F04C1D731C094985C4004BD /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AD50F4E963DBC1AB36DC8A812CBA8B /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9E40346A62F9C85DC39619B81A615E /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1BCAFCBDBE6643E703BFD273D2C004 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3177924B76A336958BB6C88C091B0C7B /* RCTProfileTrampoline-arm.S */; }; + 5E2F00556A4F15B852A6F648955AB7C8 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E45D8EBB0C1E402BBBD9722515E9FE1 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B30499396765EE1413597F9B3EC5595D /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E52EC328534BDAC957BAD9C137427A0 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F2255703B41BAE2EBA4A8126C32A8154 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E66A88F55A205021D9A888110408EC9 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2896391C15EBCE508BCB44924E3A7F3 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E6D6C5A392F4EFD1538EDC194DE1374 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB6438819920426AC7869F0C84E38E4 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E795232CB6CF9BB0D0D695692AB96C2 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC8E9D135E8B19CC9AE62C8417599D4 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E86A36C0BFB7BD615B5140B7E412947 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = A38E222B22DF32AE6EF7493FBAC2DEA2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E92B14591B38382F9FB0588A179E41C /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D639EB49DF224BD48480088ECD9FA2 /* RNSScreen.m */; }; + 5EAAA60FDB3ED7368977A10FDD2463E1 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 047EC85640A6A1990B03AE6712FE7D2A /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5EAF26EF761E823371268AB25CB4571C /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0D5BB58167BE971D92FD73792B06C0 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EEAC2D72B362346CC5FC69366619287 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB696DAA46DEFAD66FA6780FBAD04BCC /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5EEB0BF3D5E2D86D90EB5FB8B5B6E970 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7898976C55FED104A1F41769CB5805F5 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F031260790DAB79B99D2456141092E8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE5D96D741E1892C62A335769A0A95B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3771108F1309CBA3F451A9A946833C /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC905D622F26BC529606C504C75AC5 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3E9BA71EE82BDFB266DF54B326EF16 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B059EFC75C33B83B9DC39E65E19F96D3 /* Flipper-Boost-iOSX-dummy.m */; }; + 5F3FD9D1BE099F2B7545A9F939313248 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 5F619F64BCAB11E07F5927D0486F52EB /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6F071B52B98D676644B5EB7E75A283 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F778B457C39A18E26833CB22153722A /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85F0E15BA9473250A828D37C0E07C48 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5F9992BB204261D73EE284FC46510918 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B110D356A2384A3387573DABF96705BD /* evutil.c */; }; + 5FAFA1A06F53C24368C96D30A440893B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 600921D4668B94EFA82F8B2AD2FFB5AB /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 224F362FF97E732698BFB91D428B6DA0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 601CC93043B537EFFACD2AA838CCA139 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB7DC441D0D4020F8B0058DA9A08C2A /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 601F1027298A02CA0AE17F2E41E771F0 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC27FE06014228AF77550F27A680652 /* libevent-dummy.m */; }; + 603CCAC6414CD5BE3BB2918F30017D69 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D601CE05E11A0E1B79B394D5656264 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6049978E5910E745A1C138ADF4C15018 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1D14DC8CC641A1F72379F273060C7D /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 606C42F74B476489051584E10E743545 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B698000109AA8D5925E35FB4720F2051 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 607DE539D1409814E5ACC4456547ED76 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 941D502FDA5F931A5218BF6631F228F4 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 60C95491B1EAAB824BFDE23F71523882 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0161A1977ED5A24F2684E0CC23918B /* RCTTextShadowView.m */; }; + 60E00753877F0AEABD8359740740A17B /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6101ED61A1B2D2AC16D21651CEBDFF4A /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3FAF4715ADAAF0F85E57AA28F9FA51 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 610A3814361DF2ACBA00237F0CAF2A80 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9640D9886CB8D74A5E508DD0C8C6CD62 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 610DDACA4FA745D547F3DCEE6FD52BBD /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91274C5B5145F8669D90071A8B12C65F /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 611E1430408EC1DE7387C127177CFD53 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ED72227D1C8EE515258B0727E87FCA /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6124C5679C59286D6A59BD965126DA2C /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75162085A4EEEB496A3E30575855CD85 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 615427F4E310BC8819C452C1F32C0FC6 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22A580310C9FAE568A064357EC663FB9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 61A8B22E2E74DE8F19C95EC4D35E1EEA /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB1601793EA3A461334E9DF8DB14F563 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 61B89DE66FC4E0182A1A06E69E4FB04D /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F0E881BDE949C4CC9843C0BA7323F1 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61BD81BB867EA5A9CC1B414FCFAC1B20 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7886617ECC1A35BAA21D422676D4619 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 61C74C4D9D9E001807E46AD3517A0D84 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CCD0FBE0A77F6844B6279BD20A3D7D /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F53E76092A0657E4D4E13180BB7E465 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61D7838FAB945391FDF018AF7A925390 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 317D4599F6AA494C01E463C0D0BD96AA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E445CBD449C37489E74D5D897096D0 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = F402764687E3A48E0AC6E10E700C226B /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61F1E92656CD8C95A7CEE35332760718 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB9555F7B8D493D351640F99BE834A2 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62ADC7177A135D6D454154EDBB04851A /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62E55D7F0BB36C66E26C6CC986561A33 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE436D661B0A400A2B070D6F99C04565 /* React-jsinspector-dummy.m */; }; + 630FE092FC3BD72C0D035EAA254F35F9 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E32C63A31BC22CCBF5D936E10D084D /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6322331B73960F3165EBCD610DAAA2E4 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07672549CC52AE7CE770E8AA3D33746D /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 632A847072068F49989E880B20007F08 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E49BBEDD3C3E5926A39C940729F502 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 632E625299077117A411283EDB3974BB /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8C6CC9F54F5FCAB4E2A7D49CF052FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63475BBD71E3FC271ADF43CE0DE2A25C /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 636F80FCC230419228EB854947741208 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6C067520D9CF32C7812E8B8666877A /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6394CC0049AC3C64CD030396074E89FC /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B303AF54F9D894B134992F22DB1A0AE6 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AB8AFC4AA7E611605467721AF35E03 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C46353071C46B01F731E4CDE42344506 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63B9F388F7C8F9BF7C76590705F57EAC /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 226EBF97EBD348609A9C046E430F05FD /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63CF72D3F6819840090CD68798704BA1 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 63FDC716C37E0B8A44E5BFFB26B5A2C5 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D15D00FBD2248129231ED45080A2C8B2 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6416B7AA57B93BC1617CFBE885D07A3F /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A329FA458DA9929C775B3AF8525C3E5 /* RCTBaseTextViewManager.m */; }; + 6452BA70C04BC3FFD9ACAFF9AD226ED5 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F614579E3985C51C8ED2E4037912FB /* RNSScreenStackHeaderConfig.m */; }; + 64584D0AECE81EB8312A2CCA738B79F5 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C8452DF85B9CC852440334B0F24C4532 /* RCTBackedTextInputDelegateAdapter.m */; }; + 64B63B828355EC1C726D0876C8E0E664 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 406EAC5E409148FEE468B622D4EC12B0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64C33BCF1C8226A871A888BE1D2B2800 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5E5AF63C22627E9339CEA5458F49FE /* YGLayoutExtensions.swift */; }; + 64F7E90CF3EE8C30D6BD0C36D3860A1E /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 203FE9A528DD5DC77925AF4022E450A5 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 65084385A7AF7A025EBA03B76D317ACF /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D1561D76BE421DB0219FA104980621 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6516BAD43AE72C9387D7DA031CA2DE04 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1380B82F2F936BC5A50B3C12CA8DE645 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 652EF6BC977E447889BDCE9D0FB5035D /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 654C95618F4A6E4D4196A8509C115E13 /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D459996C8D199B278DCEB621FF3FBCC5 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6552AE2418AF8777B3C97968F9BDDC16 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6553393ED3C5901990AC18DE03CBBEB2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C12AFB926BFC61F88BF8C3ACA256D3D9 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65547707E87A4AB42358B12F41053EFF /* RCTWeakViewHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC4521F32E0BE1AE496403358CBDB58 /* RCTWeakViewHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6574CC934CD40DA900FEF8A1F2B9102B /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A27656737BC45D954DEDF2DE634BCBB5 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65755B356458F6583786E866B819B113 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D29880B2F0BEA46CCD0E8AC801F6A5E3 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6580F1C3FC7AF69C403FD59CBF4C5BE7 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B2874DDE27A6575C72734F7C89127449 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 659DFEBB535498905804A8182092AA5F /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F318767A8CDCC692929B7821190527 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65AB2AD319C1AA2D8579926237573AF1 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F38DBC4B447E091F21632D2E5F334783 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65BB8080FC43E4153EA916220BC84673 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B9B4C0DF02BF287E7BE42C43F2F2C9 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66061261FB6B4B013B4CA6E0640FA124 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5B5C939F26EE3210621E71B4496512 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 661F2624B706747A70B85A82FF0DC5C2 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 754F64613BAE5C1353214CD1BDF4F73B /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 662C19A741A7A6EF8640475D7D674C2D /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 47436719A8CD489012C991505BA62ED8 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6653CAD329791C8812B9A4596BBB82E1 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6655CCD0272D51C18460AA7CCD7B788F /* Uploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FD0D70F6A1D7B4BE26F355B2EC30FA /* Uploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66617936D2CC88CD0E77364909F8BFD3 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B0117D00BDAD1CF2D3A10E6317FA39DE /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 667D0D826A0E87B90888176593AE1D0D /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AA1F42E65C4693DCE7811B73E8F3F2 /* Flipper-dummy.m */; }; + 669A4175D29B6E45FB549B41D66C51D8 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = C53E49B4620BCCF1ABAA4538E59B3F45 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66B1BBA7E31E65E65359DE4C6350C9FD /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66BD7EC01C36121831674982EE6AD2FE /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5CFA31D6AF98FA51F6F4826861ED80 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D38DB2F0CDDCBC0CABC2D28EE4B46B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 223B100218B83CB1C201902880BDA9C5 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66FCC67A1D6BC66F0563CCE69A85871D /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFFE3554E176A112E0ADB340BEBEDBCB /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 66FE644EFF3E9FAA42029C8A78595A6C /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C8121F55F0F6EB83C17DF1C99D92C7 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67034209F2A1E8129C0058FFCC8134B0 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8502A11CF3F7BE61B5458BEB1AB84A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6703704987490538DD042ABCDA4AB4E7 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7527E657529339010F4C5B7BE009AFB7 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67346EF67AC2E4E6AA2C3AD688E382EF /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6736053680E5A13C548056B0A167EEE3 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AB28FE125C6D0F3711ACD12DDB8FAA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67432186947445350D4D764EAD920D77 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D7B3F2CF77A00299F16992BB1F7F1 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6745548213848C57A03E273EDD046422 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D62A3B2ECCED4610679785B5E436B328 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 674AF93B5EB6449B80D6DC154BBE3855 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EFCE1712AC3B4B562B9A6AF697797 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6780A15A9087624EEFDAD6202591093F /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C955913DC0661C1D89DC0F5F6640E2DE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 679AA74AD72810FCAFB1C777BC9B1372 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67AE222411302371173E8B200BE14637 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C818680110475C158C8A6B31567D881 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 67AE43971A9A4FBF875F5A1562E981E4 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F7F7DD5AC6BC1BDB3BB16EDC5198AFC /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 67D2598EB6CE626EB39F7DD6DA1B716B /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 526C4BB2CE3D8B5940A129B9B15AF8BD /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 680401EC750085D1A23C7F056DD73BBA /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = B40A7A09256952C8EDD740F1075973BC /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 680BC129D75EE909D2D694CEE64CFBBB /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4682AEEDECF3D46B959B1CD9A3C318 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 684E534B42502489CAFF5829EEE269BD /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0BA2D90C3C1AAD185ED9AC53D51ECA /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 685F96D05269ACCB93109A4C0F0AD446 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F437BF7BCAEBB12D271C6201659F87D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6866E785E23005DE3F4B71FD6AB10BC5 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 686A34E6725EFB6465435D41DA2A19D0 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 686A9026E6A53F2061BDB63FA3504E5A /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E6C3570F4EDA55947E6C543AAE54D7 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68858BFBBAF37E5A4F136C79E54B4044 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F12F841578A44F79FC365F91B4ADE2 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6885A35F0EB62B6369E5CB781B382930 /* RNSScreenStackAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 738C3A177B5147E5B0E07DBC8D1D731E /* RNSScreenStackAnimator.m */; }; + 68B7EE4CFD6D707B403256FBEAE948C5 /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBD05B38D1FCD7241A981535F12D486 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 68C9D8B3323405D46C18104D7E6B8068 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AD14E9B68FD276276AD14CF2DCA10E /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68DD4EE7081F6E82C46B36D7A208FCCE /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68E226845119C38B51A80F5CDF9D8E90 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 14819AE9C08ED24BA27D9A2A91153365 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68EA47B706EAC48DE50153EE509FDB34 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DB17A0BC5D5053E93A094A66725DD421 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69396DAD351D7783A8C0DE60D35E13E2 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FA5FDD1150F80C3A96A4C62B51A78E /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 693F0B924113DF3F9B507D8A7730BBE3 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82567DA1C6A658398372D50699E8863F /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695EABFE8964C99C92E970C4B0731ADB /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ED4E2B9DFC187214285B36BC161FC3 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6990EB8CEB140C4BE3A8055675531440 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 69581CD9F9ED6389E978A878EC8B61BE /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69FB0D262A836BAE42FEA60039605041 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA84CD5C385B27BC49C6657CFA0116C /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A520E6AE88E0A8FF4FE1B3851446322 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A5FA3C19BA27309A576F1547463B72C /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CFA0EBD7F4500B21BF90401E326DF63 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6A6F357FEE452BDB0FAED5768FAC70DD /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25E970EF15B6148D8C2A298FD2370D2F /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6A8FF64706926D21B8A5BC08DBEF3654 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 211C3BD688AE5855B00A272F4E7BF680 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A97FCA0949A128C8526F70C1E62930D /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6AD76ACE033860C063AFD554172DBB88 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3FD87E8D3685FEC4D82B0C4645705FB /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6AE67097638CC40BEBCE8F15B453BF23 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B03313D34AA29DADA3AA5ACEA804FDF /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B9ABA2BF77797DBAB4A36D2E1A948 /* ontop_combined_all_macho_gas.S */; }; + 6B11C5FE7C879F7CE6BA25F5EAB80ED9 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B1E36BBA4D2C710C0647B2D068D8E03 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 566903189F64A2CEFCC8FA57C309F6E7 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2AEE5EEDFFCA817A41B565409E811D /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAD61AB71F8F9FB7AC542893D5795B7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B33B1004888AB094945BC5FC81ACF3E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0DB550A169BD0AABA0FFDAFC4EBC8C6 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B34A27E226FBB5AC3A370D4328115F9 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2256A11032055D585A4B54E0E609B8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B9D5DD2A6428F682CE897167E4D8266 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D550D2A26097F44F9D821AE27FB48A57 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BA0DDD6AC53F22A72416CE973AFEFD6 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED42D6EF2BF08496F970F0246DB6572 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6BC1E0A1D6D22910001EC9572AE14552 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D939C26F31BAB4D9EFDE4D4D37E01D /* BridgeNativeModulePerfLogger.cpp */; }; + 6BEC8A7D1DE801327F26C567A4BF5E86 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBBDFE519F7F12A0FE8B58C45AD0C0D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C00B26685A1C7BFCF9CF8C5D9C8F3EE /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C617D9C0E7CE93EEB631FD362EDF53 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C43A7A9CA41901EF97F230E2D571336 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4F91488724CF5711C02F42D7DBF88B /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6CBE5E910751EE66632040194BFEFCFA /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52C3A26DE64EC549AB71150AA3F8A6AE /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 6CD41DBCB5E33B70104777BE9AE49CB0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF5CE0870A093115842635070C31DB /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEFCD73394796811C4F9925443313B9 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B6867710FFD0F3595932D7CED43986 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6CEFD6AFA48BFFDE7AEC15CD912A1227 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = CBED0CFE7C701F3F82CE9F6D51C8D3BA /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF41072FFD80A8ED9545B653455E516 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E71AAE54A30038A5E29FC5724DEFE5F /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4DAE5CA137768424D32081D2BBA036 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC1C8989F4BA64EA065744609F0F16E /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D647C42FD1BFD7AF8B86D49F43F6D88 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F79014F71F02A5BCDBF767649BD551CF /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D686D1B5514E71CB9E5D0C8A2095FC2 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7E4201F8D4E7A7831824ACEA1A9F54 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D9A6B6D290670D6599FD1E3BCB4ECAF /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419C65FB5E4B2D6924B04081395AB2D7 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6DA5CE3D252AE587DB44667DC60704CD /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D25205909C5820B07E9A10864AECC8 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6DA88793B73B23541DE3FF1A18DB29D6 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F366B87D3586798B377FA6CA73F9ACC /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DA8BBAF0B486BA33B3AB4194A6D139E /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADACCC923AC1E1AEE2A6A6BEF94E08 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC0521D90A477D59B6B92845C25C7AA /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = D950471C76DB1B6A05572F059FD2C7F2 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC73BBF24F67F52344DA6B6BE8C85E9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9CE0073268E70D881B593D557A7AA2 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DEC130B57B7433DA3877C66686A7AA3 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = CE16860A64064DA1544BE4470ADA4A8D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E07F8F86527F109C651A9B306F5B2FD /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0227E15A73C3AFBE5B02B54B281F5E /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E12E3864E382DA2E4DB3E3E02699889 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 460FBF50587F44609745057EDBD8E7D6 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E1F46D571DE13F659A2F3A3B21B7E6B /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27831EA433EC7BAFDFF8C6F126103923 /* RCTMultilineTextInputView.m */; }; + 6E30A05A22B25925CB91466DAF1A7DB6 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FA651216E5171A38230135A63794EF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E5B7D3B18D8768F91C6323353CA94B9 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E6A6371E574F2D6E6084B73510AC8E0 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 04536393E023ECFBBE9EE37F19F1BF49 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EAAF6EDE4CCA95A573CA642F4F8C77B /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CD808AD444B6CA166439D20EC1A6E3 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC32FBC9C5D971A74E62D0BECAB2B67 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B52D48D73B361AA550BAC8BE9B8A06D /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6ED9A0584B019B3BD9275054E7E12062 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EEAA8FE9C748941D7291BD0AFB2E4CB /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84F4510539055CB95E56FBDC763219 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6F2D641112EC49537C925F5BA2EB6963 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = D42D543519FE1C8D35263EE18B46D565 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F32F872FD939874C3D2320BFAEDA583 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 2000725EFCA8AB9B88E32AE0A81CF7DF /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F56DB5BE828AA7E38EDDF77510F29D1 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BE773D55EBAB66F156A532DDEF39C6 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F67E50D444383A6EF413D3BD17DDE5F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F6F624CCF4B9C9457760F1D45348540 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC227C60C614E40954C39B3D4F1104F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F810EE9E30C4C30EF497D65074E27AB /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1C1235902A1DE3DA43779A33B13735 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8ABAB9EB2A6AFF3FAA0AA7B561C750 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5BDE449D967E54E3B89C8631FD9F49 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8CC7C7E5BEEDAD1339A0ACBD1A6042 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB8FC08C45ADF73E91C0D57E1C5AFFEE /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6FA9BEF1CED2FDEFEC2174E112D35C78 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B18C52A43F53D95036703A46040CD637 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FC12F750C43D04254CFEBF30EA4034D /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49570DF58F4892ED30C05041A5467F07 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD41B796D5A117D917A136A6D2B6F7F /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 57CFAD62B0C31AA9DCBF31FE329F5A98 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD8577AFDA904B2E045758A55467E67 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FE9B7BF86B8E2A15215B19FEDA39B76 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 322BD7E5B5EC21B5AD9CD30FA041AF5D /* RNGestureHandlerRegistry.m */; }; + 700F026864EFC35456DB3AC316E83C50 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7017839727276434916E9B2E4EF5AE57 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B85CAEE985AD04FCE729C0D28619BD1 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7044944648AEB804564C9FE12A2070AB /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 5428E8B7A216A24ACE562A2878E76B30 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7067C14E961788E1806C73BFE49A5BE9 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E954738A6FA445136FA1DEDD8AD25 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708FC84C4E6FD565E824247AEB77ACF4 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0E236C476AD7919503F1A8DFFB7807E /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7096DCAC85EC86D9B77A349751A55514 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1071252E38179AC58994676D7F2E6EBE /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 70A6C9DFE145E8BA70230CABEE8C43FD /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE4F8CF26E044E4032D85CD05574EEC /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70BEB6C7E73C571B1C9AE79B395D0024 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E908AF32152FFD689566289EA1D437 /* RCTUITextView.m */; }; + 70E7D50B45BA2C489E0DEA3DDD46D9F5 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70ECFE39C3BE0CA58B284DBF9D88539D /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5A6DE1504421AB3F7972497240B278 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 711AC0D8CF775F4FB0CF83FFA71AD37F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 712C8D43A8978F8921AD46A6CAC28A0A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 873E13892F52A4C634ED4A3ACB300063 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713022751DBC226C1F59131C3ACE3A83 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = ABC8EB8C180081C475112BF167B9C363 /* select.c */; }; + 713E2E937B32516B41E649338410F1BB /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CA81C60DA2C1C06D5D25236AB6722 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 714B2F9FF9D3C7A6F091F9CD6E1C3A9E /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9539DBE6F8BE89D65AC6C94CEF0690EE /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 715187F20E5E49F9F6F7EF3958C84069 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 319DA741C7F7F2C1A3D7C5506377539A /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7175B1A13B786C591BD674F1DFC35A85 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB91E2542DE1571CFA494A70F372DD2 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 717CE478BF6C0A1AC092CF022E35F436 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0925416FBF70EF1C01A7354966D0588D /* React-RCTAnimation-dummy.m */; }; + 719459D7DF662085580D5CC903C6560A /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B06DE9660C7CDAB7CB687D3E34A905 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 719B8B9378A0E2234D9AC289CCE72BE8 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 937FBFE739ABB4AF8EF8B6E23F0A4BC8 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C02FECE211663C9FAABF86DADA4C41 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D7075E5E2E8C0A3FB3C53A004D5FA05E /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F6DB1F62927AD11393F1C055649208 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB68D666DB329572E746C8E51908C2E /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720678B1A5DF6793822AA08CD767CE14 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB21C8AB637D887FF795AE54809B835 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72136D168F42C67CBE3C561A93C1DDE3 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9813789CD1C5B9D36786B069FFDB93B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 721E166CCE4BB8DB2C1681185A7C49AF /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D23A27796719003161563112418CDA /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 723693A1E81BB637B9FA01E68A42087F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 723A18DFC82D98416B20FFC1B3188BBE /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39E7415842E04A64B8ABCA161FA5301 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 72736D0124FF41B7C710DB84D994E388 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E29456D931052E0A869AC75931ECB6 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 728C02EBEAC06CD822AF70367345F4E4 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7293C8745FB5DA5F6E227ACE5561A0F0 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB94A2B54B34D00A5070BD2EC0E7C19 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C7ACF2C65313013DA0BF8F9D6E0246 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B73BE74E352372C67AD619BAC7622EDE /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 72F74D34F36F8992A330217030BC6C8C /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = D1913E3E3D1574583C6B8B72364308B8 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72FAB7A281127020D529935AAB593EF8 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFFCAB6A668CC8083D9FDDFB21F12A16 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7385844A46AED4763B3D6439FAC42EE2 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A9D95B6B33893138BD930F10E50C80 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 73B1815E69FB40E724BA0486AA400B9D /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 73C58071AA9E5E420EB9F66FEC0CA6CA /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6075DB946B44B2BAEBF9F3895E687B05 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73DF109DBD8CE931255F112DDF612C92 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F51A8762DEA88B22EF2443F4A90DEA /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 271218B9394DE4C2183D665DBB5FFBB8 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 744302A5FAE87EF3EF847A5C454E7DFE /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = CC948F25A85602DCD1A7E4CC0B1F0EBC /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745B10B5E5FA115C5B141306459AFE6D /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C2264EAF7A5BB9E013F8218EFF101936 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74B310824C657C61B485395216555E1C /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E51C881022FC5B40B5BC9B3D9CE0E1 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74B37BF8C10734F4CE15FE3A851F3E18 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CA108FDD87A616B4785CABFA0BB824 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74BFA2822C538D6D7D37CFD116E0A94A /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = B885F37C6E24A3052473BD896E3BB0BC /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74CDCD10BE3252CF1209A0763B5801B5 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 205848CE013CF0F6A82C7111C75866A9 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74FC344B7204A8654926EB3B5950B249 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BA7C52AD9F07EBE5EFF84C54A029A1 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 750AA17ACE4A6648E4DE4FCC077C359B /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = B57C257E93504E3F944CE741CCA50894 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75386EE6ADF7B4B9CEAAB73F0427D9FD /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 134F0D04FF8A8D1D7A28CDC260AE7781 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7553694D3DA80F9C80D76D6FA4F277D1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7560252227617AD5D92F971E76E414C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 497AF328E0D9BE61F1C0C72D4EB600A0 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 758BFE80259CF66F07DCD04391973C8A /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 84901BEDBB7816A4B61B07A601AF4343 /* evutil_time.c */; }; + 75B61FE89EECE43A7CD4D9CAA0C5A939 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 226B295B4F12785725DBDA0B510CB992 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75B620A095409777A0456C21CA136802 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB548B4433944FFFBBF7365BE8B9B96 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75BE7C1BEEA16EE1959430A082D08098 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 208DA95582883B7AC06A89201D7DFBEB /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 75D59FF43E6FF35B1DE0E7E1081D8DB9 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */; }; + 75DEF285A2BBFD5452891B8A72A654BE /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 760213A7119271B4A88148F72C7D0173 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB758B38819BEB96C41AB3B41C42880 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76029EDAC67550596B1B14259B5C5C72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7913A299A9B2B5AA96D6BFD4C3866B8D /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7608FC63AE02B885982EBBBDE8597A52 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1895DF0A9AABE1B878828E972015FB78 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7615B15EC6FDFA289773835F0412E54F /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 965FB28B3DF50EBE280766D151BFD98D /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76242D7DC83F04CB3420CF89B85AD17F /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7B3CDD01C3FB63FB8F283AF9B5C7 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 762EB8F37B025F9D22314EB74670D24E /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88738740EB1738EB25DDFAA6A66B215F /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 764952D6CF50491D2F5C3B3F5E5559E4 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC085A2646149BBC2FCEC1836420F2E7 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 767765B47EFE53458E217E88FDCB730E /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = D877921C0CBC5B1811D802759526D355 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 768369B5ECE0D7839E3E5234764000C7 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B95179759B4E89892CC09A2CEBC6DB4 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 76985FF377987443DC2F3077197ABB89 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC3B825903B26034278931BF487466B /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76ABCF6D5A75091231161DA5A54C2AC5 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76D3E3D92803A165AB1AA0ABB3F6AC47 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C899451DB1EAB167F9E43801D7618A /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 76EC94CEBC562EA6A86ADD85EA42F17F /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8DB9FF1D81BBC96E0D1EC6B6A38FAF /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7727EDEE415A75F2AAAE75C10A808703 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACA5ED7877FA8CFF3DEC54E9E7E3E9A /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 773A551067C138C4109A14ABAF5A9FC9 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DB3ED8228FB6CE09A9A6AA429C957 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7741A87358C8383A2062A5AC2F8B82F7 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 557A4EF6293C9D3B7AC2609835885816 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 775BD5A33549653BE34A70E7FE4FDDBD /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 268A32B24ACF3AEFDED7D5A83F40935D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77676A12D8A8127E2937070FA2284AC6 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3884C95D9C30C0C24ADEAF0E30F652 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77858A4F4E85D4331556455DD7973BE0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 779299F15D65CBF4390BD728BF7A656C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 77C0D432E4451B600DE91705879B5C17 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E16051BA7BD627C9AB75B48E0DD6F898 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F6E51AB4495662BBD2FB264B2C9B25 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77FCD8560ED94D249EBCCF66FF38B25A /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A75BB320328199F6AAA83A05B9CB35FF /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 783147B6E4155B28AF49A14DF8BAFBCC /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E492C755013DE4664C8EA962F3037D68 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 78361D305ED52F52D5AB88AA6939FEBD /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1C1AB329BA832DC2E5736E63884A78 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7888155A199DD6A7C305BD3DD05CA665 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BDC440555051BFCE15C9664EB75BC4 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 789A6DCE53D3AB09CA3671D41CFF7EC0 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 2379C295EE8587A29238E3AA06DCB5FF /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 78A5A19743A64E2022ABDAA18F333775 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFEE0800A8B2D7743DDEB696FB96770 /* RCTTextViewManager.m */; }; + 78C4CE6DE8F806F39DABCE9137371CBE /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B9B790B20C31E1178FD757FCBBC379 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78E4439204D6DEA61B30F04737D4E23E /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06EC1878DDF591FF157E8AF1FDA249E4 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 78ECB38E4184E1BA275315533F90D5A8 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92E1A3C0B3D9E1A025BD74F195E43BC3 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 79030944E71CBDD3F45E0116FE88A374 /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA726645F5848C06A1F665F7A871429 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7933F59CDFC87710A3F6FB1B8C09175C /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA233B6F9EC362635DEE7B799415BFF /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7941D159B653230F00B7EDA81F359626 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C0D9B78639A507C16C9DCDF80D0DD4 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79444C10BF786227AE4D09209D4AEEA9 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794BF5C08F1461E88C3EEED599A6E8EC /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2894C664AC9D24DDC577277619309DAD /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7954D8729852F15F3F1FD0ABF75AF077 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693654C9E9A9F8C3F710EAFC70F936D7 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7965AA6F61041FC2E5734DACB4DDE131 /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E89978546EB18CB3C30E4E335168B690 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7973621442736E887E54BA6E534D050D /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0DBED9AA06BBD50ED3FD77795AD34B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797DDFD0754C6D81773A8DE2924F8B99 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866778BE666FEEEA577F6111F3EAADC /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7988A2DC9D210AE50AFFF7FD14DEF9D7 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79A24728960A81DAA0E59A6D7383017E /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4233F004D8FF5DFE443AA79A462968 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79B1FE3E1B03793978AC997CF4588B8F /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79D3836DF38BDB0AE37974C788574F68 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = E767731126AB948E874B970EF1BE7AFF /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79D697065F93FDFA08F4BD1D5BF0FAFC /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 824B921BA1E44F0293359C9ABCA6E75C /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79E4F73D454FFEFDFAE4B77D1A9AE1BA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D48384AEC145E893B5F709E82E12D9 /* RCTTextSelection.m */; }; + 79F92A6A7A61F5DC2B6644E4FC256217 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA87579D49957C3FE93BF1F386C56C5 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A0B7C629E6029E2C859276870D246C0 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A884779B437B2F780CCBC1B235E2CC9E /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A34E1B4032D368027054F4EE19EF809 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FACCDBB42010ED200752B0FCA73AAF8 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7A37BE514B055A87045CA1499499081E /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3563C3A43537B15CDCCD57E94B04FC /* PTProtocol.m */; }; + 7ABE98724B7A9E185DB0715ED9215299 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 7458F397BE6FE5D095086B8666002063 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE246B3E886759D7424FA85A2806682 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A72DAB4ED4ACC5397E4469F53DD2462B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B0EB8F2AFF47AFE58CED1E4AFD9834C /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35ED33D74E3170EAFF2AD9FE7AA23818 /* Flipper-RSocket-dummy.m */; }; + 7B0EC2E3733000591A0DEA50B1EE772A /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = E98D882040B919C92C4A0503CDB9AE5C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B41CEC0E01B9A7B1AF2A2C0B583E694 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 942C6219919354EFAF713FBCE0925FBF /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B68834B6405A97FBC0551AE44B664AA /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B0919C9FF7D5620A1738B36BF1443A /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B7ED360FD257809F879ADDA4F04181B /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC778ADADC4E6449FAF55B6F6BA4223 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7BA6EB79479B9F7F0CE67FED0F781598 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE719AD41FF7D09A301EB6115E4B43F /* RNGestureHandler-dummy.m */; }; + 7BA89568014E27A3B9BC0AED0669FBB2 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 329C4B9228CDA855266F5E4284433F3A /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB61768FEB979AF7A103CDE85028CC9 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C14D191FA34E8857309E283CA52B189 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8282C5E41FB321ABC0FF92D9F49DF3F7 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CCB402E74799DA7951F54216F02ECB6 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E43DB2289E042B983177083FB17F5B /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CCF2BA97075844A7E11520075E599A7 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C9DB4376E57B2A4FC33AFEB4AD8548D /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7CF0FC5E1B52E3EAAE1F467240A5A4CD /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFCF99EADAABC92089D989F5A375D0F /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = D64215DB89058F5FAD89ECFA5FDE63EA /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D09AD280072AE615BA4B6ADA78B903D /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 441416FD44B099BE6C03D00E34B51238 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D1FE05BB6AFF497C5324AB68014E2C5 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 001B32E1203D10D3B5FEAFDA5B0840B2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7D2EFBF71E7F2613C5E6D53E584F3C62 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5E7FA58ECBD7EC5B4D31DA1B316380 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D5BC1713E3281C397EE18AA103D8FB8 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1E2BFC655796D1E34E7A7B3C953C0B /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D847E1407A80379FCDD80FF3BBF9AF4 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 370BE1295F24AF8F54BF7EBDD0ED9142 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7DA627470927573C9051AEA89983B114 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED31E2D33BFA0F0CAE597A9B3FA09DD1 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DB919D1DA73D3B46479A1ED5E2B51A8 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7DCE7E21F2233DF0AF267732828B683A /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93C82060D9A21A87C3D87BA54814E1CE /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7DD198C88FB823E1E7D801D60A22FBBC /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F12FA965E1E205282FB9435B76E661EC /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0D9D49DED326CBF54D0A6A9ADD648F /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1CCF886E153E054E11425759D114E /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0F8797FC52277B11FEF932F7EA8C58 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C016F7F00C8ADF9388D553393C936A47 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7E61812659CD06E706ABB9CCC4162F2E /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B3208C7829341A76998D65275951EE /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E6CB070D22DCA47371090E3F269A495 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 016446B10A5C7FB2CC9112270A68115F /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E8069346102A64CB52CB838E16CFE01 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F125AFF8307528D21544F722BE5D48B /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7E87EA1778E1758C0311C9DDB2781F0D /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8929AE1B886511F1B05FB639F1FED09B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7EA9458564D5419E44E2BE418358F20F /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36422C74F791FDB31F77364F3AC7E962 /* RCTTextView.m */; }; + 7EB4C7CC70912158CF4EE086C2BA1941 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1BA91A24B27EF487E9886FE1A3E764 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EFE417D54026DA67D1A8B3F9745427F /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9701CD8B20ABD0B6E7BD0F38876E522D /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7F0BE35FECE63191829B5C4EFBADB36A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F1A55F862020DF0CF12A89DF1735737 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F2EBF962004901C3F47916B8C907AD7 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8800BFA7C423DE55B79D0BBAF96E07 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F323EA6F985D0A95CA673471198FA23 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD54A74ED4EEAD7542C5EE601C550 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F466E0C9EFE8C177DED92A57F9EFAD3 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D12932317AC6A9DD14332B0A0975A9E /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7F9C9E385D96F0B362DABD9B6E06EE08 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C071225723F0A7C28F08D470220CB50 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FBCBF958944289F7375EDFBEF6C8F52 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD73C324A7CB39CA1629146AA56FB06 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24B29CF1E2FD8262A240DC53472DC8 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FDD13C46E4B6D4FB64448EBC2C80E08 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCF68397950076B1FBCD241889521E8F /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7FE8EE5E179853BA8AE0D5AEFB1B65E7 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 859B60DE21CF193FCB61B5F3A5D93AB3 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 800E9D1F8746AF0009A273588F325007 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F833468CF0962230B33A1A98CE478C8 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80188F642A76E883F70BB9051F1DA88C /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 278B9B0C25A10237C65843909CF11662 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803B26176B598BCC09B83DB947290226 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B7D6C3E73EFED1B452A3C13721AC70 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8065AEA0D33B284071FC4021C4FECCA6 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806637767403F22675529DF2AEE6BECB /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E863ED0A813D9AF4DFD73B26CFACF59 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8098E9420ED4BFED7868B7EF7716BE53 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 425C236277DF2AF63DE2854462927C46 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80B59175F9DCB85B60A63AE4C7984C6B /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD9CD46F71D9B2CB704FCFB2090E2E4 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80C2D327E0271D3D9C803EDEDE4A27A8 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C090946A7BF36D3FF8F3C509AEBB9FC2 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80F0B8F4915F9295FB525FB3C035F52E /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 812662DE18AECD857B37648361115F83 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F085FFF71A941BBCAE5631D651C757D /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 813B4F2CBDB5226B39AFD9A994F09917 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BC6B710B012DEAE094D1B1412724FF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F71050E356738A876E5ABA5D16FD3 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8190C2EFBDB09273EC6369262FB0C28C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4874F889D5953046FA4F16DAEF42BC /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81BB8F51C237163E237908E4E4655C04 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6127211870119AEDA10BE2DA1AC1AD85 /* RNGestureHandlerManager.m */; }; + 81CA6ECFB04D9D865FF565F1CD086B5F /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CC00A49C089118FEF3E74D6A261CDDDD /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CBCF0444FFC4C3AE8D3FB82FB2E867 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = DE433456752CF5D378CFDAF3A3F075DF /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81E66FB2FFD058945CEFC0A5EDA285F2 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 49144539559F122AEBF2DF84E309A3BE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F265132CA7C7F3BEC442217E4A12F4 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F3A1BD5D2F0BDA29EA68352F082532 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82298F9EECFF28C93A06E7886B4A89F0 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1214102348D72EA0EB70BCDE98F689 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 822FAAFA9CC9EDB53BADC792892ED6A4 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF5266C2DD4A81C9352BB056F7970E8 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 826CE5C665F39576AE1D066203BE5660 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C74EC1A843AC3D02F83EE0EA0AB7C22D /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829A1B6D5460FCF8963A56DFC018E026 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C25724E865D89FF6A24B130399CD384 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82DD164A09185FE902FF138660A7FDE1 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F9FBBC7BFF49085E11FA78C9F1DBDF /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82E08553FB8DB17FD63535D3CBD71BCE /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 82FE71054E6A8A24BB5EFC46FE4CDFBD /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = F997CDFDC3F950F4321544ABA1A6FBA3 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834BCE4DD9F9258B36EB94CFB84FEF87 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 931FEF8A0D1F752ACFF9FF38DFDCB080 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 83577FC2D464E21A62CE32A6A4DCEF5D /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1E80AE43DC84B849F0AFA26E4349BB /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C7DBDEF99CDE386C69DBBC952F19B /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FD302571E88DC0D638F97150C0009BFD /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83930EB6CBAC2174301DB466A44993C9 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83B47C4E56AD6D7FA5DFA69E1B07B63F /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6109E4A777144EBC185180C773EA6AF /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 83BD0F1D20401DAC0C60DF950B18B973 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3BBFE342AC78030BE9F88133564F39 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83DB6BAFAA7C2E0BEA7F8B095F806D9C /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD5200CB5EA7974D2E999D30C3511AA /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 83EEEE9B63F193E6EAF9D392FE46ACDE /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 843CF5DDD2832C76883E3178CF96CE87 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D6C5AD6765484A6E978DFF23D181E4 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84610D7C9D208083420F0616B3A06C7D /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC4E92F65981E73E4627C92AB1EAFE5 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8470DB53030C67FE6D2E167F0B128307 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5FED0B95D91DFF218C3C2EE3E6AE8F /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84767FECC8F0D3AC0CA209DACAC4197A /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = A603A8B59A3C57C13E844A2B440AEC4D /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 847E87A8973CB7F82452922D5756E6FE /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FF14741E96009E0CD2A95F214B6E31 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84971C21C99E8E0324296783EEE1CCF1 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 849B61221D2B2EFD63F3D8D65E6431C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA8942391BB25692B95EA8AE03BD62AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84A221677A8CE9D6B46475C976FC18E3 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59CC2AE6A3295A82AE6ABE30291449A7 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 84B8ABCC48D29D67DE40CC92B5C49B49 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EDAAEB39B89DC09D2D35D420CBE23615 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84C564515CD7B88F5FDBDAC0AA760AD0 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84F8EA11D7FBE61C60221313BE90FDFD /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = F35D7F0C1D3D6A263A2E72A5A7E487FB /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8530B16DF50E63F7A901AE062C7E78B5 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D26497877C8AB3B93CC402AE9CE5B08 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853A3F225688C5F2DABDBE8AED362EAA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7777D92621445BF0257E10F0F86ACD /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85565562CE5A893D8DDD2C0C8CD32572 /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8570A0EAEDC43A159E8499712EFF0FBF /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D84BE54931FF24BA032F44401F35C2 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 858C8670E822EB6B43B070801EF81233 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA0D786B8524A74AD94BBBAE60112A2 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 85B07C2F2D7C4E6FFAAE2B509DCF62D4 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09A7506EE3C0B1819CB2B589E9F3C496 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 85B8E6D61118A45BC2901A0F6B8E9FF7 /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B424E2C3EABD731B143CBC8939FEF3 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85C4C1F32BB69E159B2D0F732827774E /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7DF8CF3F60C532F00794B61EB72DD2 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85E3C3F79F6FC41736F0878588AAEDC7 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1959C6DDB752A16DC60D3EA7FB3697 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 85F1F282C819CF6B95B3C8CD7E7FD6DA /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = CF44EB9576CCBFA57DC957C87DE3929C /* RCTProfileTrampoline-arm64.S */; }; + 861FE751E5DDDC02F80F5A712FCF9516 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B83EA61AF7E0824DC080143A7B15F67 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8650512D11728138279D382163E2CE71 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F76BBE961F9480969E78CD30C63B36A /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 867343522FA24BF2D68D57BCDF84FA41 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF98A242258EDCF733E50F6AD79147D /* RNRootViewGestureRecognizer.m */; }; + 868297A20FDFD69982B3309F782B452F /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB0C1831B6B087FB96479D0CD2F07F /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 86C658AE55F8B7C7F9BD36F4205B7652 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7628D7EBED96386B1DAFEE0D444B3EDC /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86DC90785C6F5FA50F5FAE4F0AD057CE /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D79D1BF9A4A41C5CBEF90B3F903A6D6 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86F6A605AF458552B5BCA9B2B26C3338 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 783E828E4ACC21B443CFE96ED95B1C61 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86F89D1281ADFD3B0E4F8E5CEE14E3AA /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B524FF297E72E0EB9BC0AA57C5B4B4C5 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86FF7349B49207A1562C8E0FCFD4361C /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7B740F593CF212D09EF3F10D55C97B /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8704A34C66EE0B7964F7F71765C21EF3 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = E31A0760216F0EA8E0312CADDCB862CC /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 871A48DA41DF3ECA216768F01FC05CEC /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D17A71485933786564ABCF5B5617BFD /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87756DFBB2C8E32D7ABD5C73F3EBD28D /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEC396FB475BAEA889DE422A3A09C40 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8775ECA097148C94E4BF37A014578058 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 362492CDD52F6931D05A7127597AEC7D /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 878B669BFBC2D6F5356D1E590F9E77E6 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BC52FF366D30ED3D6AE3101FAC521F93 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87B62C33675F517F697A8EF59760B16C /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CB7368AD642CECE9F25191DBD9F848 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87DB70658A2A58BB4BFBB9BB1AA62D7E /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F479EFC1CC6C6698B7DBEB9F905343 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E458C02E4E528055AF336C7A6A88AC /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D2007D8F77EA6EB55A4E94CF20B7B12 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8816E0D6F6961ADACDBE9B216C5E4EE7 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 882079DC749CF7A193E0F03577C11D1B /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 4792568423F3FBAFCD1429949BB88B6E /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8823725E7492DE5D403DF8D6A6B0676E /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C23A0ABA96B6CB515E3445FDE81E7D /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8847E37F7DEAB15369E059D071F2C7DB /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 885C8436D32D8925769BCC39B33399BF /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ACFC2CB3970CEA53D6304A677EA818 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8870DB5A36C74EB6FCC583E22144AE2A /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8517DD5D8B56A1A70E7A8E313606A0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888637F6BFE213301F1FF8A45DD97C8B /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB54B1D0C851994CFCE97497E38F9A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88932291EC57D256FDE9D08E4F488470 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DD2E19BF23A2B7E19B50E45088D00A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88947323028258F32CB2CFB731EA9EE4 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41FF6E2844328F39E0F0980DE4C266F6 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 889C37167575BDD17B368DC0018CBAFE /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2203D18515AB76E05967AD3CB9730EA8 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 88A65A979B2BC7E297207EB9D45C89C4 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88B0E3ADE55E6A20B343BDE1632904EA /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC1104C46B075BE7C612CB2CF026D2 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88BB55C7206E997CB6974CC33E0A1356 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E56C8A4ACBA442CC17D8C10EBC171 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88FD50779E964446EB46F424791CF859 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89075FE26DC06662E72F0340998E5A60 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 320E2DF9FB662DB62E3BE712C3F26079 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892692202922D86A0B34A6EA32BB464D /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E96152BFE80CC4D17212C73B577A1E7 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89272E4BC6637335BB8FCDD682967FF3 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = B43F9E1D766BC8A3CDE1D810DB905D4E /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892922B355B16A6338C9FCD098634235 /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 893401EF2F56AB3AE5382DDB67E4232A /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 893844DFB7AF0C7D4167D8EDD6C3C7E4 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F596811D95E9461EC8228E0043F3124 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8954C44E3A09A133E0E198260582EC72 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B0D6CC0642205F87846A98A38937BB /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 897A4CEE58421651ED057844061EFC5F /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 897D1756E9E795FCCD40ABED7D04C576 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EAD435E5F12DCB3602C909D1667A40 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 899D67A26A11893ADF78CDEA5C8882A1 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8F34C28A3467C2F89B08FD4B16050E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C3E2899E606CA822485E300EC2F5BF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68EFB860C63432E0FD42D908D0648589 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 89D5FF6DAD5C4817342F84D36DE79085 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA6398A5CFBC999D9D2106E05626E9D /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 89EC6406629951C3AC06146C4DDFDDCB /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B16B55A28D94C3DBC963722A2B360 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 89F06F956B3B8CFBB611E54F4875692F /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA9E115281E34E39A609A88B050BEDE /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89F8550706514989AED06490E33C079B /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F592236D1CF05E181FD7C7F8C98C05 /* RNPanHandler.m */; }; + 8A114E0403D8B2820889638928FA29A5 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A148D95C53495843EA75DBD05E3B366 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A3DB454F6863BEF69B6D05D3226EC /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A151AD19AEBED0FEA9BBE346AACB975 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5D38305A197F268E87E406F71A7DA2 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A16399A8AE7B7B8D151859978CE6B22 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F163B8C0FD1158E08E756762D68DADE4 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A1B19AACFA21BFE7805ADBC1AAC7B68 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 039AE7D629F4EDF88A50E67C1344340C /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3EF8689D525946043D9E87785D0E4C /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12E6DFA171967F457EAD75FD00ADC88F /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8A460363A3B361A9E893C02C4416291B /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DFA95447F33470564B8F5A2CF14CF5 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A52D42A4C6D102E6126195F2F989ABF /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = F680E04A6FECE0F1398F74EF9CF0E56E /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6904D0FD340168A397E74C433D3730 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 7990548541F36F4F3367B1D7E4216782 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6EC5FF1574AFAD386A733455E9FECC /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889D1940D4960158EFA980CA019C3A93 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8A7DA89E180F7F7D144BF96A59909223 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20CB3E5C0266061AE5305BE77E2B3CFF /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8A7EE614515E1E44B09882F47540C934 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8EB6AE463C0C6ABDD9A4BD0AE8AC7F2 /* RCTBaseTextShadowView.m */; }; + 8A7FAD85C25870F37B91298094629045 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F503335521BD9E50642757737E5A00 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A9A06DCC187EC43E7CD7629B8589389 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A2673F63032E40510A03F8B41758FFE0 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA05E6013B2E89C705763B70270CB75 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F9FC94115BFF28B5242EE3721E06A54 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8ACCBA73DD856725A8DEDD0DA6C428F8 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07628ECD580436372FABAF0A61AC31D2 /* RNSScreenContainer.m */; }; + 8AF11AA05BFAF79314B105F5B19EC601 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = CD657CAAD584A2F7762C27D3C36D5D41 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B000E424AC316943C809F40EB4FCAA3 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E484DE664FD405812B02B80DE8473C /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B02E89CB4605B00B6557880F8BFE4F7 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A39F8229634377AC72776DCA6A1F24C9 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0807F8E6BBE2D8826BC54E8EBD4D93 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7087737310AD93EB6E58A920ED555CAF /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B25E1AAC5729FDF703EFAB55C16D969 /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA6065D440E7989D080B7CCEB860073 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B363E94A08AEE38E926572C0D3A6802 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = F3256C06AED48D37533E4A28CD7F7438 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B439C65D64ED6ACF66AF7951A9A567F /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F751828F4DE80C7782447F461745099 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B71D6A81D3B4089D1280F46B46FE41D /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B828B8DF88CBFA5133AC9BC3D8FB643 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B95E7013CF71FA78DE6FD0C142431FA /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6596ECF01A2A78F57C8C86D8A90D7C0F /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BD770F825A7B03185380067B762A031 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F051DBD6BF88D1F6A965613D82FDEDA /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BFEC570F8A97114C2C3CBCD95332A2F /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5775F3E43AD337DECA7061948CF9ED89 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C17B1849CA97E31D35B95779F2791A3 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B861328CF637D28DD429D2B9C83724 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C238BD1C2F4377EEA1AC2B20965C6C9 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EF17DE2E9F28B9FDD94C84D348BA7A5 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8C2393B839FFB6A4FC8CF2501CB0B464 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A011E4A3A7812819069078FC73719D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C597881913D3BD2035E8CF1A44DB934 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B773F5C5501C367D6BDC1067A1F81 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C5F00D97F096D25431FC5DF85EABE51 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14876557842587F0FAD0A3369BDC32E4 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C61ED371D6B27D6D918449BD0EE3293 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9301B429E01F4263AA48460FA094E656 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 8C6C5CFD1C4EB06F810E76E90BE758D2 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E89227B8E627702F61706B4E81CB3D90 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C6F812E7EBC3DEFEC5A6A7AC66AA968 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D15FC030ED8EE2D18D9DC1ACBB98F9E8 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C7D98AF2AB20731D59F429889832774 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C9CE7ACE11A7BC165A907A76D1E0EA3 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9FDBD8CAFB3A2EBA49D7A0E3278F3E4 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8C9DA9DC4925D40EAC20AE7D918ACDD1 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA24D3D02EEC1FA31295417B049792D /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CB885168F2144F69D0CC5AA6D72F4AF /* RNSound-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EAE6D87C9E3D828FFC281A9FB51751 /* RNSound-dummy.m */; }; + 8CEFB1F26485BC95037329F4DC51AC27 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34205B64B6A66C24015D607918E608D2 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8D12019C3D30ED92454C6567F333BDFD /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77775C9FACA56950603A1CD117BD51B9 /* RCTSinglelineTextInputViewManager.m */; }; + 8D424A8DE39FBBEE2ADCE9E895EF0815 /* NSArray+Map.m in Sources */ = {isa = PBXBuildFile; fileRef = 836F266F77557D402D1A34A5E87F6120 /* NSArray+Map.m */; }; + 8D4322ECEE7B679D7748AFE5F458C392 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D04D488F7784CCEB19A10783A608A5F /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7055C00AED680C8D5A1DD1D2B47132 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6185C1E47CDAC547C34864A36E707546 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D71183909DA41FBD9A18866FA8F7D20 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EA614ECF3D0C49338B6FE24957B5A512 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D877E4C1761961A15A0F0C06EAF85A8 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B494A82A2396E267800E70207DF3027F /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE45D7A8A6FEEF27CCE2D4ED4AADAF9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAA2F3BFBCB6E4DBF7962E37385C33B /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE55AC2DDBBE3C80E44CE8198ED66CE /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59B0F22AA675448C3C81F6898267FDFE /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E16408ADE0D459E64BAD098D72B72A8 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC6FDBC8A79950C349B540F221EDB65 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E37B253A7207370047ED5D60D57C7F2 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E4477546FBFAC4AFC45566CD49767FF /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708DECA4A15932361BF726582EBDB58 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E73E1585DD8C010BA2A19239F0FA589 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EA7A8637C2018E517DACA471A711195 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39065F212EE27FAEBEE1EDBD603C999A /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EF8F581BE8C84716F1BE13C0CF91356 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8667568CAD7BE538D7B8B147C6F9FB2F /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F22B209B1C07EEA25E0D4077C8B1AB5 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 717420DB630B98ABD89E4E154F4CB4AE /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F3296AB69F1727859F5ADE4CD94FF30 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A419A85A6D7A4A449877B15F224B8ED /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8F4231C2D7D5A0C8B5AF0E4A02A7463F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D660EFE296AD4D51DE9D2FE92B6EEB74 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F4FCF9433964AA9FD487E3E9BA386BF /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCB74B363612F72D8F08716004E33E2 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F55B2265DDD2DA4A1180B262377FD67 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2DE16DB639D7A91904B8D3F6ABE17D0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F611D1783BBA5E7BE0A46A5CED9B138 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4512FB26283A5BA9C810F158C2AFBE97 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8F67B2502A91A7E4B113E62739FEFADA /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05549E686B609D3EC452BC8237A47B /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F6DBF9EABCF33E058985CD58C53844D /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C0390E0D9A5212FCF001871676E7A4 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F85A9F75CBFEF6A395BFD7B916C3227 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F0FD58C2D2FCD8D06788BE47DE4B2C /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FAC3AA6D0FD259503100319E231C282 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC1785BC9BB001696FB59FF91D49219 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FBC4C4CDB06290AA25EB12E3A4F1A25 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB902FEF5E3B8E76F96B2A39AD4EA4A /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FCC79A3035A770C2E5F3E675C1BA561 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0D3CC3849D05AC4CC30DA5E4E76707 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FFBFFBEA3C42BC47FB9BDB320563F35 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9005322172CFFD603850429563716B9D /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E8F11A5A8BC0EF91925B1B4CF92CD1 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 900E3B99E12F22770E8F4F3A6CC9BBA6 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D55CB50D0E4CC5FA141DA50043F3D37F /* RCTUITextField.m */; }; + 9010A6AC612A74A960BFB531C521986F /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E058A1EACC2A38032EE2158FC7D77D0 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9018334900BA1524230FB0DE463B7050 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 3135DE472C21F1914952DFA2F10C81BB /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90608C95BA1D63BD4358B3E9458CEE87 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CB2935256EA07996D8EA7D1D69CF1D /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90807FE383ED41E6014C0F9EC1256F05 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4557DF8D618AB0F6FB22C732CB4C7510 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90853CC1D06DB4DFB4B8C313B28B1F4B /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF468111BC9891BB8A1EC2D91AFA0BF /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9087600D308D1246C106026160CCE507 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C172C2AC8CECF2D55876796EAF9136 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90DCA68967B47B33D7C312C2679B26DA /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4CD90605F458E3190929C0450C2CB5 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90EA6CB554A78C4D3B522DAF6CA3DB6D /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F596D311BEBAAAF63D1608CDB51BF8 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 911847BBD5DA01E5D387BD58E637AE5A /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B29AC3958E2708393198AC0721EEBA9 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 912FF4AA498437E6AEDB2D583D7A2CAD /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE49D47AE8AB6732CC8492DB2621A464 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913897C578F4CF1BC1EDB2F0CF6AC9F7 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43ED3D8737E075D6CB7AE2AC9404AD1C /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 913ABFF45D506DB4FD9E32074906B846 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE39ADA806130445D5EA9AABEE9FBF52 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 913FA0EC02E8082A8C5FFDA01562B056 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CF0A0117B039E5FB5EDC434A029166B /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 915AD7ACE0305CA6F40B0A20C6BEE94E /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA5C54A728263D7705BBC09214A36F5 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91729C29D4ECEB28666F5C1C3940B0B8 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AB529C524A1BDFA0DFD4D13103C7A615 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 91A499879C44BCEA9A51735F3E7C45B4 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD3A96F1AC3EC9227ACFED9CD8D7978 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD98E10CD6F00C3AC0A83226F52758 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD951DA37390811D4CFB130B8BC780C7 /* RCTVirtualTextShadowView.m */; }; + 91B9F0809218A64561A320DC9C702201 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B414DD7774E08FC9F166FB33E0CA81CC /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 920D0711C620CC4BE52C0CC17E9FAE9F /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737F88CD628108AA8E175C2DC58A144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92286B3632443BFC3A8962D076E8DD9A /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = AE06C3F45E8ED1217E6364C29634439A /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 922AB8AC3E0D8D9CDC1518190E2251ED /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E8AD1AEAFCBA00ADD4B016E4FE934E /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 929A41DE802B81219109654A2361AC15 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CEEA616551796080820691B8C4009D /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92A123D3CB69025851CFA5A936E93CAD /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1049515095397F1274A1E3C42323C750 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92A75B722E5979EE26DCD8F453EDA5BA /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5962163A6161BE06ACCC86B76485A9BC /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 92AD666EA554D4029D2B95E42E4FAE97 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1987D89098A113C9A34CEE83C0D22F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932C7BC8296919C1758540E5A9EAE560 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCDE045707349A13EF741E0B5A830AA /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932FD6BD41BDA35EED6C6E46ED43E524 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9371A747AA5503CB280DA9061C1FD4DC /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB0E0E0FB8E6079D2751D4B9292889 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 937D287F7243304EFE2180651CC01679 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB3E9A39B00AB13E43EFEF8C22031E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9387412D6FA326DBAD95FDD33D5A3708 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93A9D95E6F74BF9B6B442BD924952BB7 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EDD1ACC1963906C39CCA9EE83861318 /* RCTTextAttributes.m */; }; + 93AE7061F3DB656915DA2109571B99D7 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = A384C645ACE3D1B860E2AFD189E08ED1 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93F9BCC60FC9430BAAF532BFA7E5C981 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9783BFC3857AB7028548DC9F3F7EB87E /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9426458B5E15AF743E5B27BD3C101C6D /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8A336982DB82A75E3537314CF257C0 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9462E0B6C8C88DF1D4C748A57BE088F1 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7ABA2AC61166E020C106D4F73D0B3 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 946627ACD6505DFD3BE2CB6AE51F48A4 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 164C6A460C12BA1366E459CC769335E7 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 947CFED98294EEBD55C97AF32454E818 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0891FC929BE7CB8086AFD92B138BD9 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94982599008D14C064387E3E5D3757F6 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D39751AB79764FC7F566A7B40EA7802 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94C20FBC5108041559EBF4C5F83E5056 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = AF146905C85E80752BD1601E84458DA6 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94CA0DCA881CCE74524A22257F773264 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7063FA95C884B51B41710206F1F864DE /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 94FD71555518BAD766A6F67191CC3827 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4EEE64DB388662057CFDFAFB42528E /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9501C663F5ADC1C85AFB0C586976C3B0 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 85193B8A577DC316FC645CC052E22AD0 /* evthread.c */; }; + 950A84B6950A41C64749A61C60D4B4FA /* RNSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F962AD8E20DBB399E9529543631F10F /* RNSound.m */; }; + 95204627CC938CDFA546B8B5AFDDF237 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D735F70B651D93FABB151FDD5C0775D7 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95336FE1D344A68F24A28990D0565FF6 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 061270F77017ADED958947601710F70C /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9553F65C4AA7F57885A1B587D5F3BCCA /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D22CAD7B41DEEF96AF65F8F9E8D93A3B /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955C93C0C2454DFB7BABCB447AD73257 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFF2C464D3BCB1A642B92876B18DA5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9586E2B8C3467D3195631BD7F9E28A1C /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6115F203F64D1467902F80278F84ACF /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 95AFF52AFDDF17C712B57D631264B119 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C3077EE039D9375542B86DDE593A3F /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95BDC0F5D238B19FE707B08DDAD69A58 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95D54E812AB5BC0ECCAA3D25945C9653 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1586BAFB4966C4B3555A0D19061A3BDE /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95DFCCD572664739A728C0888D58CD33 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE7A0D41676DF67ADB8D4D2C5F38DE9 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95EA2D2C30BC862268521AB30348253C /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CD2436153D235CF2F32141D8B7120B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95F98E85146D2F4756362A97D77AD58A /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24971A438813A2B19369A6E521A600D7 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9613FC61AD9473D3C7F292DF0ACC0137 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF742581E6EC34B85FC2398074CE902 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9652C732084699C89C37F0C70EE794D1 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E6148005F60F622A205EEF1636F51E77 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9670B5C8EB701A4583147763CB9DCCC9 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9681D2CD9B54D41F91BA7376E55091BC /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC480AF16376C4D9B3BF10E9CF93205 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96A18D34E0ED4D5C7E31AD90C1138976 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 96AFAFEAE92CC313C1645CFB09760462 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D0E5F062D001C873E45BAAC01DBFF /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B47B65409E3FE35EEC28FA8F83D5E4 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = C06F25461298D539B4971D583A6E9429 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96DADFD75EF2C883F2B2C1BEFA08643C /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 278F6A98B6DD8A1B84F659032151D167 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97394902ED326BB1B7D063C81CA576D5 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 976A2789C5F8DD69CB905EAD1F2160F4 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA20197EB5B0629FECCDEA749DECE6 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 976FBB45AB4B9CBF9CB2BAE309BCDB5B /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80FA32D61F0A3EF22D6AD1E9DB0701 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97723A78BECB6E4EF08B78256DD7E339 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9E2DECCE14D389EE289EC2E03939B2 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 978102B4F479EDB7192D3808B3975144 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 806A14220ABD54C70CE58EFFB3AFDB79 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9797607C81869DC017AAF7A16DD32D1E /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */; }; + 97BE0678EC71004ACA59E7940CCD9301 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF3E5A223D8C05B5ADEF49FCE30F38 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97C0C0D7BC69F55D1F4374FAAC1DED3E /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69903540D495EDA6E40DC0948E8D667B /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97DE1D233A35122DC9451AEB37050733 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 852BEC669D087586033D1C3245B99B36 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E50BF6F51B104B29E76B71D35EBE83 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC32709DCE19273858F8C0B061FBD0 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97F8B055AEE54B8FB9F84139DDA9007E /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = C99394619052268DE463CF56303433A6 /* UIView+Yoga.m */; }; + 98152C74040C5435A521164AFEED1C41 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 861044E0F723D0C83103CD21A19CE225 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98218FB11BB211EFFC9114E276DEFBA2 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4806609B2864A747BCC2EF92C413D95A /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9828469AF40643E56088AB57DD73F662 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDDDF5391FC67075A091C69A7989A85 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98340761A1E66E458F65AC0940C5787B /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E119E1FAB4BB8F3B6B354D763140B39 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9834D75702E5B5ACC0BCC6E773BDC32F /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 9845892069F776B6CCA58455C6E9EFCE /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C17138B6C6474BF2C64F8968E845A8B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 985F7CABC305D7EF970163F5A94A3EB4 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98CA223EFCB434C632F335AB7325CB01 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB578D54D72BCDD6A5853EBD35DE830 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98EC243CC410ED54DBD5BA45BEB21223 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F60C0BC658B9858DB3636145C166FE /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9920CF3330BB387CDFE4B46A456B32DB /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F274697C93E62D83F265FB45477CD /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 994881F0BD56B0010F4A05C85EE6173B /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1DA8B3732623A4D1637F153454BE20 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 994AA0F71D10F4272640BD6E7B9EE0B6 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8283A1E63A5A22DBF4C73BF83FFE325A /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996EC4EF77126F6B3B221D990BE95931 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F607B058B43E5CE6B7D6763EFC5793 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996F47421792D16E1EA4C4A47DE49749 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23705347485CA5805991542F2B64A77C /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9976A90187EEE361BB1F7A0831560E26 /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 915D2A5626BBCDB6D1C22C7CDB9F713A /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 997FD4167AB18B6F7A9D2B601B81AF8F /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 806CFD14CD66757D532F3AADEB04AEE2 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9995110B55AEDA38C476EA7CA88230A6 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3ADA391B25A958151D130F7BB8487F /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99D065A1B74C3DC77EAFB10AC4888311 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C741F27ADA047E119E20E9E979960C47 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DB018B95378AEBAFD0F329CEED7119 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD9520D6560D1A3217505347B504E7F7 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 99EC2D6163DE04EF6EACFE2A964919B1 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D148AF239D8FD412A753D12BBBE7F2B /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A006AF3F124765F3FF3EFB32E7DB7D7 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D9B1FA2CC490AF956E376E82D534FE /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A2FEF9DF020B08948A5CFE1E975923A /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E98072EEEE9DE6975ADACEB494678E5 /* RNCSafeAreaViewLocalData.m */; }; + 9A33F6EB3AF3B0C4BABC661D72D116DC /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC98B2070A4EC5870208276DF296B74 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A481BF851FCD02D5DB5B375E36DFB33 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8345514B17F2DA72CDAA5B946944464A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A4C21D53F6FD42E80A3E07962937DB8 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910E88661A106D3DC40F557001EDD9F /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9A69166F87AE30B05A184AEB7F33D1EE /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74203902116F50D98469FE641F1C5B2B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A8E726CB80313B664E9587291BE8811 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 565B09E8188221A060A4312F08504A58 /* RCTRawTextViewManager.m */; }; + 9A9C22CA92E903567B219441987E9B7D /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 50143941D300EE21434A035E53EC92D5 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AAC12BFA820AADD56FB64497A323819 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E52235B2861B4DC153FD598C6FB6AE /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ADA12BACE55AC55795353C8F8811742 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1A915ACA228E42EF65F4EB255BC6F78 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9AEC37B9492D32FF543EFE7D3B0345C2 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE00273E79C3EECB668CF0195532E8E /* bufferevent_pair.c */; }; + 9AF09C9B1F355646C0DC0DEB4FDA0B86 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B5A9D305D50885008EEDD2609AEB86 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9B178D4C9BFF5B1A2807CD17F767582E /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */; }; + 9B24335BE3963B87C0D5A4F149F6C89A /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3B70107D40BE55E30774BC0078FF9FF /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9B32D7B14912285E48A3D184B2427C14 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAAEE9ED5AD7AE0DE5EB55A37C8E937 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B39C8B0B6CF351F75DADC29A0DD52F2 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F0609C37037E3AA45257919698A9C8 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5FD1B40909D2E3FA496F8ADBC45DCB /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 892EE75436EBB2EED13791DCA0F304AD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B72A9A4F04FA2B100D6B2D0122A054B /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DC8BCE0B16A7C130B40A6E48B243D3 /* RCTBaseTextInputViewManager.m */; }; + 9B7867F23847AAC8236EDD8B9D7E85D0 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1078245AED5DFF6157868702278C5463 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BE5C6271B6934531BB066AA1F388E49 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB07D62BBEEBEE867D32CE1BF1C849A7 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9BEAE2D0E5C9B46A1848D5E7F62C6E93 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659D2EAE0E266BFEF869618FD97F5D3C /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9C0D993720F1DA90C50DD49CE9F78E93 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 278C94D666FA75B4A8115CB80AE9BB10 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9C5E6238A78FFB0141631D2C3B419EF5 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 1111E65BF2B52E0D8190F78EE551B1FF /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C7C5F188240DACAD2FF9C1C824A4054 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4346CCA44B075FD229B5BA4288E490 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CB18AAD4FAE7DB76B05BB0077C794AC /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = D734EC65FFE019523193FFAC02D8B011 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CB3BC8AAE8E4B7408DEF123550954C0 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 958327EBD063CF2694EE7BB8178A628D /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CD4CB452C1800CB942446565EC09125 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D561D5F88DCAF5ADD8784EF0C0A0C05E /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CFF5190F6B1AE8595CCFF6D3FCCB953 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 559CAA1CE79018FC5131534287ACF964 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D09FA0C2F88CEE965B228F9CF91E29E /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3349D93A7A4CE5E6AD34F75FC72E9A2C /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9D0BA7748C3C344FB97219340D39010D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D149A67A14048B314C6AC6F5BB27C3A /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D98B66A48FB557917983796A157E821 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4B1CC53B7C54176F1889E268ED93AF /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA5F918CC8696290DFA60C44EC64A32 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4CD1EED09329B60F4E777400A83933 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4403E2252782EAC71F12A8E8511A35D9 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D8AD0D9F2DAB36B74DD0C8C5D19BEB6 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C0677586087E8355FB96754BE416DBBF /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D94957F233ADC09C3CFF734541A866D /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D9D77E7C1F6D505AB054E2864E2B2C0 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68752A228A16A5A43FCA2EE3D59B97DE /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DDEEBAA4E3ECC02EC1D0B0001A4D1A4 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D454BA8D6BD942D3396E8D44A2C132A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DEBEAC4A1DFA5E231AEB4B917E91D03 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 804F833368914B9C8CFDE44970E9D236 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9DEDE4A780D83DCD99D03FCE57C85DC1 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 267BD3483E730FB114989CBCB3806686 /* React-cxxreact-dummy.m */; }; + 9E13101C8C69BF1F548542F3989D0A8E /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E4E7009D5B24D8F0A6B97A5EF00A832 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D0BD61C7C47E602BE8339C9E4F1F62 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9E521DF44A1EA2EE3CB6622C92E19365 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD06B49376D0D11C484A97D78A05B55 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E87A9CE1B05FC3DB15CD53B9C93FA8A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CABB154F90324995E4AE3B490EDDC52 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EA55E4A7E65173CE3726DDA30D78451 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EA9069C181B84035E24F251B5CF68E1 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13583D50C301970A74D608B9F34FF9C8 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9ED262839FB292DFA2DC54A68BA4F584 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFE81577F0F8CB79EFE274DCD3230C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF1ACB104A3B07C87D2A3F147A51094 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F48C491D81145BCCBAD53C7BEC61048 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F4C6760CF150DB71D5244838DE8FE1F /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B7312FC4375ED3FD9316940C362688BF /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F4DEEE3F99FE4B3C18B5AC7CAA828C4 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F83DDE7796F55F4E1F5D368D6867D27 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 75080D018FAEE92A6E41820913C0F077 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8582ADAFC377E63ADA1EC19D53C140 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE999BEC6F585DB8C3F52C30DF56F01 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F97A772102D0D0ABF2BDE47DB57B817 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A996B7E127268B2F016F352FF250D32 /* RNForceTouchHandler.m */; }; + 9FCFD15701158983F73300EDDBADCDB9 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9FF09D89429A67F3101DD16EEF34EE03 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */; }; + 9FFC23337B3A48660C5255EA7895EC4C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0B0776BEF68D661B92D63C774E80BBB /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A04D48A9E93399E6431904A39825F82A /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = B34DDBEB8E2A72E3E933CA7FCD419963 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0870753A5D0A0DF6D78DF6265197AF4 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E263CA6117FC022CD15C9C4848A3B54 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0A127EECE1EDCAA066DA0B7D48DEE22 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEF9C944B36DA6FD504021B7D45BF6C /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1271D3D5C08A5ADB26168A60D3D4F70 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D06424EA4FA8610E269D2523EEBFB0B /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A17914D206829DB14A69E0D8545444BA /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A182E94F0B21B4B34557C9AAFA2DD6A5 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 083901B6F0EA31A29AD1DC2228E31C8C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A183BAE986C72DF78B7517EA08CD788E /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CCDCC0EE34C383825BB4A51D28025A18 /* en.lproj */; }; + A191759C1622247939B058F80F160624 /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A19EAB249C6E11AAA3D459FF07105E0C /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D2DC8E957E23944E61579B1E2B81D4 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A19F7EBB043011FE3F97EA485ACC7370 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBFB1F4B3D3A5816CE8FFE04E4906098 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A1D8CB4D589662E40EA94E8F62DAF556 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8977EF2209E88A1C76ACE89AE139B5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1FFDAE00CF3DE92E4BFDE806F73EFE0 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 181E06A36FE52CA8FFD348745452B944 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2025235F968387CC22DBC07F6F6FA27 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F6048675D98546EEAA078A4D222ABF /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A22E49BC106136B7D3F01383F6A3B811 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1691C6E1DA7D81D9A7CD1BFA19B5DEBB /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A243828AA5E167981669298A6DDDCC43 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E49E479DB1908121E3B3CF0056D027AB /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A24505A65C532F95A206E17ECD7D0D32 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D9CADB3ECA68501F71BBBB02D05799 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A24837F6A0275A9BDB284E11948FCAE1 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2505AED32E62DBBF172725F49D2ABE7 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2514F531E863541705CCAB97C2B4EAA /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB9144ADFED246D3A72CFB0DF4D2C83 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A25E831A3560D53A957DE2C5678436A4 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B180C8408892C83AB5579806DABEBEF /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A28DD3C6186A2DACEBBE78BA6FE6A3A2 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB810A8EEF3DF7477057C0CED709F21 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2930E37A3C1710AE47B24CC32DEBC81 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A44E020E5B15A1D893C8EBA09DC0072F /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29AE879B557F75843685DBCBE6CD937 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2B68C5C4C20161B3E434B3D9A90FBAB /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D364B68D08F784A9EFE3505489DB45B2 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A2CB5D2A38E9CAB6926D62E3EC5A8096 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E2B00B5D36A2BF364F083116C11111 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = F29B196DD0F5809D7D5A3E6DD4DC648B /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2F3F32F718034E07C7E8F3AC3DDBE0F /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF5480A13015CB262D394B853A7074A /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A35712EDAD28B1E5BD46F09B12B80589 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 155173B327F4B122364E2865D4CB8E4E /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3AFECD7EFC455E0C51C8316B4630696 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B00237205BEB06A6C15AACA633973CD8 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3BD67557411E1702F99CE2C69874DAC /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB56B36305F848AE7E83188F06AA031 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3E0E3B445276A679F94E25B2F5E857D /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42693EBD873E7460B48380166C6E85B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBD232D59F8110C007C1C9DDE34E5ADB /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A4677F4B68BE88E65D425D5E2B1ED4F0 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A6473CFF1925809ED4B1A50D1743C1A /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A47B43D786EE005488818DC130447CB1 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C5AC027D097FFB1A98B0799EB1FFDD /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4980A5EF7A2A4F8DE3705B889C73146 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF1C3BC09C0874124B8148626392A09 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B40BE6645D714C316178AC602F872B /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96996756229C1A176DA9E4552476B631 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A4BEC7498C9D578F7296C464B997C44A /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A957599416C19252DF07C0B4840E8C0F /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A4D3C4FEECA100DB2746E7180FB9F8AA /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 870E9C56719FEED4D75AE48A56841448 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4E7EA55802E6E988CD74CEE08905E44 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FF2B6B585404DC16C171524E93AACCB /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A4ED44F098E792C56ECACE815B944F00 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2C55B59A62BFD2CE89C374812C3A83 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A520C66A404A35A82D092B3629B3F44A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6E38BE270EBA01855C659D84B2B932 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A538EB6721A2262EF21BAC6CBF5C4473 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A5367AE6BFA606D4E11ABFD2B0E16F0D /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A53EF3B066466E05CC96117EA18BA2BB /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BB89C268CE435089C4531886FF937E /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A55D6425CD7C5456262B8EA0DDBCE097 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E349D8CC5F54AF6A723AEF764E8604A /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A57B93836D8E848CFCEA3B99F128B19B /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906A0D30C9C5D3266E1B2A12CC8C4EA /* React-RCTImage-dummy.m */; }; + A57F2778047C8545210886566E9A1B55 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8680897BF960489B1D68A00BC1CAA9C /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A5BF81774A0E3429A90BF5D740516F70 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 331C7C9CE809FC0E3180BF47AD081A90 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63CA39ECE18B829E674299AE4C2E87A /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6452CB4C4AA7E12EBE75D5251F1DE2C /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FC59A22F155226ABB1D12219E5323C5 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A64CFBBA8C5B8B5BF7CC574F96039EAA /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7BD9B0C45D1C66603BE103478FA417 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6956307A72C01716F8B6352064ED2BD /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 706EDDD2EF4666A1819943D2369CF654 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A69C4DBB5A5978D650D58DC53109AE3A /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E53B3820297CFA55F0E95F0A0F24E99 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6A65935195917167E9C1B3C286B1F05 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E44DBD704F87F4A8EAB9AA0D1F9F48 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B243DDCFCDBFD342D283AC7F2DE95B /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 016D4F96A82A9C5D442A00E4F8AD1811 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B5DF51BC8F521187A4524569D949A3 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E4C6EF709624C105540BBA4D53B6AC7 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A6C75AB92F12F503B7D6E1AB0EF1D3F2 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 109365EEA69A33EBFBD9558F24C5717A /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A6D2BE7B6EF3EDB81D9D2DE5C2611C6B /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9C5F38B7FD9E7244E93FB3D848EF69 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6D7076A585AEC63D843FACF82F8FFA2 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E949F00CF56EC1B52AD9328482179 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A6FB180280524449E519BCAFE180872A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7393E1871B0E0E7DE0177652466B9C4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7135BB1B19E7DE931BEA36D6000F767 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75481FA09B4B84111916B13E58548C2 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4718870A6855BD44B5A98FF1CB53C5 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75A8F34CEFD1177809AE7EB40F9FAB6 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A763B2238C33E39AEEE4F23E5D922B91 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BF852E545F4388FFB8CDF705E84037A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A768766688F4C3C15F542A79A92F8AC2 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A770E5F362890BA6431457A22D41FD9F /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E56AC75DE919E449537F300A0F2943B2 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A78523DA1C73BCDCC7F7F7E35A0B0ED6 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C43981102668A46B15E99845CA99725A /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7860EE0591EABF91D4286818540E5CD /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D9823823394FA2CB510AFB50DB4DFE6F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A797149AC0FB53EB2F1934568A886023 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7AACA01E663ACF65CF565F7CEFF0C88 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C10B7AFCE88C78531B9BEB0FD7A049 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B6CD822897612DFD16F15ABFCC8BFC /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2199C45602110A3FFD4EDD58F9FF204B /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B7673122F8FBC579A4BFFAF7F82F43 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0900CFDC968DCDC120FA1AD188942485 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C10E40AA88560C3E6103FBF5C2AA19 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDD39377A56E5B46730E8998D2B38DF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7FF48E83AED0DC2257C7C9F4C4745B1 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 080092664E56B92DDC7D50543653BADB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A80983EA92D14D8013B59ACB922F1BA8 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D8284150801A62CA7E047500EF644F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A81240C9DEF346699FC718C6551EA6A8 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B85A202876FA2036DFCC2B0D6BAA8D7B /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A812F6CCB1DC4CA32306C3FE5561D64E /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 281F25C1F5A88BC2EB28D3AC5D10BDF1 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A816FC45A8729FA0EAE8AF0C5C0BE8A9 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29007DDA2D0310384F2C8E992D815272 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A818A7C2D19A129CCF449A040DCE5EB2 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFE3A4AF54E2B066585223EABFFD8CC /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A821DD30B0ABAF3336E85319BA05804C /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B39E24523A15DF8FC0D12504FF58ED26 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A828F10DC04FF52D5F239B192844414B /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D0EC0BC98031B512A1F9A8A91FE6E5 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A82C2CCCA08B7F6D56D1C19C69533D6F /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A83460F5D5AE74DC5CDEDD68C457C36D /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6332C2FD9168224CF49C0A43EE216AE4 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A839BEEE226337553B4C490FD9991CFA /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408C8789D03DCEC361E19CB81C1644F /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A843FB8F6D3DA445979E3633C55C607F /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DEA1978D246E21E36FB35F0923A8B1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A853C98E87CFE3FEB79C52564A3D930E /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F8DE31CD9775EAEF1B94464800E92E49 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A870BD43731CB8EF490567D74F841325 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40769A5F03D3E43807638D01BBB8FEF8 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A880D610E012579D421DB60E027B8B07 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F21833EA996307E1506428266994F5 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A886DFFF5B15012D18188BAF44A85DE0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8AF9243354ABB2BD71F42676A43BAA3 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BE92382CFE93CFD925F928A2C0CBB766 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8CB97E6B34D2ABF173E4B21AB981D5C /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB3B90A074B8AD38F920B9EBF28CAD /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A8EA5A5B7E1AA2191EE1F1C96861678D /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56CA3FD2EE62F4F13976357908A40E89 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A90191491C3870E4BF0CA362D364E6B7 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5575C08FDF9E7C8E8E61EFD9AD21A34B /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A921E7E114F4A654267B5D1913402044 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 911A847FEFE78ABC2511672C2F7AF421 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96A5A8F676521617E55272DF495642F /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C370D0C190B7E7C98442328B7E8493 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A984A8145FD6408DFE8739D5E16C1E73 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEBC5756DC77FA3B0EAC683F839FF02D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A9A19172F3F2F4313558930B0DB289F3 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C245E9F9241983E3C1D21D63609D232 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9E95F375BBE638C4FB51B77712FBD78 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316572DBBBA4214700F0DE881A4FD92D /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AA145854BB357407A5D37FEACEF75629 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E03E8423D33C640AA4AC9B5EAF4C7D /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA181B85B6D3984C1E0AFB381F8554D2 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 60781BC8185F6740EB14D70CCEC71EC4 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA1F469B373906BF992F3F1A7C6ABD01 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD98E27CC077FF843EFB086D0646E69 /* React-RCTVibration-dummy.m */; }; + AA3BA6007BCD8846D3CF118726B388C7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B47497B2D2D886D4C31D233724AAAE5 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + AA481876E5AA3477A34972F69106F93C /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B08B8A97C62E9CAC66DE7A0EA5C71D /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA6164716B380876157CC196E1B2CAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */; }; + AAAA912CC3D36C5D0D36142C4FB290C5 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DC155B71F6CD1E706C6280B5A52EC2 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAB4304A1A9CFA9D3436C086D28E225E /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAC9209224F7823846A493E378204E79 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1555112A2702638F412E0E8BC7360DE3 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAD075E490A9CCE4DDBABFABB6F5C817 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9E0AD3831F8EC1271DC1EF378FA2F1 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAF6F6904DD2D9300B49B98310A8BDFF /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E05E187B2D2A5B1952E8CA8E15F2AE /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB054ACBF680C31CC036E42DE35E7BFC /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D58F38A7DE8535C59BF5554A407C70 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB11666C08454BA598E2499132400286 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AB18A04407A78C1A84D1525BF3F3A542 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4401F67D95770C27DB8DD1BC777AF78B /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB411DBA956C643C1EAE797221BCB45E /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B437382778AB8AA5F1C2865FB3A6B1 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB42050E0BE3452AD7151867B6D6AA3F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8DE6254B2D54A1F5BCE86B8854EAD8 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AB56659EAEE2407339057AD454037743 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AB995AA7B0514786D88AE695D78BD305 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B086A4330C0AD5C69B023ED3A5A530CE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB9D3025C818CBB0B3E8CC2709A38388 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */; }; + ABA45D8E176B254C8DBF7D1A0816E3B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85661831E7A848AE409B5F8C193F51FA /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + ABAF030F42C00119B98F98F0C2EE3EE5 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F25D0946E6E25B0BB25E88685E4D0E8 /* RNPinchHandler.m */; }; + ABCA030FD43064CF2909182CC09FBA99 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A01439C6B2E8EB95592C9694260E74E /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABCAECAA9E189CCF63AE743BC7AE1A95 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA89ECF080387178E967172CA9B1D6B6 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ABDC9BB372E90707FF8474F65D8C30B6 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9E2402816C64CF09A0C4CF93A768B8 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC23A006A67DD5C9C7B22E644EB7040D /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 73288BE623B8D4A4ECB0AE42C6ACFD76 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC47B499B0B9DF8D025DA60FBC4C98C5 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20249083CBD42F61650D5302DD9CE7 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC718F1314A608FFBBC3618AB7AD4D37 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DBBB0D26ACFAC130E174B47593908B /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC7BA32D3DA259319E35E95961CB8FAE /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = E429C0E613AAADB75786D45FB752283C /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC88210413C90BA8BBB59D1FA639B6F0 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B635324625BE3E988BBF3BB7300156D2 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ACA48F2BAA56DE7328AA2BD071B23408 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4599AA1B2B24C6FB9DCA34C2C4FACE /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACC6988AA813AD2E7DD5164310D4BEB9 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0694198CD56C1A83B138E10F0611B123 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACFE46885E0544997E3C449FC8560D74 /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DF8035E3DE6854F5CE8530FAB268888 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AD0A03A438C32F9CBBEDAA1FC7D35109 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE652C59178B31AFEE638CBAED7F4EC /* RNCSafeAreaView.m */; }; + AD0D1191B6B0438A7064885608CDAAD0 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5D0BAEFABB248FF420C68A206BBA0B /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD1D3B384B6AD934CB4C5FDC74BE6D83 /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479951A0E4FE0F1D277BBE25E8FF48A5 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AD40E5E4ED6CCDE48747114D2C461118 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB4967A499C79CCD125F5B61F7CA817 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD5946CF2197A59E631F9F9824F16DB8 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A6C34BFE68BD8A8AD60645EB53019 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD62099E7183E986266A5BA0F2DDD37C /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7DBB91DA07446109BFFE2605C96060 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADB9946C2F7935336446B9F07C300BB7 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 612C0D938F30EC2E0980D4AFFDD853FC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADE56358E1DE1A3F2DC2765FB2FDE5BF /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE9DB9E7903BCFA51586A25FD6A74B1 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE253A36D099A627358162D05E154DE8 /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 22674D3B3366C14C5A886CB0D300062E /* make_combined_all_macho_gas.S */; }; + AE2F2DB394EBAB68EC29B6BA39EE33BB /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583A993E49CB6F3C5511D079015769 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE82F830F928A1C5A200444128AF09FD /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A842EF51BDBCA4661FA11CF13F4E8E /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE88D97FF481FE2C8D90FAC5C485DC99 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F35C5A76948F07130277EE978776B82 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9959C6902E307C8D27E302D0BCCB25 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD47E9E507068BADA59763DB96455A3 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEEB125B60FDD4711565EA5DC5202271 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A584B7C1F82497FEFC2109EB8B472F1 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF5447CA10D3EF8DDFCCC86F8E67024A /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D8653FCA4F54A7CDE3FD3AF4A57603B /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AF64E67FFA7516CB2A1298CD3E726240 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF7098A827A28366927C570062985F31 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 068EC6DBA015227A76B4AE2D73B63C3B /* RCTMultilineTextInputViewManager.m */; }; + AF86EC10F1A5997AE9E90708563AFD97 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D667ADB89A6C56DD1A71A396AF86CB42 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1DC1E43F03054C59D32908D8F9D0D /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFC23CE7FB79E4A629EAB8D9C947D0A3 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8E0FA50912A9B819B0F03A37EDEDB4A /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFC5EC08A5DEE2B816467874ADFFCCCD /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 234BE6C9BC68453723AA910E80F6170F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFE05FAF4D0FD9815D1923DE6856FF8A /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA9F73A1BB3C6112362EBB82B6AD5A8 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B006FA002BB20A6EABAB10FD22C3FE76 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 090E6462B15EFA2C3D0B3A2685040FC5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B02C4A2762853233355BC364D3B5F632 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FC5A3CB282D2C1733ADC0756D5945C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0308187AC864D578D15D1722FA931F7 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7C45B7AC0F57B9D10FB9AB747C3F34 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B05F11001EC43E696A169481AF7CF930 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 0406AED3EF517A85467EEA76E4830215 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B07384C7577AD42CC19E6AF04369A279 /* RNFSManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC73AA554A5B9F74F2524843B83CB3E3 /* RNFSManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0CAC9B1626E96FC1DB8B1B01746B46E /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B3DA35B1D0E5B22DB59A9E9AE28452 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0D2DA7F7BD1B7F0F99949D4E614EF3E /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FA79DDEC5B7E32B029006F4C2A0CC9 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0E57F99E47DC18E956B05C13CCDD3DE /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E8B7105944DCCA04D4BE0B0C6EF0AE /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0F34FA218BF618A89A1C7AF6A90FD48 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7EF89C8323A3F60C59729AF4F8BF71 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B102624ADA3C9970037AF1E781E4F797 /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFB64BD34FF1A3763DBBAD225E5F115 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12E3D64601813FD8A8A37E9A6AC6B7E /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F534CFFE12090FDBEF218842413134 /* Flipper-Folly-dummy.m */; }; + B15E5A963257D89C46714FED6504F4BD /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B17319239B5C6FC79BB444E1748EEE42 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CEE332BC0A3D3D35AF7868FAAB029C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B188883D1A3320A8ED2370BA1E06031D /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDB8A9B7C915E831467EE9CF6340A09 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B19B2D1AB2C2EDA22D13DC9643840563 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFB08DE17B2BF9AF36F3DF8F3B5366C /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21134DFE45A6C01A9C588FCE76E4888 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 63662B18C5CCDF72589497E36C3EBE2C /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21335F4EFA9A86C16C95867E1CDFC38 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA4DEB831339FE8F745DB65211C3DB7E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B214191F22A6FA0972C362812929B65B /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D4A8364489D206437B51D142918FE /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B22740F23ACC535EC3A2157D23774560 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FF13F55CC4AAC886AC1655B67B2CF7 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B22FA100EE95BE39DA107C25BC5498A8 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A28E573601A7B88F3002C67D689E99F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2486A0016B34134CE883CA4F417002E /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFF911405BAAD216C3ED914C8AA0DA /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B28F64F0CE66D8A293D423BB64B14154 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = ED27E489CDC6F30C5D39955E7574D4F6 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2AA19952684E4608680EEA115D65963 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2B8570588C24A5529760BB1D8262D49 /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = A94FE452A46275DE5A5F485E43899317 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2DDE77C471DC7F4F08008F7BE334D26 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3F47258485412BF9CB873AB130997E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2E458B9912F34FEF6B284628847E36F /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7CDC56D6028643CF8EF4DF99A8D5D0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F54F4C4CD5882D670DD6D3DD7CD572 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AB9E5B0667567295379F005BC291C1 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31AEA387874AA388240F9A70401BC30 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1072AF5B3FD485F4B75CB05D98982F15 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B31B31F0B08FD2C44C73D17AC753CAA4 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B32DEB7043CBA06A0ACBB9E563D9E69A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C06132DC7917E0477ABA963C31C268 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B340E13E4225B152EF303CA23F65DECF /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 012CA7C21002BA5CBEC49F6DFA575177 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36ECAB1DF134C26B964240D5C7636A9 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6A1915E1A55A9884B1AD2FEE520E39 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B37A080B60DE3E179F32DA15B3F5E443 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FD3167ABF947A3FFF92F327212777A /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B387C2DC2D6B34CDEE01A64E0398BD2C /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 8566F9D6F6F3CE89BCB406146CA3A7FD /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3A5DAEECA3A324A89FF0ABE0EB3AD18 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C72897DAFE4583A399FD04DEEB09BB33 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B3ABBB2BD5844AA2B9A87586C2F642B9 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC5F865B044B3CA2076BB1787CCFE3B /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C67023D821DB2D01DB21BE844791A7 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0744984F91FEBB538C913D2A9F698D15 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B3C859A9EA4DEA19D371A317CD1BF9D6 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3137292B2661860AA20CAD8A7F07484 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3DFCE58D5631CEA024F89D5A4005676 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 146359A0FE6F9D633A1B749DBFC7D1F0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B40AAB260FFC55D67C2CDAA7E4014D43 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 006BF845E2DABA7A653DD6E9D51642F4 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B40DC3CFD8878F475F2F7549EF32594A /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F38A27D1E66BEC1B9643C0E12E5C4BE /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B42B43BAE4DA93A7ED4D33146E3F99FA /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7F9AF4ABB9904416FBD2981623AF8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + B43334DC73A6B349B9AB44C35B13C51A /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4469295F00CB801AE945D8E584AFFFC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FAA4C3245E2E55CE4E58A58F79F20E7 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B45656075F69DE84D67EDEA3D826B39F /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B048014F4C45A849913E53123B36A4A5 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B457E0E52901570D764AA6DFE3D428AF /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 468FF27DED3B67C8EB7A5DFA50C6F526 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B459CEAB091824DA7EEFCB9D5E6A13A5 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB7BBBA2219AF4F54991FFB2F22027 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B469FF82FB33A6C3A783FD2D09DA9723 /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B484F80F1C10B741E489C59AA7E5FC03 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2080D44EE39EE883D8CF491A775C4 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B4CAAC30922F34BBC42566ECC52CBB13 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8FA6257F0FCCBD8BE6982F522FB786 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B507142D8CEB4512650605E7C1557F19 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = D74A7BD2D0B6D2D17F86EFE855B58D46 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50950AE72E3A41E956C96EE0372D8BE /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EE829354082462C292D4F8A0CB6087F /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B51E1210E1E12C0BDB5FB5B5F78E43B8 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A2CBC2F986BD86376D47AB4678EB54 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B52CF484C91BADBFF712543AA4FA3459 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C57822A2406DAD17116072A50C725BF4 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + B53FB4922AF4F4EEF580CD30A4EF79A9 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C62746C79D71EBD934EE343B762BD /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B544CDB6F6C60DCDA16BB444D2C5E654 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 24367E13F609D8490FCAF7A0BD044BC9 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B57D3AE5EA73FA48C8DC8C6070974ABE /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21479F41A69BD70AF0BC1B6F5C346CA7 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B58DAB23B552C6C2505569414B15C764 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58E059062F49BEC20438F3916209100 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D318CCBF05A49A681880D4588ED5D0 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58EEA9C9F355A5C16A06C38B5632A04 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C402A8A4B4477D6980666C2A2714A33 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B76F192C7D187502D4B5CF31A38FA3 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20CFD943D40C64279580A7216C8476EE /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B5B7FF76424363EBA0409DC77222B4CC /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B5CA7043B86E9261EDECA4314170A0E3 /* Pods-PocketTorah-PocketTorahTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2A3A770A47C3B40FDEE98174A54759 /* Pods-PocketTorah-PocketTorahTests-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6137617BAAB15C09FA001696261C24F /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF3E394CEBB89CF7C60F6C375BB1136 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B630CB57FE413C09EFE7F2BABD358363 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B644B36D6439F78F599BF414BA526740 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF6A2EC14847FEA4CF5E31362397F939 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B658920E97DBD4FE2EB0DC069A4F2D86 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B60796AF8059C3D02AD521E655C75C /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B65B78B86912C73C6BBCA21346CDEB5E /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E48A84A2E6838297AD1923F264118B7C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6A15C4853602D2ADF8B409126189175 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AE969DA3109FDB6919CFB2C2FB4424 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6B3E40F2384424CF75AC7E7052CB2BC /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A40CB4C10FE7A5575D83C9D8CBB18F4D /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B6D33446C04C0774A1E39116E1E0634D /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C214B8D3FA5244F701131E88F307850 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E80D053D404805A90D0569ED2C66ED /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB09C9C94A7F82495AC97A3F1227268 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6F1E0BDF42374CA42ABDC2814DB629A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAF06F38BB873B35CB43A2FEFB5DCB3 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B728BFDFF7C4141E9FA9F489899AC495 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B63399DF7BB14971E96ABD224D409F7 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + B72C191F06FE469C052BCE885CE35BC3 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 345DB3A734591C08E8CD63C1B09A6787 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B749D35E6670CD8ECF29DA8F6CCD2C9E /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3917C30E99F5061D5E4F4B02F1A5E4CF /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B77C5C46B24640A502008F49B6BB3C0F /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79E76AD7BF23CC1516063BA0DBEBAA4C /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B789D00E75ED3C57432F9DC51FFEF5B8 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5395501B28F9FD6C5A48C187338986E6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B7CD78DF90725365891CC0B9B6813BDC /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01E736EC9632D7830262989C4CD9DFA8 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B7E9E923421A7EBCC14DDFDC0BCB9B58 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1E754F60C440418FF82BB0902184C2 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B7F527806284640DED7DB4CBD669A5DA /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD913D627DC554874F1B9A69FF935EF /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B84AA1657DCD345A6DE13D19B08009F3 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E441FE53F2E683B9149146B483C6E /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B862661050D8E4C6B8344D730D7906E5 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32286AF09C4ECFA154C32EDA6CCB22D4 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B862B58CD25AEEE0425C723E2BDC4FA0 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B8B35B345717721CAD751B49395E696B /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8B8A9B35A09A66CB757175CC0CEFF71 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A14A2FD9F5DC7AC7B1DCCD5CE09D34 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8CAE8E1888106D7A48FCC776B83E24A /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFE23C42E5133EB5D77EF80A648F79A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8D55C42406585B345123434EB88C3A0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41336D60BB8F42E32D0556ED9ED8767E /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9778654850F35D3945AAA102E293822 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F44E7EF97E6D52D92E85A160A18B7FE /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B98D1DECF3C961880503CD9EFA03A274 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E866E61D94E3B770562F3A24022D48 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9926B688F5D2CAAD90C0FE593FEC743 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1C953EE2EA1DB55126DCCF684CDF27 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B99BE363D332580CB9F7462B694B2BA5 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D73E08A1024DB085F441C030BC2021C /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B3B6F59D5E1567F260B96A765F686F /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7EE605467868ECED26991BA02659B /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B9BB7C897FAC5B3E499AFCCE859CBBBF /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 407EEEDA672BACA0BFC59A4D673471D6 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9C539A765434443E629286306608A96 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C630160D1A80129B3245CFA2EF7AEB83 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9D2BA2853B3F467BD69034B50D3C760 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ED44E3B1DF8B0DE6F76C6485962044 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F0ECF6DDDDE505C7207CD8A2F64A2F /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = EB93DECA3DC21173DE88BDB84A1F9770 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA05DD6A5053CB2CDA9C359FA50EFE9D /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 72194A1754F2C3D06F9B102512379422 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA23BCB29166CBFA81857785398FCCA9 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 76430F67C6823C092DD7D0B7A6D89C2D /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA39D317524101BB92211B1140B6F483 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECAD751122EA0DD001EE3FB8FEF529 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA543F088EAD629DFF1B99C98DAE5EBE /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F97BDBADEDB08D0CD901AC4308FA29A /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA58E53CC918C968E83C814A07E5DD30 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC5F5B94537ED355E5F7A22D8D07A2 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA5B379476AEB869FA96F59724BDCA39 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9038E07B49691E6AD72E6AB365C46E /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA5CED32501EE60DB4908E3993CBB27F /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACAD68F7E9B659E9A31C7B555F1FFAA /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA6DBBC4A84149F938427893B1A39E71 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E5733090ABE9C4A129DF7D7DF3D29 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAAAC9ACE8830289B5AA71A28024AA0 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D85065292837A18DA01A3D36785793 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAB702913460A55D89BD86A0CDB5F11F /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D6EA167769949B9E35C1A104948035 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAFC2F495CBE1960B0EBAF55FEA8DAEC /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F824926224F0C794A76E339EA4113B35 /* Flipper-PeerTalk-dummy.m */; }; + BB422069A8394ECDEE3A36DB852994A1 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 187910F899833FC9D70ED5D05BE4AF17 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB52B3390D685A9F84ACBF270AEF8E60 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 26160BABB103E883D541972AC9E65A63 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6C24ADE4BA0A7D1B2465059A6B44F5 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9E425F50BF3258C9776A835CDCB813 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB82685CD2B7D4970210E259157E37A3 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC917C1636BDE6F0C65EB9BE90CF130 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBDB32E439F005544274303895E71836 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0779594AFD4D607829C8F8D8737410 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BC02C2863D57B1EF478B560BB9FD65A3 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFD1E3393E0108A753C1EC496BE416F /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC263EDD8C1E5C277E7B7EFC1F7E98FD /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 26177079CCF007025702BD1D99FF14C4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC290C3248F50073F3E2240AE34699DE /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3CA4C29B5C71E97EAEF43F661C17BA /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC36D6AA5B61E57603954B1BD38CC326 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2FA00469ED2213E599CBC1616C2214 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC5C56BB449A46780AB812CC67AC2039 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B41A1368FE7DA67FB83232ECA4A3015 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCBE6EA2183AA4DFE7D0E140262751C3 /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857E9A237122769AEE904AB7C9E2A629 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BCD5390288BF05C9AFCDE5AF271E358C /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 262D28155040273041E2E3C92A1E02B9 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD44AD831327B32F08BA93861A1073BC /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE62216059D5098285DEFC5C80C8941 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD9EA2C9D7C54905743F33C144A817E1 /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00231DF05EF85F0468B416035936788B /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BDA590330EAB05CAF14C7EE81293FE20 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */; }; + BDA99E19FD7F4FA5F791A064FDB06675 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0CAC1BE2755C6628D1706F6182C9195 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BDB2BA086F34118865F7341ACE4FC7A4 /* Pods-PocketTorah-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ECB293615637D2E0FD628F7CBC128E /* Pods-PocketTorah-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDD8E2963174C6198556B05ED60856CF /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDE06229F4BDCB958034F0130AB02128 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060565455E28B0DFA081DF7405A1EAD /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFFA0BF93BD70E04A19DB56257AA94C /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = CADE0170D737C3CCFB59C1506FFA5DF2 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE2AB5C6E508F2C967AAC182E1063A78 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BE6D08B0A3DE15BA46DDFC473D8CA9A3 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A9EEA1407AA91F84A0196ADA3713065 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BE873058961519A7F642B51DC81F3E18 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D8CD69443892E3ECCE5E0918B509B6 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEB24FEDD7BD59002FB857F62FD130F8 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8862C16A837D69FC9F5934668CFC87F2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF25054A0555A523A496A6D5AB284698 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C3739EABF7A03FF92C3AA0B1C18C900 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + BF3E4910133FC0943FE2B85E0780F295 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 636E7EF9CDB763A990B36F49C9E60930 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + BF50A61BBB2714B0B8F6B06D4AA6803C /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E4A9F442E5CBC5B460FD2CF1469BD /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6B8A58407B77F479DC1D43C1929B78 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 642789143FCED44970FC89FC9ED02076 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BF704F04F727F75377CC510B5836B076 /* RCTBundleHolderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A018F03609C1B3CEE93B1F8DAEC5530A /* RCTBundleHolderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFFFA7136293556F95D6589E4CBF6A1E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D9EDA71B96B53D6F178BF8A94F59DD7 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C0357861EAE0616A3CCF6B9ED5021592 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E399230B72C445A09CD1A3815384A3F2 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0388D882C160F0ADD74012CD89B2545 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F33522DF97945E97749B0BB4504A8B57 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C06A7528EFACD073B56E56211BB4CF7A /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89018834D534769B75F8DC590BE1B936 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0897C3AB99FB1F8AA499DD6BE82922A /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA47D18297F19EB0F26D2158E7CD9404 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0899F68C0C37EF4546DB1E56687F6DC /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B14CBC4318218449960EFF37EC2C304C /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0BEDA2F5A1ACB5F51F69B309756D64E /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E628F79145BEF78AE1A9AAEAEA9B4A7 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0D20D2CE452774A81A7BB046973BE59 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D83FC512C6C5D167E95326D702A397BA /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0F3DAE6B83CCD06D878D97227B98837 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5382F4B22049F6BCACBDCF80590CBA0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C0F4AF145DBE22215F477D7458E72627 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3635E0D8ECE1185D8C84F75B35389008 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13403E72901FAF536691DECE5AF78D5 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 573E84C8104BF33FFEF10FD605AA0E1E /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C15267223550F41FC88CF05009F5967B /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 532B91993AC65B6E8C8FACE888C9816B /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15EB5A2DB4B9E7D3CA57D6B7A7F9A89 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC18C916124C33343938E66DB305724 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15EB628E02B3495618A9C8143EC5ABB /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5AF4267C1B5686FA094913636724B7 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C165A38968BBD7258A342BDB5FADF041 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93507EF6D70F1EE9BE00A05FF660E9 /* RCTConvert+Text.m */; }; + C16D84C9085650D227D293F3B3E01900 /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DC540D25FD1252159C4648F1B3F9B0A /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C1911ECC13FD23651FD2579DFDF194E7 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + C19D692C985B3CD24A70B80321A03D8C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB23F9EB88F1F0812D6C754F6FDFAE8 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A3DF524F4FD3A33B1DD7A5D82EAD5D /* Uploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F8F2704281B997DFB6B9B6AACD5275 /* Uploader.m */; }; + C1F36F27166E27008C35B1CDAC6AAB70 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC2178AF7DDF1CE8B0E16CD7CCD0300 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C235D463DC69DE7F9C53F8A4C35C5D2A /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 686319D0CFDEDD7325EE90BA66A62073 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23CFDE6C17918020D4F98FFEB1CBE9A /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA42589883697C3463D81CBE075560B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C25862AFEDF4BB9FF3FEFCE880539101 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C283D2FE82CF27B92BA9770E0F7FED56 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B14666C87E2EF09B76286A2F266F604 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C2A8B33E158EF0D46AF1FA9B4CBAE2A6 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CA90619A0A3C540C9B47A2A11A2293 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C36F8AE57147AD80D48AE4CAC38BF2 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0310C51E751EDFFE7BF01F529E8CD45B /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C2C9B06CB19E6EE5D83C00F7BBAAE306 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 63131B7B8B0706A1B47D2418427D766D /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FDB200EC0014E45D18B27DEEC3F90B /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEB4A5BF1C7C8CF408D50F4318B8410 /* ReactCommon-dummy.m */; }; + C31D2B3918DF4B22C54BF03F99BC0765 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD271FCEE121FE29A39DA5FA7992063A /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C3355318E724397494B9BA93AE7AD998 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7686C167B67680D61F2DD7DC38A341C /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + C3605CA526AC17AE8287F05D512E0DA2 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 643E8FC28550BBC7CB5408D937002318 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C36C634AEF69269985D51C32CCF6D1CC /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB45DD1B0AC7F6AE5A60AA62873F714 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C377C11700CE7DDDAEA958711527394E /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3A150D401B768FE6F68BF57D375ADA5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8B004748103E03DAD3B65FFF4DC5DD /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3E0BE5F75B332273508BA7CB4E5B11A /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C408BFFBC6555E72752964ADFBCDCA73 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D44576BD9116ACB2F1CAA4A5F1E2B6 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C40AD8E945C29E41D27D0904BF0A0EA0 /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 22860DDBE4C6E12CD6C08067BF9A19B5 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C41CF4ECD30365C8A5937FBCA18C0A88 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 207394649359263C8AB2435691B2794A /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4363B08FB1164104BDC856EFFDE8408 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C44B1D178ECCF2652B742B06672AA54F /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E6E231A9EF550FC248E4FC2C9933E /* React-perflogger-dummy.m */; }; + C46193684AFE80441003A5E92BAF100C /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B750836A1F8C2CDFB2C121C9A7F06F /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4711AD7B8C9E69E1CED16572E9450B9 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3F7E448EC607E288DAA4610391FA42 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C47DAB559983EC97F93CAABDA133C61C /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8009FDE1879B9AF596C2B7F6EEB1A0 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C49540258D22E4AEB93EEBB7724D1867 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B34A915652C148CA0B65E9EBDF74B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C497EFA995FD20217672562990B3B887 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED6EC59D9EB9058DE09709B2C1E19A9 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4A084FE62B942C758B9B59CC83D0633 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BC5F9B7B66BB410B7CA253FCB6F739 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4ED6DA266A069AB3FE84B5EBD678C1F /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27FC09672B0674E72175C6B7174499B5 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5284C7D75B315A47A92C20038164D3E /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A44D0D17BA1E313CA74B03DB19AC98F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546DEED7667A4B5DA72A1944E968A44 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B051F4B5B668BCC3AAB2C742C69458B6 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5627564A1570DDAEB99574BD110B210 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 481F2F9828431F52D8A5D15079D62ADF /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5703AF1536B63AD070E26A8105A0261 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17D8E5B9BAF4E9951D7A500ED30BAEF9 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + C5C6CD24D6A2D0D3541BED76EAF4FC01 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = BC216F4FF79ECCD54D416EB88F4C72B1 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5C9F34069500597149B3BE196166E7A /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0080A3B69398672079012931FA1498BE /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5E70AD6ED8F8BF14F3CFAA3263C105D /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0A113687718501724E0CB3464ACAE3 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C604F229742C9860693BC71DA41C3118 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C60C6AF3357B9ABE3572C5B33ACE268B /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623FB11930AF3E37B82EFA5233304F19 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C62F705CFF4DAB60E606D9B133D84657 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C650681FC3E668A9AEC4D8A0BA5681C8 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C4106DB42E94BAC2C1E25E8B8EF86E8F /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C65A5E51F1219DBDF6F4D1CCA345DBD9 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5950C073145205AA7E54D5ADDC2C61F1 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C678BD02055EBDBCC454A1CB2510A367 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEF8D6D51EE9654CA3153CD06E38181 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6BE9CE643C6B411437296F7CABD439E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAD8F0A186A50A19ED945ADFD291DDF /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6C1C03DAC104186109ACE676ECEF1C8 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D2B974C0B7DB90A84A530649220E4 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E84C26FE245293ED7E838182176082 /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCFD64B80FF4098F61A34B06AFEE6B38 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C70D53B9491C72E5DFD91E2C6434E682 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D92D27ECC10CDB6AB78C990C410F34CD /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C727E484DAA14CF509C3A4B30049DE1A /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C58DE25FD026435C363CD30C46646A29 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C734A8A12930D6283052A97FC7FA9F50 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B326228E53BD05783FBF57A6AD35E2DD /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C7450CD8D3973665C4FE394C1216B011 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D601244E007A1B405CD39E44E38CC84 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7510C2C5AFC0D7E8F423A06E779C2FE /* NSArray+Map.h in Headers */ = {isa = PBXBuildFile; fileRef = B20130E225E7E248D5BD128F60A625BB /* NSArray+Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C77F0562250E32C563F848A2CD3DD2F7 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57605DB67060E820669113FF363EB43B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78F2548D1C445A9EB425A3358ADE202 /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A74BAEF117A15EBE5076A3D5733F636 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C79137942F9724C606A81E9E41E7FAA8 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2B57C7CD9221E35B76096DFC518CA9 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3CCB05772B1190497E4396491E292 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 850A2EB0B44161C632E717DC766B25A4 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7C13B573B498AD0817F6E4F5BFE4A08 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7C88CF38016E8AECEBECDA778D96FF7 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7593784F7F7B9489F4800EB0DCA31CA /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E005214CBD426A1B7116220729241C /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 870D09E5DF349263AF142037BCEE2CF0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E2CC6464C89689EE2D986CB014B551 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 462D6172891378C9956E3B51AB212C18 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7EB81D7E77A6FEE9AD31E95CA1DB237 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8FA6572451AA3D60067E276A20C9AF6 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7F1653CF83E97218EEA8BF238448EEA /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C661A6463D8CE8DEB4F7D3A7F841D4 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C7FE88321D783E181DDC77723F3EEA10 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1938A13872B10B8EA9D55526D0FBC2A /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C803A3046778D8CD93EA728D2CD7B516 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B441C571CE3735F20A53B51881BCEE /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C805D889011521C7930DB02EA0EC3AB7 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C80FE83F29F3D83AC3FEA7EDC9AFC8FC /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 301ABF3F2A4F5813FB276181CB585506 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C81B3A957AB77575DF079C9DD9D60940 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = A53464A8375DDB0DD967D77D2FFA7157 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C837176B0B85ABFD8DCC7BAD6FDA7F2E /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EA5C88ED69A170FF9CB2867F4CF10B /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8517EFAC913AEF148EA33E02156E606 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E08ACC272ED6B459E6C95093C5C43D /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C85F42B12BD6562C285E1B1B88C2C68A /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B66C849D3767BDBD079B891D7E077 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C85F5443F7A673078B937B7C9B16C062 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C95CEE209EB629CB5330BE16A264869 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C8AB072711776148F2299F0B0DBD5A46 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8B2304129B4B293BF1BBF7D90F15919 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2D225DE62D006600CC76E6A990C20 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8B3582790EE23927ADE763D9CDA5A2A /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B66B4F07C8326F0109D7463260AD969 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C8C2E46EC8D46583FA3E1B081D1B0891 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C820847C9D349357E627A05521229E /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8FFD379E467154E5A4621DBE719C235 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AAC31DC35E1C7B22C6CE8505263FF5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90B44123F7B91DB364737FF675DC647 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C93565F4BD7A2538261F3310581CF9E3 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3520EA9B0EB7C75D394A4D1E4EC73 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C9AA8A2C72BEE3DBCE4EF611845BB216 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8363F7ED3861401C0D0837FC30400E3F /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9BB1C12B5DF094F953B83A2703DF3BE /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9C2500B373A549317B33C7DF47D6ADD /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1B34B0D5A9EADED04061DD0965A2BD /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9CF19F3C582CE012AD579DC2A6106DC /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F30DB11A882B8C40273C7BBB56A824 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B28C5C264B060B9FF25F08309558996 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA1F2E767F7E60CBAB50CB9C3AF1FF11 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49682D90218D3CAFCEBBF65F938A4EE0 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA32989C50D8A9FA7536C87DFD54E7BB /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F2C4CC0D9B573EA6DAD45FEC6E9B42 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA44162ED2D36A9ED2D03C2F5D745916 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D19F62BB56CAB37E4AE080519BDC9E /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA47BBBB46D6CBBE22D1E2487AB23EC2 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E04E3098EA8C67B1DDCED07834DC958 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA60CF31E213095E5255D1F09DF78B2E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E17ECB880F4682EC5BAB7113B8A5F4D7 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6A1E126DF5BD4C4105B95A4A0B3427 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD94C35B591A8D0F5FD887BB13D9CD2 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6C9CC6ABECD852950DC469DDAB017B /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9E92613F887FDA0F18C04F8B0BC3209 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CA7074A0E52CE4A987F90EC5103CA336 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 610F7941F8B3CDCCD6FDB6341FF7A28A /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA79BFE7640D8C7CBC4A167F70320D9F /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAB0691C55AF0CBC955ACEB74962A2DE /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A71AFCB4279E06022598FEF122082890 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CAB216E548FB43CFE2BF058C938E383D /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = BA367F507ACAC24CC3509AE3C7D41A41 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAB737C512DCE4EF9A201AE3CC0CA077 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CACEF002EFB6A4C349951DE0FA5465A7 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF15077D3F32C094BB6A2C4EA6895A3 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB3693F122069381373AE5D77BD1794B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69B015BF74E80576EF70EBA9B2C70B6E /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CB9E73A5C4245D69AD64BB1A47AE58B2 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2480DAD523F9D52380671FA1EFAC50A2 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBCF0CD33FE7A4755EC766DD3B72A519 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B75BE9F8EF3E604003A8C85A938DD1 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC12719F40F41DBBC6D7A46BEBD32BB0 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F4B21DAA05F358798A59450F871FB6 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC34D02B10ADD0EA4D1087BE78D00317 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A48B0D6AB9CB43A62DEB123C7FCCA9A /* RCTSinglelineTextInputView.m */; }; + CC48291EC386A065BDB549F368E5F9ED /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B582B06CFD8D8D6681B05787C57F60 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CC4B715ACFBF5D629FFEFB890B9433BA /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 296BF08FBE4801C81BF144AD487F17FB /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC4FD3553F3759AE6F038E645AE50B08 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC5FB1F602D6437E72B9CE3EEC320709 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA5BC897FB48083288C669DA5BF70A /* RNGestureHandlerEvents.m */; }; + CCB84121CBF2E1A903FA7B620289575A /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E89E7D6CD4AB18A5AC9E2C777D9F55C4 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE8378CF87055BD0A385B2792B225B1 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01132FC3ACC08333CAB6B3AD0096739 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CCFD4C3BF408C1EBBB7EF0CF950EEC18 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C3596AB73BE006B80DFBCC318EDDCA /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD1B0848D162007096A42B3E97F7A0DA /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB5DC6EEA915F3208385DFF7EDEF946 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD31E304DA226431D6AB7380727AB870 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D22871E1BC549DE27F74FB61872263 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD3902C94A9C3C647B4660B9E3433079 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD457461896EA9684CEA40D4CC938923 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A4F30351691FECD6D14FBC2A381BCD /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD598ADEF036871EC3D90F0E124088EB /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA0486373A7602A20FBDD9169C7721D /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD84B18A9654EADDEDA716E4B6B6A0E4 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE14AF99F22DEE4D3FBF15D727A514A8 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD8538E5AC1DFF6BE433B8687DDB0F64 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E38DFE0C8049269C7AB49E361E87A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDAB1077C63F73FF301E4249C5FE4D93 /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADABD4E30CAA9CDCADA0F150D9AE057 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDC079F37EF1A6872814DD6FB71C109D /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B1084B40FC15F65A8AF29E8C5B703 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CDC4780EB1845E5672F20FA0A6C3AD1F /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC7324D8427DDFC5BB81BD18C3048D0 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0944752B80E22550A75A67A38F8F28 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 310D44D0F1AE32494B0EE36FA649FA0D /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0E39F75647B5B73805E8105DF54566 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 266D32C5E14597C2B0E8360F5A719CFB /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE149FFEE206AA7E367E53FE0A1A75C1 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD469898CFBA178DE678BFFE5B5D75AA /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE2541A4ACB7A012151BA80A87E01C01 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D82E1D59C4085089131ED9B1A24DAF /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE25AFB01DDF534B8C0701D034823E63 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAB51758A5F1B7EE79381AF570114D4 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE3B554A904E9DF6D8F7784587C31CD6 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABBD4506E25EC301663EB7A6D9B9C523 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CE4C214626831749BDEDBD53B2913613 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB50DD6D712A40FAA526A8832CF1725 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CE6C9DC9F7241137D09575064DF525B3 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53BFD1834EF514130098B3B8448409 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7800551A0EF2E89CEE4AE09B4F1489 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = A17B3BE7712A4141EAECE30D5429FB8F /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + CEA581C99A120834CBB7246E31BB196B /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CED618BB3B516A19D20C74E6F75396CB /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A892B2CB2E44B853041A21B0CBB542B /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1D0984D391DCDD4EBA5926E0B4F218 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ECD0A180EB18EF56F4CC6AFD57C5E1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF3CFACF6B38AA492DAC48CE76A67BCA /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BAF1DFCDE772088DF7D56A0D6E08C67 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CF650C1E9F8F078567CFFC07EA4AADAC /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28394156411C5367E01C794B6E6BB633 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF754C7BBB2989A16E50067FEAA3D655 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAD44CB1162630346828ED67E3B9563 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF9B2039A99FB9731738CDB3B9F97094 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6280F423EB2A6C3D5DA540275297A248 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF9E0AABD92732B2A43ACEB5711CEB54 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E04D5E6F7758C911C78A8F2C9330991 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB24FCEA9D0A6DD956F726BC43316DC /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9C4E4C7CB5576887DADE868D1D35D3 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D028EE0C3C4A65F10E6B328549D427CB /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC01E3F3597DF35E68BAA835B2A06F /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D08D050335D65AACF500257E79B45702 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A9BFCDCC2084C2B48CA8D0B993281D /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D09D82D263DF6E19F00BACB7941E56DE /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 86A24DF12BC90DF6A3E4C8FE864C7D59 /* listener.c */; }; + D0EEBB7E39B3FBE3C15B6CA8F0E68D31 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6617D7A49DFC407B3C8F345FBC92FBD /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D12AF4860DD9592B02A46DD7A83DE8CC /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1315ACBA16CB8986F4DFAB8481DBCD0 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 001D20F3721EC1B428FAA6F27093FC80 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D14A2751D58CCD8EAE19F62B37E3E823 /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D17B02BF2925E8DE871AABA721244873 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D105260F86EDBB85F565FFED1FA0CDF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D17BF4901A801385B7FADB14B2D606BB /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1A11A68CA20D5C543D8900B9E4CBE0F /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3DC035F4BD910382B1C5722D4574C4 /* RNCSafeAreaProvider.m */; }; + D1A54F0BC612E40DD838C44E8D25F5AE /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A98BB9C1385C8EF9CC18EA1ED6646B0F /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1AAB769072E936CB8F8E654854AFCF2 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8770D231E438CF5EB44FBABECD2FC4ED /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1BD67794921BCA4C4C48B9C87C3EA5E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A0BB33A3ED915AD91F44FA4BD0696C /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D1D8884881962812F531B07BF1640D3F /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B93F07E105D11EAE9A20F471635CABB /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D249E8AB76C3B8214C002F99D3E8F142 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C26C452AEC754F91C982DD760CECFE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D249FA10A0A94B5805E3FAA906C03C15 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A53C3E24DEA805C884FFF3805DE3D52 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D290F0B7D294D226B85E2B2E5D7E17A4 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9F95C360C58814E7E7B7267BE77C99 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2AF917683C4AE3A28D3B38CE6E35C3E /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D2E725B15EE89DFC24D6F5765E3A0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2C76BC63BE6EF3E0D447399AC693EC8 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E4A3526C2ABD58547AFDCFB72E6733 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2E9380C5790AF5E3E94130B26D14668 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1A8685BEA6B43CE991972AF8AB4AB04 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D2F0613F911C4006EE24ED6D7BE4A705 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B220D61041FB9D225D3D9CDD130F1B /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D33330BAF0DA0101AE69E2628776D837 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D33C16F24031A340D8D35C24D01A9B63 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1932535513730B312147D7069EC14C2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34E0AB6F6B2FF55FABA2CE51E33C1A1 /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = C347F404019100CC3CF9861AE1F8105B /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37F19F2605A8E2B1DFF83FE040BD0A6 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA5886B12664A86E901F4ECF9F68C74 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D3884A4B037998FDD1C846599FB655DF /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA02B3EC4347FF44C38570D089D32600 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3AB51C7D23AE0191A118FAFBCA878F1 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A878A3026E64339D4EBE2CAD436ABA97 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3CA9763D04A33C007B7899DC5D3DA2E /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8955818EDB7A61DCAB3F1B0CF0EBD84 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D3D0562C50AC60736DD59D6291FE10ED /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1522C5E2B6B1F6C67DAB583E98DD14A2 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D3D8DA76C626ECF46C27038BA3A95D27 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D60924DFDEC5D2FB131F804E43DDB404 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D3E3DE89583A70D9EFC69CDAFE239394 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9835B0B1DD5445809B505BC07ECDA991 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3F560110391BC3B9DFE741B1FB3DF73 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CF4029BA130BCD265C8014CB2016F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D41B303674484B3E305F95F7C2DE4050 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 62D9B85BBC1CC4E991ABA857D3146DC5 /* evmap.c */; }; + D42BDA01F66E3B75CC94F8CD689721A0 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D724B8924540B07B4D2E2F800202072 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D43FB23A3D6E7DB336123BB6B3206CFE /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8D64B064470BFF1DE300201E28B5BC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44E95A28A30DE429CB20A14C1ECEF76 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD388BF037F8BB244D81E7C7C2D30A1 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D451CE3EB2266DAC012BF6F248404BA5 /* RNFS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79416A66096F7BABC8D90E6E496E9DED /* RNFS-dummy.m */; }; + D45E561B4C2963A1A82E9AF8FC43BD23 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5B4FE3A6A3A770566B92D04C6613F2 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46BFAA612221203E966BE714ECB3083 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3562FBDD9BB63A2C894FC7E43B4DAC2D /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D48509CFF7033EB6ECC620A364185A06 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D899DEB17DA96E9F4ADCDD0938C26562 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4989027B070272C3C49B4D8E9093127 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 152BDC33DEC64DB0BC5D6E46F086886A /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4A0306C3E6977C231FFEFA0AC70519B /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB9D211F99F3A3BC219CC3814A91C67 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4C97641D52D4AA89F490F2122A33946 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FB4E2F5A090CFE5F0AFB7503E15E7F /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4D791F785C765CAB8851AAF63073B7F /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2D723BA95A586876E90A0FC1AFC194 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D53BB728E04B78AE222453602033DEFE /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D6062671BBC5DCDEB8F7D0A8498B2F /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5563084079F4FED33012517A31028D3 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEFB975DF39466F41BE2F5855D1278B /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D593C13B4CFC13328993041E048F3728 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E32C94B79B203FF823FF01D6053472E /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5B18778D14A31EA0D3FF27E2003E5F6 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EACB6DD8FB576779FEF4B464A0E1757E /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5BDF0CA44885B8332602B0735D0D47F /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ED3D3C5FBCAC752233D65D8CC5C8D45 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D5BFEA90BC081FCF13F8BCDFDC6D64D5 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EFBF388FDBC119680E631058BFA6AB /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5C08B77130A2A792E018C189212B1FD /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5D2FA10B50E6CC8605FD573BBE27CA31 /* RCTProfileTrampoline-x86_64.S */; }; + D5EBB3E487066699AA6908067926EDD0 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4906837A433E0301C3EFD343CCD79CBC /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D626ADCF06909EED2F1B0EC400680B0F /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = CD02E45313EB5B57C1F0B60570E700C2 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D66A7E099490AF42D21D54C50B60B4A2 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 420461A477A95E5272D68296EBE30AC6 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6C89B79B08DAD1E3BE9B6D9057534AE /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC345DF21D6751E98BF14C5191DF83B8 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6D0DE126721C0DCA0D292EC3B18FF8F /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 062C9C4F95A9A9259E70762F93B14B23 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D704A488C7592850CCE0BF742B234DDB /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3A1E18859C00A225B7935D540F039 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D72505624B1013CBEC6ED6D70A472577 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D72F9D696D7058E0EB432DEBEACE3F14 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E914DCD7F182197791B30CC9FA2898 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D731E00D9523A33253FF59C74BCAAEF7 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C51A29C795ED28BF6F36FEAB53307E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D732A2CE7674E8DBA2650D8B509BBB09 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D737443BB95B4CCB42432DCEC7304C56 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B50410CBB8A8644D8D7CD1273038C3 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74371E9F669CC4989482441E7CA1584 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B35E1DF1FF22E5A206C8814673B49 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74B647D04ED87734795B61F2DA6ABA3 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 294108287609745AC0069A42B2DC9268 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D76BC55C25D7B4AE4E7BD8800C962198 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C66EB927486F6D97090190F362F2CC /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D786010EFD23CBF43C1D2D25EBE6311C /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D5ED2F40665DDC7957BC6B4DDB1673 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D7CF8C9FAF6789A036501B8075CC9B85 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D0F4B97E8BAB9616692A195ECC0874 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8291635D003EC1EFFB6BF46FBF6C730 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = C5056392FE62AA0ED91450DED60C0BF0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D862E1DBA7681CB9F42A02EFF0250231 /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D7FCA4A5DEBF53A48A7216F8075379 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D87FF301D048187C5C8A69C3E6E8FAC4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAD7D81233AA19A116D956B1A90A28C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A6C6181D0A29A273D01D67D07D8623 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9762E2224A4FDA56F20EC482E7486361 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C8FD81B73D9061CECDA958BE3D2758 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82B0C32505C9D7E7A9D4223433709C7A /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D8CDCA050C3E45EA6FB3830F73AAD9F8 /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 694AD1A914BBDAFDECF265CED9DEDAC2 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8D6B1A43EACD122C5E2FAAE5C88252B /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1583F9FF29CFDF0BFDE97263F027BD /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9012A912C7CA62AB8E348D8C2D2CA96 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 539684657BA19BE9F7D4E4E08DEC08D8 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942988416023A31427F8D8DE7E7E0DB /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 739A241F14116826BC893CDA54F3D1B6 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D95E055B09919DE6DB1C2A6717B8001A /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C84B0227E27C0732FBB177EBD7B8105 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D973977664E011D58EF9BE5F2B063C4C /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C93C94ED35CCEC4EFA61CC5FCEE129 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A8353D5FE5EF3CD75CB7898F7324F0 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2EA9C1E6592BEE69744094F9DCD43628 /* RCTProfileTrampoline-i386.S */; }; + D9B332B8B627777A3A7CA11480097558 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A30800745D5642E8EFF4377E07A6F0 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D9D0E14F66D36C30E0FF808133DBD8CC /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C832A55D8682D12B62F89CCFCBFBB46 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9D4B69242974AD64901D337066CE054 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3037721D5075E235F07CD1CF6F3DDA /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D9DE996C6AB73C92AEA3F5878D081948 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04B88D1C743D994F31A79AE586024654 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D9E86F217923B5D88916EC3B938793A2 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A9A78E72C3E6CCB4C59F47CB1ABA2C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9F9B608135EB4191C97872359052FB0 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF91021FC1940466142D9D1163CBDF84 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA02050558D6518893290640697F6FFE /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 185A2520B26F04661D44199A47A748AD /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA0FA14B6FB9B013EBEC04D6BF4E6EC9 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2DF209CF3D181C70F446B265A9E7EC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA27D241839C6C46F93CE4882CF30E7D /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F01E3AE3E28646D681B39BB05563E14 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA3740794E11F9D0D3841F4ADDD303E6 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA39E154F355FC7F47C45DA5C9695DBA /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D848D69E66CA8A3A4857D3A1EF9BE8F /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA3D54447FE47B8398AC907244DA69D8 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B552D1EFEF541575E228D151202E644 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA666A37B486E8FB77EFA8F82FDE1748 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF4E4AF8B63079B5069A02F79F7F662 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA6EE15CF46D27EECFE50EE3AA5A9E2D /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EBB7067D88C31C6A67F0F16E86C487 /* RNCSafeAreaViewManager.m */; }; + DA934DAB3A690F2E5457C5B8B28135EB /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAFE269F43895BEECC1DE8776E5566 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA9E7D813BEBDBE79A8D27942BE1CB1E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DACB2558960C3CB1E953790EC8CA619E /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD677F9267A1492AB7F18CE5EA71024F /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAD798C9565E03649FE24286CDE083B3 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAF074B6151155BC58545E5BFCF380EA /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F10AFC3AC62199A6D15C445B137929 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB099C3694489F687E36E16576C398FA /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72AEF06239DAC9A4A3BB41865C18B8A8 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DB0F4593E96E1B32297ADA06915998E9 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF385C005BC4E8A245EF838FD03C7DF /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB2725747837987D46A72D608F239753 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0502CE378AED26C2414EE33002AB6C /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB307CA4AF03B9D5A00843EAAFFF93E9 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BFF6247936A15CAF4AD08522509ECA /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB5677BFBEE8478A67229BAC58ABAFCD /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D9E5C765053A7552922EA5B8486693 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB659185C05AB3C170BA5722E6AB6640 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = FACEB6076300CA9679DF7FE305B64C7B /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB68AED3B18A64F754BEACBB6587E88A /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DE67A59E7BBAE90663DEC3EBA391C7 /* RCT-Folly-dummy.m */; }; + DB6D523EDC380251865436EC94BE7FB1 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = B77A15A61A8C50C9CB7FCA084A53B325 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB78A1772D4A3572BD2AFE4C331E59DC /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D81D4A2D73BD31FBAC25CE7778414C7 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DB7C3EDB69CF6AB123F3FDD14AA0206B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1DDAF4046F2A8BC86EEF2CDC91A567 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7FF856F1E8BCBF68339A39918337C7 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F850A0CBB180F17B6F63BC327EE54C /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9EB96E31FBE932DDB2E154D26A20E4 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 124AF7726E32FB0488BB4BAF12D81D43 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DBDF7151C10FC75980566A100E8CFD92 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610E2115AA17D56D047A4A2A6955F4D5 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DBE7001D102726062434F1038270E8C8 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = F69F78C49A046622FBB7EF1319FF6271 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC178C8A47DB0703A61ED2E7B1F78A44 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1D55AECAF0E017F6B0514F5227FCB9 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC1970B5B73A4C4A4E766F686802AC2D /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5F1D10831009F5A4131300CB38B67C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC1CDD1C3D75B1145B7F2AF0B2BF21F1 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 97066889E6264F98AF2B000F17E84C95 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC374B34B92D3E8DB3EB9DBF146766F0 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C57DCB3477E5011DF915A8934C2BE3CF /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC540763BD91271038E4A242E500E6DA /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C21131CE83FF0002866082B5E0DC7411 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC673E929168706AD0E68E3DB6DE26AF /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B83DA7354475737493C4DA3E59E5428F /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC7CC664E2BB280A9651FB1948EA510D /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836978870E64F9D8F2C2140A45FB91B1 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCA83A65D0746967700CB25CD81C20BF /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCB21360E0F6EB4AAA0CB49F690CD64B /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDC12689B9B69B43D8097102DDF3E73 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCBDF24740AA3C95378A38E2B393C694 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + DCC5B38AF5539CCB20EFD5EA09847CFD /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A307BA56EF7AA0A855180DF8534F8B1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCC9AFDA67817D32EC799A788B1A5C1C /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCCAE4B9E4DCEE6B6672B71107EBEF17 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = D6091C69F6B592A187DFE080DE1AED95 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCDBF1227CC141B2E4AA377577404ED1 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE9942AA6669A2991F0769E429A3643 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE29B019764A545E5DC8F372F6A6632 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 39486DD676D4D3A172AE2D468899851A /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE849CF04D63D57D5E5DC071739BDC9 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F691C589C346AE5CF3DC4D65FE0B9D /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCEAAB228E7BE517B8B0DD33FADBC790 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A0333CD6D7BAA40A84517F0F6170F7FF /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD1BE17372E5E1E2BFD87621164F30EE /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + DD2EE2973807521A6F680C822CC4BB24 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = E83A6EB123E0DBDA7D8B7369350D2E0B /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD32FB5C2ACD85E2256E14914CA92597 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F62E33F0F51D8BC5E4951330FE3DA38 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD44B2DE131C49AA0E0AC56ABEEB3AF8 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B95DC7772680B9AE470B6562921004C3 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7AEF5769485C5BE973C842A5E019C2 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EBE0CE1EF0F386ED2B197CE3273640 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7EC2301CAE157E9533EC35663F89CF /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5199DEB57F329595B833E0FB7D4F6E4 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD80E4118FF7FA6B56100AD4367467C1 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 41071FC06AF3B0D27F48BA33E0427478 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD84A29D4032F0941426E7278B4CFC21 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DD85E509D6FCAEDC2F3211A793F253F5 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1FC8AF1CE917589719B731AF773A52 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD8CDB0B99D6F35E113DE85370A5D27C /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0D6518052598F8F5EC966342AE6907 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDC91B0EE097E7C9F57A2D40094F0FF1 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE2D188010F67558A6BFD895A35215A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDD88B3F7B543DD6B191BE1E0F96E2CE /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 609776BC87D29B596E8C1774BC90D0F1 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDDE6425057FAC799910E6F28668FF03 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED3B2151A66DF65CB4A03C8B0B96130 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDFBE62D63D71BB089C7505F3C1A5E8D /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3301DBE01170B251F85420B4E17C7191 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DE00E8CAE6A70E76D59D5C4172E997D2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0254AE018DB2F7C1E8F6A86F56F2D6 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE102452073D9861716B0D8C5782085C /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29939472145D242E113B31915FE185BD /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DE1B4C5218D12655CBEE3A9DD88CF5C7 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA6BCB333553B1E18298475B9A4570A1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + DE2D52B73F4CE4D6FC1C704977F6E458 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0CA48A334DBAE7209A362102D020C /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4050C587D702F97786049336CCF2E6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4479BEB8BFC0B2BA1E0E8C0CCB212C /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6356E1DC5F2211F6241D0BB69C722E89 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4D2F3F355782A8500A4D72E4697DE8 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 985B1BEEEB3523A69ECBF24B851DAB89 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE6191AC728F762DBD42DED4E09E1860 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B87D5B524A46114E157887AA8116DE /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + DE764715EC147829C02995367916A44B /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D31B165339A73EF37CA2EFAC05E0F1A /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE7B408574435706A00F73EB2DC6B366 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C84A847C7A96B70D1A2BFB102673C87A /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEB15D98A013B9ACAD3E71F4A002B902 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59737DEF9411E245B384F02F1712080D /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DF393BC05CEC67BE9840070982BD57D6 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D76FEE6EC7C4A0AE70BA38A891EEAD /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF5174F76103701FD4E40C37117363D0 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB9C03D0B2EAA7A650F9E8344D59EEFD /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DF5989A977E37E90C8EC5153F2F01110 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA7563F180DB9F920136C354CADF783 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF91D20FE91DCC73E643F7EA777B845E /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B64F9FB54A719D80FCA75E09904BEF7C /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFA33CEC95BE172575EB5DF69B4A0641 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = F617EB88974F7A9F8B1E81336CE97CBA /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + DFA44AC4DFD5BB07DFA412CDFAF52E45 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F184D229D829C6E7552F72ED1D44116 /* RCTView+SafeAreaCompat.m */; }; + DFC2BA4FE375B0408D5185CD187F5379 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A5D93DB3AAAF2F19A5DD78463692AA /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DFC8B8656868772B9DF8ABA105096FBF /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B660B236C0E34D8A98DFB7000E5CB8FF /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0670E0983FB5589E1D3DE20D8D8407F /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1DA2D1B2927D4E5F64C7BB107602B6A /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E06DE0457ABB9CDDD50612F2744AC4BC /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AB1EFFD1DF18724BEC712F430E9F09 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E070400E25E4A888A310BE57E505C51F /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */; }; + E0737903C18A9D70DEB48F436973CD28 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AA3D66FE1B5A5DAC5E8244E4E9DC0D /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0769BD05D1A68568E9F84BC1FC0D878 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A805F07DD8E98D2C32666F6F775238B /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E09C11544E4DF8F24E7F920945FD8881 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E09F4E88E59EAC510C9EBB6AE9C65DF4 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C721A10E64145D004D0D291BE860A84 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F9A00577BBCE83D16825A5D0C9AC23 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E28F084A1410C08F80D97DAA769B85 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FD55FC59B57354BC7103BD396FDE1D /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ABA7C1626E0F7404A708583764F96B /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12C49292D1B0E019225A21B9BAD9026 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6FAA84B063FA2238DC4AF68F1CADC0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E145832A3DB0DE44D17BB75995F8A8C5 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2008E3B78762B92B8084A7E1AC60C3BB /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E15F362BCC3A6BA9074200ACDD8FBF95 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1765C7DC30018AE26A3CBED972B0C14 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FC70249E74F930D4851FE4975964AF /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1ADA3C6CB889DC387B8191DF5271342 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3B0833BC25B5974FFEF64864DC7B82 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E1B0F54C7AF065A730B8C48E6AA6CF94 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF18BEC10855F4ED5279AD3CF5A4111 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1DD18134260AF34686555C178143375 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B40B497CE977150A26FD1DC8AB1C9A4 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1DFC607691CB8AD88B7E3162397F642 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A44987F80CD7936D4065EFBA3F6ABA33 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1F4596177E9B4B14878311E0A844B17 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFCA4305D3BE9A2459D532C3F0B4DCEE /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E1F909951CF50C02E275F6F06354A19E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 143C6C24FB1524AFC71AAA0DA1B73001 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E21F4AD29BCCA2DB0A30FB0C1849F3CE /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E6F1367737E793F4BDA2C075676FDD /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E23FE0A624F8FBC6B7D80864D222406B /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E25C5389BA24DFD1FE7B52727BD9C085 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = C868966CD5FC02AF75644F93E944317C /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E25D4ADBC4BB05BBEA7DC502D05A3F54 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6424A98A69AEC430CA1C3A2108AC2F7C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2745E2060A8A334455A71ABCEB67AC6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E29578D7D22DE7DC398C50065D6CEB8B /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 748E30D42871A455229C408C89397788 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2970C9A12F747E7E7DBF096ACE2DFDE /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C21639310CF4354C53FC396DAAC6824 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E29F5379B3B7BDDFF040B2988017E0CD /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2B38DEE05798F088228D193AD7A59BC /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BC6E32796D6FFD82258102EB8F4D87 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E2B6492A29BB2BFC73F516C124923D69 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F6117E7CE991E89721B0F79289DDFC /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2C129234DD9DC8F18D4C3B468685487 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4FE2E0543280CAE66CD5B24B90829 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2F214D20D0385076E9D17113B9B0BB9 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 86887B295E195B4823ED2094604452C5 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3369DB5BC7AECEE281AF7C6E99A9A4F /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = B03F7065C09F384BE16050CB9E9AF532 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E339B646FF1C07C1842A9FBF32B8BFEF /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E83E3A0491885A15E982F40BAEA7AA8 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E342148932A93EA7E52FA8F842F88512 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C134BB772A4E696A45B29C5DF3CED80 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E356D83AFB3F02DB28360B4CAF0D13A2 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2BF9FFA669FABF7BB176459531EAF3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36A61807591ADAB7B538ECF2D5B2074 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A0CF04756A50743B89A7AD22B35563 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36D653798509D4AD9505F670A39D40F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2AB7574153B535913C59AD7C58072 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E37A3114F320F22F269D472A7680C053 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E3E498C6A1AF2353A0C08B06FB3860 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E37E5439CF7131527595FB89E1F95DF6 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C914C001A70C6D0213EDB03AA7F5DB1 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3815F74C569798A28C53847B0A4B9DE /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD49D3319B5BB60C9B4FF8EAC3A5666 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39B8F16BF0021A110AF7B9EFC8B391A /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DB101DC32C831CCAA12AA5C8C498D /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3A80B1F69BBD83AC98AF4488E6CEEDB /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7C77CA417908065DDFD485417C2112 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E445A5A4D258BFA7DABB849FB97603B5 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFC10F9843E9EA7551DCE6B556C9FEC /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E48EE7041C1821D6316BB1D7B4E908A1 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C770179BCD0084D20DB918109851FDD /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4AAD7AECAF2E41BCDEA2624B7FB6EB4 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 355A1F4908E1306B5091A161BE722E2E /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4AE1A7AE79B246F76A30AE8A6CBBACB /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B223F39B8852A43883E130596331A5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4B72AC82F37F4AD0793DAB5B4844DFC /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2ECF64FD678D817D0CA64E88D3BE910 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + E4EBE65868A4DB7207367C5D69FA7390 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E51CE40A1F0E52A0EA6D4F09197CE1E3 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAE3372899549E5F99D2567017DFFD0 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54EAF9409E1EE13DE2EA622CB682557 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7D068829CCD4803409200D37EC78F1 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54F5B4AC449842FB653289C74BB734E /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E563BE02A383E1017A652712BC59F8D1 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DAB357B01B45BC3FA9863FEC50D161B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + E580EDCCBEDB9AFAC93544AFC83E2819 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A05C7FC9300F94160D614FA7CCF250 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E58F9DCB2BF63F914EB8186C6851544C /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B20CF0D11C773AA2E5C28B5794B36D5 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E59EDF5C6A9DD5F7425DEF513BF10B0E /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E0596DECF5F390564DFEFF032A7791 /* signal.c */; }; + E5A9212C24E77FDDF19CC0E3C3656BB4 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1C967CF035869B7882A6F64B1F077E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5E3C73FC8929C49D510D55D3A52D64C /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C25D22DDF15B5FC6F756A4A654F2BF1 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5FEFA7F53FFD9C147CCF115F803A634 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C580B97F36D58B9BC212C9F46DF6F87F /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E612C4B53DED9D5E5C164D82FB819E94 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F32ED5DFCFB86A8C891E7FB88D4D37 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E68A325A11A307C011AF6D4E438C2EE2 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6A5C978C5B3DF380D14CEC476633600 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F1F2E4B9C79C072284F7FB4D8D1482 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B3F91EF7F9B83F1D7E25958D179CCA /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6CC61669EB8A8421255241DBD738FA8 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926F3BE35E594AC65D9048174CCB295 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6E73650BEA190CE7EDE129B1421EFA5 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 95355AE2B185AA69CEB2212FDF6A0C5E /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6FD14FA4D3EEB925ABB0FA0881F3EDA /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 20397A4540455F0F51356F60106441D0 /* RNRotationHandler.m */; }; + E701DFB9A05EFF696F88C92E04822A98 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E703C355F675EC80D5B2116CAABB9C3B /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97D27CE0290DB7F2AC5D00DE81C3B4F4 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E74BA1F1D4B198C3A728DAD8AEDF4EBB /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E75C2DCF924B0984C972512CBFDA012E /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFAA2A03FE4362A4D8A4348117B75D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76CAAEBA98CCD153E603DA87474CE55 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D362115F5D1DFCD8AC54D241B690C17E /* Flipper-Fmt-dummy.m */; }; + E774DC5926D0B4C77D1394FB73A54FD9 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2B6F4D6F5F9BCBC6815FCC124E3508 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E77D5761F68802E8E721CAFDD4BE0263 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B33D3B720FED836F30DEF46A97B52425 /* Flipper-Glog-dummy.m */; }; + E7894014AD5EB482F6DD5150DBEF5E22 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AE600242A61E4CB2BD1D4F39D964DB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E793A4282A8BA9ADD1056A6C145805C4 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E64EF469BD0F836BCF6F932C81C89A0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + E7AA48387F36E67635F73A1CCDC26E36 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AB0BEA70A1745722B585DC5EB21EBBC /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E7C74FB2DD95D1B0F8BD98F5F93BC80E /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = D1093D96BEEEF431374C1ECD4C8D1E1C /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7E0F887E99D0C5B29A5334DCB3F8D31 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 90565A84B56C447368ADFADB3942E6ED /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7F7EF2D1F371788D39099C101D328DB /* RNFSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBA3C14D6E9B6D29C1B31D72D89282E /* RNFSManager.m */; }; + E828D386EF6DE4E624F776B875D8F8EA /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA0858D0336CEF51207E1DCB42954BB /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E82A3115FABE28C632074BBC1F4715CF /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B654B0502E64D8D388E089653828E38 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E85316ED8B2A51BC3AA423B1692B14E1 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD849FA66BF00355B6058FC5A42F4A09 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E861A268EA30FA74C9D81762CE6D9C9B /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B1FA3C78EFCB90DEBBB99F8BD59249 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E86AD48F7830872092D78B119C11571C /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3C1BC5A627FA1E856A14BD25A8B3AE /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8ACA2A6899B8A56436697CB429C72FD /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E481D28C154EF3890946004BBC4AA0FE /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8F3FD32C86E948043CDE1CF4FB36194 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8F9A6118F20FF339ED19AAC16262738 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B64FEEDDA1C83E21D35B2DAFBCE5E3 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E919C9B0D1C4C4EDF3C86CC03DF9FE0D /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EA15F9CF8862F3570AF4914DC754C5 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E941F8D4422571EA5154273A2C638F76 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A48D9F33C1B078CA89F5C81F3F879F10 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9640F9BFE2C0BB3C5CD5C62C8F56F98 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9A8F15F553EDF43432DF7D8B7A88C2 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E991045F1CC1DA3CB68AC3BA8243CAC3 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 537B35EB5C0E956BF983F2CC2CD7BCE6 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E993AF452C9ABCF52BE86BDAC503C282 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4FBEFDD3959CD8584F32D6626C2591 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A95CF1E75DF72DFACF49D868E356AE /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 11238CAF93CA6B458918C476B16EC9D1 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9BACCA897C583C5E90CF4FA12F2E72F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B6B26EB976F325D1374042C647225F /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + E9F4C9B27185E2FCF8E1FA65BF920583 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 132CFB1156BEBE2F93B909EAC300DC75 /* RCTInputAccessoryShadowView.m */; }; + E9FB5F77F9C5E2A42CA2526B77F08DC6 /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = D45184467CBEC83CD5A938375357381B /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA33233D916F42F9DB353241BE8F09B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCAE9098DF52F2D00B2ECE68AEC9F21 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA5AD7EB9C610B9BAC3904DB8943D31A /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 578B71C299EB923AFACC49A3D7637BCC /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EA772F0BC498D8A8F6197F8B72F808B3 /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F85441076215438C688EF422623C79 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA93714720B6E373DA03BE25086BC17E /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = D05621DBC7EED33BE891FA356F13D4D5 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA9F42C426F0A139A44948C14D8FD620 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A21568802433A4F94E4A6497C56F003 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB168DDB5F52F721C7260236E2A1EB84 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B619A6CBDF5542A9D3E27F1584F9F2 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB412AC89DBA4CD29F73C6011D87ECA3 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9229D038D92DEDBD3CABB8C00D5553E5 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB45301A9CD0EEAD34849DF3E11A49BE /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467A96F5E3DC2DDF88FC4607E2D0D77 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB75512EEE4FA7DD23EDBB13D73A5110 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6F95884C6F9C210C284F640C34995B /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA8D50EEEA5E3E8446AD4D1F56F4B87 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 723071926A9D4A47FFF592235B9BE349 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBAAF8536FCB233D3B58D5EC5904E2A2 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 95195942758D876BA106A6603AB4CD9E /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBBC1FCA8445774AB61049C399FAEB88 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 9253E47942126D94991D7FC3EB7BE96B /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBCF99FB2130A992F91C760DFD35E76F /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFD83AD7ADEA32030E69984B48B427 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC2A110AAA404FD1CB9473EE6C24BA27 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF708B2D03A4F50527AFD67DFC4C862 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EC4EAC53B7EFB21409BB93CE39460A35 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A1B2BBEA594E4332D0398182C9E05F8 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EC694EDA5CFB4D5E8F73C47088221511 /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE872751A23184E29358AF6141B2901 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC69C467E56E296F6C909E621595E043 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99DFC8E531869F5C787485052F3D69 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C374DFD923D150A94A486E66BCB46B0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBB12816B821CFA6856554EC19B0481 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFFDF748F50AB686609EC5987F9E6FA /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECD5F40D823A69957FB9246B1AABEAFB /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC27BBE71CF896A473E9442705F5C9 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ECE5CA7EB33F36B99D0A492766290179 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C2714A5B8B4D0860A0FFEA4455451E /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECEE3E8FF82B11C417A711B37966D53B /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF527636F53ACE55B46472FB323568D /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED362D192806BE026D072194497A8CDA /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFF825EDDB380002C55AFF2CF1BE39E /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED6ADC069495018F9AB8CC4D0EF0B531 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13467F6D4216ED976B525DE166A0C34B /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ED7303A6BA0B1B631350136CF0D9A94A /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB0D1B6895FE6921EA07896EE9FDEB4 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED738A6B8A042EF00C80A701B011B5A2 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ED9BCD6D2A828B10E434AFA1AE4C1844 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47197A1AAA0CF0D7B22F3ADF2917F800 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDB557079D6C1409A8D2C15FD899FAEA /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E28E368B9F605E05D96B9157EAC98E3E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE1E0AF2E5D2A47B85E6C040A4F66819 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4A6EBE1FAE6A0D748B7D340F859633 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EE5FF791D53838C6A9587604FAF100E8 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B479041D03CBE0889ACF9CF705FA63A /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE7302E6B112499291D9173A27F9FFE8 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2C408CD0DD40BB60C335CC6A86BFBC /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EEBC126D0D85BA466F300C37CE21C56F /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7935B83BC24DF19D7956C52B5F0FD9AD /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC71FFE8233165621FF93AEFEE0199B /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA942BF4C323C1EC0D603AF8B66862E9 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EEE714202F63B9DF8D0341AAAE1D0442 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C315F2F84201EBC6B01FE94C5DB5B7 /* RCTVirtualTextViewManager.m */; }; + EF4EB8B6C096193BF8B5D4AB25B202AB /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA06FBC259F0562620B9DC617FE7EA7C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF90B946F7146540A742191D78274EAC /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7765DE553AA96A930B2B993A3A9BE9CE /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF9BCFD0850943FC6153F38D88A9BD34 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E00A6309ED3A3884828635571023A08 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDD576BFBB0CC3F2F3C38FD1C59F0B1 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51DCC33865E389A68F9FB1AD9E429 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + EFE489A7A6B6E8B0B40630E01AF906C4 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AED06AC298E4EE63E63C3BD6A16CB15 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFE77732E11411E15BD1551D5A6D6E13 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = B417D4D087B4E916C9512A0BFF8771DD /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F018322E31BCA1B1358CAF085ECA9EF0 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5ADFB605B8C8A7D3EFAE771A31EA317 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F0431FC90A5DDBA6B8B6B5A2B084863A /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AE773D321878B89B9DD52036DABB8E /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F04E832989186DFD581DE69290625F4B /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 4593FA2F35B448B1369AEFE86B203D5D /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F05920239A9B0BBEC36200D5316ED200 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A72A66152E8DD2210B61F2B4C7A780 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07A96E370AD43248CB511EEF0E7CBAC /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F082D3F94421EE63329CF91AFD69F1C8 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4456A958761B3AC70D23A5FDD299DC /* http.c */; }; + F095430E2145C941A3620A8DF735D9C3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE05144F41F28057A870BC5B8659E23D /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0E5C71CAB0DDB54796D502CF30AB4D0 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F140FF031002D5C073D39E83F646F328 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65C6BC961861AAAE14F506F525154305 /* format.cc */; }; + F14B68B35D7010E42BC409FF9EFE3508 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B64C9F5118481B733B20D5B173E8E5 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F151229C1A0A06F034907BADD2F27E85 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A535D13DF2B6A16C6E11351DDD4F14D /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15840BCEBF00D44494417F4EDD9A12C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FEF93D1B768E833A9DAF5D1997DEB /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F1771F83DFF7FC542A32CEDEBA57E0A3 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20816CB2D86C9A3A6160A10A7BDC43E5 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F17A2A2DFDFBB89C9D3FB3046A7AF8B0 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB1041769552B0B23D758E5EFD3915CE /* InspectorInterfaces.cpp */; }; + F1921C482AA9E1FC1C4A410DA2096982 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 08319D8926787065308E3CF23A13F49B /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F19553493B29204B54EB1F8E3C43F944 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 486FBE52207E52465649F3D35DBB2832 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2018C29AB3B1BF10C024D3C10148370 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE846EF1DD9DD88BB8C4E52C3F03FB1 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F25C2ECDE2F33A95079BC54D5EC2CAAB /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F27D4E80DE5162C5B06EBF7753746297 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B69C4B62F42A4AE2692142252BECE95D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2B6C1FA0D70D41B34618639F5AD7910 /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972AF50397FBB6D391559B7BD62A6B13 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F2BB581AAB6061A45799942E9F98AAEA /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BED150EA79C7AF762BB00B50D1B1A2BC /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DAE23D361668F412E3209912E9A2E2 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C93100305406F07A35C81C46BAC35 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2E3CAD526FA4EA059D6FE0346046493 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = DE52D04A4D2C98286B4DF4AB71B28A8D /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F322FC26BD4F3EA491C980AA949E3FBE /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BEC8E9F3F363146BEA0CF91262073B /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F367A028825A3014796CDAB05B6F6DDB /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D843C6B3633B0F34F5C88CA4C483714 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F37F0D63C3E67C6C8CFFE0BD20C9BE5C /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55133247894F502C2E944B4CE4088D2A /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F384EBB835C99555DBB4F303451B7048 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E49AF705399890E10FD1E0B997F47B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F389399D7FB516A5028B8AB07153764E /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB703BF1700EE2C37C9A6619993BF6F /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F394EE692690DEDB01E7D6B9FD0FF22E /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3AA168F758FA4272CBFD90BE8D4071A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF32E472F0A02F2DF444DC71FDC358C3 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + F3F0365E78C502A1E3265C8472103471 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7205E1D5E202376B71C254222D18B /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F401EBC85A865B5DB0748789AB8640EF /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C02CDFE19C2466A12C9C5C91925A8794 /* RCTBaseTextInputShadowView.m */; }; + F41AAA374CC3655DA11F15500FD05F17 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA178199BCBE725C293D552930B1CE8 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F44367E83125BD80A6D90F1BEEC12F45 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0EB8C9DAF78F0BAE340499D45B3030B /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F445EB5A0FE7DCF98F7A4CCAF3BB76A2 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CB5E2CC4EEB8D454938FDDCF8F4534 /* bufferevent_sock.c */; }; + F4488E2E15ABF8C359011F594CECC9ED /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74018F1C21EE82B69B5FDDFCFDA721F6 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F45E85925C8B36D1EF0A39886BDEFFBD /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583B7887BC7B4CBFB0CF834AE1CEC8 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47ACA229CEB6DEBB82195E9E07D8936 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7879BF85A2370D7D2345CC4DDA98C145 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47EBCEAA1B606D35045770A0DDCDBAC /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B6DFF190986547C1DAF15DA91AE97E /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F483B892993EDE7F82E4ECDD010634FF /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A270295B643FED3E043984A7221CE1 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A4457BEE040DD83522B8BCB0FCA4FE /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A6CE2EB5809C8EE32590DA9E6C8D0C /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D766D03D3666E27CC7B590A172259D1 /* GCDAsyncSocket.m */; }; + F4B25F43CD59433A958CE84D76AA5990 /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0EE59EE353D2BBE364A6C22BCB508 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4D4074A3544F2873746172C28F3ACD7 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1C8345901D13386123595034784A65 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4E6EC3E880747E9B451BF5A58CB5482 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD5699D6498184080F84F83B69BB77 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4EA7EBFED735F676E7AD497603CA93F /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37EAEF1F8F45A170F180691126924AD8 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4EC6D514EBB9FA2665D1B02E5544B3A /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 232A922D2DBFFACE84798E53FCE13117 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F0F6098ABC0946B4F91155ACD56FBA /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DEF24C795E0BC84EDC5A8E7A6D9BB0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4FAEE7480DF8C0E0361A3532F483404 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 537C2E6878CC1C7D1500B538674334AD /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F505AEE3D5ECA20EEF2BF81A1903FD4C /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9A93A19D32D1081C325F076109E172 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F564F26EC6EFE66994D6A6FDF4781766 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4849ECDFCC31C7EB5090D4E177F5CEB1 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F586FB7A4FD42E179FC6D06A7B847EFB /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F58F4DE786E05703E184A0F6A69F69C8 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECA7202BB34315AC679A52E994E29C /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5EE07F7B3E047B20045D3AD8A3A6D30 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A319434D6D8B3CE21F6B5463960E0E99 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F46A3B1E8C166175447F0BBB1C19E0 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34CF249410C053F61A0BC9BCB0D7AFA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F61B78B95B5055A24EC83FD5D4F9778C /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFD4DE708F6E88E73103F036EE9A99E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F63626FF17EBF7535205E68C957CA5B4 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F68AA11BD25010453413B085D402F636 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F63D22F1BA930536FA9F2C71256462D6 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F79229D3C4CE6746DB4EA1E469259633 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F64D24407759BD8A26EF178BB9B60AB1 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EFA3ABB77ADE780BBB0CB7E791921F /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F664763C17F84E5DB8F2FF89DF20E40B /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D822B24D75585724F32397070E810D7A /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + F664F8410F1D143920754F0187293FD9 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D72AD290B7F1305411B9F0AB9301A99E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6729F474A796DAC637F3EBDE23A740A /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E21C516096440394B4FE6F6C87DCD /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F67A6EA914A264DDA4005B78C6571523 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DA077B18475E1915605A0E41B031F042 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F68ACF43E26A52CA3A197081DFBA5F92 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6AE5975CA6A8F729C95579708A2B8C5 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6B5995220BCBEAF8E747CA5F7695255 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35EF6865CEAD08A9DCCA82597C824433 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F6CE3B2011C2C20B14733A1A665A15FD /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECF5FF2D87CB35AFB67B4EB80D0BDF /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6D1C7BD02667D3CEB917DEB4C049868 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09B84401E7363B850813E0B7E7060CBD /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6DD81226F3525EDA7362E3313F4E16B /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F06AFB3EF8C41AADDD5624388AED2F1 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F703FAAF1BFCDD778A141DCB3F4E37AA /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 3610FB2ABC0F193F05860135DC9ADB20 /* log.c */; }; + F726D01BCE7280404F7B4F7784C17D09 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4352CB013C058F4B4885BADC231B0BA9 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F73E51733418C736D8237894B3E9E333 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A44908722D33976D21C1AE7AE7EA60 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F74B3CC2FEEC446494A8171F091DDCEA /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 63462335D68E71CE4F23FC49EBF908A9 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F765D6AB3C029BDD06FBF8E54E0E3218 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC983533D93206237E17DD0A730445A /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F77156D30B8E39B9B2C02B037E86141C /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694C10A80529882CB01503D51F57BD41 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F7A553184CC25BF987B14A0E3E0C7BFC /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 222389CF1784F763E9954F5A96C7471D /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7E5B6E4B1E3FBA6D1213D9C66261E27 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D42044BE7FB95D5486ED5E944B7A63 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EBB3319DFDD65ABBA5BA056E46413F /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 13835FDD97758D2FC12518E68308E94A /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8593B753E0E299933A9305692A1B29C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C284F6230F276B009930072A0DEAB8 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F860FEB7ACF66BE7D2855AC60320A068 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 248DFAA960C19A98CCB4DD50DBC1CC55 /* strlcpy.c */; }; + F8D09757CA18D76A89BD9D32153A85B0 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 149024AC816B2DB463D0FC39FF024AE3 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F8EA7A998104999C7A19011BD8494551 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 023931DE156E179D2AFF6BF42B90EEDF /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F94A8C34685E873666F3CC5D8C84AB56 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F94C380AB45FE7B4C7982FC16D39EB7F /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A39C9F197AD9D374B6BEF1E938F224F /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9776DFF0527DC100DDEA937B6B78383 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1EA40D6E673702B48D2483852A5FB4 /* RNGestureHandler.m */; }; + F97F61CE8D07DA9EC8B6C5A8B22BB545 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE171EFC461D42E4B62B356FC15E69B /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9BFD14441FB2757B00E6D62F535A70D /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9F5DD897F0D44D4A35154E41534594 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9C821C43B3019EC4CD441DEB7A23D89 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9CA17F36E4255B329F21D7B3505ACEB /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F781FBDF647F215982CC397B874472 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9EF005AE6AEE2760658D987A69CA251 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C5839C2D97AE45A6ADA49D56E1ECAC7E /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9F6D6441F863688C6CA6D1E7C8F227F /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF474746FD313D8E8496FDE44A98010D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9FA5411DDA80F671746B26FFB7AE1FF /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E251B1C668CFDCCC0AB74DD2FEC65E9 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA14F0F7D7EE5EA74316AB20659A0D6A /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58BF368C4AE5399145D7DB97A3C56C63 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FA4B0CFF12BBA958F9A17E166E619D1E /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 463A0625EF5539121BB4B7BA5D74B9FF /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6FC34F515C18F62646A3186EF76152 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD461841D515FB414F7D7EA662F21AD /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAB315B306CFEA0FB192E951AF55DE0F /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440CA227BE2EE5FAF05B5FCF00DE3ABB /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FADF43EC210E8D9FADC1DBE967BCC339 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 433D1DCBA0693D7CF49D5F6508652810 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAEB5A3E29565DB23C52E6757D16016D /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA821AF452BCA0DF297118D5C08D190 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB20357D091D40AB6BBD5428593D2CD1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FDB6AD7D684B0DD23F222E270EC62 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB36E69549D0FFC5239649C59C647A48 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4554F52622C8AF0D7D3BBB8D7D0BE6C4 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FB3A6915AC82EE948EACEBCE4E3A0708 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB754AC4531DD5FD6372F8C9B23CA96B /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1FFCDB58043B264035E10E1551B96B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB7DAAED57A165DD674B37BA297907AE /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D299ABC2A6DB245E64DC08DB1D2E10 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB8805D3885DED28F8C9388A708603C3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC84AC02D21D0EF5400118587C1EE82 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8D397A29F0C6A557544FD001A4A0FA /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E5F5FAD8618EF1E97712E1145B17EF /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBA3F8CB825487AE7E79617B6430CADF /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A284B21F5FAED59FA8A35F863AB4FCA7 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD55425B2E5EDA017340C539117469E /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD75A809B2212EB7961AC135A956984 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 74551B784505A6FA9C0D0AC04BD3A2C5 /* bufferevent.c */; }; + FBFDC5A0FE0C07C7E6658BCBB3695F15 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69354C203ABC4F487BD2A5F9B79A81 /* RCTRawTextShadowView.m */; }; + FC3D7A96175FD1CCE19C32E02D629547 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AF5C76547E28D942A8322024EAF93 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3F8FCF8D52A497E041D29D60BAA2E4 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D465747E33C9EAA2C10CCD4C7F655D42 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC42C1D9A95A03C695563F5624B2EAD4 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 585A16DDD7AAEC8380A5ADCA2DE19BED /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC5DCE5739BEDFC3AAB3484D31159E01 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FADE3C903A7E7F1489DC013F50F20D3 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC7111867E5EF4B606A437E919C7E2CA /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 481CC08F5ADA547F7DE48D6A890ED486 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC8261B99C85CCA8F5F38CD667070A40 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E8CEA50F73B7AEF97AD26AF4956F15 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCD29CC4B1F3734CDA8FA3C2955B48F1 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 762D2BB55BB4E8ECE50F1F50C0812126 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCF33DB896395F8176288102227D1398 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C60695CEB7D05035E7C57DC3CC499976 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + FCF40670E500B5A707A02357526AFEF3 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4484626AED358D181DDF77B9714BB92C /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FD4E23732BDFFC61C3DB730C265CB9C1 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 327331FECC65A2DD61BD9D2E0F31DAA2 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + FD680B1D5E94831818B2895F51F793D2 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 197B98B4A1ED2D16B40D747CF181B8A3 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FD693B4F807FE6D55511A67EBE807ECE /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408F1DB02A0AA05FA89128C31892A0C /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD7DA8BC7ADDA2D7464BA87A56B187A9 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = BA11BB2BE6862072AAAEDB0EAA6298CB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD848A9220EB5F56E39289338F353EB5 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F65F8193EDE5A6BE6683701DB8CEAC2F /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FDA91A13A9CF45E8E42CE5FA0E838805 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E588C5EB2AC14366ED603A297AE184 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDC6FB2B11DAC7AE5C9857F8341A2627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F63F2AED47C5751C71ACD38E5D715C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE16EB6725152A48BEB89E15B2AB1F81 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D564D6EA1777610D343FF98BA9875568 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE2371127A455186CA2EBF8E1AC86708 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D8715B7E77BD30B534D554A19AE8F2 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE4937606F2BCCD6CE4D21A1CDA5C081 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0EA47C5B6A6A9034F17DABE68AA07 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEA81A29E69F2247B94DF85725A73816 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 064156F5E6CBD9AFC6F123EB49C440AA /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEBB8277654CC02065F0BA73A9449C6B /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FED04FD11AECDF8DC604D3F548A39860 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ACB218ACC3341EB3A0DD86FCD21B61 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF01CA238E458FDC9C8FC96291767AA1 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EBE944EA032E62C09E05B28ADD9908 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FF3DB4337F47577C8CD855C287D5F682 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC814A6EF9F7C7FBE15BAED735CB9E91 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FF5BE19832AC715324DB093AD1087A47 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = AD96D492F5D2DDCB9ABBFC7CB11D5377 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF7E2F6A8B2E137397FD86E7806E7F75 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 244284323336068E0A39D1CD40D5B806 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF81C815F5FB318D6FEF2DCDE9CF2451 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B150E0FA0B600CC90485F03AFFFA7077 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8AB5E5F75BE04BF41E01FEDB415F0D /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 734EE32D3120AE7046B2B9828AC797A7 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8FD7CB4B0518EB5124040E7ACD3E38 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 002785781A4491EA27742483F711611C /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFC8AE28E321BB361DD33D6706321588 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 821623E26485D6B6BECEF967A2394009 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FFDE0D97751C85815FC7F7FB05A6E41F /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 3845B94F4AA16FA00DE62B5E0FAD9D96 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFEF9B8F3F074EEDDD57F4A883411782 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4D3EA3FB82971CF64D83879C8BD6CC /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 01013EA9A9EF8BC3F8C2DB428A2D020D /* PBXContainerItemProxy */ = { + 011C0EF1C51251A3E00CB3FDF29F8CB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 010BE90713181A0767DE624943A35B1B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 022EBC52642B25DE09B29F136052B700 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 02F6CBE978E70450A8AFA539DD11AE5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 0358AD2FC21EF6A7133931B061E880F2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; - remoteInfo = RNSound; - }; - 03F7C5A3D199614DF8948AD244D2C66B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 053EA60AFF5460B691180D1BF6716DBD /* PBXContainerItemProxy */ = { + 0121F6F71DB704B00359255EDE376909 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 073735A5F297938B5614FB078210900F /* PBXContainerItemProxy */ = { + 01CE980E8DFF9ECCEEB85D7C8F526F09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 07AB1A52609C50D97B616B58A4A79EAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; - }; - 097CBF4E91F3DA6A7C3250A128AF9918 /* PBXContainerItemProxy */ = { + 0329EEC7E9AD99D808606E294DC3B521 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 0A05674CE8287A7DD17515C7F89BEA98 /* PBXContainerItemProxy */ = { + 03D1638433A5800A553E5B0A301EAB09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 0B3C5C8FB6B20D2FF51731380F3786A3 /* PBXContainerItemProxy */ = { + 05597C987EE6563C8A873A677A3FF353 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 0C6159720F3B657B830F9253C22F544C /* PBXContainerItemProxy */ = { + 05A16D1635E06E440CB23D68D19F990C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 0C7910E56A978033FAF00B08F8349B32 /* PBXContainerItemProxy */ = { + 085B51F398D275993EF26B95EC4670F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 0FECAFA5FDF8A97A73C471B51BCC4800 /* PBXContainerItemProxy */ = { + 095DE5C949FEE504B2B5EED6F2F0C2A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 109E9D297FF12AAC0F57B0514591B7FF /* PBXContainerItemProxy */ = { + 09FC5997494FB0179C676B406DAAB29C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 1549BA9DF5A63FDA8E6DC5A596700CA4 /* PBXContainerItemProxy */ = { + 0AB9C976FDBBD0E7C20EC0629627C525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 157D55F80E95BD508C110F490FBDA02D /* PBXContainerItemProxy */ = { + 13B8F3501478B44D8CB0D5B65DB30A05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 167CD90FAFE6C9AF8D34D18BAD0C2016 /* PBXContainerItemProxy */ = { + 13C84CD41409A15E95C3F09AC09B247C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 16BCB4DB5ACCCDF8A18B842EF3AC343D /* PBXContainerItemProxy */ = { + 1483BC89D04235F775770564C9982A71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 1779DD3F7A43D32188729D318DBEDAC2 /* PBXContainerItemProxy */ = { + 161570D169F8DB814273C31DA2F83046 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 17AA01C33EC92DB81F63C005F99D82C0 /* PBXContainerItemProxy */ = { + 161E80A38F444B36B48DD4FD014E724F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 17B644B09F4397C1BBFD301FE32F631D /* PBXContainerItemProxy */ = { + 17FA62B9B9D81EA410D7B23015DA8D59 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 18DC0B13A08F648EE01DAEF091E9323E /* PBXContainerItemProxy */ = { + 18E66D130393A17C818288B0196B621F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 1B81488F26904202FE664DF9BAC04E30 /* PBXContainerItemProxy */ = { + 1A60DEF84A1350D605D3327FABB457CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1B81D71E3ECDE84B015026DAB4CE4980 /* PBXContainerItemProxy */ = { + 1C37E2AE6B45EA0005A96E39ABEE53F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1C0BF228ADB8934CF47C0CE3C2B295B4 /* PBXContainerItemProxy */ = { + 1C404E3923B9D985C7AB46DFB22E270E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1E619FB59D6EA26FDCEC6666CEB3703F /* PBXContainerItemProxy */ = { + 1F0D856E2286593E06425E0AFB377C09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 1F7903C379AFBE3FA8711C3CD7561150 /* PBXContainerItemProxy */ = { + 20FC190B497425216CFD73ED46399307 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 1F94CB0FB8CEB90DB2F1523375C6AC56 /* PBXContainerItemProxy */ = { + 212E8F1A7EB24FE99D3B3D776DE5641A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 212997A76B225CB0B8A7DBF5EF58989C /* PBXContainerItemProxy */ = { + 21E9F6175926B2438CEDF473850E869A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 221A78A72F3EE99B47BDF9C67B25B9D1 /* PBXContainerItemProxy */ = { + 2308F13ACC018ACF2FE5D662522EDACC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 222CD842834FD5D378F894BBE2C281ED /* PBXContainerItemProxy */ = { + 23C67866A3EC3802730E1B4E1732CF1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 23851778750EAEC8245B6A416FD45488 /* PBXContainerItemProxy */ = { + 23DE9E4AE885DE0B62A9BCDCADE12E91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 24888C39EF216BFE6A09CECDD564CF84 /* PBXContainerItemProxy */ = { + 23EFD38234A45EA2821B8EE194DBDCC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; + remoteInfo = RNSound; }; - 25AA3F513AD6152C29DF6ADDBF1210AE /* PBXContainerItemProxy */ = { + 2500508E04AE3379E6909DEA2CC7E742 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; - remoteInfo = "Flipper-Fmt"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 28CD4790660609C4C93C685CCEAB1A3D /* PBXContainerItemProxy */ = { + 26E1BED144E89B0AFC1E3231F0CC9641 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 2912689B4E4BA8DCE808391DD899C2E7 /* PBXContainerItemProxy */ = { + 2703F772C946904034C468241DDF468F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 2C6BB5FE476C6E4D7C59342DB4A138C5 /* PBXContainerItemProxy */ = { + 2765D50A2C30DD8DA84170EB0DDE4478 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 2DBC6C35E30EDF933CC522760D9E27EB /* PBXContainerItemProxy */ = { + 2D304C777E4E9BC953CC63B2FD2261A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 2DD55A9A1AFEC1A2EF309B5A1C0086B9 /* PBXContainerItemProxy */ = { + 2E03C3EA9410BD9D5B7D36111D76BCCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 2E4AE92977689247244F08292FEB43CF /* PBXContainerItemProxy */ = { + 2E07DF9B7B240FA1283520C84F3C5ED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 324F9CB8D5F224973842E3C85F8C122B /* PBXContainerItemProxy */ = { + 2E356CC39CB8EF3E5DC17BF49D72807C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 32D2AD205A6D2F6B6E2E9AF584E8A7CD /* PBXContainerItemProxy */ = { + 2E5888E2FDF822B96D083A94D956CD6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 3394565B1A1395F2CE789365BB65B9F6 /* PBXContainerItemProxy */ = { + 2E67937D1C1ECF43344FE14805E588CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 34F65523AA59E44ABB001D58166E7F67 /* PBXContainerItemProxy */ = { + 2FA0E2C66E7C46F359192710FE1AF226 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 35305E381ADD5F21AB22F9ECB97A3EF6 /* PBXContainerItemProxy */ = { + 2FF0108C1CB722324207DCA02FCF4389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 37FA7113B7D985688399877F7702386A /* PBXContainerItemProxy */ = { + 30D928032D7CB2454431DB852EFA8073 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 380841325347866B55212D3C6D1B5627 /* PBXContainerItemProxy */ = { + 33083C47A8C8D30C502FDA1B5B512853 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + 353E9A43F6C683E045F3B67FA4F6256D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 38B278CD528E26EAB944ABD4A9F53FF6 /* PBXContainerItemProxy */ = { + 35C7AD54112ABEB62F34801D05BBA7C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 3B1E1BE58933EA287D63D83979647F86 /* PBXContainerItemProxy */ = { + 364A4D5F84641448BB083765E7D2607D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 3D4962858E53612B26551D08C8064BD0 /* PBXContainerItemProxy */ = { + 36A1E236CB5FE5F4C2EB3F9810E91FFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 3E1A04DCAB0A9AF9206E204E981E184A /* PBXContainerItemProxy */ = { + 36E501CD81DCEF863DD7E8557FA22C36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 3E1C58714C49ED15C8FBF8163487F415 /* PBXContainerItemProxy */ = { + 381EA87555D0EA115CDD1DD49FC4BB3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 3FE50B7A735B450AB7FA613B2450C925 /* PBXContainerItemProxy */ = { + 39EE1D8E0FC10934D98A126217940BA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 4214877E41520184E89A6A3EFF0945C4 /* PBXContainerItemProxy */ = { + 3B3A3CB1E543C0A6BC85B58B912F9CDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 45DB857DE0973A4D5E464CA648247FA9 /* PBXContainerItemProxy */ = { + 3B9FD5443ADB95A89E9A3002C866B8D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 487DF619444225F0D677AAB4A6FCDE96 /* PBXContainerItemProxy */ = { + 3BE1EE1D43A7BED221ECA131BD764DFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 41D33A6FF114C6D60F6697790865AF5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 493AFFF3E97B75E5B9853E53ED9DC4DA /* PBXContainerItemProxy */ = { + 41EE89AC31029846D47B51642D38B838 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - 4A63FDF900FCDF18D337FAC240022EFA /* PBXContainerItemProxy */ = { + 4530ADCF5A69C71CF06DE8C147DF932B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 4BB29375ACCF8087EF409ED814E648D2 /* PBXContainerItemProxy */ = { + 45E4546930A00C64F986FEE788AB45C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 4D902424453F70AED7C8F40562E287C1 /* PBXContainerItemProxy */ = { + 45F1CBD55C1450888530EDA4849DC5AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 4E58A87BB289082C4915EE72F32C6AB4 /* PBXContainerItemProxy */ = { + 468E82F6BEB873BFBC215CC969F3EE3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 4EF3C9F96ABEF1BACEFC9A45E9DEDB2F /* PBXContainerItemProxy */ = { + 483391C1216B63BD3A7683D84A600D2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 4F7303083516E9D1E3626EB9EA4605E7 /* PBXContainerItemProxy */ = { + 49A66A984615830DA7AD796D11F9E176 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 4F75F2D7446510AAF75195624C42A2F3 /* PBXContainerItemProxy */ = { + 4B26F7C635146BCB7DE2ED45490D5496 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 51F795B3D924AB232A5A6B062442DEAD /* PBXContainerItemProxy */ = { + 4B83DF2ECB9D035917F81FE10E23D847 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 52C94C9331CCA3E3FC9D23E07C0E1774 /* PBXContainerItemProxy */ = { + 4B8649E5C6731FCBE42643819A6E77A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 556ACD95CC487E89FB5941EAB8319F1F /* PBXContainerItemProxy */ = { + 4D99688F47F466E127339E858E07DCBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 557FC94D5033395DFE8D19B79DF27859 /* PBXContainerItemProxy */ = { + 4FD6D077070068E1608ACE3DB31F6651 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; + remoteInfo = RNSound; }; - 56A9DBD752B46F20A58CB3682B4FEC3F /* PBXContainerItemProxy */ = { + 5477143F60466A22EB233FC48A80F157 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 57992AF871F2DB8A89403283AF876950 /* PBXContainerItemProxy */ = { + 54C99811C45F515B7C718D9C26327A51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 57DA41DF9F9970800C59A6CE35F4D418 /* PBXContainerItemProxy */ = { + 559E28B992EDD340763A7030503C0F75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; + }; + 55EC54726E7F0BB5A5B76C5BFB6ACE19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 58B9412E98656B680EB05852088320D1 /* PBXContainerItemProxy */ = { + 56A8414645D2769BEE633843E8F39902 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 59FD2C6310F27AF300AF424BE53B538B /* PBXContainerItemProxy */ = { + 587D01B8B9214724223CC947B43959A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - 5AC9C6C82E11CA4092B97FCC4FB584D0 /* PBXContainerItemProxy */ = { + 59B1F55287BAA9CEA4FBCB9470EE9C06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 5AE3E3587A9BF3B23081C9BF8351C847 /* PBXContainerItemProxy */ = { + 5AC428E21C08BF1FE059804E055BC92C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - 5BF2ACBA7A34F9BEF1B5662FCA7D9C7D /* PBXContainerItemProxy */ = { + 5B332714DAADF251B012805A423534AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 5D842A42BC0D8AAB841B9FC034184C01 /* PBXContainerItemProxy */ = { + 5B3AFC18A459AC0BDEF68E60631756FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 5E362C1E0C6501DCEDF722D3BE638E5F /* PBXContainerItemProxy */ = { + 5E02D0614A63FE475F49A6CA25F439BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 5E72BAB86595A37E24EDB428D9740E08 /* PBXContainerItemProxy */ = { + 5E48BE6AB7B1A188F4DE41D2198A6197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 5E9436722AE912F7AE1852C91D8071D7 /* PBXContainerItemProxy */ = { + 5F0F53C688588575C9CF0F5390D2FB81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; remoteInfo = "React-runtimeexecutor"; }; - 5EF440DA523BEE7AD4E9F72B26FA7DE3 /* PBXContainerItemProxy */ = { + 5F373DEE2DF9B48475C4D4411D5869F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 5F066C280B577223BFE682BA91B0BF03 /* PBXContainerItemProxy */ = { + 62683B3D86D0275B815F4517714CA30E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 6016F0B236191D43BCA06B706D0B3F6D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - 60BAF9DD5AA372551C87E5CE88CFE9BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 615D6FB1F2FA26B80712CB6DDEEB87A9 /* PBXContainerItemProxy */ = { + 63B7C6B9089DB97F37BB54A2C31A337D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 618C12226D41A4788F6DB94213E61923 /* PBXContainerItemProxy */ = { + 63C8A66AAD6A416B25C6E8D7F1D1E797 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - 61B7771D2CCC349A559AA8AA49154C45 /* PBXContainerItemProxy */ = { + 63FC6B0EA1CF59A98900612681C581CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 61C9FABBD6A7C728CB826BC8599038C5 /* PBXContainerItemProxy */ = { + 64439893A9E8DC4630412175985A6DBC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 620F57E85C270C6E09246AB8806A87D2 /* PBXContainerItemProxy */ = { + 6459779DA59A4DE813F704DCAF9E7F3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 629E41117BFEAB0EA48D240F5FE2C259 /* PBXContainerItemProxy */ = { + 6564BA90887B1E702647932B99105FF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 6433FB741E8C5B3D0F9410ED5D4FB37A /* PBXContainerItemProxy */ = { + 6675246AEB1ADFE8037147B725EA7679 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; + remoteInfo = "React-Core-AccessibilityResources"; }; - 6507EB88C8A5ADF1933D66FC791E7358 /* PBXContainerItemProxy */ = { + 67C07E0AF8F69EBEDEE6974E0FD77719 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 651A561BA56AE5EA3DF7E21F4AF3523D /* PBXContainerItemProxy */ = { + 6A13DE1DAD7E0E91EE4B923339F32557 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 6543F9FFB497E19DDF348C125991E1BC /* PBXContainerItemProxy */ = { + 6B1C3ACBBE72EA7E35A59D6A2EC3D7B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 661434B9BFF5DB764435091B796E8430 /* PBXContainerItemProxy */ = { + 6B21F253D8448B7CCF00FC2E27FEE71A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 67D1FCF8AADC8DFD5FE7161D425EB7A8 /* PBXContainerItemProxy */ = { + 6BC6206A9CC62C03B60EA851F43F9BEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 69EB5FB1D1E1795C372D3E80EC10F8E3 /* PBXContainerItemProxy */ = { + 6BCC76404FA2ED868DC6F9FC36005EEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; remoteInfo = libevent; }; - 6CCD4321DBB536EA89184406D3AD8238 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; - remoteInfo = RNFS; - }; - 6D4F448DE156150622C756122D82090C /* PBXContainerItemProxy */ = { + 6BF207EBCDC0CB8F691A31F61FB37C44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 6D7B2253B48A2A981236064B2A20448E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 6E47A4F654E0A35FBD0D074B2649FEB8 /* PBXContainerItemProxy */ = { + 6D5C346FFEAE77109F4AA706759E279D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 6ECB730056EB3AB53C7EE6C7D2F01209 /* PBXContainerItemProxy */ = { + 7181D858774BDE5456C4BB8A05825F99 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 6F912A4FBB7B04E3BCD3E159194631AE /* PBXContainerItemProxy */ = { + 7195550E984F0CE05D2A8EE90AB9DF08 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 6FCFEFF98B48B61FBEF4A6AE02B412FD /* PBXContainerItemProxy */ = { + 71B3D2ED4CCC115BE01A8C4FEA374E5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 6FEBEA0983F333D823398C4FC1E5D4F1 /* PBXContainerItemProxy */ = { + 724674F983A0F2A904036ACB81E6E1CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 74BC3D0701B5184937B3A855C819EBD3 /* PBXContainerItemProxy */ = { + 7383577D8776EB3FD9299B93C4FA826D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - 77CB901E96C319CF6ECC1CBC345F1F85 /* PBXContainerItemProxy */ = { + 73892FCA71EB83D61A49AA958BEF5940 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 7A009AE9B82D3FD33A0783A92F9C1833 /* PBXContainerItemProxy */ = { + 75B75CAE19E4E6FD4E1D7077E7812450 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 7A80A8E9400B3A60E1A55F832ECB2730 /* PBXContainerItemProxy */ = { + 7831B24A2CEAEE97440E652F3B82A71E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 7BF05030FCEC290AAF4BAF6F5A32B802 /* PBXContainerItemProxy */ = { + 78B3BFB4A70517077D0BC1E0056AF363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 7C4D75C09C04F6C5A4886EB44B03B919 /* PBXContainerItemProxy */ = { + 78F258944DA7C52ECFBD5D9BD0E5B5CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 7E54716705BF39371F1FF4068C731DED /* PBXContainerItemProxy */ = { + 79967E51E8C17FAC69F030FCB814D140 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 7F43969C574BAD2B0D8786E18557B2F0 /* PBXContainerItemProxy */ = { + 7B20BCCDCCAC45EB7AD38F97AB04AFF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 803C1501E194793779936E936ED9ECF5 /* PBXContainerItemProxy */ = { + 7BA3C84E9B444AB75FDC54F920F66441 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 806A2ACF7B5569727D24476A2A8414F6 /* PBXContainerItemProxy */ = { + 7BAB613D428AC21062505AD2DD909761 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 814080C2D3ABB1668E37717B97819399 /* PBXContainerItemProxy */ = { + 7BEE0B2D19474C9B2BAFBDA2C90BB45F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 81ECB6D9E74E777E8096D86DF226D2B8 /* PBXContainerItemProxy */ = { + 7CE1E0286B8E523652973F0DDDAF4800 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 82AA1A1B1B8CF8FDF3E7FE61B95DAA79 /* PBXContainerItemProxy */ = { + 7FC90E126691A15019F316589C0C884C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 835DC1A41B856152A07E13415BF33ABB /* PBXContainerItemProxy */ = { + 80BAF27BCD8782090D72FE329DD5BF3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 8535B324E68BA53D370EF3D8E292FF3F /* PBXContainerItemProxy */ = { + 813D6F1670AAAAD6C42840DEA2EF7583 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 86CE6628A05DFE33ADF0EE2C3C317624 /* PBXContainerItemProxy */ = { + 82B00643A757C13900F9BB80F7CF6B49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 872DD8311D5D6E8B5DA85A80E285155D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 8823C087EC3FC47007C1F385CB78F4BA /* PBXContainerItemProxy */ = { + 84C45398F40F7C1A96261FFF6067DCEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 89938932351CB94896D3BB303007EE72 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 8CE2FE0F9ADE2D68524EF31A426C3D43 /* PBXContainerItemProxy */ = { + 84EAD413F0FC22642C310CB22CAB4D46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 8D17B86D284E1409C649F996F36B0531 /* PBXContainerItemProxy */ = { + 86E1A119457408C12D7F427DAA7E2923 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 8FD925A30C7B599457DD862FF556A39A /* PBXContainerItemProxy */ = { + 87A3972AC77106F3B284477B29472428 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 90D2CE00F407DB32FA64367C5DBB0441 /* PBXContainerItemProxy */ = { + 899014E174613EADD957DF6E7D36B9A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 9268B2B185BD0267D39E72F772B08888 /* PBXContainerItemProxy */ = { + 8A82E387771D71C06CA14C189245A749 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 93FE1FB13605D8228880E75116E535C9 /* PBXContainerItemProxy */ = { + 8D5DDA90C96BF349629C789CF4062DBD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; + remoteInfo = "Flipper-Fmt"; }; - 954A9940AE5FA893F03B11A6BC575F24 /* PBXContainerItemProxy */ = { + 9376CC167796C9F636DACC8F23F4DD56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 9574891228D4E764F975671C7077D495 /* PBXContainerItemProxy */ = { + 93B0328896FAC5CE0B969F350B1BC182 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 95C22A0E172166BDDFC973FD19AD6871 /* PBXContainerItemProxy */ = { + 953DE3D02500FDF8412FFD0FB1FDCE06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 963DFA004EFA39124244658CF43BEF9C /* PBXContainerItemProxy */ = { + 982C45327A5945A0DAF48B4CA1A67266 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 9841DFAC26821D5B8BE90B7F47E93C7D /* PBXContainerItemProxy */ = { + 9856C62E29B509CC0313D237DD43BAC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 9964F14B842AC779CD748BA8B930EF2C /* PBXContainerItemProxy */ = { + 98E77146AEAD1EE7DD2C26FFD7EEE110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 9BC27D0A2964B04854DA0761BF66C7F9 /* PBXContainerItemProxy */ = { + 9A498A9133450D15DBD98E8ED8DE7DA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 9E6BF45553EC5D2A962E25B42592ED4F /* PBXContainerItemProxy */ = { + 9B7EA28E2743B8A78C2E845A82C52883 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 9ED017EFD2FA106C1804A2DD400897DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 9EE515FB5FC154A6678D5CCB4DDCBF38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 9F5CE49FDF4A60EBC4DF27CEF64303AB /* PBXContainerItemProxy */ = { + 9B8730FF2A4189F1EFB95482F8A66C82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 9FEC5CFED384AB90DEC624AB163EC8D5 /* PBXContainerItemProxy */ = { + 9B8C5863251A05C66473CE30C7D36672 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - A10FD9AA4CDB27087CF41F97066F6E7A /* PBXContainerItemProxy */ = { + 9EDDF3C783229D23395EC6DC57B7755A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - A1AF65F96C673FFD8CA91A5928C0CBB6 /* PBXContainerItemProxy */ = { + A0BCAC788E9324FBAEF12957126C67C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - A23EABD21164A6175DD0BADFEC5CAD66 /* PBXContainerItemProxy */ = { + A11A4BE8B6E202CE6BE211F7D9822F5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - A2E7228B9E6E6F8D719561DED9E87246 /* PBXContainerItemProxy */ = { + A2C54626938E84F29178B0981E8B9499 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - A3CF8925D7B6E9A0C3664579A8D89360 /* PBXContainerItemProxy */ = { + A2E8553532D6C627B133A5BA0711526E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - A3DFC0DE4DCB91CCEF55F4E01893B7AF /* PBXContainerItemProxy */ = { + A41BF66A9C3C586BD3BAE39F420DB7FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - A46987E52AAA3454488B7A8B715CF2D0 /* PBXContainerItemProxy */ = { + A6063C611F61CA14A5C9A840002D92C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - A791F241B218E16282756A41D52F4758 /* PBXContainerItemProxy */ = { + A611FCD763CA9A46C454FEB311ADFA3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - A974F35DD8856B15752142F7F0D797FA /* PBXContainerItemProxy */ = { + A629471A0876881631991B4CA74E4472 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - ABB713D7D0A34A1F94C5E7E343BD5192 /* PBXContainerItemProxy */ = { + A64CDCBEE755A867C2733975BB354817 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - AD832A92CBC3AB8D9BCEED9E6DF291CE /* PBXContainerItemProxy */ = { + A68C78C82EA95EC18BD10E3F5FEB7B5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; - remoteInfo = RNSound; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - B045C24D74F782B90218B7840969F671 /* PBXContainerItemProxy */ = { + A6C9A5FD6199B114170FF327BE81B350 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - B05A5FA6EEB4EDB2315C45F3FA18EBAD /* PBXContainerItemProxy */ = { + A8F4EC4F68B57A1E187D8EC07BA4866F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - B2F00AEDFEBC41713CC3699E0C7AE394 /* PBXContainerItemProxy */ = { + A9F900EEB4FD3ED0C70A58CEFCE8B310 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - B64C31BD63FE9BA355DC1D2BBFE56BD1 /* PBXContainerItemProxy */ = { + A9FE6AC793021EE2D063CD6E16E044C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - B68F4AC08B8A97165C145DAAD1114A6F /* PBXContainerItemProxy */ = { + AA0D7F0706498C4A377574A6E910DB96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - B7A687DCBF77BAE3B0A2FBD7CC148885 /* PBXContainerItemProxy */ = { + AA9DBD982762EFB22671CE976301552E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - B8D52A8E983FD02C1378DB447BC4FF90 /* PBXContainerItemProxy */ = { + AB1FC58CCCA47A4E48BC1CAC2C539EEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - BC20C5473744A58A9041CEA86C038F9C /* PBXContainerItemProxy */ = { + AB77811787B048FC82329282EF4AC9EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - BC67CCD6B98225E5BC32147FC48F1C2F /* PBXContainerItemProxy */ = { + AEA8B8BD7B5D1B4E8F29AEAA455AFA1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - BC8E4E189422BBC8310046E429AE3A98 /* PBXContainerItemProxy */ = { + AFE3FD5C2F75104920A262F5F3F66D41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - BF3A2478A871F1A437C637A46DE567CB /* PBXContainerItemProxy */ = { + B14960BE504245E68B88497AA7303510 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - C070BF25856AA06D4AEE0ABA752939E6 /* PBXContainerItemProxy */ = { + B3295CC3D9024D74DFCE42351AE2BF40 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - C1728214A34DF9E5849269BCDDED6B48 /* PBXContainerItemProxy */ = { + B353B571F3911E886754868D8EFC79ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - C22E164E65B419AE5861C4627AE1813A /* PBXContainerItemProxy */ = { + B70E32B41CBDE8DC88B88AB473C4B770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; remoteInfo = "Flipper-Fmt"; }; - C25472A61B533EE9C8BAC5A38C38EC15 /* PBXContainerItemProxy */ = { + B8F380B9FB96CA3F78511B1E26D39E52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C2735CC2CF8E9976DCD8E647BDE70E22 /* PBXContainerItemProxy */ = { + B993C98A48BA28600FB3488E11F1DED6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - C2A92F0D4F87C017BF5B16A5E84D6217 /* PBXContainerItemProxy */ = { + BB7BFD07707FA98C7224544B509FA386 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - C4704BA7CBA14EE5332DFA9395012CEF /* PBXContainerItemProxy */ = { + BD19EDB993F6C86A12C2EC3CF574DA22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - C4AF10B039E015142AC254C53ECEE164 /* PBXContainerItemProxy */ = { + BE23A1119F3DC10E8712633AD5835A00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - C6B90A97B264E37532B283F97A116C82 /* PBXContainerItemProxy */ = { + BE963E3D1559F03DD480B6D2067970A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - C713080066FE2B2C84A5383D51B9D000 /* PBXContainerItemProxy */ = { + BEFEF15614B2E006A67F472B76EEC8E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - C71B5B6B6C955AE89BD6DA568E3B4501 /* PBXContainerItemProxy */ = { + BF7742B72166A42511717A8D43C709A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C962994681FE613D24FAA00A427B980C /* PBXContainerItemProxy */ = { + C04948768735FCD3666EACD1E5BED735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - C9C35CEAF53EE1B6985D22C9F198D47A /* PBXContainerItemProxy */ = { + C0FC281A47D9DD07F937CD96AD52827B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - CC18A5489DF232C8C4297720423E58B6 /* PBXContainerItemProxy */ = { + C2386FEBEB4AD2632CE079DDF10387DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - CDE10D7297F56422DC078215D554E6BC /* PBXContainerItemProxy */ = { + C33C0D8300B7D5C95A8008094AB6D07A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - D01CD19268C02ED95A6DDFD74F80B637 /* PBXContainerItemProxy */ = { + C36292AE3ACB6A6DA78FA65006775920 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; + remoteInfo = RNFS; }; - D1735CE986B40FE939920694B7E58F90 /* PBXContainerItemProxy */ = { + C36D27C363F71736EF9F47FC257C6CF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - D2786F928DFB1D14023AD36F42E5D4F4 /* PBXContainerItemProxy */ = { + C4E2090A12CE09D2B4E9069774551FE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - D4CDBD8F43BA9A2AFD45F96E5C60F6E1 /* PBXContainerItemProxy */ = { + C4E2A774734DDFAA97A32802FD0D3C9F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D58BCFF02615797540AA8517FCAB4DFD /* PBXContainerItemProxy */ = { + C60CB397586D0B773D99F837F63C603E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D614B9B5B0BB701CC415CF961C5C19AB /* PBXContainerItemProxy */ = { + C60E58B7E0D11D33ADC5A34A2420D0DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - D7EAD64CE2ADFBC83B1C6CCF0A732322 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - D8F388D80DF0C469256DBB16922BFE20 /* PBXContainerItemProxy */ = { + C84B485A703B0116F99F122E647198DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - DAFC866F4D0D6AF2E6FE29AA2B4BDA94 /* PBXContainerItemProxy */ = { + C930B877EA27782D7A7690227123F49C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - DCA38137F38EA8150A4ED62DAE9B74A1 /* PBXContainerItemProxy */ = { + C9F16B5BACEB9A084176DC6CB37C6FB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - DCE4B64A2432472B939D53A88370DCDE /* PBXContainerItemProxy */ = { + CA6B143E1DA6455FD1A86FF4003EC503 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - DFBA824F01D6ADBF3BF3A1148E7033F1 /* PBXContainerItemProxy */ = { + CC42A6AB3DB851FE251A08502F6F9548 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - E044B96BBAB1657E79E8C9F7A0E8D9A0 /* PBXContainerItemProxy */ = { + CD8DD6DBD3F696B1AEE1FE78BF2DDAD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - E0CBAB09310F4B44C54B036C2D2BA984 /* PBXContainerItemProxy */ = { + CF1BB31E05C1DCE59BF3AE9143E7FAF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - E0E501E93636888464602A331835064C /* PBXContainerItemProxy */ = { + D12B2ECE7728E7941E33BA805F4F58BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - E15017BCD1A00CB3586C6C7847C87D42 /* PBXContainerItemProxy */ = { + D13E8E772FEAA8276DB3080CD8858C18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - E2D177267D2ECA99C3DDF19204F8D1E9 /* PBXContainerItemProxy */ = { + D50537759700D537DFE8010F68101C43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; + remoteInfo = "Flipper-Fmt"; }; - E3551A15246BB63E9617FF974E5E232F /* PBXContainerItemProxy */ = { + D5CF33A35D197A13F8118F64F181D92A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - E661618DB15B3798B3909D3553533D5F /* PBXContainerItemProxy */ = { + D6216BCA6BA2ACA7B51C0173CA6AF3BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - E806CA227A0E08AC1FA9AAD3B42DDC92 /* PBXContainerItemProxy */ = { + DA692A482161F19B5C9574FF39600900 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; }; - E88661A12A5DA7F94A39B9FCBF182E90 /* PBXContainerItemProxy */ = { + DA7E4BE38C3A25B437228AF82DE1B782 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; - remoteInfo = "React-Core-AccessibilityResources"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E890431E9EA62605FBDB09B7733E5AC6 /* PBXContainerItemProxy */ = { + DAC91EF8725417959DDD4B9315DBD2BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E9D01B52815BC6021D939FB98E5C0F98 /* PBXContainerItemProxy */ = { + DB2EFAE4C16DE6EAE560C59EC19F1209 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; - remoteInfo = "Flipper-Fmt"; + remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; + remoteInfo = RNFS; }; - E9EE9DC7F2D5A4402C16581F69A15A39 /* PBXContainerItemProxy */ = { + DC0E95CA1D14A97D9E2B403EB855D3F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - EA04981762812A2D988C1EB02F41B24F /* PBXContainerItemProxy */ = { + DF3B65E601922C3FF05364B6C7A330B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; }; - EA55220DED2AD83822CF238B4F944B65 /* PBXContainerItemProxy */ = { + E019D27ABF06D81B5B41A3DCC4F07998 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - EB59D0D29389062C60C4B108731BD6D6 /* PBXContainerItemProxy */ = { + E3123C17E36A021C4D5779AEB71C6CF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F03BAA792CD146E1B2FC58BB32B753FF /* PBXContainerItemProxy */ = { + E489879F4576FE476A74A2BC75857212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - F202A14495967DBF0E2DBEB92DF0D90B /* PBXContainerItemProxy */ = { + E4A8290874BCE57EB5FB7FEF728E9DF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - F2E11AF8F99D76F4ED8BE10670C60F55 /* PBXContainerItemProxy */ = { + E50BF37BC7F93ACFEE0E3F8A4FB549ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - F545F6A1774FD87E2184007383D5F081 /* PBXContainerItemProxy */ = { + E67D83888D37BC12FC924538E8E054E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; - remoteInfo = RNFS; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - F5B010D8C3FA98B170CD4EC380D3C2DD /* PBXContainerItemProxy */ = { + E75BC00C05925CFF69770064913E1441 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - F5BA1D97846399B0FD01A414909C50FF /* PBXContainerItemProxy */ = { + E80025F2288A660B91498FD2945BDC37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F7212B37600BBF12400B1839AF49B606 /* PBXContainerItemProxy */ = { + E812C4B9E929871FB9F0E2E4AA0B77F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F721C0234A3F81851877C6402AAF2500 /* PBXContainerItemProxy */ = { + E8689765AFF2AEB37521F1B56F2EC51C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - F7EBF9D94EB28BDD10EEFAA3208746A0 /* PBXContainerItemProxy */ = { + E89A18AF65ABBE76C90299EB476C6D63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F94679A5A4B7713E8C160D25AA3BF923 /* PBXContainerItemProxy */ = { + E8DD25419CAEC8F1EB3B8EECB94D5832 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F9486AADF69B09BCEE5F11FBC27938E8 /* PBXContainerItemProxy */ = { + E9813676ED00E13BE1CFA641244E0421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - F98D869F6C1C13E8AD16ABDDE8B5AF86 /* PBXContainerItemProxy */ = { + E9984F3B08505E779B4EB467BFC7C943 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - FBA0E779BA1CF7B3F45066C23C24F8CA /* PBXContainerItemProxy */ = { + EE39006570A35D20320C5018C9EF8280 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - FBC22B3D06FCB79D2BB4470E05535F11 /* PBXContainerItemProxy */ = { + F027D206765B97048312EACAB1BAD45C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + F02E6BD4AB561A59D41CFB1113C026BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - FBF0A4C6AA7FBA0E7FD517EF81C872BA /* PBXContainerItemProxy */ = { + F0890CD7FF41F9BA5A87922A98F84628 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - FC19B9906A271E3AD6D76179076003F6 /* PBXContainerItemProxy */ = { + F342ACF43BADA947AEBCD720885E6B95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - FCD28CB579C5201747EE441DD7EB6A66 /* PBXContainerItemProxy */ = { + F3EFC35B9D9A41DB8A39531A164F8ED5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - FE8AF0AAEF20A8C6816A5C9C1D874D91 /* PBXContainerItemProxy */ = { + F58FE6092281DC892731251E0840B0E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + F630B6D0A1CA8E0191B42A82688915CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + F63D502EED66ABF5AFD95F7B0600B029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + F6B383B5813920F66B17C9D929BAD154 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - FED50BEE89BC52D04883C9DDC2EB855B /* PBXContainerItemProxy */ = { + F6DBB2C612D62813FE7B7073222DADB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + F7F4CFDEF0D1773ABD1CA6BB0F6EFB64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; + FAECE80E3DBC5BA7B28C7F53E293F28B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FB6DF023D761198C5BAFD592DEEE5B33 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FBD2B31A6F2CD75E75600B1078E707B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + FBD524D2D6EB4BA7174845855220507D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + FC192EEC99A887CDB4DF798203250DEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FCFD145F9D075452B405E0998952E928 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + FF7A023B567553B3DDA0AB617E31E9CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ @@ -4280,7 +4280,7 @@ 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libRCT-Folly.a"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1936453FF2A7E3A13063C4917C4D5598 /* RCT-Folly */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "RCT-Folly"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = ""; }; 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; @@ -4399,7 +4399,7 @@ 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2577F299FCB0A19824FE989BE77B8E8F /* React-jsinspector */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsinspector"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 259DD52954379CF383ECF22784D6A9FE /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; @@ -4419,7 +4419,7 @@ 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 269BE773C9482484B70949A40F4EA525 /* React-RCTSettings */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTSettings"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; @@ -4589,7 +4589,7 @@ 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 37592FDAD45752511010F4B06AC57355 /* React-cxxreact */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-cxxreact"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3769B0D8A8579FA9DA028F0106537CBA /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; @@ -4608,7 +4608,7 @@ 3926F3BE35E594AC65D9048174CCB295 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; 39486DD676D4D3A172AE2D468899851A /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; - 396DAFDC3DCFBF31A37A3CC9488C0DDC /* libFlipper-Fmt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Fmt.a"; path = "libFlipper-Fmt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 396DAFDC3DCFBF31A37A3CC9488C0DDC /* Flipper-Fmt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Fmt"; path = "libFlipper-Fmt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 396DE17772DE1303870B88ECE9D68B50 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; @@ -4640,7 +4640,7 @@ 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfig.cpp; path = folly/logging/LogConfig.cpp; sourceTree = ""; }; 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3CA7A9404CCDD6BA22C97F8348CE3209 /* glog */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = glog; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = ""; }; 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; @@ -4850,7 +4850,7 @@ 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* RNScreens */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNScreens; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; @@ -4864,7 +4864,7 @@ 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 52EAEF51874F1DA5B873AD834133B87D /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; 52FCD5EE27524F5121E26C388D7832B5 /* Pods-PocketTorah-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PocketTorah-acknowledgements.plist"; sourceTree = ""; }; - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 52FCF98CEFF94C742080B6965D537AD0 /* react-native-safe-area-context */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "react-native-safe-area-context"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutDescriptorMapperProtocol.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/FlipperKitLayoutDescriptorMapperProtocol.h; sourceTree = ""; }; 532B91993AC65B6E8C8FACE888C9816B /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; @@ -4938,7 +4938,7 @@ 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = ""; }; - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5B3357A1CE67C0BF4AE31936A1BE6888 /* YogaKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YogaKit; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; @@ -5046,7 +5046,7 @@ 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65234B3E668A42D9137B2C7AB051EE37 /* FlipperKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FlipperKit; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; @@ -5057,16 +5057,16 @@ 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; 65C6BC961861AAAE14F506F525154305 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = src/format.cc; sourceTree = ""; }; 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65D0A19C165FA1126B1360680FE6DB12 /* Yoga */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Yoga; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; - 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-perflogger.a"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 666E72807891C591E025A75410CD2A26 /* React-perflogger */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-perflogger"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; 669B5966618B83972380F116A509E736 /* Pods-PocketTorah.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PocketTorah.modulemap"; sourceTree = ""; }; 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6771D231F4C8C5976470A369C474B32E /* React-CoreModules */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-CoreModules"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; @@ -5127,7 +5127,7 @@ 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* CocoaAsyncSocket */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = CocoaAsyncSocket; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; 6D42116BE3B5B169723EEEF644EFDC02 /* Pods-PocketTorah-PocketTorahTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PocketTorah-PocketTorahTests-resources.sh"; sourceTree = ""; }; 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; @@ -5161,7 +5161,7 @@ 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6FFB7B2992BB53405E6B771A5BA1E97D /* DoubleConversion */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DoubleConversion; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; @@ -5314,7 +5314,7 @@ 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 802121F5B756ACBFDD6D08C36246DADD /* React-RCTLinking */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTLinking"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; @@ -5483,12 +5483,12 @@ 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F65F9361F2069CF9E9D751272968DE4 /* RNGestureHandler */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNGestureHandler; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; - 8FD3DD8368ED4B6E773ABAA49C117D42 /* libFlipper-Boost-iOSX.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Boost-iOSX.a"; path = "libFlipper-Boost-iOSX.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FD3DD8368ED4B6E773ABAA49C117D42 /* Flipper-Boost-iOSX */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Boost-iOSX"; path = "libFlipper-Boost-iOSX.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; @@ -5580,7 +5580,7 @@ 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 99D5CD245388DC76AAEF6E1E351A90ED /* Flipper-Folly */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Folly"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 99E59B9A24AC178352AA3756266278F9 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; @@ -5590,7 +5590,7 @@ 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 9A70011370B46387FBFE517906404002 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFS.a; path = libRNFS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A70011370B46387FBFE517906404002 /* RNFS */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNFS; path = libRNFS.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; name = jump_combined_all_macho_gas.S; path = asm/jump_combined_all_macho_gas.S; sourceTree = ""; }; 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; @@ -5705,7 +5705,7 @@ A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; A662CC1CD539C07FDC0F72E802586581 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A68E5A9B69A3BA0FD52CAF7A354EC93B /* React-RCTNetwork */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTNetwork"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; @@ -5756,13 +5756,13 @@ ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.mm; sourceTree = ""; }; ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + ABFEEA82A6C346B22843FBE0B0582182 /* FBReactNativeSpec */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FBReactNativeSpec; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; AC3F7E448EC607E288DAA4610391FA42 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ACBB7F62B267CC7C9BBBAE41DE94743B /* Flipper-PeerTalk */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-PeerTalk"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; @@ -5948,7 +5948,7 @@ BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; - BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + BD71E2539823621820F84384064C253A /* React-Core */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-Core"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; @@ -5988,7 +5988,7 @@ C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C1A919103EAC9813D236486C34FC0A21 /* React-RCTVibration */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTVibration"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandler.cpp; path = folly/logging/StandardLogHandler.cpp; sourceTree = ""; }; @@ -6056,7 +6056,7 @@ C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; C8CFACCE61BAE5DF0661A0825C68FBB6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C8D88C768B9A00B5E42A95E45ADF8EE7 /* libPods-PocketTorah.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PocketTorah.a"; path = "libPods-PocketTorah.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C8D88C768B9A00B5E42A95E45ADF8EE7 /* Pods-PocketTorah */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-PocketTorah"; path = "libPods-PocketTorah.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; @@ -6182,7 +6182,7 @@ D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D5C775614AC76D44CECB6BE08B022F1F /* ReactCommon */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = ReactCommon; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; D5F318767A8CDCC692929B7821190527 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; @@ -6224,7 +6224,7 @@ D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; D9A49F07AB5FE15931466D30262AE2DD /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D9F334F2E90E3EE462FC4192AF5C03BD /* React-jsi */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsi"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; DA077B18475E1915605A0E41B031F042 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; @@ -6272,13 +6272,13 @@ DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; DFAE3372899549E5F99D2567017DFFD0 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; DFE3232BFE2F18E14C0DA6E72BCEEDB0 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E00BE2A3146698E81A8F9D00E8F93A6C /* Flipper-Glog */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Glog"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; E06156AB9F90D4078A821F4DBCA78BCC /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - E10026447591A19AA0C2032610FA3526 /* libPods-PocketTorah-PocketTorahTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PocketTorah-PocketTorahTests.a"; path = "libPods-PocketTorah-PocketTorahTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E10026447591A19AA0C2032610FA3526 /* Pods-PocketTorah-PocketTorahTests */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-PocketTorah-PocketTorahTests"; path = "libPods-PocketTorah-PocketTorahTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; E11668202A90500738C421568FB750E8 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; @@ -6330,7 +6330,7 @@ E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E6A16705C69FC7DE11C2469A4A0F8358 /* React-RCTText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTText"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E6B4B3B76EE9F4466C81E66B63B5E8A6 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; @@ -6353,7 +6353,7 @@ E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E93F701CA8EB196D77AE99E094D873E4 /* Flipper */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Flipper; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; @@ -6405,7 +6405,7 @@ EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EEDBF403E8E0B3885E65C2741B536BC5 /* React-RCTImage */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTImage"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileHandlerFactory.cpp; path = folly/logging/FileHandlerFactory.cpp; sourceTree = ""; }; @@ -6443,7 +6443,7 @@ F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F2E7C88DFCD460A4B46B913ADEB8A641 /* React-jsiexecutor */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsiexecutor"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; F30DE6048E3096965E7D9B6F0C94383D /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; @@ -6459,8 +6459,8 @@ F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategoryConfig.cpp; path = folly/logging/LogCategoryConfig.cpp; sourceTree = ""; }; F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; F48945E993F2144306151E8426C88528 /* fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "fmt-prefix.pch"; sourceTree = ""; }; - F4BDA69E3BCB0166D49FB679ABADCA00 /* libfmt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libfmt.a; path = libfmt.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F4C55DC590A399974FB9EC4D06596AB0 /* libRNSound.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNSound.a; path = libRNSound.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F4BDA69E3BCB0166D49FB679ABADCA00 /* fmt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = fmt; path = libfmt.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F4C55DC590A399974FB9EC4D06596AB0 /* RNSound */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNSound; path = libRNSound.a; sourceTree = BUILT_PRODUCTS_DIR; }; F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = ""; }; @@ -6486,7 +6486,7 @@ F6FCBA5DFDBCD62A039E7A04DE108AE0 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; F70A8690C0867CC4864259708F225ECF /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F71EBF73F354B475D465FF6DE9A66707 /* React-RCTBlob */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTBlob"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionManager.h; path = folly/ssl/SSLSessionManager.h; sourceTree = ""; }; F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; @@ -6504,7 +6504,7 @@ F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F958876A082BF810B342435CE3FB5AF6 /* RCTTypeSafety */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RCTTypeSafety; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; @@ -6530,7 +6530,7 @@ FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibevent.a; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* libevent */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libevent; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; @@ -6561,9 +6561,9 @@ FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE6D792B6328AAF68E46924D7F466631 /* React-Core-AccessibilityResources */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "React-Core-AccessibilityResources"; path = AccessibilityResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; FE7AFD0430909142721151DD04A3B50D /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE7B9294FF05AAFD1653E2104E10844A /* React-RCTAnimation */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTAnimation"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; FE8EF9E52E0E24FDA6C40C2A0B5630EB /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; @@ -6580,298 +6580,298 @@ FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; FFD2B50A1A445A87CDF5E2597F0AA2FE /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFDC7746794AB17CFB7150820479DF40 /* Flipper-RSocket */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-RSocket"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 18F23342CE0C00F1925904E9DC2EE294 /* Frameworks */ = { + 02E29EFA496305C4DC062BA76629B2CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1A17792396422005AAB121AAFC9E25C1 /* Frameworks */ = { + 04F465FF2BCBFED7A7D5406CBE4663B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1A6751061AF1E30F5DE0BA4EC3F74552 /* Frameworks */ = { + 0AED14C891F3774ADDB22F7F20984650 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1C17790C3CD8E4F11F968FFEA469BF2E /* Frameworks */ = { + 0DD97F907B2BE453B055AFA347C480A2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1D91544BCD3EC1476873FAD0DA7DC2B5 /* Frameworks */ = { + 13AE81B038F4830B22EEA7BC5981AE08 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1DDC87AE74C7D5E74C277C8F01229E3B /* Frameworks */ = { + 15A62227F5C4FBD0EAC72084317AB303 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 20BA100C85EA53F9E47A90738553B93B /* Frameworks */ = { + 1D52D52B6A74F41BD57BB1F2A6CA8716 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 28595E6A0B5C6ACABF86B6E277FA083F /* Frameworks */ = { + 26848D3B873B294484052C0745E2D546 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2B5D0B2CE49E29FD9514186E329F5EDC /* Frameworks */ = { + 300A8E3D1D6D3B0834EF5880382E0162 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 32C9A2D825699E0F06A9D8B730B6C706 /* Frameworks */ = { + 3391273B6FFD22F3C560D814C6B7C102 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 368EA38699A6A38F42BB201DD628FB94 /* Frameworks */ = { + 33CD893EB0FADD7FB92DB260B271DD08 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3B634DFA44193ED6D4649980A7DC565B /* Frameworks */ = { + 4341A7C3149A83B7966D4D1AEA14D6B3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4379CAF1DB03818BA27AF9C46364DEAC /* Frameworks */ = { + 44D137D5E6EDEE0A0D4073E97DB35852 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 43B45DF5736734BB241D89C59AB6B063 /* Frameworks */ = { + 596DA136541327866A348DE89B29FB7B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 45DE0E46676F8DA0160E0E8BC44846A7 /* Frameworks */ = { + 5BE79316AF724DA3E2BEB71213763782 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4848D17158026B3A935D23CDCE963B48 /* Frameworks */ = { + 63CB3BD98A594CECCEE7F399839AC180 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3B1036B34A5811D7EF2194555F619F /* Frameworks */ = { + 6732A1F3452D4F3B8674C207EE7B7D80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 550A6DE0CE7CE468A6BC3B6AC7AB06CB /* Frameworks */ = { + 673381158C671B137FC040900C0A32A1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 609A7CBF5C70EE8E6CEF4EB198AB464E /* Frameworks */ = { + 6B6BF135B1831E21747DC25CF5162808 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6189DCDAA8C6BBBC339336755DB1C749 /* Frameworks */ = { + 8A7630B2BAF78CA186001EF968B469C4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 67F99AC60DC5C6012976CE01E7335320 /* Frameworks */ = { + 8E500E26A9D60B43A7B722A5C787B967 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 68E4DC721715B13364B7CFA56B002488 /* Frameworks */ = { + 9015F40B0B4657A8111DEC82F9EBEB33 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 68F32031FF55642CB5544BF52F1798B1 /* Frameworks */ = { + 934717939D80223DBD83FEE9F7BEA08A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6A516DDC76DC7B84B055A0690B7A98CB /* Frameworks */ = { + A4733A17DB59A6F590FE8082EBFCF503 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6A8BD8A07C403D0C392C06E9FABFCBA7 /* Frameworks */ = { + A866884155139477EFA8A6313ABDF527 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7B92D5EBD2956C16DFC73683122CE982 /* Frameworks */ = { + AA0B713D286FCA6BFD74C5F624BEF51C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 818425A526601B7251698070986792CB /* Frameworks */ = { + AD3429FD68C344DB26B43DF756EB6A15 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 975D4540158AFE630EB9223AAF8C7B65 /* Frameworks */ = { + B023F73BEEB96152996C90C69BD5215D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9AA40A3EC4C8707B9E5F50AFC2A07A04 /* Frameworks */ = { + B384AD2A3EEB516EB818AE80479A3DB2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9BC1A96491ED6159ACCC4F40E4472FE3 /* Frameworks */ = { + B52C746CAF5B059F32DA3026596B5A28 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9D4F1691C2FA529B1F6AB92314453E5D /* Frameworks */ = { + B8857DFE1E7C3870D67E72961917D7BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A3765ED6966B9C0F27EDCDDBE349E8E0 /* Frameworks */ = { + BBA254767BC5E5D8758718A3C3D72F3B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A3AFF25E8F3709177BC60958DC176B50 /* Frameworks */ = { + C2692B7353E075528E31B5E639247A55 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { + C2731375FECE9C66105B919EC69407D9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AEC50A43C7CC8565A8CC7E310C768904 /* Frameworks */ = { + C412BF6B09C03F4C8AFF878DFE08E4B2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B5FCFD6FE76F35C6B3276F88D677A442 /* Frameworks */ = { + CEC38F0634DD0F78E3AAA25E956A0E91 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C8856B8BB27508E2192DC879157DAABF /* Frameworks */ = { + D0C22CABA35109A74D421A88B250ADC9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DA8EA8F494BE85BA85FE1722166570FB /* Frameworks */ = { + D86A77DFCE5334A6BC4ECD33EF8D636B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DFA4CA8A81FF3C6C3C55BB3B10D7762C /* Frameworks */ = { + E8E148D6250F2E49985A15B5087B9CAA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E2C0E4526A1D28A9D231C3A7BEDFE5CA /* Frameworks */ = { + ED600C0E6596FB246023B36364C88E96 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F9379B67243E034DB38AA34AC55AB1A8 /* Frameworks */ = { + F16D47E455EA05F7173E03C27DBB2BA7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FA2E6D635462AB16C9F0B5445FD1E070 /* Frameworks */ = { + F4E0CE0A9B54BF4081A80860AE4094D7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -8308,8 +8308,8 @@ F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */, E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */, 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */, - B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */, 6DB68D666DB329572E746C8E51908C2E /* Bits.h */, + B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */, 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */, 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */, 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */, @@ -8409,8 +8409,8 @@ DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */, 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */, BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */, - 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */, F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */, + 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */, F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */, D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */, 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */, @@ -8436,8 +8436,8 @@ C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */, 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */, D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */, - ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */, 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */, + ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */, 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */, 325707970240FB975CE1DAA9DE525C8B /* Memory.h */, 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */, @@ -8489,8 +8489,8 @@ D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */, 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */, 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */, - 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */, E1932535513730B312147D7069EC14C2 /* Singleton.h */, + 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */, E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */, 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */, D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */, @@ -8999,55 +8999,6 @@ path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - A22C440004815AE326A05D264C9B7E27 /* Products */ = { - isa = PBXGroup; - children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - 8FD3DD8368ED4B6E773ABAA49C117D42 /* libFlipper-Boost-iOSX.a */, - 396DAFDC3DCFBF31A37A3CC9488C0DDC /* libFlipper-Fmt.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - F4BDA69E3BCB0166D49FB679ABADCA00 /* libfmt.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */, - C8D88C768B9A00B5E42A95E45ADF8EE7 /* libPods-PocketTorah.a */, - E10026447591A19AA0C2032610FA3526 /* libPods-PocketTorah-PocketTorahTests.a */, - 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 9A70011370B46387FBFE517906404002 /* libRNFS.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - F4C55DC590A399974FB9EC4D06596AB0 /* libRNSound.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - ); - name = Products; - sourceTree = ""; - }; A46474BE3248055E25E3D6E4198F1D62 /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -9261,6 +9212,55 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = "
This source code is licensed under the MIT license found in the LICENSE file in the root - * directory of this source tree. - */ -package com.pockettorah; - -import android.content.Context; -import com.facebook.flipper.android.AndroidFlipperClient; -import com.facebook.flipper.android.utils.FlipperUtils; -import com.facebook.flipper.core.FlipperClient; -import com.facebook.flipper.plugins.crashreporter.CrashReporterPlugin; -import com.facebook.flipper.plugins.databases.DatabasesFlipperPlugin; -import com.facebook.flipper.plugins.fresco.FrescoFlipperPlugin; -import com.facebook.flipper.plugins.inspector.DescriptorMapping; -import com.facebook.flipper.plugins.inspector.InspectorFlipperPlugin; -import com.facebook.flipper.plugins.network.FlipperOkhttpInterceptor; -import com.facebook.flipper.plugins.network.NetworkFlipperPlugin; -import com.facebook.flipper.plugins.react.ReactFlipperPlugin; -import com.facebook.flipper.plugins.sharedpreferences.SharedPreferencesFlipperPlugin; -import com.facebook.react.ReactInstanceManager; -import com.facebook.react.bridge.ReactContext; -import com.facebook.react.modules.network.NetworkingModule; -import okhttp3.OkHttpClient; - -public class ReactNativeFlipper { - public static void initializeFlipper(Context context, ReactInstanceManager reactInstanceManager) { - if (FlipperUtils.shouldEnableFlipper(context)) { - final FlipperClient client = AndroidFlipperClient.getInstance(context); - - client.addPlugin(new InspectorFlipperPlugin(context, DescriptorMapping.withDefaults())); - client.addPlugin(new ReactFlipperPlugin()); - client.addPlugin(new DatabasesFlipperPlugin(context)); - client.addPlugin(new SharedPreferencesFlipperPlugin(context)); - client.addPlugin(CrashReporterPlugin.getInstance()); - - NetworkFlipperPlugin networkFlipperPlugin = new NetworkFlipperPlugin(); - NetworkingModule.setCustomClientBuilder( - new NetworkingModule.CustomClientBuilder() { - @Override - public void apply(OkHttpClient.Builder builder) { - builder.addNetworkInterceptor(new FlipperOkhttpInterceptor(networkFlipperPlugin)); - } - }); - client.addPlugin(networkFlipperPlugin); - client.start(); - - // Fresco Plugin needs to ensure that ImagePipelineFactory is initialized - // Hence we run if after all native modules have been initialized - ReactContext reactContext = reactInstanceManager.getCurrentReactContext(); - if (reactContext == null) { - reactInstanceManager.addReactInstanceEventListener( - new ReactInstanceManager.ReactInstanceEventListener() { - @Override - public void onReactContextInitialized(ReactContext reactContext) { - reactInstanceManager.removeReactInstanceEventListener(this); - reactContext.runOnNativeModulesQueueThread( - new Runnable() { - @Override - public void run() { - client.addPlugin(new FrescoFlipperPlugin()); - } - }); - } - }); - } else { - client.addPlugin(new FrescoFlipperPlugin()); - } - } - } -} diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 089aee8cd..b83b4eb65 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -6,6 +6,7 @@ diff --git a/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf b/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf new file mode 100644 index 000000000..453eacc8a Binary files /dev/null and b/android/app/src/main/assets/fonts/StamAshkenazCLM.ttf differ diff --git a/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf b/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf deleted file mode 100644 index bb7594ffb..000000000 Binary files a/android/app/src/main/assets/fonts/TaameyFrank-taamim-fix.ttf and /dev/null differ diff --git a/android/app/src/main/assets/fonts/Taamey_D.ttf b/android/app/src/main/assets/fonts/Taamey_D.ttf new file mode 100644 index 000000000..6cfc91a77 Binary files /dev/null and b/android/app/src/main/assets/fonts/Taamey_D.ttf differ diff --git a/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf b/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf deleted file mode 100644 index e09c55d49..000000000 Binary files a/android/app/src/main/assets/fonts/stamashkenazclm-webfont.ttf and /dev/null differ diff --git a/android/app/src/main/java/com/pockettorah/MainActivity.java b/android/app/src/main/java/com/pockettorah/MainActivity.java index 06b8123e5..c5960be71 100644 --- a/android/app/src/main/java/com/pockettorah/MainActivity.java +++ b/android/app/src/main/java/com/pockettorah/MainActivity.java @@ -1,4 +1,6 @@ package com.pockettorah; +import expo.modules.ReactActivityDelegateWrapper; +import com.facebook.react.ReactActivityDelegate; import com.facebook.react.ReactActivity; @@ -12,4 +14,11 @@ public class MainActivity extends ReactActivity { protected String getMainComponentName() { return "PocketTorah"; } + + @Override + protected ReactActivityDelegate createReactActivityDelegate() { + return new ReactActivityDelegateWrapper(this, BuildConfig.IS_NEW_ARCHITECTURE_ENABLED, + new ReactActivityDelegate(this, getMainComponentName()) + ); + } } diff --git a/android/app/src/main/java/com/pockettorah/MainApplication.java b/android/app/src/main/java/com/pockettorah/MainApplication.java index 38d110d0e..99c69f210 100644 --- a/android/app/src/main/java/com/pockettorah/MainApplication.java +++ b/android/app/src/main/java/com/pockettorah/MainApplication.java @@ -1,4 +1,7 @@ package com.pockettorah; +import android.content.res.Configuration; +import expo.modules.ApplicationLifecycleDispatcher; +import expo.modules.ReactNativeHostWrapper; import android.app.Application; import android.content.Context; @@ -7,14 +10,19 @@ import com.facebook.react.ReactInstanceManager; import com.facebook.react.ReactNativeHost; import com.facebook.react.ReactPackage; +import com.facebook.react.flipper.ReactNativeFlipper; +import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint; +import com.facebook.react.defaults.DefaultReactNativeHost; import com.facebook.soloader.SoLoader; import java.lang.reflect.InvocationTargetException; import java.util.List; +import com.facebook.react.modules.i18nmanager.I18nUtil; + public class MainApplication extends Application implements ReactApplication { private final ReactNativeHost mReactNativeHost = - new ReactNativeHost(this) { + new DefaultReactNativeHost(this) { @Override public boolean getUseDeveloperSupport() { return BuildConfig.DEBUG; @@ -43,38 +51,22 @@ public ReactNativeHost getReactNativeHost() { @Override public void onCreate() { super.onCreate(); + + I18nUtil sharedI18nUtilInstance = I18nUtil.getInstance(); + sharedI18nUtilInstance.allowRTL(this, true); + SoLoader.init(this, /* native exopackage */ false); - initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) { + // If you opted-in for the New Architecture, we load the native entry point for this app. + DefaultNewArchitectureEntryPoint.load(); + } + ReactNativeFlipper.initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); + ApplicationLifecycleDispatcher.onApplicationCreate(this); } - /** - * Loads Flipper in React Native templates. Call this in the onCreate method with something like - * initializeFlipper(this, getReactNativeHost().getReactInstanceManager()); - * - * @param context - * @param reactInstanceManager - */ - private static void initializeFlipper( - Context context, ReactInstanceManager reactInstanceManager) { - if (BuildConfig.DEBUG) { - try { - /* - We use reflection here to pick up the class that initializes Flipper, - since Flipper library is not available in release mode - */ - Class> aClass = Class.forName("com.pockettorah.ReactNativeFlipper"); - aClass - .getMethod("initializeFlipper", Context.class, ReactInstanceManager.class) - .invoke(null, context, reactInstanceManager); - } catch (ClassNotFoundException e) { - e.printStackTrace(); - } catch (NoSuchMethodException e) { - e.printStackTrace(); - } catch (IllegalAccessException e) { - e.printStackTrace(); - } catch (InvocationTargetException e) { - e.printStackTrace(); - } - } + @Override + public void onConfigurationChanged(Configuration newConfig) { + super.onConfigurationChanged(newConfig); + ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig); } } diff --git a/android/build.gradle b/android/build.gradle index e64d31e5f..cc4e4f6eb 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -2,37 +2,22 @@ buildscript { ext { - buildToolsVersion = "30.0.2" + buildToolsVersion = "34.0.0" minSdkVersion = 21 - compileSdkVersion = 30 - targetSdkVersion = 30 - ndkVersion = "20.1.5948944" + compileSdkVersion = 34 + targetSdkVersion = 34 + ndkVersion = "25.1.8937393" + kotlinVersion = "1.8.0" } repositories { google() mavenCentral() } dependencies { - classpath("com.android.tools.build:gradle:4.2.1") - // NOTE: Do not place your application dependencies here; they belong - // in the individual module build.gradle files + classpath("com.android.tools.build:gradle:8.2.2") + classpath("com.facebook.react:react-native-gradle-plugin") + classpath("org.jetbrains.kotlin:kotlin-gradle-plugin") } } -allprojects { - repositories { - mavenCentral() - mavenLocal() - maven { - // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm - url("$rootDir/../node_modules/react-native/android") - } - maven { - // Android JSC is installed from npm - url("$rootDir/../node_modules/jsc-android/dist") - } - - google() - maven { url 'https://www.jitpack.io' } - } -} +apply plugin: "com.facebook.react.rootproject" diff --git a/android/gradle.properties b/android/gradle.properties index dbcbe6f20..a46a5b90f 100644 --- a/android/gradle.properties +++ b/android/gradle.properties @@ -9,8 +9,8 @@ # 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 +# Default value: -Xmx512m -XX:MaxMetaspaceSize=256m +org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m # When configured, Gradle will run in incubating parallel mode. # This option should only be used with decoupled projects. More details, visit @@ -24,5 +24,18 @@ android.useAndroidX=true # Automatically convert third-party libraries to use AndroidX android.enableJetifier=true -# Version of flipper SDK to use with React Native -FLIPPER_VERSION=0.93.0 +# Use this property to specify which architecture you want to build. +# You can also override it from the CLI using +# ./gradlew -PreactNativeArchitectures=x86_64 +reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64 + +# Use this property to enable support to the new architecture. +# This will allow you to use TurboModules and the Fabric render in +# your application. You should enable this flag either if you want +# to write custom TurboModules/Fabric components OR use libraries that +# are providing them. +newArchEnabled=false + +# Use this property to enable or disable the Hermes JS engine. +# If set to false, you will be using JSC instead. +hermesEnabled=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties index 7665b0fa9..e6aba2515 100644 --- a/android/gradle/wrapper/gradle-wrapper.properties +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,7 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.9-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip +networkTimeout=10000 +validateDistributionUrl=true zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists diff --git a/android/gradlew b/android/gradlew index 4f906e0c8..0adc8e1a5 100755 --- a/android/gradlew +++ b/android/gradlew @@ -1,7 +1,7 @@ -#!/usr/bin/env sh +#!/bin/sh # -# Copyright 2015 the original author or authors. +# Copyright © 2015-2021 the original authors. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,67 +17,99 @@ # ############################################################################## -## -## Gradle start up script for UN*X -## +# +# Gradle start up script for POSIX generated by Gradle. +# +# Important for running: +# +# (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is +# noncompliant, but you have some other compliant shell such as ksh or +# bash, then to run this script, type that shell name before the whole +# command line, like: +# +# ksh Gradle +# +# Busybox and similar reduced shells will NOT work, because this script +# requires all of these POSIX shell features: +# * functions; +# * expansions «$var», «${var}», «${var:-default}», «${var+SET}», +# «${var#prefix}», «${var%suffix}», and «$( cmd )»; +# * compound commands having a testable exit status, especially «case»; +# * various built-in commands including «command», «set», and «ulimit». +# +# Important for patching: +# +# (2) This script targets any POSIX shell, so it avoids extensions provided +# by Bash, Ksh, etc; in particular arrays are avoided. +# +# The "traditional" practice of packing multiple parameters into a +# space-separated string is a well documented source of bugs and security +# problems, so this is (mostly) avoided, by progressively accumulating +# options in "$@", and eventually passing that to Java. +# +# Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS, +# and GRADLE_OPTS) rely on word-splitting, this is performed explicitly; +# see the in-line comments for details. +# +# There are tweaks for specific operating systems such as AIX, CygWin, +# Darwin, MinGW, and NonStop. +# +# (3) This script is generated from the Groovy template +# https://github.com/gradle/gradle/blob/HEAD/subprojects/plugins/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt +# within the Gradle project. +# +# You can find Gradle at https://github.com/gradle/gradle/. +# ############################################################################## # 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 +app_path=$0 + +# Need this for daisy-chained symlinks. +while + APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path + [ -h "$app_path" ] +do + ls=$( ls -ld "$app_path" ) + link=${ls#*' -> '} + case $link in #( + /*) app_path=$link ;; #( + *) app_path=$APP_HOME$link ;; + esac done -SAVED="`pwd`" -cd "`dirname \"$PRG\"`/" >/dev/null -APP_HOME="`pwd -P`" -cd "$SAVED" >/dev/null -APP_NAME="Gradle" -APP_BASE_NAME=`basename "$0"` - -# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. -DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' +# This is normally unused +# shellcheck disable=SC2034 +APP_BASE_NAME=${0##*/} +# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036) +APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit # Use the maximum available, or set MAX_FD != -1 to use that value. -MAX_FD="maximum" +MAX_FD=maximum warn () { echo "$*" -} +} >&2 die () { echo echo "$*" echo exit 1 -} +} >&2 # OS specific support (must be 'true' or 'false'). cygwin=false msys=false darwin=false nonstop=false -case "`uname`" in - CYGWIN* ) - cygwin=true - ;; - Darwin* ) - darwin=true - ;; - MINGW* ) - msys=true - ;; - NONSTOP* ) - nonstop=true - ;; +case "$( uname )" in #( + CYGWIN* ) cygwin=true ;; #( + Darwin* ) darwin=true ;; #( + MSYS* | MINGW* ) msys=true ;; #( + NONSTOP* ) nonstop=true ;; esac CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar @@ -87,9 +119,9 @@ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 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" + JAVACMD=$JAVA_HOME/jre/sh/java else - JAVACMD="$JAVA_HOME/bin/java" + JAVACMD=$JAVA_HOME/bin/java fi if [ ! -x "$JAVACMD" ] ; then die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME @@ -98,88 +130,120 @@ 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. + JAVACMD=java + if ! command -v java >/dev/null 2>&1 + then + 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 fi # Increase the maximum file descriptors if we can. -if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then - MAX_FD_LIMIT=`ulimit -H -n` - if [ $? -eq 0 ] ; then - if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then - MAX_FD="$MAX_FD_LIMIT" - fi - ulimit -n $MAX_FD - if [ $? -ne 0 ] ; then - warn "Could not set maximum file descriptor limit: $MAX_FD" - fi - else - warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" - fi +if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then + case $MAX_FD in #( + max*) + # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + MAX_FD=$( ulimit -H -n ) || + warn "Could not query maximum file descriptor limit" + esac + case $MAX_FD in #( + '' | soft) :;; #( + *) + # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked. + # shellcheck disable=SC3045 + ulimit -n "$MAX_FD" || + warn "Could not set maximum file descriptor limit to $MAX_FD" + esac 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 +# Collect all arguments for the java command, stacking in reverse order: +# * args from the command line +# * the main class name +# * -classpath +# * -D...appname settings +# * --module-path (only if needed) +# * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables. # For Cygwin or MSYS, switch paths to Windows format before running java -if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then - APP_HOME=`cygpath --path --mixed "$APP_HOME"` - CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` - - JAVACMD=`cygpath --unix "$JAVACMD"` - - # We build the pattern for arguments to be converted via cygpath - ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` - SEP="" - for dir in $ROOTDIRSRAW ; do - ROOTDIRS="$ROOTDIRS$SEP$dir" - SEP="|" - done - OURCYGPATTERN="(^($ROOTDIRS))" - # Add a user-defined pattern to the cygpath arguments - if [ "$GRADLE_CYGPATTERN" != "" ] ; then - OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" - fi +if "$cygwin" || "$msys" ; then + APP_HOME=$( cygpath --path --mixed "$APP_HOME" ) + CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" ) + + JAVACMD=$( cygpath --unix "$JAVACMD" ) + # 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\"" + for arg do + if + case $arg in #( + -*) false ;; # don't mess with options #( + /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath + [ -e "$t" ] ;; #( + *) false ;; + esac + then + arg=$( cygpath --path --ignore --mixed "$arg" ) fi - i=`expr $i + 1` + # Roll the args list around exactly as many times as the number of + # args, so each arg winds up back in the position where it started, but + # possibly modified. + # + # NB: a `for` loop captures its iteration list before it begins, so + # changing the positional parameters here affects neither the number of + # iterations, nor the values presented in `arg`. + shift # remove old arg + set -- "$@" "$arg" # push replacement arg done - case $i in - 0) set -- ;; - 1) set -- "$args0" ;; - 2) set -- "$args0" "$args1" ;; - 3) set -- "$args0" "$args1" "$args2" ;; - 4) set -- "$args0" "$args1" "$args2" "$args3" ;; - 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; - 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; - 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; - 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; - 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; - esac fi -# Escape application args -save () { - for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done - echo " " -} -APP_ARGS=`save "$@"` -# Collect all arguments for the java command, following the shell quoting and substitution rules -eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" +# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. +DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' + +# Collect all arguments for the java command; +# * $DEFAULT_JVM_OPTS, $JAVA_OPTS, and $GRADLE_OPTS can contain fragments of +# shell script including quotes and variable substitutions, so put them in +# double quotes to make sure that they get re-expanded; and +# * put everything else in single quotes, so that it's not re-expanded. + +set -- \ + "-Dorg.gradle.appname=$APP_BASE_NAME" \ + -classpath "$CLASSPATH" \ + org.gradle.wrapper.GradleWrapperMain \ + "$@" + +# Stop when "xargs" is not available. +if ! command -v xargs >/dev/null 2>&1 +then + die "xargs is not available" +fi + +# Use "xargs" to parse quoted args. +# +# With -n1 it outputs one arg per line, with the quotes and backslashes removed. +# +# In Bash we could simply go: +# +# readarray ARGS < <( xargs -n1 <<<"$var" ) && +# set -- "${ARGS[@]}" "$@" +# +# but POSIX shell has neither arrays nor command substitution, so instead we +# post-process each arg (as a line of input to sed) to backslash-escape any +# character that might be a shell metacharacter, then use eval to reverse +# that process (while maintaining the separation between arguments), and wrap +# the whole thing up as a single "set" statement. +# +# This will of course break if any of these variables contains a newline or +# an unmatched quote. +# + +eval "set -- $( + printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" | + xargs -n1 | + sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' | + tr '\n' ' ' + )" '"$@"' exec "$JAVACMD" "$@" diff --git a/android/link-assets-manifest.json b/android/link-assets-manifest.json new file mode 100644 index 000000000..de62d15d5 --- /dev/null +++ b/android/link-assets-manifest.json @@ -0,0 +1,13 @@ +{ + "migIndex": 1, + "data": [ + { + "path": "fonts/Taamey_D.ttf", + "sha1": "9c06290612af28435aed3c67475c17375a0c7670" + }, + { + "path": "fonts/StamAshkenazCLM.ttf", + "sha1": "e7921e30f92c274525ffa6c8beec2a8d8f449c91" + } + ] +} diff --git a/android/settings.gradle b/android/settings.gradle index 1f767d86d..781bc935b 100644 --- a/android/settings.gradle +++ b/android/settings.gradle @@ -1,3 +1,7 @@ rootProject.name = 'PocketTorah' apply from: file("../node_modules/@react-native-community/cli-platform-android/native_modules.gradle"); applyNativeModulesSettingsGradle(settings) include ':app' +includeBuild('../node_modules/@react-native/gradle-plugin') + +apply from: new File(["node", "--print", "require.resolve('expo/package.json')"].execute(null, rootDir).text.trim(), "../scripts/autolinking.gradle") +useExpoModules() \ No newline at end of file diff --git a/babel.config.js b/babel.config.js index f842b77fc..d4461aec7 100644 --- a/babel.config.js +++ b/babel.config.js @@ -1,3 +1,4 @@ module.exports = { - presets: ['module:metro-react-native-babel-preset'], + presets: ['module:@react-native/babel-preset'], + comments: true, }; diff --git a/data/aliyah.json b/data/aliyah.json deleted file mode 100644 index d580fe33a..000000000 --- a/data/aliyah.json +++ /dev/null @@ -1,10838 +0,0 @@ -{ - "parshiot": { - "parsha": [ - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "2:3", - "_numverses": "34" - }, - { - "_num": "2", - "_begin": "2:4", - "_end": "2:19", - "_numverses": "16" - }, - { - "_num": "3", - "_begin": "2:20", - "_end": "3:21", - "_numverses": "27" - }, - { - "_num": "4", - "_begin": "3:22", - "_end": "4:18", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "4:19", - "_end": "4:22", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "4:23", - "_end": "5:24", - "_numverses": "28" - }, - { - "_num": "7", - "_begin": "5:25", - "_end": "6:8", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "6:5", - "_end": "6:8", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:5" - }, - { - "_num": "2", - "_begin": "1:6", - "_end": "1:8" - }, - { - "_num": "3", - "_begin": "1:9", - "_end": "1:13" - }, - { - "_num": "4", - "_begin": "1:14", - "_end": "1:19" - }, - { - "_num": "5", - "_begin": "1:20", - "_end": "1:23" - }, - { - "_num": "6", - "_begin": "1:24", - "_end": "1:31" - }, - { - "_num": "7", - "_begin": "2:1", - "_end": "2:3" - }, - { - "_num": "M", - "_begin": "2:1", - "_end": "2:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:4", - "_end": "2:9" - }, - { - "_num": "2", - "_begin": "2:10", - "_end": "2:19" - }, - { - "_num": "3", - "_begin": "2:20", - "_end": "2:25" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:21" - }, - { - "_num": "5", - "_begin": "3:22", - "_end": "3:24" - }, - { - "_num": "6", - "_begin": "4:1", - "_end": "4:18" - }, - { - "_num": "7", - "_begin": "4:19", - "_end": "4:26" - }, - { - "_num": "M", - "_begin": "4:23", - "_end": "4:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:5" - }, - { - "_num": "2", - "_begin": "5:6", - "_end": "5:8" - }, - { - "_num": "3", - "_begin": "5:9", - "_end": "5:14" - }, - { - "_num": "4", - "_begin": "5:15", - "_end": "5:20" - }, - { - "_num": "5", - "_begin": "5:21", - "_end": "5:24" - }, - { - "_num": "6", - "_begin": "5:25", - "_end": "5:31" - }, - { - "_num": "7", - "_begin": "5:32", - "_end": "6:8" - }, - { - "_num": "M", - "_begin": "6:5", - "_end": "6:8" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bereshit", - "_num": "1", - "_hebrew": "בְּרֵאשִׁית", - "_verse": "Genesis 1:1 - 6:8", - "_haftara": "Isaiah 42:5 - 43:10", - "_haftaraLength": "31", - "_sephardic": "Isaiah 42:5 - 42:21", - "maftirOffset": "164" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:9", - "_end": "6:22", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "7:1", - "_end": "7:16", - "_numverses": "16" - }, - { - "_num": "3", - "_begin": "7:17", - "_end": "8:14", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "8:15", - "_end": "9:7", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "9:8", - "_end": "9:17", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "9:18", - "_end": "10:32", - "_numverses": "44" - }, - { - "_num": "7", - "_begin": "11:1", - "_end": "11:32", - "_numverses": "32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:9", - "_end": "6:16" - }, - { - "_num": "2", - "_begin": "6:17", - "_end": "6:19" - }, - { - "_num": "3", - "_begin": "6:20", - "_end": "6:22" - }, - { - "_num": "4", - "_begin": "7:1", - "_end": "7:9" - }, - { - "_num": "5", - "_begin": "7:10", - "_end": "7:16" - }, - { - "_num": "6", - "_begin": "7:17", - "_end": "7:24" - }, - { - "_num": "7", - "_begin": "8:1", - "_end": "8:14" - }, - { - "_num": "M", - "_begin": "8:12", - "_end": "8:14" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:15", - "_end": "8:22" - }, - { - "_num": "2", - "_begin": "9:1", - "_end": "9:7" - }, - { - "_num": "3", - "_begin": "9:8", - "_end": "9:17" - }, - { - "_num": "4", - "_begin": "9:18", - "_end": "9:29" - }, - { - "_num": "5", - "_begin": "10:1", - "_end": "10:14" - }, - { - "_num": "6", - "_begin": "10:15", - "_end": "10:20" - }, - { - "_num": "7", - "_begin": "10:21", - "_end": "10:32" - }, - { - "_num": "M", - "_begin": "10:26", - "_end": "10:32" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:1", - "_end": "11:4" - }, - { - "_num": "2", - "_begin": "11:5", - "_end": "11:9" - }, - { - "_num": "3", - "_begin": "11:10", - "_end": "11:13" - }, - { - "_num": "4", - "_begin": "11:14", - "_end": "11:17" - }, - { - "_num": "5", - "_begin": "11:18", - "_end": "11:21" - }, - { - "_num": "6", - "_begin": "11:22", - "_end": "11:25" - }, - { - "_num": "7", - "_begin": "11:26", - "_end": "11:32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32" - } - ], - "_num": "3" - } - ] - }, - "_id": "Noach", - "_num": "2", - "_hebrew": "נֹחַ", - "_verse": "Genesis 6:9 - 11:32", - "_haftara": "Isaiah 54:1 - 55:5", - "_haftaraLength": "22", - "_sephardic": "Isaiah 54:1 - 54:10", - "maftirOffset": "328" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "12:14", - "_end": "13:4", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "13:5", - "_end": "13:18", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "14:1", - "_end": "14:20", - "_numverses": "20" - }, - { - "_num": "5", - "_begin": "14:21", - "_end": "15:6", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "15:7", - "_end": "17:6", - "_numverses": "37" - }, - { - "_num": "7", - "_begin": "17:7", - "_end": "17:27", - "_numverses": "21" - }, - { - "_num": "M", - "_begin": "17:24", - "_end": "17:27", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:3" - }, - { - "_num": "2", - "_begin": "12:4", - "_end": "12:9" - }, - { - "_num": "3", - "_begin": "12:10", - "_end": "12:13" - }, - { - "_num": "4", - "_begin": "12:14", - "_end": "12:20" - }, - { - "_num": "5", - "_begin": "13:1", - "_end": "13:4" - }, - { - "_num": "6", - "_begin": "13:5", - "_end": "13:11" - }, - { - "_num": "7", - "_begin": "13:12", - "_end": "13:18" - }, - { - "_num": "M", - "_begin": "13:16", - "_end": "13:18" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:9" - }, - { - "_num": "2", - "_begin": "14:10", - "_end": "14:16" - }, - { - "_num": "3", - "_begin": "14:17", - "_end": "14:20" - }, - { - "_num": "4", - "_begin": "14:21", - "_end": "14:24" - }, - { - "_num": "5", - "_begin": "15:1", - "_end": "15:6" - }, - { - "_num": "6", - "_begin": "15:7", - "_end": "15:16" - }, - { - "_num": "7", - "_begin": "15:17", - "_end": "15:21" - }, - { - "_num": "M", - "_begin": "15:17", - "_end": "15:21" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:6" - }, - { - "_num": "2", - "_begin": "16:7", - "_end": "16:9" - }, - { - "_num": "3", - "_begin": "16:10", - "_end": "16:16" - }, - { - "_num": "4", - "_begin": "17:1", - "_end": "17:6" - }, - { - "_num": "5", - "_begin": "17:7", - "_end": "17:17" - }, - { - "_num": "6", - "_begin": "17:18", - "_end": "17:23" - }, - { - "_num": "7", - "_begin": "17:24", - "_end": "17:27" - }, - { - "_num": "M", - "_begin": "17:24", - "_end": "17:27" - } - ], - "_num": "3" - } - ] - }, - "_id": "Lech-Lecha", - "_num": "3", - "maftirOffset": "251", - "_hebrew": "לֶךְ־לְךָ", - "_verse": "Genesis 12:1 - 17:27", - "_haftaraLength": "21", - "_haftara": "Isaiah 40:27 - 41:16" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "18:15", - "_end": "18:33", - "_numverses": "19" - }, - { - "_num": "3", - "_begin": "19:1", - "_end": "19:20", - "_numverses": "20" - }, - { - "_num": "4", - "_begin": "19:21", - "_end": "21:4", - "_numverses": "40" - }, - { - "_num": "5", - "_begin": "21:5", - "_end": "21:21", - "_numverses": "17" - }, - { - "_num": "6", - "_begin": "21:22", - "_end": "21:34", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "22:1", - "_end": "22:24", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "22:20", - "_end": "22:24", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "2", - "_begin": "18:6", - "_end": "18:8" - }, - { - "_num": "3", - "_begin": "18:9", - "_end": "18:14" - }, - { - "_num": "4", - "_begin": "18:15", - "_end": "18:21" - }, - { - "_num": "5", - "_begin": "18:22", - "_end": "18:26" - }, - { - "_num": "6", - "_begin": "18:27", - "_end": "18:30" - }, - { - "_num": "7", - "_begin": "18:31", - "_end": "18:33" - }, - { - "_num": "M", - "_begin": "18:31", - "_end": "18:33" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:11" - }, - { - "_num": "2", - "_begin": "19:12", - "_end": "19:20" - }, - { - "_num": "3", - "_begin": "19:21", - "_end": "19:29" - }, - { - "_num": "4", - "_begin": "19:30", - "_end": "19:38" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:8" - }, - { - "_num": "6", - "_begin": "20:9", - "_end": "20:14" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:18" - }, - { - "_num": "M", - "_begin": "20:15", - "_end": "20:18" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:4" - }, - { - "_num": "2", - "_begin": "21:5", - "_end": "21:13" - }, - { - "_num": "3", - "_begin": "21:14", - "_end": "21:21" - }, - { - "_num": "4", - "_begin": "21:22", - "_end": "21:34" - }, - { - "_num": "5", - "_begin": "22:1", - "_end": "22:8" - }, - { - "_num": "6", - "_begin": "22:9", - "_end": "22:19" - }, - { - "_num": "7", - "_begin": "22:20", - "_end": "22:24" - }, - { - "_num": "M", - "_begin": "22:20", - "_end": "22:24" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayera", - "maftirOffset": "307", - "_num": "4", - "_hebrew": "וַיֵּרָא", - "_verse": "Genesis 18:1 - 22:24", - "_haftara": "Kings_1 4:1 - 4:37", - "_haftaraLength": "21", - "_sephardic": "Kings_1 4:1 - 4:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "23:1", - "_end": "23:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "23:17", - "_end": "24:9", - "_numverses": "13" - }, - { - "_num": "3", - "_begin": "24:10", - "_end": "24:26", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "24:27", - "_end": "24:52", - "_numverses": "26" - }, - { - "_num": "5", - "_begin": "24:53", - "_end": "24:67", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "25:1", - "_end": "25:11", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "25:12", - "_end": "25:18", - "_numverses": "7" - }, - { - "_num": "M", - "_begin": "25:16", - "_end": "25:18", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:1", - "_end": "23:4" - }, - { - "_num": "2", - "_begin": "23:5", - "_end": "23:7" - }, - { - "_num": "3", - "_begin": "23:8", - "_end": "23:12" - }, - { - "_num": "4", - "_begin": "23:13", - "_end": "23:16" - }, - { - "_num": "5", - "_begin": "23:17", - "_end": "23:20" - }, - { - "_num": "6", - "_begin": "24:1", - "_end": "24:4" - }, - { - "_num": "7", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "M", - "_begin": "24:5", - "_end": "24:9" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:10", - "_end": "24:14" - }, - { - "_num": "2", - "_begin": "24:15", - "_end": "24:20" - }, - { - "_num": "3", - "_begin": "24:21", - "_end": "24:26" - }, - { - "_num": "4", - "_begin": "24:27", - "_end": "24:33" - }, - { - "_num": "5", - "_begin": "24:34", - "_end": "24:41" - }, - { - "_num": "6", - "_begin": "24:42", - "_end": "24:49" - }, - { - "_num": "7", - "_begin": "24:50", - "_end": "24:52" - }, - { - "_num": "M", - "_begin": "24:50", - "_end": "24:52" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:53", - "_end": "24:58" - }, - { - "_num": "2", - "_begin": "24:59", - "_end": "24:61" - }, - { - "_num": "3", - "_begin": "24:62", - "_end": "24:67" - }, - { - "_num": "4", - "_begin": "25:1", - "_end": "25:6" - }, - { - "_num": "5", - "_begin": "25:7", - "_end": "25:11" - }, - { - "_num": "6", - "_begin": "25:12", - "_end": "25:15" - }, - { - "_num": "7", - "_begin": "25:16", - "_end": "25:18" - }, - { - "_num": "M", - "_begin": "25:16", - "_end": "25:18" - } - ], - "_num": "3" - } - ] - }, - "_id": "Chayei Sara", - "maftirOffset": "32", - "_num": "5", - "_hebrew": "חַיֵּי שָֹרָה", - "_verse": "Genesis 23:1 - 25:18", - "_haftara": "Kings_1 1:1 - 1:31", - "_haftaraLength": "31" - - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:19", - "_end": "26:5", - "_numverses": "21" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:12", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "26:13", - "_end": "26:22", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "26:23", - "_end": "26:29", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "26:30", - "_end": "27:27", - "_numverses": "33" - }, - { - "_num": "6", - "_begin": "27:28", - "_end": "28:4", - "_numverses": "23" - }, - { - "_num": "7", - "_begin": "28:5", - "_end": "28:9", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "28:7", - "_end": "28:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:19", - "_end": "25:22" - }, - { - "_num": "2", - "_begin": "25:23", - "_end": "25:26" - }, - { - "_num": "3", - "_begin": "25:27", - "_end": "25:34" - }, - { - "_num": "4", - "_begin": "26:1", - "_end": "26:5" - }, - { - "_num": "5", - "_begin": "26:6", - "_end": "26:12" - }, - { - "_num": "6", - "_begin": "26:13", - "_end": "26:16" - }, - { - "_num": "7", - "_begin": "26:17", - "_end": "26:22" - }, - { - "_num": "M", - "_begin": "26:19", - "_end": "26:22" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:23", - "_end": "26:29" - }, - { - "_num": "2", - "_begin": "26:30", - "_end": "26:33" - }, - { - "_num": "3", - "_begin": "26:34", - "_end": "27:4" - }, - { - "_num": "4", - "_begin": "27:5", - "_end": "27:13" - }, - { - "_num": "5", - "_begin": "27:14", - "_end": "27:17" - }, - { - "_num": "6", - "_begin": "27:18", - "_end": "27:23" - }, - { - "_num": "7", - "_begin": "27:24", - "_end": "27:27" - }, - { - "_num": "M", - "_begin": "27:24", - "_end": "27:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:28", - "_end": "27:30" - }, - { - "_num": "2", - "_begin": "27:31", - "_end": "27:33" - }, - { - "_num": "3", - "_begin": "27:34", - "_end": "27:37" - }, - { - "_num": "4", - "_begin": "27:38", - "_end": "27:40" - }, - { - "_num": "5", - "_begin": "27:41", - "_end": "27:46" - }, - { - "_num": "6", - "_begin": "28:1", - "_end": "28:4" - }, - { - "_num": "7", - "_begin": "28:5", - "_end": "28:9" - }, - { - "_num": "M", - "_begin": "28:7", - "_end": "28:9" - } - ], - "_num": "3" - } - ] - }, - "_id": "Toldot", - "_num": "6", - "maftirOffset": "42", - "_hebrew": "תּוֹלְדוֹת", - "_verse": "Genesis 25:19 - 28:9", - "_haftaraLength": "21", - "_haftara": "Malachi 1:1 - 2:7" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "28:10", - "_end": "28:22", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "29:1", - "_end": "29:17", - "_numverses": "17" - }, - { - "_num": "3", - "_begin": "29:18", - "_end": "30:13", - "_numverses": "31" - }, - { - "_num": "4", - "_begin": "30:14", - "_end": "30:27", - "_numverses": "14" - }, - { - "_num": "5", - "_begin": "30:28", - "_end": "31:16", - "_numverses": "32" - }, - { - "_num": "6", - "_begin": "31:17", - "_end": "31:42", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "31:43", - "_end": "32:3", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "32:1", - "_end": "32:3", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:10", - "_end": "28:12" - }, - { - "_num": "2", - "_begin": "28:13", - "_end": "28:17" - }, - { - "_num": "3", - "_begin": "28:18", - "_end": "28:22" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:8" - }, - { - "_num": "5", - "_begin": "29:9", - "_end": "29:17" - }, - { - "_num": "6", - "_begin": "29:18", - "_end": "29:33" - }, - { - "_num": "7", - "_begin": "29:34", - "_end": "30:13" - }, - { - "_num": "M", - "_begin": "30:9", - "_end": "30:13" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:14", - "_end": "30:16" - }, - { - "_num": "2", - "_begin": "30:17", - "_end": "30:21" - }, - { - "_num": "3", - "_begin": "30:22", - "_end": "30:27" - }, - { - "_num": "4", - "_begin": "30:28", - "_end": "30:36" - }, - { - "_num": "5", - "_begin": "30:37", - "_end": "30:43" - }, - { - "_num": "6", - "_begin": "31:1", - "_end": "31:9" - }, - { - "_num": "7", - "_begin": "31:10", - "_end": "31:16" - }, - { - "_num": "M", - "_begin": "31:14", - "_end": "31:16" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:17", - "_end": "31:21" - }, - { - "_num": "2", - "_begin": "31:22", - "_end": "31:24" - }, - { - "_num": "3", - "_begin": "31:25", - "_end": "31:35" - }, - { - "_num": "4", - "_begin": "31:36", - "_end": "31:42" - }, - { - "_num": "5", - "_begin": "31:43", - "_end": "31:45" - }, - { - "_num": "6", - "_begin": "31:46", - "_end": "31:50" - }, - { - "_num": "7", - "_begin": "31:51", - "_end": "32:3" - }, - { - "_num": "M", - "_begin": "32:1", - "_end": "32:3" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayetzei", - "maftirOffset": "166", - "_num": "7", - "_hebrew": "וַיֵּצֵא", - "_verse": "Genesis 28:10 - 32:3", - "_haftara": "Hosea 12:13 - 14:10", - "_haftaraLength": "28", - "_sephardic": "Hosea 11:7 - 12:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "32:4", - "_end": "32:13", - "_numverses": "10" - }, - { - "_num": "2", - "_begin": "32:14", - "_end": "32:30", - "_numverses": "17" - }, - { - "_num": "3", - "_begin": "32:31", - "_end": "33:5", - "_numverses": "8" - }, - { - "_num": "4", - "_begin": "33:6", - "_end": "33:20", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "34:1", - "_end": "35:11", - "_numverses": "42" - }, - { - "_num": "6", - "_begin": "35:12", - "_end": "36:19", - "_numverses": "37" - }, - { - "_num": "7", - "_begin": "36:20", - "_end": "36:43", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "36:40", - "_end": "36:43", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "32:4", - "_end": "32:6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:9" - }, - { - "_num": "3", - "_begin": "32:10", - "_end": "32:13" - }, - { - "_num": "4", - "_begin": "32:14", - "_end": "32:22" - }, - { - "_num": "5", - "_begin": "32:23", - "_end": "32:30" - }, - { - "_num": "6", - "_begin": "32:31", - "_end": "33:5" - }, - { - "_num": "7", - "_begin": "33:6", - "_end": "33:20" - }, - { - "_num": "M", - "_begin": "33:18", - "_end": "33:20" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "34:1", - "_end": "34:4" - }, - { - "_num": "2", - "_begin": "34:5", - "_end": "34:12" - }, - { - "_num": "3", - "_begin": "34:13", - "_end": "34:17" - }, - { - "_num": "4", - "_begin": "34:18", - "_end": "34:23" - }, - { - "_num": "5", - "_begin": "34:24", - "_end": "34:31" - }, - { - "_num": "6", - "_begin": "35:1", - "_end": "35:11" - }, - { - "_num": "7", - "_begin": "35:12", - "_end": "35:15" - }, - { - "_num": "M", - "_begin": "35:12", - "_end": "35:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:16", - "_end": "35:26" - }, - { - "_num": "2", - "_begin": "35:27", - "_end": "35:29" - }, - { - "_num": "3", - "_begin": "36:1", - "_end": "36:8" - }, - { - "_num": "4", - "_begin": "36:9", - "_end": "36:19" - }, - { - "_num": "5", - "_begin": "36:20", - "_end": "36:30" - }, - { - "_num": "6", - "_begin": "36:31", - "_end": "36:39" - }, - { - "_num": "7", - "_begin": "36:40", - "_end": "36:43" - }, - { - "_num": "M", - "_begin": "36:40", - "_end": "36:43" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayishlach", - "maftirOffset": "190", - "_num": "8", - "_hebrew": "וַיִּשְׁלַח", - "_verse": "Genesis 32:4 - 36:43", - "_haftaraLength": "21", - "_haftara": "Obadiah 1:1 - 1:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "37:1", - "_end": "37:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "37:12", - "_end": "37:22", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "37:23", - "_end": "37:36", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "38:1", - "_end": "38:30", - "_numverses": "30" - }, - { - "_num": "5", - "_begin": "39:1", - "_end": "39:6", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "39:7", - "_end": "39:23", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "40:1", - "_end": "40:23", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "40:20", - "_end": "40:23", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "37:1", - "_end": "37:3" - }, - { - "_num": "2", - "_begin": "37:4", - "_end": "37:7" - }, - { - "_num": "3", - "_begin": "37:8", - "_end": "37:11" - }, - { - "_num": "4", - "_begin": "37:12", - "_end": "37:17" - }, - { - "_num": "5", - "_begin": "37:18", - "_end": "37:22" - }, - { - "_num": "6", - "_begin": "37:23", - "_end": "37:28" - }, - { - "_num": "7", - "_begin": "37:29", - "_end": "37:36" - }, - { - "_num": "M", - "_begin": "37:34", - "_end": "37:36" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "38:1", - "_end": "38:5" - }, - { - "_num": "2", - "_begin": "38:6", - "_end": "38:11" - }, - { - "_num": "3", - "_begin": "38:12", - "_end": "38:14" - }, - { - "_num": "4", - "_begin": "38:15", - "_end": "38:19" - }, - { - "_num": "5", - "_begin": "38:20", - "_end": "38:23" - }, - { - "_num": "6", - "_begin": "38:24", - "_end": "38:26" - }, - { - "_num": "7", - "_begin": "38:27", - "_end": "38:30" - }, - { - "_num": "M", - "_begin": "38:27", - "_end": "38:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "39:1", - "_end": "39:6" - }, - { - "_num": "2", - "_begin": "39:7", - "_end": "39:10" - }, - { - "_num": "3", - "_begin": "39:11", - "_end": "39:18" - }, - { - "_num": "4", - "_begin": "39:19", - "_end": "39:23" - }, - { - "_num": "5", - "_begin": "40:1", - "_end": "40:8" - }, - { - "_num": "6", - "_begin": "40:9", - "_end": "40:15" - }, - { - "_num": "7", - "_begin": "40:16", - "_end": "40:23" - }, - { - "_num": "M", - "_begin": "40:20", - "_end": "40:23" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayeshev", - "maftirOffset": "264", - "_num": "9", - "_hebrew": "וַיֵּשֶׁב", - "_verse": "Genesis 37:1 - 40:23", - "_haftaraLength": "19", - "_haftara": "Amos 2:6 - 3:8" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "41:1", - "_end": "41:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "41:15", - "_end": "41:38", - "_numverses": "24" - }, - { - "_num": "3", - "_begin": "41:39", - "_end": "41:52", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "41:53", - "_end": "42:18", - "_numverses": "23" - }, - { - "_num": "5", - "_begin": "42:19", - "_end": "43:15", - "_numverses": "35" - }, - { - "_num": "6", - "_begin": "43:16", - "_end": "43:29", - "_numverses": "14" - }, - { - "_num": "7", - "_begin": "43:30", - "_end": "44:17", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "44:14", - "_end": "44:17", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "41:1", - "_end": "41:4" - }, - { - "_num": "2", - "_begin": "41:5", - "_end": "41:7" - }, - { - "_num": "3", - "_begin": "41:8", - "_end": "41:14" - }, - { - "_num": "4", - "_begin": "41:15", - "_end": "41:24" - }, - { - "_num": "5", - "_begin": "41:25", - "_end": "41:38" - }, - { - "_num": "6", - "_begin": "41:39", - "_end": "41:43" - }, - { - "_num": "7", - "_begin": "41:44", - "_end": "41:52" - }, - { - "_num": "M", - "_begin": "41:50", - "_end": "41:52" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "41:53", - "_end": "41:57" - }, - { - "_num": "2", - "_begin": "42:1", - "_end": "42:5" - }, - { - "_num": "3", - "_begin": "42:6", - "_end": "42:18" - }, - { - "_num": "4", - "_begin": "42:19", - "_end": "42:28" - }, - { - "_num": "5", - "_begin": "42:29", - "_end": "42:38" - }, - { - "_num": "6", - "_begin": "43:1", - "_end": "43:7" - }, - { - "_num": "7", - "_begin": "43:8", - "_end": "43:15" - }, - { - "_num": "M", - "_begin": "43:11", - "_end": "43:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "43:16", - "_end": "43:18" - }, - { - "_num": "2", - "_begin": "43:19", - "_end": "43:25" - }, - { - "_num": "3", - "_begin": "43:26", - "_end": "43:29" - }, - { - "_num": "4", - "_begin": "43:30", - "_end": "43:34" - }, - { - "_num": "5", - "_begin": "44:1", - "_end": "44:6" - }, - { - "_num": "6", - "_begin": "44:7", - "_end": "44:10" - }, - { - "_num": "7", - "_begin": "44:11", - "_end": "44:17" - }, - { - "_num": "M", - "_begin": "44:15", - "_end": "44:17" - } - ], - "_num": "3" - } - ] - }, - "_id": "Miketz", - "maftirOffset": "230", - "_num": "10", - "_hebrew": "מִקֵּץ", - "_verse": "Genesis 41:1 - 44:17", - "_haftaraLength": "15", - "_haftara": "Kings_1 3:15 - 4:1" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "44:18", - "_end": "44:30", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "44:31", - "_end": "45:7", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "45:8", - "_end": "45:18", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "45:19", - "_end": "45:27", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "45:28", - "_end": "46:27", - "_numverses": "28" - }, - { - "_num": "6", - "_begin": "46:28", - "_end": "47:10", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "47:11", - "_end": "47:27", - "_numverses": "17" - }, - { - "_num": "M", - "_begin": "47:25", - "_end": "47:27", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "44:18", - "_end": "44:20" - }, - { - "_num": "2", - "_begin": "44:21", - "_end": "44:24" - }, - { - "_num": "3", - "_begin": "44:25", - "_end": "44:30" - }, - { - "_num": "4", - "_begin": "44:31", - "_end": "44:34" - }, - { - "_num": "5", - "_begin": "45:1", - "_end": "45:7" - }, - { - "_num": "6", - "_begin": "45:8", - "_end": "45:18" - }, - { - "_num": "7", - "_begin": "45:19", - "_end": "45:27" - }, - { - "_num": "M", - "_begin": "45:25", - "_end": "45:27" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "45:28", - "_end": "46:4" - }, - { - "_num": "2", - "_begin": "46:5", - "_end": "46:7" - }, - { - "_num": "3", - "_begin": "46:8", - "_end": "46:11" - }, - { - "_num": "4", - "_begin": "46:12", - "_end": "46:15" - }, - { - "_num": "5", - "_begin": "46:16", - "_end": "46:18" - }, - { - "_num": "6", - "_begin": "46:19", - "_end": "46:22" - }, - { - "_num": "7", - "_begin": "46:23", - "_end": "46:27" - }, - { - "_num": "M", - "_begin": "46:23", - "_end": "46:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "46:28", - "_end": "46:30" - }, - { - "_num": "2", - "_begin": "46:31", - "_end": "46:34" - }, - { - "_num": "3", - "_begin": "47:1", - "_end": "47:6" - }, - { - "_num": "4", - "_begin": "47:7", - "_end": "47:10" - }, - { - "_num": "5", - "_begin": "47:11", - "_end": "47:19" - }, - { - "_num": "6", - "_begin": "47:20", - "_end": "47:22" - }, - { - "_num": "7", - "_begin": "47:23", - "_end": "47:27" - }, - { - "_num": "M", - "_begin": "47:25", - "_end": "47:27" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayigash", - "maftirOffset": "256", - "_num": "11", - "_hebrew": "וַיִּגַּשׁ", - "_verse": "Genesis 44:18 - 47:27", - "_haftaraLength": "14", - "_haftara": "Ezekiel 37:15 - 37:28" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "47:28", - "_end": "48:9", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "48:10", - "_end": "48:16", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "48:17", - "_end": "48:22", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "49:1", - "_end": "49:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "49:19", - "_end": "49:26", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "49:27", - "_end": "50:20", - "_numverses": "27" - }, - { - "_num": "7", - "_begin": "50:21", - "_end": "50:26", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "50:23", - "_end": "50:26", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "47:28", - "_end": "47:31" - }, - { - "_num": "2", - "_begin": "48:1", - "_end": "48:3" - }, - { - "_num": "3", - "_begin": "48:4", - "_end": "48:9" - }, - { - "_num": "4", - "_begin": "48:10", - "_end": "48:13" - }, - { - "_num": "5", - "_begin": "48:14", - "_end": "48:16" - }, - { - "_num": "6", - "_begin": "48:17", - "_end": "48:19" - }, - { - "_num": "7", - "_begin": "48:20", - "_end": "48:22" - }, - { - "_num": "M", - "_begin": "48:20", - "_end": "48:22" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "49:1", - "_end": "49:4" - }, - { - "_num": "2", - "_begin": "49:5", - "_end": "49:7" - }, - { - "_num": "3", - "_begin": "49:8", - "_end": "49:12" - }, - { - "_num": "4", - "_begin": "49:13", - "_end": "49:15" - }, - { - "_num": "5", - "_begin": "49:16", - "_end": "49:18" - }, - { - "_num": "6", - "_begin": "49:19", - "_end": "49:21" - }, - { - "_num": "7", - "_begin": "49:22", - "_end": "49:26" - }, - { - "_num": "M", - "_begin": "49:22", - "_end": "49:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "49:27", - "_end": "49:30" - }, - { - "_num": "2", - "_begin": "49:31", - "_end": "49:33" - }, - { - "_num": "3", - "_begin": "50:1", - "_end": "50:6" - }, - { - "_num": "4", - "_begin": "50:7", - "_end": "50:9" - }, - { - "_num": "5", - "_begin": "50:10", - "_end": "50:14" - }, - { - "_num": "6", - "_begin": "50:15", - "_end": "50:20" - }, - { - "_num": "7", - "_begin": "50:21", - "_end": "50:26" - }, - { - "_num": "M", - "_begin": "50:23", - "_end": "50:26" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayechi", - "maftirOffset": "24", - "_num": "12", - "_hebrew": "וַיְחִי", - "_verse": "Genesis 47:28 - 50:26", - "_haftaraLength": "12", - "_haftara": "Kings_1 2:1 - 2:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "1:18", - "_end": "2:10", - "_numverses": "15" - }, - { - "_num": "3", - "_begin": "2:11", - "_end": "2:25", - "_numverses": "15" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:15", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "3:16", - "_end": "4:17", - "_numverses": "24" - }, - { - "_num": "6", - "_begin": "4:18", - "_end": "4:31", - "_numverses": "14" - }, - { - "_num": "7", - "_begin": "5:1", - "_end": "6:1", - "_numverses": "24" - }, - { - "_num": "M", - "_begin": "5:22", - "_end": "6:1", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:7" - }, - { - "_num": "2", - "_begin": "1:8", - "_end": "1:12" - }, - { - "_num": "3", - "_begin": "1:13", - "_end": "1:17" - }, - { - "_num": "4", - "_begin": "1:18", - "_end": "1:22" - }, - { - "_num": "5", - "_begin": "2:1", - "_end": "2:10" - }, - { - "_num": "6", - "_begin": "2:11", - "_end": "2:15" - }, - { - "_num": "7", - "_begin": "2:16", - "_end": "2:25" - }, - { - "_num": "M", - "_begin": "2:23", - "_end": "2:25" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:1", - "_end": "3:6" - }, - { - "_num": "2", - "_begin": "3:7", - "_end": "3:10" - }, - { - "_num": "3", - "_begin": "3:11", - "_end": "3:15" - }, - { - "_num": "4", - "_begin": "3:16", - "_end": "3:22" - }, - { - "_num": "5", - "_begin": "4:1", - "_end": "4:5" - }, - { - "_num": "6", - "_begin": "4:6", - "_end": "4:9" - }, - { - "_num": "7", - "_begin": "4:10", - "_end": "4:17" - }, - { - "_num": "M", - "_begin": "4:14", - "_end": "4:17" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:18", - "_end": "4:20" - }, - { - "_num": "2", - "_begin": "4:21", - "_end": "4:26" - }, - { - "_num": "3", - "_begin": "4:27", - "_end": "4:31" - }, - { - "_num": "4", - "_begin": "5:1", - "_end": "5:5" - }, - { - "_num": "5", - "_begin": "5:6", - "_end": "5:9" - }, - { - "_num": "6", - "_begin": "5:10", - "_end": "5:14" - }, - { - "_num": "7", - "_begin": "5:15", - "_end": "6:1" - }, - { - "_num": "M", - "_begin": "5:22", - "_end": "6:1" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shemot", - "_num": "13", - "maftirOffset": "291", - "_hebrew": "שְׁמוֹת", - "_verse": "Exodus 1:1 - 6:1", - "_haftaraLength": "21", - "_haftaraLength2": "2", - "_haftara": "Isaiah 27:6 - 28:13; 29:22 - 29:23", - "_sephardic": "Jeremiah 1:1 - 2:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:2", - "_end": "6:13", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "6:14", - "_end": "6:28", - "_numverses": "15" - }, - { - "_num": "3", - "_begin": "6:29", - "_end": "7:7", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "7:8", - "_end": "8:6", - "_numverses": "28" - }, - { - "_num": "5", - "_begin": "8:7", - "_end": "8:18", - "_numverses": "12" - }, - { - "_num": "6", - "_begin": "8:19", - "_end": "9:16", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "9:17", - "_end": "9:35", - "_numverses": "19" - }, - { - "_num": "M", - "_begin": "9:33", - "_end": "9:35", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:2", - "_end": "6:5" - }, - { - "_num": "2", - "_begin": "6:6", - "_end": "6:9" - }, - { - "_num": "3", - "_begin": "6:10", - "_end": "6:13" - }, - { - "_num": "4", - "_begin": "6:14", - "_end": "6:19" - }, - { - "_num": "5", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "6", - "_begin": "6:26", - "_end": "6:28" - }, - { - "_num": "7", - "_begin": "6:29", - "_end": "7:7" - }, - { - "_num": "M", - "_begin": "7:5", - "_end": "7:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:8", - "_end": "7:13" - }, - { - "_num": "2", - "_begin": "7:14", - "_end": "7:18" - }, - { - "_num": "3", - "_begin": "7:19", - "_end": "7:25" - }, - { - "_num": "4", - "_begin": "7:26", - "_end": "7:29" - }, - { - "_num": "5", - "_begin": "8:1", - "_end": "8:6" - }, - { - "_num": "6", - "_begin": "8:7", - "_end": "8:11" - }, - { - "_num": "7", - "_begin": "8:12", - "_end": "8:15" - }, - { - "_num": "M", - "_begin": "8:12", - "_end": "8:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:16", - "_end": "8:23" - }, - { - "_num": "2", - "_begin": "8:24", - "_end": "8:28" - }, - { - "_num": "3", - "_begin": "9:1", - "_end": "9:7" - }, - { - "_num": "4", - "_begin": "9:8", - "_end": "9:16" - }, - { - "_num": "5", - "_begin": "9:17", - "_end": "9:21" - }, - { - "_num": "6", - "_begin": "9:22", - "_end": "9:26" - }, - { - "_num": "7", - "_begin": "9:27", - "_end": "9:35" - }, - { - "_num": "M", - "_begin": "9:33", - "_end": "9:35" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vaera", - "maftirOffset": "238", - "_num": "14", - "_hebrew": "וָאֵרָא", - "_verse": "Exodus 6:2 - 9:35", - "_haftaraLength": "23", - "_haftara": "Ezekiel 28:25 - 29:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "10:1", - "_end": "10:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "10:12", - "_end": "10:23", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "10:24", - "_end": "11:3", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "11:4", - "_end": "12:20", - "_numverses": "27" - }, - { - "_num": "5", - "_begin": "12:21", - "_end": "12:28", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "12:29", - "_end": "12:51", - "_numverses": "23" - }, - { - "_num": "7", - "_begin": "13:1", - "_end": "13:16", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "13:14", - "_end": "13:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:1", - "_end": "10:3" - }, - { - "_num": "2", - "_begin": "10:4", - "_end": "10:6" - }, - { - "_num": "3", - "_begin": "10:7", - "_end": "10:11" - }, - { - "_num": "4", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "5", - "_begin": "10:16", - "_end": "10:23" - }, - { - "_num": "6", - "_begin": "10:24", - "_end": "10:29" - }, - { - "_num": "7", - "_begin": "11:1", - "_end": "11:3" - }, - { - "_num": "M", - "_begin": "11:1", - "_end": "11:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:4", - "_end": "11:10" - }, - { - "_num": "2", - "_begin": "12:1", - "_end": "12:10" - }, - { - "_num": "3", - "_begin": "12:11", - "_end": "12:13" - }, - { - "_num": "4", - "_begin": "12:14", - "_end": "12:16" - }, - { - "_num": "5", - "_begin": "12:17", - "_end": "12:20" - }, - { - "_num": "6", - "_begin": "12:21", - "_end": "12:24" - }, - { - "_num": "7", - "_begin": "12:25", - "_end": "12:28" - }, - { - "_num": "M", - "_begin": "12:25", - "_end": "12:28" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:29", - "_end": "12:32" - }, - { - "_num": "2", - "_begin": "12:33", - "_end": "12:36" - }, - { - "_num": "3", - "_begin": "12:37", - "_end": "12:42" - }, - { - "_num": "4", - "_begin": "12:43", - "_end": "12:51" - }, - { - "_num": "5", - "_begin": "13:1", - "_end": "13:4" - }, - { - "_num": "6", - "_begin": "13:5", - "_end": "13:10" - }, - { - "_num": "7", - "_begin": "13:11", - "_end": "13:16" - }, - { - "_num": "M", - "_begin": "13:14", - "_end": "13:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bo", - "maftirOffset": "174", - "_num": "15", - "_hebrew": "בֹּא", - "_verse": "Exodus 10:1 - 13:16", - "_haftaraLength": "16", - "_haftara": "Jeremiah 46:13 - 46:28" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "13:17", - "_end": "14:8", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "14:9", - "_end": "14:14", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "14:15", - "_end": "14:25", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "15:26", - "_numverses": "32" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "16:10", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "16:11", - "_end": "16:36", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "17:1", - "_end": "17:16", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "17:14", - "_end": "17:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:17", - "_end": "13:22" - }, - { - "_num": "2", - "_begin": "14:1", - "_end": "14:4" - }, - { - "_num": "3", - "_begin": "14:5", - "_end": "14:8" - }, - { - "_num": "4", - "_begin": "14:9", - "_end": "14:14" - }, - { - "_num": "5", - "_begin": "14:15", - "_end": "14:20" - }, - { - "_num": "6", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "7", - "_begin": "14:26", - "_end": "15:26" - }, - { - "_num": "M", - "_begin": "15:22", - "_end": "15:26" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:15", - "_end": "14:20" - }, - { - "_num": "2", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "3", - "_begin": "14:26", - "_end": "15:21" - }, - { - "_num": "4", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "16:3" - }, - { - "_num": "6", - "_begin": "16:4", - "_end": "16:7" - }, - { - "_num": "7", - "_begin": "16:8", - "_end": "16:10" - }, - { - "_num": "M", - "_begin": "16:8", - "_end": "16:10" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:26", - "_end": "15:21" - }, - { - "_num": "2", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "3", - "_begin": "15:27", - "_end": "16:10" - }, - { - "_num": "4", - "_begin": "16:11", - "_end": "16:27" - }, - { - "_num": "5", - "_begin": "16:28", - "_end": "16:36" - }, - { - "_num": "6", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "7", - "_begin": "17:8", - "_end": "17:16" - }, - { - "_num": "M", - "_begin": "17:14", - "_end": "17:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Beshalach", - "maftirOffset": "209", - "_num": "16", - "_hebrew": "בְּשַׁלַּח", - "_verse": "Exodus 13:17 - 17:16", - "_haftaraLength": "52", - "_haftara": "Judges 4:4 - 5:31", - "_sephardic": "Judges 5:1 - 5:31" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "18:13", - "_end": "18:23", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "18:24", - "_end": "18:27", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "19:1", - "_end": "19:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "19:7", - "_end": "19:19", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "19:20", - "_end": "20:14", - "_numverses": "20" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:23", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "20:19", - "_end": "20:23", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "18:13", - "_end": "18:23", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "18:24", - "_end": "18:27", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "19:1", - "_end": "19:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "19:7", - "_end": "19:19", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "19:20", - "_end": "20:14", - "_numverses": "20" - }, - { - "_num": "7", - "_begin": "20:15", - "_end": "20:23", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "20:19", - "_end": "20:23", - "_numverses": "5" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "full parashah with Ten Commandments every year" - }, - "triennial-alt": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:1", - "_end": "18:4" - }, - { - "_num": "2", - "_begin": "18:5", - "_end": "18:8" - }, - { - "_num": "3", - "_begin": "18:9", - "_end": "18:12" - }, - { - "_num": "4", - "_begin": "18:13", - "_end": "18:16" - }, - { - "_num": "5", - "_begin": "18:17", - "_end": "18:19" - }, - { - "_num": "6", - "_begin": "18:20", - "_end": "18:23" - }, - { - "_num": "7", - "_begin": "18:24", - "_end": "18:27" - }, - { - "_num": "M", - "_begin": "18:24", - "_end": "18:27" - } - ], - "_variation": "Y.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:13" - }, - { - "_num": "4", - "_begin": "19:14", - "_end": "19:19" - }, - { - "_num": "5", - "_begin": "19:20", - "_end": "20:14" - }, - { - "_num": "6", - "_begin": "20:15", - "_end": "20:18" - }, - { - "_num": "7", - "_begin": "20:19", - "_end": "20:23" - }, - { - "_num": "M", - "_begin": "20:21", - "_end": "20:23" - } - ], - "_variation": "Y.2" - }, - { - "_variation": "Y.3", - "_sameas": "Y.2" - } - ], - "_descr": "triennial divisions with Ten Commandments in years two and three" - }, - "_id": "Yitro", - "maftirOffset": "60", - "_num": "17", - "_hebrew": "יִתְרוֹ", - "_verse": "Exodus 18:1 - 20:23", - "_haftaraLength": "19", - "_haftaraLength2": "2", - "_haftara": "Isaiah 6:1 - 7:6; 9:5 - 9:6", - "_sephardic": "Isaiah 6:1 - 6:13" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:19", - "_numverses": "19" - }, - { - "_num": "2", - "_begin": "21:20", - "_end": "22:3", - "_numverses": "21" - }, - { - "_num": "3", - "_begin": "22:4", - "_end": "22:26", - "_numverses": "23" - }, - { - "_num": "4", - "_begin": "22:27", - "_end": "23:5", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "23:6", - "_end": "23:19", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "23:20", - "_end": "23:25", - "_numverses": "6" - }, - { - "_num": "7", - "_begin": "23:26", - "_end": "24:18", - "_numverses": "26" - }, - { - "_num": "M", - "_begin": "24:15", - "_end": "24:18", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "2", - "_begin": "21:7", - "_end": "21:11" - }, - { - "_num": "3", - "_begin": "21:12", - "_end": "21:19" - }, - { - "_num": "4", - "_begin": "21:20", - "_end": "21:27" - }, - { - "_num": "5", - "_begin": "21:28", - "_end": "21:32" - }, - { - "_num": "6", - "_begin": "21:33", - "_end": "21:36" - }, - { - "_num": "7", - "_begin": "21:37", - "_end": "22:3" - }, - { - "_num": "M", - "_begin": "21:37", - "_end": "22:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:4", - "_end": "22:8" - }, - { - "_num": "2", - "_begin": "22:9", - "_end": "22:12" - }, - { - "_num": "3", - "_begin": "22:13", - "_end": "22:18" - }, - { - "_num": "4", - "_begin": "22:19", - "_end": "22:26" - }, - { - "_num": "5", - "_begin": "22:27", - "_end": "23:5" - }, - { - "_num": "6", - "_begin": "23:6", - "_end": "23:13" - }, - { - "_num": "7", - "_begin": "23:14", - "_end": "23:19" - }, - { - "_num": "M", - "_begin": "23:14", - "_end": "23:19" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:20", - "_end": "23:25" - }, - { - "_num": "2", - "_begin": "23:26", - "_end": "23:30" - }, - { - "_num": "3", - "_begin": "23:31", - "_end": "23:33" - }, - { - "_num": "4", - "_begin": "24:1", - "_end": "24:6" - }, - { - "_num": "5", - "_begin": "24:7", - "_end": "24:11" - }, - { - "_num": "6", - "_begin": "24:12", - "_end": "24:14" - }, - { - "_num": "7", - "_begin": "24:15", - "_end": "24:18" - }, - { - "_num": "M", - "_begin": "24:15", - "_end": "24:18" - } - ], - "_num": "3" - } - ] - }, - "_id": "Mishpatim", - "_num": "18", - "maftirOffset": "303", - "_hebrew": "מִּשְׁפָּטִים", - "_verse": "Exodus 21:1 - 24:18", - "_haftaraLength": "15", - "_haftaraLength2": "2", - "_haftara": "Jeremiah 34:8 - 34:22; 33:25 - 33:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "25:17", - "_end": "25:30", - "_numverses": "14" - }, - { - "_num": "3", - "_begin": "25:31", - "_end": "26:14", - "_numverses": "24" - }, - { - "_num": "4", - "_begin": "26:15", - "_end": "26:30", - "_numverses": "16" - }, - { - "_num": "5", - "_begin": "26:31", - "_end": "26:37", - "_numverses": "7" - }, - { - "_num": "6", - "_begin": "27:1", - "_end": "27:8", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "27:9", - "_end": "27:19", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "27:17", - "_end": "27:19", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:5" - }, - { - "_num": "2", - "_begin": "25:6", - "_end": "25:9" - }, - { - "_num": "3", - "_begin": "25:10", - "_end": "25:16" - }, - { - "_num": "4", - "_begin": "25:17", - "_end": "25:22" - }, - { - "_num": "5", - "_begin": "25:23", - "_end": "25:30" - }, - { - "_num": "6", - "_begin": "25:31", - "_end": "25:33" - }, - { - "_num": "7", - "_begin": "25:34", - "_end": "25:40" - }, - { - "_num": "M", - "_begin": "25:37", - "_end": "25:40" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:3" - }, - { - "_num": "2", - "_begin": "26:4", - "_end": "26:6" - }, - { - "_num": "3", - "_begin": "26:7", - "_end": "26:11" - }, - { - "_num": "4", - "_begin": "26:12", - "_end": "26:14" - }, - { - "_num": "5", - "_begin": "26:15", - "_end": "26:21" - }, - { - "_num": "6", - "_begin": "26:22", - "_end": "26:25" - }, - { - "_num": "7", - "_begin": "26:26", - "_end": "26:30" - }, - { - "_num": "M", - "_begin": "26:26", - "_end": "26:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:31", - "_end": "26:33" - }, - { - "_num": "2", - "_begin": "26:34", - "_end": "26:37" - }, - { - "_num": "3", - "_begin": "27:1", - "_end": "27:3" - }, - { - "_num": "4", - "_begin": "27:4", - "_end": "27:8" - }, - { - "_num": "5", - "_begin": "27:9", - "_end": "27:12" - }, - { - "_num": "6", - "_begin": "27:13", - "_end": "27:16" - }, - { - "_num": "7", - "_begin": "27:17", - "_end": "27:19" - }, - { - "_num": "M", - "_begin": "27:17", - "_end": "27:19" - } - ], - "_num": "3" - } - ] - }, - "_id": "Terumah", - "maftirOffset": "94", - "_num": "19", - "_hebrew": "תְּרוּמָה", - "_verse": "Exodus 25:1 - 27:19", - "_haftaraLength": "20", - "_haftara": "Kings_1 5:26 - 6:13" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "27:20", - "_end": "28:12", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "28:13", - "_end": "28:30", - "_numverses": "18" - }, - { - "_num": "3", - "_begin": "28:31", - "_end": "28:43", - "_numverses": "13" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "29:19", - "_end": "29:37", - "_numverses": "19" - }, - { - "_num": "6", - "_begin": "29:38", - "_end": "29:46", - "_numverses": "9" - }, - { - "_num": "7", - "_begin": "30:1", - "_end": "30:10", - "_numverses": "10" - }, - { - "_num": "M", - "_begin": "30:8", - "_end": "30:10", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:20", - "_end": "28:5" - }, - { - "_num": "2", - "_begin": "28:6", - "_end": "28:9" - }, - { - "_num": "3", - "_begin": "28:10", - "_end": "28:12" - }, - { - "_num": "4", - "_begin": "28:13", - "_end": "28:17" - }, - { - "_num": "5", - "_begin": "28:18", - "_end": "28:21" - }, - { - "_num": "6", - "_begin": "28:22", - "_end": "28:25" - }, - { - "_num": "7", - "_begin": "28:26", - "_end": "28:30" - }, - { - "_num": "M", - "_begin": "28:28", - "_end": "28:30" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:31", - "_end": "28:35" - }, - { - "_num": "2", - "_begin": "28:36", - "_end": "28:38" - }, - { - "_num": "3", - "_begin": "28:39", - "_end": "28:43" - }, - { - "_num": "4", - "_begin": "29:1", - "_end": "29:4" - }, - { - "_num": "5", - "_begin": "29:5", - "_end": "29:9" - }, - { - "_num": "6", - "_begin": "29:10", - "_end": "29:14" - }, - { - "_num": "7", - "_begin": "29:15", - "_end": "29:18" - }, - { - "_num": "M", - "_begin": "29:15", - "_end": "29:18" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "29:19", - "_end": "29:21" - }, - { - "_num": "2", - "_begin": "29:22", - "_end": "29:25" - }, - { - "_num": "3", - "_begin": "29:26", - "_end": "29:30" - }, - { - "_num": "4", - "_begin": "29:31", - "_end": "29:34" - }, - { - "_num": "5", - "_begin": "29:35", - "_end": "29:37" - }, - { - "_num": "6", - "_begin": "29:38", - "_end": "29:46" - }, - { - "_num": "7", - "_begin": "30:1", - "_end": "30:10" - }, - { - "_num": "M", - "_begin": "30:8", - "_end": "30:10" - } - ], - "_num": "3" - } - ] - }, - "_id": "Tetzaveh", - "maftirOffset": "90", - "_num": "20", - "_hebrew": "תְּצַוֶּה", - "_verse": "Exodus 27:20 - 30:10", - "_haftaraLength": "18", - "_haftara": "Ezekiel 43:10 - 43:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "30:11", - "_end": "31:17", - "_numverses": "45" - }, - { - "_num": "2", - "_begin": "31:18", - "_end": "33:11", - "_numverses": "47" - }, - { - "_num": "3", - "_begin": "33:12", - "_end": "33:16", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "33:17", - "_end": "33:23", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "34:1", - "_end": "34:9", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "34:10", - "_end": "34:26", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "34:27", - "_end": "34:35", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "34:33", - "_end": "34:35", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:11", - "_end": "30:13" - }, - { - "_num": "2", - "_begin": "30:14", - "_end": "30:16" - }, - { - "_num": "3", - "_begin": "30:17", - "_end": "30:21" - }, - { - "_num": "4", - "_begin": "30:22", - "_end": "30:33" - }, - { - "_num": "5", - "_begin": "30:34", - "_end": "30:38" - }, - { - "_num": "6", - "_begin": "31:1", - "_end": "31:11" - }, - { - "_num": "7", - "_begin": "31:12", - "_end": "31:17" - }, - { - "_num": "M", - "_begin": "31:15", - "_end": "31:17" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:18", - "_end": "32:6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:11" - }, - { - "_num": "3", - "_begin": "32:12", - "_end": "32:14" - }, - { - "_num": "4", - "_begin": "32:15", - "_end": "32:24" - }, - { - "_num": "5", - "_begin": "32:25", - "_end": "32:29" - }, - { - "_num": "6", - "_begin": "32:30", - "_end": "33:6" - }, - { - "_num": "7", - "_begin": "33:7", - "_end": "33:11" - }, - { - "_num": "M", - "_begin": "33:9", - "_end": "33:11" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:12", - "_end": "33:16" - }, - { - "_num": "2", - "_begin": "33:17", - "_end": "33:23" - }, - { - "_num": "3", - "_begin": "34:1", - "_end": "34:9" - }, - { - "_num": "4", - "_begin": "34:10", - "_end": "34:17" - }, - { - "_num": "5", - "_begin": "34:18", - "_end": "34:21" - }, - { - "_num": "6", - "_begin": "34:22", - "_end": "34:26" - }, - { - "_num": "7", - "_begin": "34:27", - "_end": "34:35" - }, - { - "_num": "M", - "_begin": "34:33", - "_end": "34:35" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Tisa", - "maftirOffset": "104", - "_num": "21", - "_hebrew": "כִּי תִשָּׂא", - "_verse": "Exodus 30:11 - 34:35", - "_haftaraLength": "39", - "_haftara": "Kings_1 18:1 - 18:39", - "_sephardic": "Kings_1 18:20 - 18:39" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:20", - "_numverses": "20" - }, - { - "_num": "2", - "_begin": "35:21", - "_end": "35:29", - "_numverses": "9" - }, - { - "_num": "3", - "_begin": "35:30", - "_end": "36:7", - "_numverses": "13" - }, - { - "_num": "4", - "_begin": "36:8", - "_end": "36:19", - "_numverses": "12" - }, - { - "_num": "5", - "_begin": "36:20", - "_end": "37:16", - "_numverses": "35" - }, - { - "_num": "6", - "_begin": "37:17", - "_end": "37:29", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "38:1", - "_end": "38:20", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:3" - }, - { - "_num": "2", - "_begin": "35:4", - "_end": "35:10" - }, - { - "_num": "3", - "_begin": "35:11", - "_end": "35:20" - }, - { - "_num": "4", - "_begin": "35:21", - "_end": "35:29" - }, - { - "_num": "5", - "_begin": "35:30", - "_end": "35:35" - }, - { - "_num": "6", - "_begin": "36:1", - "_end": "36:7" - }, - { - "_num": "7", - "_begin": "36:8", - "_end": "36:19" - }, - { - "_num": "M", - "_begin": "36:17", - "_end": "36:19" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "37:17", - "_end": "37:19" - }, - { - "_num": "2", - "_begin": "37:20", - "_end": "37:24" - }, - { - "_num": "3", - "_begin": "37:25", - "_end": "37:29" - }, - { - "_num": "4", - "_begin": "38:1", - "_end": "38:3" - }, - { - "_num": "5", - "_begin": "38:4", - "_end": "38:8" - }, - { - "_num": "6", - "_begin": "38:9", - "_end": "38:15" - }, - { - "_num": "7", - "_begin": "38:16", - "_end": "38:20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "36:20", - "_end": "36:30" - }, - { - "_num": "2", - "_begin": "36:31", - "_end": "36:38" - }, - { - "_num": "3", - "_begin": "37:1", - "_end": "37:16" - }, - { - "_num": "4", - "_begin": "37:17", - "_end": "37:24" - }, - { - "_num": "5", - "_begin": "37:25", - "_end": "37:29" - }, - { - "_num": "6", - "_begin": "38:1", - "_end": "38:8" - }, - { - "_num": "7", - "_begin": "38:9", - "_end": "38:20" - }, - { - "_num": "M", - "_begin": "38:18", - "_end": "38:20" - } - ], - "_variation": "C.3" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.2", - "_sameas": "C.3" - }, - { - "_variation": "E.1", - "_sameas": "A.3" - }, - { - "_variation": "E.3", - "_sameas": "C.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "35:1", - "_end": "35:10" - }, - { - "_num": "2", - "_begin": "35:11", - "_end": "35:20" - }, - { - "_num": "3", - "_begin": "35:21", - "_end": "35:29" - }, - { - "_num": "4", - "_begin": "35:30", - "_end": "36:7" - }, - { - "_num": "5", - "_begin": "36:8", - "_end": "36:19" - }, - { - "_num": "6", - "_begin": "36:20", - "_end": "36:38" - }, - { - "_num": "7", - "_begin": "37:1", - "_end": "37:16" - }, - { - "_num": "M", - "_begin": "37:10", - "_end": "37:16" - } - ], - "_variation": "F.1" - } - ] - }, - "_id": "Vayakhel", - "maftirOffset": "200", - "_num": "22", - "_hebrew": "וַיַּקְהֵל", - "_verse": "Exodus 35:1 - 38:20", - "_haftaraLength": "11", - "_haftara": "Kings_1 7:40 - 7:50", - "_sephardic": "Kings_1 7:13 - 7:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "38:21", - "_end": "39:1", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "39:2", - "_end": "39:21", - "_numverses": "20" - }, - { - "_num": "3", - "_begin": "39:22", - "_end": "39:32", - "_numverses": "11" - }, - { - "_num": "4", - "_begin": "39:33", - "_end": "39:43", - "_numverses": "11" - }, - { - "_num": "5", - "_begin": "40:1", - "_end": "40:16", - "_numverses": "16" - }, - { - "_num": "6", - "_begin": "40:17", - "_end": "40:27", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "40:28", - "_end": "40:38", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "40:34", - "_end": "40:38", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "39:22", - "_end": "39:26" - }, - { - "_num": "2", - "_begin": "39:27", - "_end": "39:32" - }, - { - "_num": "3", - "_begin": "39:33", - "_end": "39:43" - }, - { - "_num": "4", - "_begin": "40:1", - "_end": "40:8" - }, - { - "_num": "5", - "_begin": "40:9", - "_end": "40:16" - }, - { - "_num": "6", - "_begin": "40:17", - "_end": "40:27" - }, - { - "_num": "7", - "_begin": "40:28", - "_end": "40:38" - }, - { - "_num": "M", - "_begin": "40:34", - "_end": "40:38" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "38:21", - "_end": "38:23" - }, - { - "_num": "2", - "_begin": "38:24", - "_end": "38:27" - }, - { - "_num": "3", - "_begin": "38:28", - "_end": "39:1" - }, - { - "_num": "4", - "_begin": "39:2", - "_end": "39:7" - }, - { - "_num": "5", - "_begin": "39:8", - "_end": "39:14" - }, - { - "_num": "6", - "_begin": "39:15", - "_end": "39:18" - }, - { - "_num": "7", - "_begin": "39:19", - "_end": "39:21" - }, - { - "_num": "M", - "_begin": "39:19", - "_end": "39:21" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "B.2" - }, - { - "_variation": "C.3", - "_sameas": "A.3" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.2", - "_sameas": "A.3" - }, - { - "_variation": "E.1", - "_sameas": "B.2" - }, - { - "_variation": "E.3", - "_sameas": "A.3" - }, - { - "_variation": "F.1", - "_sameas": "B.2" - } - ] - }, - "_id": "Pekudei", - "maftirOffset": "73", - "_num": "23", - "_hebrew": "פְקוּדֵי", - "_verse": "Exodus 38:21 - 40:38", - "_haftaraLength": "22", - "_haftara": "Kings_1 7:51 - 8:21", - "_sephardic": "Kings_1 7:40 - 7:50" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "1:14", - "_end": "2:6", - "_numverses": "10" - }, - { - "_num": "3", - "_begin": "2:7", - "_end": "2:16", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:17", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "4:1", - "_end": "4:26", - "_numverses": "26" - }, - { - "_num": "6", - "_begin": "4:27", - "_end": "5:10", - "_numverses": "19" - }, - { - "_num": "7", - "_begin": "5:11", - "_end": "5:26", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "5:24", - "_end": "5:26", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:4" - }, - { - "_num": "2", - "_begin": "1:5", - "_end": "1:9" - }, - { - "_num": "3", - "_begin": "1:10", - "_end": "1:13" - }, - { - "_num": "4", - "_begin": "1:14", - "_end": "1:17" - }, - { - "_num": "5", - "_begin": "2:1", - "_end": "2:6" - }, - { - "_num": "6", - "_begin": "2:7", - "_end": "2:13" - }, - { - "_num": "7", - "_begin": "2:14", - "_end": "2:16" - }, - { - "_num": "M", - "_begin": "2:14", - "_end": "2:16" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:1", - "_end": "3:5" - }, - { - "_num": "2", - "_begin": "3:6", - "_end": "3:11" - }, - { - "_num": "3", - "_begin": "3:12", - "_end": "3:17" - }, - { - "_num": "4", - "_begin": "4:1", - "_end": "4:7" - }, - { - "_num": "5", - "_begin": "4:8", - "_end": "4:12" - }, - { - "_num": "6", - "_begin": "4:13", - "_end": "4:21" - }, - { - "_num": "7", - "_begin": "4:22", - "_end": "4:26" - }, - { - "_num": "M", - "_begin": "4:24", - "_end": "4:26" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:27", - "_end": "4:31" - }, - { - "_num": "2", - "_begin": "4:32", - "_end": "4:35" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:10" - }, - { - "_num": "4", - "_begin": "5:11", - "_end": "5:13" - }, - { - "_num": "5", - "_begin": "5:14", - "_end": "5:16" - }, - { - "_num": "6", - "_begin": "5:17", - "_end": "5:19" - }, - { - "_num": "7", - "_begin": "5:20", - "_end": "5:26" - }, - { - "_num": "M", - "_begin": "5:24", - "_end": "5:26" - } - ], - "_num": "3" - } - ] - }, - "_id": "Vayikra", - "maftirOffset": "215", - "_num": "24", - "_hebrew": "וַיִּקְרָא", - "_verse": "Leviticus 1:1 - 5:26", - "_haftaraLength": "31", - "_haftara": "Isaiah 43:21 - 44:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "6:1", - "_end": "6:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "6:12", - "_end": "7:10", - "_numverses": "22" - }, - { - "_num": "3", - "_begin": "7:11", - "_end": "7:38", - "_numverses": "28" - }, - { - "_num": "4", - "_begin": "8:1", - "_end": "8:13", - "_numverses": "13" - }, - { - "_num": "5", - "_begin": "8:14", - "_end": "8:21", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "8:22", - "_end": "8:29", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "8:30", - "_end": "8:36", - "_numverses": "7" - }, - { - "_num": "M", - "_begin": "8:33", - "_end": "8:36", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "2", - "_begin": "6:4", - "_end": "6:6" - }, - { - "_num": "3", - "_begin": "6:7", - "_end": "6:11" - }, - { - "_num": "4", - "_begin": "6:12", - "_end": "6:16" - }, - { - "_num": "5", - "_begin": "6:17", - "_end": "6:23" - }, - { - "_num": "6", - "_begin": "7:1", - "_end": "7:6" - }, - { - "_num": "7", - "_begin": "7:7", - "_end": "7:10" - }, - { - "_num": "M", - "_begin": "7:7", - "_end": "7:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:11", - "_end": "7:15" - }, - { - "_num": "2", - "_begin": "7:16", - "_end": "7:18" - }, - { - "_num": "3", - "_begin": "7:19", - "_end": "7:21" - }, - { - "_num": "4", - "_begin": "7:22", - "_end": "7:27" - }, - { - "_num": "5", - "_begin": "7:28", - "_end": "7:31" - }, - { - "_num": "6", - "_begin": "7:32", - "_end": "7:34" - }, - { - "_num": "7", - "_begin": "7:35", - "_end": "7:38" - }, - { - "_num": "M", - "_begin": "7:35", - "_end": "7:38" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:5" - }, - { - "_num": "2", - "_begin": "8:6", - "_end": "8:9" - }, - { - "_num": "3", - "_begin": "8:10", - "_end": "8:13" - }, - { - "_num": "4", - "_begin": "8:14", - "_end": "8:17" - }, - { - "_num": "5", - "_begin": "8:18", - "_end": "8:21" - }, - { - "_num": "6", - "_begin": "8:22", - "_end": "8:29" - }, - { - "_num": "7", - "_begin": "8:30", - "_end": "8:36" - }, - { - "_num": "M", - "_begin": "8:33", - "_end": "8:36" - } - ], - "_num": "3" - } - ] - }, - "_id": "Tzav", - "maftirOffset": "62", - "_num": "25", - "_hebrew": "צַו", - "_verse": "Leviticus 6:1 - 8:36", - "_haftaraLength": "17", - "_haftaraLength2": "2", - "_haftara": "Jeremiah 7:21 - 8:3; 9:22 - 9:23" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "9:1", - "_end": "9:16", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "9:17", - "_end": "9:23", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "9:24", - "_end": "10:11", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "10:12", - "_end": "10:15", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "10:16", - "_end": "10:20", - "_numverses": "5" - }, - { - "_num": "6", - "_begin": "11:1", - "_end": "11:32", - "_numverses": "32" - }, - { - "_num": "7", - "_begin": "11:33", - "_end": "11:47", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "11:45", - "_end": "11:47", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:1", - "_end": "9:6" - }, - { - "_num": "2", - "_begin": "9:7", - "_end": "9:10" - }, - { - "_num": "3", - "_begin": "9:11", - "_end": "9:16" - }, - { - "_num": "4", - "_begin": "9:17", - "_end": "9:23" - }, - { - "_num": "5", - "_begin": "9:24", - "_end": "10:3" - }, - { - "_num": "6", - "_begin": "10:4", - "_end": "10:7" - }, - { - "_num": "7", - "_begin": "10:8", - "_end": "10:11" - }, - { - "_num": "M", - "_begin": "10:8", - "_end": "10:11" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "2", - "_begin": "10:16", - "_end": "10:20" - }, - { - "_num": "3", - "_begin": "11:1", - "_end": "11:8" - }, - { - "_num": "4", - "_begin": "11:9", - "_end": "11:12" - }, - { - "_num": "5", - "_begin": "11:13", - "_end": "11:19" - }, - { - "_num": "6", - "_begin": "11:20", - "_end": "11:28" - }, - { - "_num": "7", - "_begin": "11:29", - "_end": "11:32" - }, - { - "_num": "M", - "_begin": "11:29", - "_end": "11:32" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:1", - "_end": "11:8" - }, - { - "_num": "2", - "_begin": "11:9", - "_end": "11:12" - }, - { - "_num": "3", - "_begin": "11:13", - "_end": "11:19" - }, - { - "_num": "4", - "_begin": "11:20", - "_end": "11:28" - }, - { - "_num": "5", - "_begin": "11:29", - "_end": "11:32" - }, - { - "_num": "6", - "_begin": "11:33", - "_end": "11:38" - }, - { - "_num": "7", - "_begin": "11:39", - "_end": "11:47" - }, - { - "_num": "M", - "_begin": "11:45", - "_end": "11:47" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shmini", - "maftirOffset": "166", - "_num": "26", - "_hebrew": "שְּׁמִינִי", - "_verse": "Leviticus 9:1 - 11:47", - "_haftaraLength": "40", - "_haftara": "Samuel_2 6:1 - 7:17", - "_sephardic": "Samuel_1 6:1 - 6:19" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "13:5", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "13:6", - "_end": "13:17", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "13:18", - "_end": "13:23", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "13:24", - "_end": "13:28", - "_numverses": "5" - }, - { - "_num": "5", - "_begin": "13:29", - "_end": "13:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "13:40", - "_end": "13:54", - "_numverses": "15" - }, - { - "_num": "7", - "_begin": "13:55", - "_end": "13:59", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "13:57", - "_end": "13:59", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:4" - }, - { - "_num": "2", - "_begin": "12:5", - "_end": "12:8" - }, - { - "_num": "3", - "_begin": "13:1", - "_end": "13:5" - }, - { - "_num": "4", - "_begin": "13:6", - "_end": "13:8" - }, - { - "_num": "5", - "_begin": "13:9", - "_end": "13:17" - }, - { - "_num": "6", - "_begin": "13:18", - "_end": "13:23" - }, - { - "_num": "7", - "_begin": "13:23", - "_end": "13:28" - }, - { - "_num": "M", - "_begin": "13:26", - "_end": "13:28" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:29", - "_end": "13:34" - }, - { - "_num": "2", - "_begin": "13:35", - "_end": "13:39" - }, - { - "_num": "3", - "_begin": "13:40", - "_end": "13:42" - }, - { - "_num": "4", - "_begin": "13:43", - "_end": "13:46" - }, - { - "_num": "5", - "_begin": "13:47", - "_end": "13:50" - }, - { - "_num": "6", - "_begin": "13:51", - "_end": "13:54" - }, - { - "_num": "7", - "_begin": "13:55", - "_end": "13:59" - }, - { - "_num": "M", - "_begin": "13:57", - "_end": "13:59" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:1", - "_end": "12:4" - }, - { - "_num": "2", - "_begin": "12:5", - "_end": "12:8" - }, - { - "_num": "3", - "_begin": "13:1", - "_end": "13:5" - }, - { - "_num": "4", - "_begin": "13:6", - "_end": "13:17" - }, - { - "_num": "5", - "_begin": "13:18", - "_end": "13:23" - }, - { - "_num": "6", - "_begin": "13:24", - "_end": "13:28" - }, - { - "_num": "7", - "_begin": "13:29", - "_end": "13:39" - }, - { - "_num": "M", - "_begin": "13:37", - "_end": "13:39" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Tazria", - "maftirOffset": "46", - "_num": "27", - "_hebrew": "תַזְרִיעַ", - "_verse": "Leviticus 12:1 - 13:59", - "_haftaraLength": "22", - "_haftara": "Kings_2 4:42 - 5:19" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:12", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "14:13", - "_end": "14:20", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "14:21", - "_end": "14:32", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "14:33", - "_end": "14:53", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "14:54", - "_end": "15:15", - "_numverses": "19" - }, - { - "_num": "6", - "_begin": "15:16", - "_end": "15:28", - "_numverses": "13" - }, - { - "_num": "7", - "_begin": "15:29", - "_end": "15:33", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "15:31", - "_end": "15:33", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:33", - "_end": "14:38" - }, - { - "_num": "2", - "_begin": "14:39", - "_end": "14:47" - }, - { - "_num": "3", - "_begin": "14:48", - "_end": "14:53" - }, - { - "_num": "4", - "_begin": "14:54", - "_end": "15:7" - }, - { - "_num": "5", - "_begin": "15:8", - "_end": "15:15" - }, - { - "_num": "6", - "_begin": "15:16", - "_end": "15:28" - }, - { - "_num": "7", - "_begin": "15:29", - "_end": "15:33" - }, - { - "_num": "M", - "_begin": "15:31", - "_end": "15:33" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:1", - "_end": "14:5" - }, - { - "_num": "2", - "_begin": "14:6", - "_end": "14:9" - }, - { - "_num": "3", - "_begin": "14:10", - "_end": "14:12" - }, - { - "_num": "4", - "_begin": "14:13", - "_end": "14:15" - }, - { - "_num": "5", - "_begin": "14:16", - "_end": "14:20" - }, - { - "_num": "6", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "7", - "_begin": "14:26", - "_end": "14:32" - }, - { - "_num": "M", - "_begin": "14:30", - "_end": "14:32" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.3", - "_sameas": "A.3" - } - ] - }, - "_id": "Metzora", - "maftirOffset": "33", - "_num": "28", - "_hebrew": "מְּצֹרָע", - "_verse": "Leviticus 14:1 - 15:33", - "_haftaraLength": "18", - "_haftara": "Kings_2 7:3 - 7:20" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "16:18", - "_end": "16:24", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "16:25", - "_end": "16:34", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "17:1", - "_end": "17:7", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "17:8", - "_end": "18:5", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "18:6", - "_end": "18:21", - "_numverses": "16" - }, - { - "_num": "7", - "_begin": "18:22", - "_end": "18:30", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "18:28", - "_end": "18:30", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:3" - }, - { - "_num": "2", - "_begin": "16:4", - "_end": "16:6" - }, - { - "_num": "3", - "_begin": "16:7", - "_end": "16:11" - }, - { - "_num": "4", - "_begin": "16:12", - "_end": "16:17" - }, - { - "_num": "5", - "_begin": "16:18", - "_end": "16:24" - }, - { - "_num": "6", - "_begin": "16:25", - "_end": "16:30" - }, - { - "_num": "7", - "_begin": "16:31", - "_end": "16:34" - }, - { - "_num": "M", - "_begin": "16:31", - "_end": "16:34" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "2", - "_begin": "17:8", - "_end": "17:12" - }, - { - "_num": "3", - "_begin": "17:13", - "_end": "17:16" - }, - { - "_num": "4", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "5", - "_begin": "18:6", - "_end": "18:21" - }, - { - "_num": "6", - "_begin": "18:22", - "_end": "18:25" - }, - { - "_num": "7", - "_begin": "18:26", - "_end": "18:30" - }, - { - "_num": "M", - "_begin": "18:26", - "_end": "18:30" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:6" - }, - { - "_num": "2", - "_begin": "16:7", - "_end": "16:11" - }, - { - "_num": "3", - "_begin": "16:12", - "_end": "16:17" - }, - { - "_num": "4", - "_begin": "16:18", - "_end": "16:24" - }, - { - "_num": "5", - "_begin": "16:25", - "_end": "16:30" - }, - { - "_num": "6", - "_begin": "16:31", - "_end": "16:34" - }, - { - "_num": "7", - "_begin": "17:1", - "_end": "17:7" - }, - { - "_num": "M", - "_begin": "17:5", - "_end": "17:7" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Achrei Mot", - "maftirOffset": "72", - "_num": "29", - "_hebrew": "אַחֲרֵי מוֹת", - "_verse": "Leviticus 16:1 - 18:30", - "_haftaraLength": "16", - "_haftara": "Ezekiel 22:1 - 22:16", - "_sephardic": "Ezekiel 22:1 - 22:16" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "19:15", - "_end": "19:22", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "19:23", - "_end": "19:32", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37", - "_numverses": "5" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7", - "_numverses": "7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22", - "_numverses": "15" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27", - "_numverses": "5" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:15", - "_end": "19:18" - }, - { - "_num": "2", - "_begin": "19:19", - "_end": "19:22" - }, - { - "_num": "3", - "_begin": "19:23", - "_end": "19:32" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:4" - }, - { - "_num": "2", - "_begin": "19:5", - "_end": "19:10" - }, - { - "_num": "3", - "_begin": "19:11", - "_end": "19:14" - }, - { - "_num": "4", - "_begin": "19:15", - "_end": "19:18" - }, - { - "_num": "5", - "_begin": "19:19", - "_end": "19:22" - }, - { - "_num": "6", - "_begin": "19:23", - "_end": "19:32" - }, - { - "_num": "7", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "M", - "_begin": "19:35", - "_end": "19:37" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:23", - "_end": "19:25" - }, - { - "_num": "2", - "_begin": "19:26", - "_end": "19:28" - }, - { - "_num": "3", - "_begin": "19:29", - "_end": "19:32" - }, - { - "_num": "4", - "_begin": "19:33", - "_end": "19:37" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:7" - }, - { - "_num": "6", - "_begin": "20:8", - "_end": "20:22" - }, - { - "_num": "7", - "_begin": "20:23", - "_end": "20:27" - }, - { - "_num": "M", - "_begin": "20:25", - "_end": "20:27" - } - ], - "_variation": "D.3" - } - ] - }, - "_id": "Kedoshim", - "maftirOffset": "38", - "_num": "30", - "_hebrew": "קְדשִׁים", - "_verse": "Leviticus 19:1 - 20:27", - "_haftaraLength": "9", - "_haftara": "Amos 9:7 - 9:15", - "_sephardic": "Ezekiel 20:2 - 20:20" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:15", - "_numverses": "15" - }, - { - "_num": "2", - "_begin": "21:16", - "_end": "22:16", - "_numverses": "25" - }, - { - "_num": "3", - "_begin": "22:17", - "_end": "22:33", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "23:1", - "_end": "23:22", - "_numverses": "22" - }, - { - "_num": "5", - "_begin": "23:23", - "_end": "23:32", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "23:33", - "_end": "23:44", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "24:1", - "_end": "24:23", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "24:21", - "_end": "24:23", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "2", - "_begin": "21:7", - "_end": "21:12" - }, - { - "_num": "3", - "_begin": "21:13", - "_end": "21:15" - }, - { - "_num": "4", - "_begin": "21:16", - "_end": "21:24" - }, - { - "_num": "5", - "_begin": "22:1", - "_end": "22:9" - }, - { - "_num": "6", - "_begin": "22:10", - "_end": "22:12" - }, - { - "_num": "7", - "_begin": "22:13", - "_end": "22:16" - }, - { - "_num": "M", - "_begin": "22:13", - "_end": "22:16" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:17", - "_end": "22:20" - }, - { - "_num": "2", - "_begin": "22:21", - "_end": "22:25" - }, - { - "_num": "3", - "_begin": "22:26", - "_end": "22:33" - }, - { - "_num": "4", - "_begin": "23:1", - "_end": "23:3" - }, - { - "_num": "5", - "_begin": "23:4", - "_end": "23:8" - }, - { - "_num": "6", - "_begin": "23:9", - "_end": "23:14" - }, - { - "_num": "7", - "_begin": "23:15", - "_end": "23:22" - }, - { - "_num": "M", - "_begin": "23:19", - "_end": "23:22" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:23", - "_end": "23:25" - }, - { - "_num": "2", - "_begin": "23:26", - "_end": "23:32" - }, - { - "_num": "3", - "_begin": "23:33", - "_end": "23:44" - }, - { - "_num": "4", - "_begin": "24:1", - "_end": "24:4" - }, - { - "_num": "5", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "6", - "_begin": "24:10", - "_end": "24:12" - }, - { - "_num": "7", - "_begin": "24:13", - "_end": "24:23" - }, - { - "_num": "M", - "_begin": "24:21", - "_end": "24:23" - } - ], - "_num": "3" - } - ] - }, - "_id": "Emor", - "maftirOffset": "238", - "_num": "31", - "_hebrew": "אֱמוֹר", - "_verse": "Leviticus 21:1 - 24:23", - "_haftaraLength": "17", - "_haftara": "Ezekiel 44:15 - 44:31" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "25:14", - "_end": "25:18", - "_numverses": "5" - }, - { - "_num": "3", - "_begin": "25:19", - "_end": "25:24", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "25:25", - "_end": "25:28", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "25:29", - "_end": "25:38", - "_numverses": "10" - }, - { - "_num": "6", - "_begin": "25:39", - "_end": "25:46", - "_numverses": "8" - }, - { - "_num": "7", - "_begin": "25:47", - "_end": "26:2", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "25:55", - "_end": "26:2", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:3" - }, - { - "_num": "2", - "_begin": "25:4", - "_end": "25:7" - }, - { - "_num": "3", - "_begin": "25:8", - "_end": "25:10" - }, - { - "_num": "4", - "_begin": "25:11", - "_end": "25:13" - }, - { - "_num": "5", - "_begin": "25:14", - "_end": "25:18" - }, - { - "_num": "6", - "_begin": "25:19", - "_end": "25:24" - }, - { - "_num": "7", - "_begin": "25:25", - "_end": "25:28" - }, - { - "_num": "M", - "_begin": "25:25", - "_end": "25:28" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:29", - "_end": "25:34" - }, - { - "_num": "2", - "_begin": "25:35", - "_end": "25:38" - }, - { - "_num": "3", - "_begin": "25:39", - "_end": "25:43" - }, - { - "_num": "4", - "_begin": "25:44", - "_end": "25:46" - }, - { - "_num": "5", - "_begin": "25:47", - "_end": "25:50" - }, - { - "_num": "6", - "_begin": "25:51", - "_end": "25:54" - }, - { - "_num": "7", - "_begin": "25:55", - "_end": "26:2" - }, - { - "_num": "M", - "_begin": "25:55", - "_end": "26:2" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:1", - "_end": "25:3" - }, - { - "_num": "2", - "_begin": "25:4", - "_end": "25:7" - }, - { - "_num": "3", - "_begin": "25:8", - "_end": "25:13" - }, - { - "_num": "4", - "_begin": "25:14", - "_end": "25:18" - }, - { - "_num": "5", - "_begin": "25:19", - "_end": "25:24" - }, - { - "_num": "6", - "_begin": "25:25", - "_end": "25:28" - }, - { - "_num": "7", - "_begin": "25:29", - "_end": "25:38" - }, - { - "_num": "M", - "_begin": "25:35", - "_end": "25:38" - } - ], - "_variation": "C.1" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Behar", - "maftirOffset": "100", - "_num": "32", - "_hebrew": "בְּהַר", - "_verse": "Leviticus 25:1 - 26:2", - "_haftaraLength": "22", - "_haftara": "Jeremiah 32:6 - 32:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "26:3", - "_end": "26:5", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:9", - "_numverses": "4" - }, - { - "_num": "3", - "_begin": "26:10", - "_end": "26:46", - "_numverses": "37" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:15", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "27:16", - "_end": "27:21", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "27:22", - "_end": "27:28", - "_numverses": "7" - }, - { - "_num": "7", - "_begin": "27:29", - "_end": "27:34", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "27:32", - "_end": "27:34", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "2", - "_begin": "27:5", - "_end": "27:8" - }, - { - "_num": "3", - "_begin": "27:9", - "_end": "27:15" - }, - { - "_num": "4", - "_begin": "27:16", - "_end": "27:21" - }, - { - "_num": "5", - "_begin": "27:22", - "_end": "27:25" - }, - { - "_num": "6", - "_begin": "27:26", - "_end": "27:28" - }, - { - "_num": "7", - "_begin": "27:29", - "_end": "27:34" - }, - { - "_num": "M", - "_begin": "27:32", - "_end": "27:34" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:3", - "_end": "26:5" - }, - { - "_num": "2", - "_begin": "26:6", - "_end": "26:9" - }, - { - "_num": "3", - "_begin": "26:10", - "_end": "26:46" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "5", - "_begin": "27:5", - "_end": "27:8" - }, - { - "_num": "6", - "_begin": "27:9", - "_end": "27:11" - }, - { - "_num": "7", - "_begin": "27:12", - "_end": "27:15" - }, - { - "_num": "M", - "_begin": "27:12", - "_end": "27:15" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.3", - "_sameas": "A.3" - } - ] - }, - "_id": "Bechukotai", - "maftirOffset": "29", - "_num": "33", - "_hebrew": "בְּחֻקֹּתַי", - "_verse": "Leviticus 26:3 - 27:34", - "_haftaraLength": "17", - "_haftara": "Jeremiah 16:19 - 17:14" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:19", - "_numverses": "19" - }, - { - "_num": "2", - "_begin": "1:20", - "_end": "1:54", - "_numverses": "35" - }, - { - "_num": "3", - "_begin": "2:1", - "_end": "2:34", - "_numverses": "34" - }, - { - "_num": "4", - "_begin": "3:1", - "_end": "3:13", - "_numverses": "13" - }, - { - "_num": "5", - "_begin": "3:14", - "_end": "3:39", - "_numverses": "26" - }, - { - "_num": "6", - "_begin": "3:40", - "_end": "3:51", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "4:1", - "_end": "4:20", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "4:17", - "_end": "4:20", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:4" - }, - { - "_num": "2", - "_begin": "1:5", - "_end": "1:16" - }, - { - "_num": "3", - "_begin": "1:17", - "_end": "1:19" - }, - { - "_num": "4", - "_begin": "1:20", - "_end": "1:27" - }, - { - "_num": "5", - "_begin": "1:28", - "_end": "1:35" - }, - { - "_num": "6", - "_begin": "1:36", - "_end": "1:43" - }, - { - "_num": "7", - "_begin": "1:44", - "_end": "1:54" - }, - { - "_num": "M", - "_begin": "1:52", - "_end": "1:54" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:1", - "_end": "2:9" - }, - { - "_num": "2", - "_begin": "2:10", - "_end": "2:16" - }, - { - "_num": "3", - "_begin": "2:17", - "_end": "2:24" - }, - { - "_num": "4", - "_begin": "2:25", - "_end": "2:31" - }, - { - "_num": "5", - "_begin": "2:32", - "_end": "2:34" - }, - { - "_num": "6", - "_begin": "3:1", - "_end": "3:4" - }, - { - "_num": "7", - "_begin": "3:5", - "_end": "3:13" - }, - { - "_num": "M", - "_begin": "3:11", - "_end": "3:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:14", - "_end": "3:20" - }, - { - "_num": "2", - "_begin": "3:21", - "_end": "3:26" - }, - { - "_num": "3", - "_begin": "3:27", - "_end": "3:39" - }, - { - "_num": "4", - "_begin": "3:40", - "_end": "3:43" - }, - { - "_num": "5", - "_begin": "3:44", - "_end": "3:51" - }, - { - "_num": "6", - "_begin": "4:1", - "_end": "4:10" - }, - { - "_num": "7", - "_begin": "4:11", - "_end": "4:20" - }, - { - "_num": "M", - "_begin": "4:17", - "_end": "4:20" - } - ], - "_num": "3" - } - ] - }, - "_id": "Bamidbar", - "maftirOffset": "253", - "_num": "34", - "_hebrew": "בְּמִדְבַּר", - "_verse": "Numbers 1:1 - 4:20", - "_haftaraLength": "22", - "_haftara": "Hosea 2:1 - 2:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "4:21", - "_end": "4:37", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "4:38", - "_end": "4:49", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:10", - "_numverses": "10" - }, - { - "_num": "4", - "_begin": "5:11", - "_end": "6:27", - "_numverses": "48" - }, - { - "_num": "5", - "_begin": "7:1", - "_end": "7:41", - "_numverses": "41" - }, - { - "_num": "6", - "_begin": "7:42", - "_end": "7:71", - "_numverses": "30" - }, - { - "_num": "7", - "_begin": "7:72", - "_end": "7:89", - "_numverses": "18" - }, - { - "_num": "M", - "_begin": "7:87", - "_end": "7:89", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:21", - "_end": "4:24" - }, - { - "_num": "2", - "_begin": "4:25", - "_end": "4:28" - }, - { - "_num": "3", - "_begin": "4:29", - "_end": "4:33" - }, - { - "_num": "4", - "_begin": "4:34", - "_end": "4:37" - }, - { - "_num": "5", - "_begin": "4:38", - "_end": "4:49" - }, - { - "_num": "6", - "_begin": "5:1", - "_end": "5:4" - }, - { - "_num": "7", - "_begin": "5:5", - "_end": "5:10" - }, - { - "_num": "M", - "_begin": "5:8", - "_end": "5:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:11", - "_end": "5:15" - }, - { - "_num": "2", - "_begin": "5:16", - "_end": "5:26" - }, - { - "_num": "3", - "_begin": "5:27", - "_end": "6:4" - }, - { - "_num": "4", - "_begin": "6:5", - "_end": "6:8" - }, - { - "_num": "5", - "_begin": "6:9", - "_end": "6:15" - }, - { - "_num": "6", - "_begin": "6:16", - "_end": "6:21" - }, - { - "_num": "7", - "_begin": "6:22", - "_end": "6:27" - }, - { - "_num": "M", - "_begin": "6:22", - "_end": "6:27" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:1", - "_end": "7:11" - }, - { - "_num": "2", - "_begin": "7:12", - "_end": "7:23" - }, - { - "_num": "3", - "_begin": "7:24", - "_end": "7:35" - }, - { - "_num": "4", - "_begin": "7:36", - "_end": "7:47" - }, - { - "_num": "5", - "_begin": "7:48", - "_end": "7:59" - }, - { - "_num": "6", - "_begin": "7:60", - "_end": "7:71" - }, - { - "_num": "7", - "_begin": "7:72", - "_end": "7:89" - }, - { - "_num": "M", - "_begin": "7:87", - "_end": "7:89" - } - ], - "_num": "3" - } - ] - }, - "_id": "Nasso", - "maftirOffset": "189", - "_num": "35", - "_hebrew": "נָשׂא", - "_verse": "Numbers 4:21 - 7:89", - "_haftaraLength": "24", - "_haftara": "Judges 13:2 - 13:25" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:14", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "8:15", - "_end": "8:26", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "9:1", - "_end": "9:14", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "9:15", - "_end": "10:10", - "_numverses": "19" - }, - { - "_num": "5", - "_begin": "10:11", - "_end": "10:34", - "_numverses": "24" - }, - { - "_num": "6", - "_begin": "10:35", - "_end": "11:29", - "_numverses": "31" - }, - { - "_num": "7", - "_begin": "11:30", - "_end": "12:16", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "12:14", - "_end": "12:16", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "8:1", - "_end": "8:4" - }, - { - "_num": "2", - "_begin": "8:5", - "_end": "8:9" - }, - { - "_num": "3", - "_begin": "8:10", - "_end": "8:14" - }, - { - "_num": "4", - "_begin": "8:15", - "_end": "8:22" - }, - { - "_num": "5", - "_begin": "8:23", - "_end": "8:26" - }, - { - "_num": "6", - "_begin": "9:1", - "_end": "9:8" - }, - { - "_num": "7", - "_begin": "9:9", - "_end": "9:14" - }, - { - "_num": "M", - "_begin": "9:12", - "_end": "9:14" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:15", - "_end": "9:18" - }, - { - "_num": "2", - "_begin": "9:19", - "_end": "9:23" - }, - { - "_num": "3", - "_begin": "10:1", - "_end": "10:7" - }, - { - "_num": "4", - "_begin": "10:8", - "_end": "10:10" - }, - { - "_num": "5", - "_begin": "10:11", - "_end": "10:20" - }, - { - "_num": "6", - "_begin": "10:21", - "_end": "10:28" - }, - { - "_num": "7", - "_begin": "10:29", - "_end": "10:34" - }, - { - "_num": "M", - "_begin": "10:32", - "_end": "10:34" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:35", - "_end": "11:9" - }, - { - "_num": "2", - "_begin": "11:10", - "_end": "11:18" - }, - { - "_num": "3", - "_begin": "11:19", - "_end": "11:22" - }, - { - "_num": "4", - "_begin": "11:23", - "_end": "11:29" - }, - { - "_num": "5", - "_begin": "11:30", - "_end": "11:35" - }, - { - "_num": "6", - "_begin": "12:1", - "_end": "12:13" - }, - { - "_num": "7", - "_begin": "12:14", - "_end": "12:16" - }, - { - "_num": "M", - "_begin": "12:14", - "_end": "12:16" - } - ], - "_num": "3" - } - ] - }, - "_id": "Beha’alotcha", - "maftirOffset": "246", - "_num": "36", - "_hebrew": "בְּהַעֲלֹתְךָ", - "_verse": "Numbers 8:1 - 12:16", - "_haftaraLength": "21", - "_haftara": "Zechariah 2:14 - 4:7" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "13:1", - "_end": "13:20", - "_numverses": "20" - }, - { - "_num": "2", - "_begin": "13:21", - "_end": "14:7", - "_numverses": "20" - }, - { - "_num": "3", - "_begin": "14:8", - "_end": "14:25", - "_numverses": "18" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "15:7", - "_numverses": "27" - }, - { - "_num": "5", - "_begin": "15:8", - "_end": "15:16", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "15:17", - "_end": "15:26", - "_numverses": "10" - }, - { - "_num": "7", - "_begin": "15:27", - "_end": "15:41", - "_numverses": "15" - }, - { - "_num": "M", - "_begin": "15:37", - "_end": "15:41", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "13:1", - "_end": "13:3" - }, - { - "_num": "2", - "_begin": "13:4", - "_end": "13:16" - }, - { - "_num": "3", - "_begin": "13:17", - "_end": "13:20" - }, - { - "_num": "4", - "_begin": "13:21", - "_end": "13:24" - }, - { - "_num": "5", - "_begin": "13:25", - "_end": "13:30" - }, - { - "_num": "6", - "_begin": "13:31", - "_end": "13:33" - }, - { - "_num": "7", - "_begin": "14:1", - "_end": "14:7" - }, - { - "_num": "M", - "_begin": "14:5", - "_end": "14:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "14:8", - "_end": "14:10" - }, - { - "_num": "2", - "_begin": "14:11", - "_end": "14:20" - }, - { - "_num": "3", - "_begin": "14:21", - "_end": "14:25" - }, - { - "_num": "4", - "_begin": "14:26", - "_end": "14:38" - }, - { - "_num": "5", - "_begin": "14:39", - "_end": "14:42" - }, - { - "_num": "6", - "_begin": "14:43", - "_end": "15:3" - }, - { - "_num": "7", - "_begin": "15:4", - "_end": "15:7" - }, - { - "_num": "M", - "_begin": "15:4", - "_end": "15:7" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "15:8", - "_end": "15:10" - }, - { - "_num": "2", - "_begin": "15:11", - "_end": "15:16" - }, - { - "_num": "3", - "_begin": "15:17", - "_end": "15:21" - }, - { - "_num": "4", - "_begin": "15:22", - "_end": "15:26" - }, - { - "_num": "5", - "_begin": "15:27", - "_end": "15:31" - }, - { - "_num": "6", - "_begin": "15:32", - "_end": "15:36" - }, - { - "_num": "7", - "_begin": "15:37", - "_end": "15:41" - }, - { - "_num": "M", - "_begin": "15:37", - "_end": "15:41" - } - ], - "_num": "3" - } - ] - }, - "_id": "Sh’lach", - "maftirOffset": "128", - "_num": "37", - "_hebrew": "שְׁלַח־לְךָ", - "_verse": "Numbers 13:1 - 15:41", - "_haftaraLength": "24", - "_haftara": "Joshua 2:1 - 2:24" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:13", - "_numverses": "13" - }, - { - "_num": "2", - "_begin": "16:14", - "_end": "16:19", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "16:20", - "_end": "17:8", - "_numverses": "24" - }, - { - "_num": "4", - "_begin": "17:9", - "_end": "17:15", - "_numverses": "7" - }, - { - "_num": "5", - "_begin": "17:16", - "_end": "17:24", - "_numverses": "9" - }, - { - "_num": "6", - "_begin": "17:25", - "_end": "18:20", - "_numverses": "24" - }, - { - "_num": "7", - "_begin": "18:21", - "_end": "18:32", - "_numverses": "12" - }, - { - "_num": "M", - "_begin": "18:30", - "_end": "18:32", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:1", - "_end": "16:3" - }, - { - "_num": "2", - "_begin": "16:4", - "_end": "16:7" - }, - { - "_num": "3", - "_begin": "16:8", - "_end": "16:13" - }, - { - "_num": "4", - "_begin": "16:14", - "_end": "16:19" - }, - { - "_num": "5", - "_begin": "16:20", - "_end": "16:35" - }, - { - "_num": "6", - "_begin": "17:1", - "_end": "17:8" - }, - { - "_num": "7", - "_begin": "17:9", - "_end": "17:15" - }, - { - "_num": "M", - "_begin": "17:9", - "_end": "17:15" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:20", - "_end": "16:27" - }, - { - "_num": "2", - "_begin": "16:28", - "_end": "16:35" - }, - { - "_num": "3", - "_begin": "17:1", - "_end": "17:5" - }, - { - "_num": "4", - "_begin": "17:6", - "_end": "17:8" - }, - { - "_num": "5", - "_begin": "17:9", - "_end": "17:15" - }, - { - "_num": "6", - "_begin": "17:16", - "_end": "17:20" - }, - { - "_num": "7", - "_begin": "17:21", - "_end": "17:24" - }, - { - "_num": "M", - "_begin": "17:21", - "_end": "17:24" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "17:25", - "_end": "18:7" - }, - { - "_num": "2", - "_begin": "18:8", - "_end": "18:10" - }, - { - "_num": "3", - "_begin": "18:11", - "_end": "18:13" - }, - { - "_num": "4", - "_begin": "18:14", - "_end": "18:20" - }, - { - "_num": "5", - "_begin": "18:21", - "_end": "18:24" - }, - { - "_num": "6", - "_begin": "18:25", - "_end": "18:29" - }, - { - "_num": "7", - "_begin": "18:30", - "_end": "18:32" - }, - { - "_num": "M", - "_begin": "18:30", - "_end": "18:32" - } - ], - "_num": "3" - } - ] - }, - "_id": "Korach", - "maftirOffset": "139", - "_num": "38", - "_hebrew": "קוֹרַח", - "_verse": "Numbers 16:1 - 18:32", - "_haftaraLength": "24", - "_haftara": "Samuel_1 11:14 - 12:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:17", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "19:18", - "_end": "20:6", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "20:7", - "_end": "20:13", - "_numverses": "7" - }, - { - "_num": "4", - "_begin": "20:14", - "_end": "20:21", - "_numverses": "8" - }, - { - "_num": "5", - "_begin": "20:22", - "_end": "21:9", - "_numverses": "17" - }, - { - "_num": "6", - "_begin": "21:10", - "_end": "21:20", - "_numverses": "11" - }, - { - "_num": "7", - "_begin": "21:21", - "_end": "22:1", - "_numverses": "16" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:17" - }, - { - "_num": "4", - "_begin": "19:18", - "_end": "19:22" - }, - { - "_num": "5", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "6", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "7", - "_begin": "20:14", - "_end": "20:21" - }, - { - "_num": "M", - "_begin": "20:18", - "_end": "20:21" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:11", - "_end": "21:13" - }, - { - "_num": "2", - "_begin": "21:14", - "_end": "21:16" - }, - { - "_num": "3", - "_begin": "21:17", - "_end": "21:20" - }, - { - "_num": "4", - "_begin": "21:21", - "_end": "21:25" - }, - { - "_num": "5", - "_begin": "21:26", - "_end": "21:28" - }, - { - "_num": "6", - "_begin": "21:29", - "_end": "21:33" - }, - { - "_num": "7", - "_begin": "21:34", - "_end": "22:1" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "20:22", - "_end": "21:3" - }, - { - "_num": "2", - "_begin": "21:4", - "_end": "21:10" - }, - { - "_num": "3", - "_begin": "21:11", - "_end": "21:16" - }, - { - "_num": "4", - "_begin": "21:17", - "_end": "21:20" - }, - { - "_num": "5", - "_begin": "21:21", - "_end": "21:25" - }, - { - "_num": "6", - "_begin": "21:25", - "_end": "21:33" - }, - { - "_num": "7", - "_begin": "21:34", - "_end": "22:1" - }, - { - "_num": "M", - "_begin": "21:34", - "_end": "22:1" - } - ], - "_variation": "C.3" - }, - { - "_variation": "D.1", - "_sameas": "A.3" - }, - { - "_variation": "D.2", - "_sameas": "C.3" - }, - { - "_variation": "E.1", - "_sameas": "A.3" - }, - { - "_variation": "E.3", - "_sameas": "C.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:9" - }, - { - "_num": "2", - "_begin": "19:10", - "_end": "19:17" - }, - { - "_num": "3", - "_begin": "19:18", - "_end": "20:6" - }, - { - "_num": "4", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "5", - "_begin": "20:14", - "_end": "20:21" - }, - { - "_num": "6", - "_begin": "20:22", - "_end": "21:9" - }, - { - "_num": "7", - "_begin": "21:10", - "_end": "21:20" - }, - { - "_num": "M", - "_begin": "21:16", - "_end": "21:20" - } - ], - "_variation": "F.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:1", - "_end": "19:6" - }, - { - "_num": "2", - "_begin": "19:7", - "_end": "19:9" - }, - { - "_num": "3", - "_begin": "19:10", - "_end": "19:13" - }, - { - "_num": "4", - "_begin": "19:14", - "_end": "19:17" - }, - { - "_num": "5", - "_begin": "19:18", - "_end": "19:22" - }, - { - "_num": "6", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "7", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "M", - "_begin": "20:7", - "_end": "20:13" - } - ], - "_variation": "G.1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "20:1", - "_end": "20:6" - }, - { - "_num": "2", - "_begin": "20:7", - "_end": "20:13" - }, - { - "_num": "3", - "_begin": "20:14", - "_end": "20:17" - }, - { - "_num": "4", - "_begin": "20:18", - "_end": "20:21" - }, - { - "_num": "5", - "_begin": "20:22", - "_end": "21:3" - }, - { - "_num": "6", - "_begin": "21:4", - "_end": "21:7" - }, - { - "_num": "7", - "_begin": "21:8", - "_end": "21:10" - }, - { - "_num": "M", - "_begin": "21:8", - "_end": "21:10" - } - ], - "_variation": "G.2" - }, - { - "_variation": "G.3", - "_sameas": "B.2" - } - ] - }, - "_id": "Chukat", - "maftirOffset": "174", - "_num": "39", - "_hebrew": "חֻקַּת", - "_verse": "Numbers 19:1 - 22:1", - "_haftaraLength": "33", - "_haftara": "Judges 11:1 - 11:33" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "22:2", - "_end": "22:12", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "22:13", - "_end": "22:20", - "_numverses": "8" - }, - { - "_num": "3", - "_begin": "22:21", - "_end": "22:38", - "_numverses": "18" - }, - { - "_num": "4", - "_begin": "22:39", - "_end": "23:12", - "_numverses": "15" - }, - { - "_num": "5", - "_begin": "23:13", - "_end": "23:26", - "_numverses": "14" - }, - { - "_num": "6", - "_begin": "23:27", - "_end": "24:13", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "24:14", - "_end": "25:9", - "_numverses": "21" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:39", - "_end": "23:5" - }, - { - "_num": "2", - "_begin": "23:6", - "_end": "23:12" - }, - { - "_num": "3", - "_begin": "23:13", - "_end": "23:26" - }, - { - "_num": "4", - "_begin": "23:27", - "_end": "23:30" - }, - { - "_num": "5", - "_begin": "24:1", - "_end": "24:13" - }, - { - "_num": "6", - "_begin": "24:14", - "_end": "24:25" - }, - { - "_num": "7", - "_begin": "25:1", - "_end": "25:9" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:2", - "_end": "22:4" - }, - { - "_num": "2", - "_begin": "22:5", - "_end": "22:7" - }, - { - "_num": "3", - "_begin": "22:8", - "_end": "22:12" - }, - { - "_num": "4", - "_begin": "22:13", - "_end": "22:20" - }, - { - "_num": "5", - "_begin": "22:21", - "_end": "22:27" - }, - { - "_num": "6", - "_begin": "22:28", - "_end": "22:30" - }, - { - "_num": "7", - "_begin": "22:31", - "_end": "22:38" - }, - { - "_num": "M", - "_begin": "22:36", - "_end": "22:38" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.2", - "_sameas": "B.2" - }, - { - "_variation": "C.3", - "_sameas": "A.3" - }, - { - "_variation": "D.1", - "_sameas": "B.2" - }, - { - "_variation": "D.2", - "_sameas": "A.3" - }, - { - "_variation": "E.1", - "_sameas": "B.2" - }, - { - "_variation": "E.3", - "_sameas": "A.3" - }, - { - "_variation": "F.1", - "_sameas": "B.2" - }, - { - "_variation": "G.1", - "_sameas": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "22:39", - "_end": "22:41" - }, - { - "_num": "2", - "_begin": "23:1", - "_end": "23:3" - }, - { - "_num": "3", - "_begin": "23:4", - "_end": "23:6" - }, - { - "_num": "4", - "_begin": "23:7", - "_end": "23:12" - }, - { - "_num": "5", - "_begin": "23:13", - "_end": "23:15" - }, - { - "_num": "6", - "_begin": "23:16", - "_end": "23:18" - }, - { - "_num": "7", - "_begin": "23:19", - "_end": "23:26" - }, - { - "_num": "M", - "_begin": "23:19", - "_end": "23:26" - } - ], - "_variation": "G.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:27", - "_end": "23:30" - }, - { - "_num": "2", - "_begin": "24:1", - "_end": "24:9" - }, - { - "_num": "3", - "_begin": "24:10", - "_end": "24:13" - }, - { - "_num": "4", - "_begin": "24:14", - "_end": "24:19" - }, - { - "_num": "5", - "_begin": "24:20", - "_end": "24:25" - }, - { - "_num": "6", - "_begin": "25:1", - "_end": "25:6" - }, - { - "_num": "7", - "_begin": "25:7", - "_end": "25:9" - }, - { - "_num": "M", - "_begin": "25:7", - "_end": "25:9" - } - ], - "_variation": "G.3" - } - ] - }, - "_id": "Balak", - "_num": "40", - "maftirOffset": "208", - "_hebrew": "בָּלָק", - "_verse": "Numbers 22:2 - 25:9", - "_haftaraLength": "17", - "_haftara": "Micah 5:6 - 6:8" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "25:10", - "_end": "26:4", - "_numverses": "14" - }, - { - "_num": "2", - "_begin": "26:5", - "_end": "26:51", - "_numverses": "47" - }, - { - "_num": "3", - "_begin": "26:52", - "_end": "27:5", - "_numverses": "19" - }, - { - "_num": "4", - "_begin": "27:6", - "_end": "27:23", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "28:1", - "_end": "28:15", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "28:16", - "_end": "29:11", - "_numverses": "27" - }, - { - "_num": "7", - "_begin": "29:12", - "_end": "30:1", - "_numverses": "29" - }, - { - "_num": "M", - "_begin": "29:35", - "_end": "30:1", - "_numverses": "6" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "25:10", - "_end": "25:12" - }, - { - "_num": "2", - "_begin": "25:13", - "_end": "25:15" - }, - { - "_num": "3", - "_begin": "25:16", - "_end": "26:4" - }, - { - "_num": "4", - "_begin": "26:5", - "_end": "26:11" - }, - { - "_num": "5", - "_begin": "26:12", - "_end": "26:22" - }, - { - "_num": "6", - "_begin": "26:23", - "_end": "26:34" - }, - { - "_num": "7", - "_begin": "26:35", - "_end": "26:51" - }, - { - "_num": "M", - "_begin": "26:48", - "_end": "26:51" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:52", - "_end": "26:56" - }, - { - "_num": "2", - "_begin": "26:57", - "_end": "26:62" - }, - { - "_num": "3", - "_begin": "26:63", - "_end": "27:5" - }, - { - "_num": "4", - "_begin": "27:6", - "_end": "27:14" - }, - { - "_num": "5", - "_begin": "27:15", - "_end": "27:23" - }, - { - "_num": "6", - "_begin": "28:1", - "_end": "28:10" - }, - { - "_num": "7", - "_begin": "28:11", - "_end": "28:15" - }, - { - "_num": "M", - "_begin": "28:11", - "_end": "28:15" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "28:16", - "_end": "28:25" - }, - { - "_num": "2", - "_begin": "28:26", - "_end": "28:31" - }, - { - "_num": "3", - "_begin": "29:1", - "_end": "29:6" - }, - { - "_num": "4", - "_begin": "29:7", - "_end": "29:11" - }, - { - "_num": "5", - "_begin": "29:12", - "_end": "29:16" - }, - { - "_num": "6", - "_begin": "29:17", - "_end": "29:28" - }, - { - "_num": "7", - "_begin": "29:29", - "_end": "30:1" - }, - { - "_num": "M", - "_begin": "29:35", - "_end": "30:1" - } - ], - "_num": "3" - } - ] - }, - "_id": "Pinchas", - "maftirOffset": "240", - "_num": "41", - "_hebrew": "פִּינְחָס", - "_verse": "Numbers 25:10 - 30:1", - "_haftaraLength": "22", - "_haftara": "Kings_1 18:46 - 19:21" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:17", - "_numverses": "16" - }, - { - "_num": "2", - "_begin": "31:1", - "_end": "31:12", - "_numverses": "12" - }, - { - "_num": "3", - "_begin": "31:13", - "_end": "31:24", - "_numverses": "12" - }, - { - "_num": "4", - "_begin": "31:25", - "_end": "31:41", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "31:42", - "_end": "31:54", - "_numverses": "13" - }, - { - "_num": "6", - "_begin": "32:1", - "_end": "32:19", - "_numverses": "19" - }, - { - "_num": "7", - "_begin": "32:20", - "_end": "32:42", - "_numverses": "23" - }, - { - "_num": "M", - "_begin": "32:39", - "_end": "32:42", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:6" - }, - { - "_num": "2", - "_begin": "30:7", - "_end": "30:9" - }, - { - "_num": "3", - "_begin": "30:10", - "_end": "30:13" - }, - { - "_num": "4", - "_begin": "30:14", - "_end": "30:17" - }, - { - "_num": "5", - "_begin": "31:1", - "_end": "31:4" - }, - { - "_num": "6", - "_begin": "31:5", - "_end": "31:8" - }, - { - "_num": "7", - "_begin": "31:9", - "_end": "31:12" - }, - { - "_num": "M", - "_begin": "31:9", - "_end": "31:12" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "32:4" - }, - { - "_num": "2", - "_begin": "32:5", - "_end": "32:19" - }, - { - "_num": "3", - "_begin": "32:20", - "_end": "32:24" - }, - { - "_num": "4", - "_begin": "32:25", - "_end": "32:27" - }, - { - "_num": "5", - "_begin": "32:28", - "_end": "32:30" - }, - { - "_num": "6", - "_begin": "32:31", - "_end": "32:38" - }, - { - "_num": "7", - "_begin": "32:39", - "_end": "32:42" - }, - { - "_num": "M", - "_begin": "32:39", - "_end": "32:42" - } - ], - "_variation": "B.2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "30:2", - "_end": "30:9" - }, - { - "_num": "2", - "_begin": "30:10", - "_end": "30:13" - }, - { - "_num": "3", - "_begin": "30:14", - "_end": "30:17" - }, - { - "_num": "4", - "_begin": "31:1", - "_end": "31:12" - }, - { - "_num": "5", - "_begin": "31:13", - "_end": "31:24" - }, - { - "_num": "6", - "_begin": "31:25", - "_end": "31:41" - }, - { - "_num": "7", - "_begin": "31:42", - "_end": "31:54" - }, - { - "_num": "M", - "_begin": "31:51", - "_end": "31:54" - } - ], - "_variation": "C.1" - } - ] - }, - "_id": "Matot", - "maftirOffset": "252", - "_num": "42", - "_hebrew": "מַּטּוֹת", - "_verse": "Numbers 30:2 - 32:42", - "_haftaraLength": "22", - "_haftara": "Jeremiah 1:1 - 2:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:9", - "_numverses": "9" - }, - { - "_num": "2", - "_begin": "33:10", - "_end": "33:49", - "_numverses": "40" - }, - { - "_num": "3", - "_begin": "33:50", - "_end": "34:15", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "34:16", - "_end": "34:29", - "_numverses": "14" - }, - { - "_num": "5", - "_begin": "35:1", - "_end": "35:8", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "35:9", - "_end": "35:34", - "_numverses": "26" - }, - { - "_num": "7", - "_begin": "36:1", - "_end": "36:13", - "_numverses": "13" - }, - { - "_num": "M", - "_begin": "36:11", - "_end": "36:13", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:50", - "_end": "34:15" - }, - { - "_num": "2", - "_begin": "34:16", - "_end": "34:29" - }, - { - "_num": "3", - "_begin": "35:1", - "_end": "35:8" - }, - { - "_num": "4", - "_begin": "35:9", - "_end": "35:15" - }, - { - "_num": "5", - "_begin": "35:16", - "_end": "35:29" - }, - { - "_num": "6", - "_begin": "35:30", - "_end": "35:34" - }, - { - "_num": "7", - "_begin": "36:1", - "_end": "36:13" - }, - { - "_num": "M", - "_begin": "36:10", - "_end": "36:13" - } - ], - "_variation": "A.3" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:3" - }, - { - "_num": "2", - "_begin": "33:4", - "_end": "33:6" - }, - { - "_num": "3", - "_begin": "33:7", - "_end": "33:10" - }, - { - "_num": "4", - "_begin": "33:11", - "_end": "33:23" - }, - { - "_num": "5", - "_begin": "33:24", - "_end": "33:36" - }, - { - "_num": "6", - "_begin": "33:37", - "_end": "33:43" - }, - { - "_num": "7", - "_begin": "33:44", - "_end": "33:49" - }, - { - "_num": "M", - "_begin": "33:47", - "_end": "33:49" - } - ], - "_variation": "B.2" - }, - { - "_variation": "C.1", - "_sameas": "B.2" - } - ] - }, - "_id": "Masei", - "maftirOffset": "172", - "_num": "43", - "_hebrew": "מַסְעֵי", - "_verse": "Numbers 33:1 - 36:13", - "_haftaraLength": "25", - "_haftaraLength2": "1", - "_haftara": "Jeremiah 2:4 - 2:28; 3:4 - 3:5", - "_sephardic": "Jeremiah 2:4 - 28; 4:1 - 4:2" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:10", - "_numverses": "10" - }, - { - "_num": "2", - "_begin": "1:11", - "_end": "1:21", - "_numverses": "11" - }, - { - "_num": "3", - "_begin": "1:22", - "_end": "1:38", - "_numverses": "17" - }, - { - "_num": "4", - "_begin": "1:39", - "_end": "2:1", - "_numverses": "9" - }, - { - "_num": "5", - "_begin": "2:2", - "_end": "2:30", - "_numverses": "29" - }, - { - "_num": "6", - "_begin": "2:31", - "_end": "3:14", - "_numverses": "21" - }, - { - "_num": "7", - "_begin": "3:15", - "_end": "3:22", - "_numverses": "8" - }, - { - "_num": "M", - "_begin": "3:20", - "_end": "3:22", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "1:1", - "_end": "1:3" - }, - { - "_num": "2", - "_begin": "1:4", - "_end": "1:7" - }, - { - "_num": "3", - "_begin": "1:8", - "_end": "1:10" - }, - { - "_num": "4", - "_begin": "1:11", - "_end": "1:21" - }, - { - "_num": "5", - "_begin": "1:22", - "_end": "1:28" - }, - { - "_num": "6", - "_begin": "1:29", - "_end": "1:38" - }, - { - "_num": "7", - "_begin": "1:39", - "_end": "2:1" - }, - { - "_num": "M", - "_begin": "1:39", - "_end": "2:1" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:2", - "_end": "2:5" - }, - { - "_num": "2", - "_begin": "2:6", - "_end": "2:12" - }, - { - "_num": "3", - "_begin": "2:13", - "_end": "2:16" - }, - { - "_num": "4", - "_begin": "2:17", - "_end": "2:19" - }, - { - "_num": "5", - "_begin": "2:20", - "_end": "2:22" - }, - { - "_num": "6", - "_begin": "2:23", - "_end": "2:25" - }, - { - "_num": "7", - "_begin": "2:26", - "_end": "2:30" - }, - { - "_num": "M", - "_begin": "2:28", - "_end": "2:30" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "2:31", - "_end": "2:34" - }, - { - "_num": "2", - "_begin": "2:35", - "_end": "2:37" - }, - { - "_num": "3", - "_begin": "3:1", - "_end": "3:3" - }, - { - "_num": "4", - "_begin": "3:4", - "_end": "3:7" - }, - { - "_num": "5", - "_begin": "3:8", - "_end": "3:11" - }, - { - "_num": "6", - "_begin": "3:12", - "_end": "3:14" - }, - { - "_num": "7", - "_begin": "3:15", - "_end": "3:22" - }, - { - "_num": "M", - "_begin": "3:20", - "_end": "3:22" - } - ], - "_num": "3" - } - ] - }, - "_id": "Devarim", - "maftirOffset": "70", - "_num": "44", - "_hebrew": "דְּבָרִים", - "_verse": "Deuteronomy 1:1 - 3:22", - "_haftaraLength": "27", - "_haftara": "Isaiah 1:1 - 1:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "4:4", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "4:5", - "_end": "4:40", - "_numverses": "36" - }, - { - "_num": "3", - "_begin": "4:41", - "_end": "4:49", - "_numverses": "9" - }, - { - "_num": "4", - "_begin": "5:1", - "_end": "5:18", - "_numverses": "18" - }, - { - "_num": "5", - "_begin": "5:19", - "_end": "6:3", - "_numverses": "15" - }, - { - "_num": "6", - "_begin": "6:4", - "_end": "6:25", - "_numverses": "22" - }, - { - "_num": "7", - "_begin": "7:1", - "_end": "7:11", - "_numverses": "11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "3:25" - }, - { - "_num": "2", - "_begin": "3:26", - "_end": "4:4" - }, - { - "_num": "3", - "_begin": "4:5", - "_end": "4:14" - }, - { - "_num": "4", - "_begin": "4:15", - "_end": "4:20" - }, - { - "_num": "5", - "_begin": "4:21", - "_end": "4:40" - }, - { - "_num": "6", - "_begin": "4:41", - "_end": "4:49" - }, - { - "_num": "7", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "M", - "_begin": "5:16", - "_end": "5:18" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "2", - "_begin": "5:19", - "_end": "5:24" - }, - { - "_num": "3", - "_begin": "5:25", - "_end": "5:30" - }, - { - "_num": "4", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "5", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "6", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "7", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "M", - "_begin": "6:23", - "_end": "6:25" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "2", - "_begin": "5:19", - "_end": "5:24" - }, - { - "_num": "3", - "_begin": "5:25", - "_end": "6:3" - }, - { - "_num": "4", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "5", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "6", - "_begin": "6:20", - "_end": "6:25" - }, - { - "_num": "7", - "_begin": "7:1", - "_end": "7:11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11" - } - ], - "_num": "3" - } - ], - "_descr": "with the Ten Commandments every year and the Sh'ma in years two and three" - }, - "triennial-alt": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "3:23", - "_end": "3:25" - }, - { - "_num": "2", - "_begin": "3:26", - "_end": "3:29" - }, - { - "_num": "3", - "_begin": "4:1", - "_end": "4:4" - }, - { - "_num": "4", - "_begin": "4:5", - "_end": "4:14" - }, - { - "_num": "5", - "_begin": "4:15", - "_end": "4:20" - }, - { - "_num": "6", - "_begin": "4:21", - "_end": "4:29" - }, - { - "_num": "7", - "_begin": "4:30", - "_end": "4:40" - }, - { - "_num": "M", - "_begin": "4:36", - "_end": "4:40" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "4:41", - "_end": "4:43" - }, - { - "_num": "2", - "_begin": "4:44", - "_end": "4:49" - }, - { - "_num": "3", - "_begin": "5:1", - "_end": "5:18" - }, - { - "_num": "4", - "_begin": "5:19", - "_end": "5:21" - }, - { - "_num": "5", - "_begin": "5:22", - "_end": "5:24" - }, - { - "_num": "6", - "_begin": "5:25", - "_end": "5:30" - }, - { - "_num": "7", - "_begin": "6:1", - "_end": "6:3" - }, - { - "_num": "M", - "_begin": "6:1", - "_end": "6:3" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "6:4", - "_end": "6:9" - }, - { - "_num": "2", - "_begin": "6:10", - "_end": "6:19" - }, - { - "_num": "3", - "_begin": "6:20", - "_end": "6:22" - }, - { - "_num": "4", - "_begin": "6:23", - "_end": "6:25" - }, - { - "_num": "5", - "_begin": "7:1", - "_end": "7:5" - }, - { - "_num": "6", - "_begin": "7:6", - "_end": "7:8" - }, - { - "_num": "7", - "_begin": "7:9", - "_end": "7:11" - }, - { - "_num": "M", - "_begin": "7:9", - "_end": "7:11" - } - ], - "_num": "3" - } - ], - "_descr": "with the Ten Commandments in year two and the Sh'ma in year three" - }, - "_id": "Va’ethanan", - "maftirOffset": "136", - "_num": "45", - "_hebrew": "וָאֶתְחַנַּן", - "_verse": "Deuteronomy 3:23 - 7:11", - "_haftaraLength": "26", - "_haftara": "Isaiah 40:1 - 40:26" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "7:12", - "_end": "8:10", - "_numverses": "25" - }, - { - "_num": "2", - "_begin": "8:11", - "_end": "9:3", - "_numverses": "13" - }, - { - "_num": "3", - "_begin": "9:4", - "_end": "9:29", - "_numverses": "26" - }, - { - "_num": "4", - "_begin": "10:1", - "_end": "10:11", - "_numverses": "11" - }, - { - "_num": "5", - "_begin": "10:12", - "_end": "11:9", - "_numverses": "20" - }, - { - "_num": "6", - "_begin": "11:10", - "_end": "11:21", - "_numverses": "12" - }, - { - "_num": "7", - "_begin": "11:22", - "_end": "11:25", - "_numverses": "4" - }, - { - "_num": "M", - "_begin": "11:22", - "_end": "11:25", - "_numverses": "4" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "7:12", - "_end": "7:16" - }, - { - "_num": "2", - "_begin": "7:17", - "_end": "7:21" - }, - { - "_num": "3", - "_begin": "7:22", - "_end": "7:26" - }, - { - "_num": "4", - "_begin": "8:1", - "_end": "8:3" - }, - { - "_num": "5", - "_begin": "8:4", - "_end": "8:10" - }, - { - "_num": "6", - "_begin": "8:11", - "_end": "8:18" - }, - { - "_num": "7", - "_begin": "8:19", - "_end": "9:3" - }, - { - "_num": "M", - "_begin": "9:1", - "_end": "9:3" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "9:4", - "_end": "9:10" - }, - { - "_num": "2", - "_begin": "9:11", - "_end": "9:14" - }, - { - "_num": "3", - "_begin": "9:15", - "_end": "9:21" - }, - { - "_num": "4", - "_begin": "9:22", - "_end": "9:29" - }, - { - "_num": "5", - "_begin": "10:1", - "_end": "10:5" - }, - { - "_num": "6", - "_begin": "10:6", - "_end": "18:8" - }, - { - "_num": "7", - "_begin": "10:9", - "_end": "10:11" - }, - { - "_num": "M", - "_begin": "10:9", - "_end": "10:11" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "10:12", - "_end": "10:15" - }, - { - "_num": "2", - "_begin": "10:16", - "_end": "10:22" - }, - { - "_num": "3", - "_begin": "11:1", - "_end": "11:9" - }, - { - "_num": "4", - "_begin": "11:10", - "_end": "11:12" - }, - { - "_num": "5", - "_begin": "11:13", - "_end": "11:15" - }, - { - "_num": "6", - "_begin": "11:16", - "_end": "11:21" - }, - { - "_num": "7", - "_begin": "11:22", - "_end": "11:25" - }, - { - "_num": "M", - "_begin": "11:22", - "_end": "11:25" - } - ], - "_num": "3" - } - ] - }, - "_id": "Eikev", - "maftirOffset": "0", - "_num": "46", - "_hebrew": "עֵקֶב", - "_verse": "Deuteronomy 7:12 - 11:25", - "_haftaraLength": "27", - "_haftara": "Isaiah 49:14 - 51:3" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "11:26", - "_end": "12:10", - "_numverses": "17" - }, - { - "_num": "2", - "_begin": "12:11", - "_end": "12:28", - "_numverses": "18" - }, - { - "_num": "3", - "_begin": "12:29", - "_end": "13:19", - "_numverses": "22" - }, - { - "_num": "4", - "_begin": "14:1", - "_end": "14:21", - "_numverses": "21" - }, - { - "_num": "5", - "_begin": "14:22", - "_end": "14:29", - "_numverses": "8" - }, - { - "_num": "6", - "_begin": "15:1", - "_end": "15:18", - "_numverses": "18" - }, - { - "_num": "7", - "_begin": "15:19", - "_end": "16:17", - "_numverses": "22" - }, - { - "_num": "M", - "_begin": "16:13", - "_end": "16:17", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "11:26", - "_end": "11:31" - }, - { - "_num": "2", - "_begin": "11:32", - "_end": "12:5" - }, - { - "_num": "3", - "_begin": "12:6", - "_end": "12:10" - }, - { - "_num": "4", - "_begin": "12:11", - "_end": "12:16" - }, - { - "_num": "5", - "_begin": "12:17", - "_end": "12:19" - }, - { - "_num": "6", - "_begin": "12:20", - "_end": "12:25" - }, - { - "_num": "7", - "_begin": "12:26", - "_end": "12:28" - }, - { - "_num": "M", - "_begin": "12:26", - "_end": "12:28" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "12:29", - "_end": "13:1" - }, - { - "_num": "2", - "_begin": "13:2", - "_end": "13:6" - }, - { - "_num": "3", - "_begin": "13:7", - "_end": "13:12" - }, - { - "_num": "4", - "_begin": "13:13", - "_end": "13:19" - }, - { - "_num": "5", - "_begin": "14:1", - "_end": "14:8" - }, - { - "_num": "6", - "_begin": "14:9", - "_end": "14:21" - }, - { - "_num": "7", - "_begin": "14:22", - "_end": "14:29" - }, - { - "_num": "M", - "_begin": "14:22", - "_end": "14:29" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "15:1", - "_end": "15:6" - }, - { - "_num": "2", - "_begin": "15:7", - "_end": "15:11" - }, - { - "_num": "3", - "_begin": "15:12", - "_end": "15:18" - }, - { - "_num": "4", - "_begin": "15:19", - "_end": "15:23" - }, - { - "_num": "5", - "_begin": "16:1", - "_end": "16:8" - }, - { - "_num": "6", - "_begin": "16:9", - "_end": "16:12" - }, - { - "_num": "7", - "_begin": "16:13", - "_end": "16:17" - }, - { - "_num": "M", - "_begin": "16:13", - "_end": "16:17" - } - ], - "_num": "3" - } - ] - }, - "_id": "Re’eh", - "maftirOffset": "249", - "_num": "47", - "_hebrew": "רְאֵה", - "_verse": "Deuteronomy 11:26 - 16:17", - "_haftaraLength": "12", - "_haftara": "Isaiah 54:11 - 55:5" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "16:18", - "_end": "17:13", - "_numverses": "18" - }, - { - "_num": "2", - "_begin": "17:14", - "_end": "17:20", - "_numverses": "7" - }, - { - "_num": "3", - "_begin": "18:1", - "_end": "18:5", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "18:6", - "_end": "18:13", - "_numverses": "8" - }, - { - "_num": "5", - "_begin": "18:14", - "_end": "19:13", - "_numverses": "22" - }, - { - "_num": "6", - "_begin": "19:14", - "_end": "20:9", - "_numverses": "17" - }, - { - "_num": "7", - "_begin": "20:10", - "_end": "21:9", - "_numverses": "20" - }, - { - "_num": "M", - "_begin": "21:7", - "_end": "21:9", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "16:18", - "_end": "16:20" - }, - { - "_num": "2", - "_begin": "16:21", - "_end": "17:7" - }, - { - "_num": "3", - "_begin": "17:8", - "_end": "17:10" - }, - { - "_num": "4", - "_begin": "17:11", - "_end": "17:13" - }, - { - "_num": "5", - "_begin": "17:14", - "_end": "17:17" - }, - { - "_num": "6", - "_begin": "17:18", - "_end": "17:20" - }, - { - "_num": "7", - "_begin": "18:1", - "_end": "18:5" - }, - { - "_num": "M", - "_begin": "18:3", - "_end": "18:5" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "18:6", - "_end": "18:8" - }, - { - "_num": "2", - "_begin": "18:9", - "_end": "18:13" - }, - { - "_num": "3", - "_begin": "18:14", - "_end": "18:17" - }, - { - "_num": "4", - "_begin": "18:18", - "_end": "18:22" - }, - { - "_num": "5", - "_begin": "19:1", - "_end": "19:7" - }, - { - "_num": "6", - "_begin": "19:8", - "_end": "19:10" - }, - { - "_num": "7", - "_begin": "19:11", - "_end": "19:13" - }, - { - "_num": "M", - "_begin": "19:11", - "_end": "19:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "19:14", - "_end": "19:21" - }, - { - "_num": "2", - "_begin": "20:1", - "_end": "20:4" - }, - { - "_num": "3", - "_begin": "20:5", - "_end": "20:9" - }, - { - "_num": "4", - "_begin": "20:10", - "_end": "20:14" - }, - { - "_num": "5", - "_begin": "20:15", - "_end": "20:20" - }, - { - "_num": "6", - "_begin": "21:1", - "_end": "21:6" - }, - { - "_num": "7", - "_begin": "21:7", - "_end": "21:9" - }, - { - "_num": "M", - "_begin": "21:7", - "_end": "21:9" - } - ], - "_num": "3" - } - ] - }, - "_id": "Shoftim", - "maftirOffset": "268", - "_num": "48", - "_hebrew": "שׁוֹפְטִים", - "_verse": "Deuteronomy 16:18 - 21:9", - "_haftaraLength": "24", - "_haftara": "Isaiah 51:12 - 52:12" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "21:10", - "_end": "21:21", - "_numverses": "12" - }, - { - "_num": "2", - "_begin": "21:22", - "_end": "22:7", - "_numverses": "9" - }, - { - "_num": "3", - "_begin": "22:8", - "_end": "23:7", - "_numverses": "29" - }, - { - "_num": "4", - "_begin": "23:8", - "_end": "23:24", - "_numverses": "17" - }, - { - "_num": "5", - "_begin": "23:25", - "_end": "24:4", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "24:5", - "_end": "24:13", - "_numverses": "9" - }, - { - "_num": "7", - "_begin": "24:14", - "_end": "25:19", - "_numverses": "28" - }, - { - "_num": "M", - "_begin": "25:17", - "_end": "25:19", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "21:10", - "_end": "21:14" - }, - { - "_num": "2", - "_begin": "21:15", - "_end": "21:17" - }, - { - "_num": "3", - "_begin": "21:18", - "_end": "21:21" - }, - { - "_num": "4", - "_begin": "21:22", - "_end": "22:7" - }, - { - "_num": "5", - "_begin": "22:8", - "_end": "22:12" - }, - { - "_num": "6", - "_begin": "22:13", - "_end": "22:29" - }, - { - "_num": "7", - "_begin": "23:1", - "_end": "23:7" - }, - { - "_num": "M", - "_begin": "23:4", - "_end": "23:7" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "23:8", - "_end": "23:12" - }, - { - "_num": "2", - "_begin": "23:13", - "_end": "23:15" - }, - { - "_num": "3", - "_begin": "23:16", - "_end": "23:19" - }, - { - "_num": "4", - "_begin": "23:20", - "_end": "23:24" - }, - { - "_num": "5", - "_begin": "23:25", - "_end": "24:4" - }, - { - "_num": "6", - "_begin": "24:5", - "_end": "24:9" - }, - { - "_num": "7", - "_begin": "24:10", - "_end": "24:13" - }, - { - "_num": "M", - "_begin": "24:10", - "_end": "24:13" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "24:14", - "_end": "24:16" - }, - { - "_num": "2", - "_begin": "24:17", - "_end": "24:19" - }, - { - "_num": "3", - "_begin": "24:20", - "_end": "24:22" - }, - { - "_num": "4", - "_begin": "25:1", - "_end": "25:4" - }, - { - "_num": "5", - "_begin": "25:5", - "_end": "25:10" - }, - { - "_num": "6", - "_begin": "25:11", - "_end": "25:16" - }, - { - "_num": "7", - "_begin": "25:17", - "_end": "25:19" - }, - { - "_num": "M", - "_begin": "25:17", - "_end": "25:19" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Teitzei", - "maftirOffset": "341", - "_num": "49", - "_hebrew": "כִּי־תֵצֵא", - "_verse": "Deuteronomy 21:10 - 25:19", - "_haftaraLength": "10", - "_haftara": "Isaiah 54:1 - 54:10" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:11", - "_numverses": "11" - }, - { - "_num": "2", - "_begin": "26:12", - "_end": "26:15", - "_numverses": "4" - }, - { - "_num": "3", - "_begin": "26:16", - "_end": "26:19", - "_numverses": "4" - }, - { - "_num": "4", - "_begin": "27:1", - "_end": "27:10", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "27:11", - "_end": "28:6", - "_numverses": "22" - }, - { - "_num": "6", - "_begin": "28:7", - "_end": "28:69", - "_numverses": "63" - }, - { - "_num": "7", - "_begin": "29:1", - "_end": "29:8", - "_numverses": "8" - }, - { - "_num": "M", - "_begin": "29:6", - "_end": "29:8", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:1", - "_end": "26:3" - }, - { - "_num": "2", - "_begin": "26:4", - "_end": "26:8" - }, - { - "_num": "3", - "_begin": "26:9", - "_end": "26:11" - }, - { - "_num": "4", - "_begin": "26:12", - "_end": "26:15" - }, - { - "_num": "5", - "_begin": "26:16", - "_end": "26:19" - }, - { - "_num": "6", - "_begin": "27:1", - "_end": "27:4" - }, - { - "_num": "7", - "_begin": "27:5", - "_end": "27:10" - }, - { - "_num": "M", - "_begin": "27:7", - "_end": "27:10" - } - ], - "_num": "1" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "26:12", - "_end": "26:15" - }, - { - "_num": "2", - "_begin": "26:16", - "_end": "26:19" - }, - { - "_num": "3", - "_begin": "27:1", - "_end": "27:3" - }, - { - "_num": "4", - "_begin": "27:4", - "_end": "27:8" - }, - { - "_num": "5", - "_begin": "27:6", - "_end": "27:10" - }, - { - "_num": "6", - "_begin": "27:11", - "_end": "28:3" - }, - { - "_num": "7", - "_begin": "28:4", - "_end": "28:6" - }, - { - "_num": "M", - "_begin": "28:4", - "_end": "28:6" - } - ], - "_num": "2" - }, - { - "aliyah": [ - { - "_num": "1", - "_begin": "27:11", - "_end": "28:3" - }, - { - "_num": "2", - "_begin": "28:4", - "_end": "28:6" - }, - { - "_num": "3", - "_begin": "28:7", - "_end": "28:11" - }, - { - "_num": "4", - "_begin": "28:12", - "_end": "28:14" - }, - { - "_num": "5", - "_begin": "28:15", - "_end": "28:69" - }, - { - "_num": "6", - "_begin": "29:1", - "_end": "29:5" - }, - { - "_num": "7", - "_begin": "29:6", - "_end": "29:8" - }, - { - "_num": "M", - "_begin": "29:6", - "_end": "29:8" - } - ], - "_num": "3" - } - ] - }, - "_id": "Ki Tavo", - "maftirOffset": "71", - "_num": "50", - "_hebrew": "כִּי־תָבוֹא", - "_verse": "Deuteronomy 26:1 - 29:8", - "_haftaraLength": "22", - "_haftara": "Isaiah 60:1 - 60:22" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "29:9", - "_end": "29:11", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "29:12", - "_end": "29:14", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "29:15", - "_end": "29:28", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "30:1", - "_end": "30:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "30:7", - "_end": "30:10", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "30:11", - "_end": "30:14", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "29:9", - "_end": "29:11", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "29:12", - "_end": "29:14", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "29:15", - "_end": "29:28", - "_numverses": "14" - }, - { - "_num": "4", - "_begin": "30:1", - "_end": "30:6", - "_numverses": "6" - }, - { - "_num": "5", - "_begin": "30:7", - "_end": "30:10", - "_numverses": "4" - }, - { - "_num": "6", - "_begin": "30:11", - "_end": "30:14", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "30:15", - "_end": "30:20", - "_numverses": "6" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "When these Sidrot are not combined, they should each be read in their entirety." - }, - "_id": "Nitzavim", - "maftirOffset": "0", - "_num": "51", - "_hebrew": "נִצָּבִים", - "_verse": "Deuteronomy 29:9 - 30:20", - "_haftaraLength": "23", - "_haftara": "Isaiah 61:10 - 63:9" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "31:3", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "31:4", - "_end": "31:6", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "31:7", - "_end": "31:9", - "_numverses": "3" - }, - { - "_num": "4", - "_begin": "31:10", - "_end": "31:13", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "31:14", - "_end": "31:19", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "31:20", - "_end": "31:24", - "_numverses": "5" - }, - { - "_num": "7", - "_begin": "31:25", - "_end": "31:30", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "31:28", - "_end": "31:30", - "_numverses": "3" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "31:1", - "_end": "31:3", - "_numverses": "3" - }, - { - "_num": "2", - "_begin": "31:4", - "_end": "31:6", - "_numverses": "3" - }, - { - "_num": "3", - "_begin": "31:7", - "_end": "31:9", - "_numverses": "3" - }, - { - "_num": "4", - "_begin": "31:10", - "_end": "31:13", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "31:14", - "_end": "31:19", - "_numverses": "6" - }, - { - "_num": "6", - "_begin": "31:20", - "_end": "31:24", - "_numverses": "5" - }, - { - "_num": "7", - "_begin": "31:25", - "_end": "31:30", - "_numverses": "6" - }, - { - "_num": "M", - "_begin": "31:28", - "_end": "31:30", - "_numverses": "3" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "When these Sidrot are not combined, they should each be read in their entirety." - }, - "_id": "Vayeilech", - "maftirOffset": "46", - "_num": "52", - "_hebrew": "וַיֵּלֶךְ", - "_verse": "Deuteronomy 31:1 - 31:30", - "_haftaraLength": "13", - "_haftara": "Joel 2:15 - 2:27" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "32:1", - "_end": "32:6", - "_numverses": "6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:12", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "32:13", - "_end": "32:18", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "32:19", - "_end": "32:28", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "32:29", - "_end": "32:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "32:40", - "_end": "32:43", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "32:44", - "_end": "32:52", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "32:48", - "_end": "32:52", - "_numverses": "5" - } - ] - }, - "triennial": { - "year": [ - { - "aliyah": [ - { - "_num": "1", - "_begin": "32:1", - "_end": "32:6", - "_numverses": "6" - }, - { - "_num": "2", - "_begin": "32:7", - "_end": "32:12", - "_numverses": "6" - }, - { - "_num": "3", - "_begin": "32:13", - "_end": "32:18", - "_numverses": "6" - }, - { - "_num": "4", - "_begin": "32:19", - "_end": "32:28", - "_numverses": "10" - }, - { - "_num": "5", - "_begin": "32:29", - "_end": "32:39", - "_numverses": "11" - }, - { - "_num": "6", - "_begin": "32:40", - "_end": "32:43", - "_numverses": "4" - }, - { - "_num": "7", - "_begin": "32:44", - "_end": "32:52", - "_numverses": "9" - }, - { - "_num": "M", - "_begin": "32:48", - "_end": "32:52", - "_numverses": "5" - } - ], - "_variation": "Y.1" - }, - { - "_variation": "Y.2", - "_sameas": "Y.1" - }, - { - "_variation": "Y.3", - "_sameas": "Y.1" - } - ], - "_descr": "every year" - }, - "_id": "Haazinu", - "maftirOffset": "68", - "_num": "53", - "_hebrew": "הַאֲזִינוּ", - "_verse": "Deuteronomy 32:1 - 32:52", - "_haftaraLength": "51", - "_haftara": "Samuel_2 22:1 - 22:51" - }, - { - "fullkriyah": { - "aliyah": [ - { - "_num": "1", - "_begin": "33:1", - "_end": "33:7", - "_numverses": "7" - }, - { - "_num": "2", - "_begin": "33:8", - "_end": "33:12", - "_numverses": "5" - }, - { - "_num": "3", - "_begin": "33:13", - "_end": "33:17", - "_numverses": "5" - }, - { - "_num": "4", - "_begin": "33:18", - "_end": "33:21", - "_numverses": "4" - }, - { - "_num": "5", - "_begin": "33:22", - "_end": "33:26", - "_numverses": "5" - }, - { - "_num": "6", - "_begin": "33:27", - "_end": "33:29", - "_numverses": "3" - }, - { - "_num": "7", - "_begin": "34:1", - "_end": "34:12", - "_numverses": "12" - } - ] - }, - "_id": "Vezot Haberakhah", - "_num": "54", - "_hebrew": "וְזֹאת הַבְּרָכָה", - "_verse": "Deuteronomy 33:1 - 34:12", - "_haftaraLength": "18", - "_haftara": "Joshua 1:1 - 1:18", - "_sephardic": "Joshua 1:1 - 1:9" - } - ] - } -} \ No newline at end of file diff --git a/data/audio/generate-index.mjs b/data/audio/generate-index.mjs new file mode 100644 index 000000000..65275ac9d --- /dev/null +++ b/data/audio/generate-index.mjs @@ -0,0 +1,51 @@ +import { NUM_VERSES } from "@hebcal/leyning"; +import * as fs from "node:fs/promises"; +import path from "node:path"; +import { fileURLToPath } from "node:url"; +import { isDeepStrictEqual } from "node:util"; + +const audioDir = path.dirname(fileURLToPath(import.meta.url)); + +const fullIndex = {}; +for (const entry of await fs.readdir(audioDir, { withFileTypes: true })) { + if (!entry.isDirectory()) continue; + /** @type {{ [ch: number]: (true | {reg?: boolean, sof?: boolean} | undefined)[]}} */ + const index = {}; + const dir = path.join(audioDir, entry.name); + for (const fname of await fs.readdir(dir)) { + if (path.extname(fname) != ".mp3") continue; + const [chV, extra] = path.basename(fname, ".mp3").split("-"); + const [chapter, verse] = parseChV(chV); + const chapterArr = (index[chapter] ??= []); + const kind = extra === "SA" ? "sof" : "reg"; + (chapterArr[verse] ??= {})[kind] = 1; + } + const bookName = entry.name.replace("_", " "); + const numVerses = NUM_VERSES[bookName]; + for (const [ch, chapterArr] of Object.entries(index)) { + for (let v = 0; v < chapterArr.length; v++) { + if (chapterArr[v] === undefined) { + chapterArr[v] = 0; + } else if (isDeepStrictEqual(chapterArr[v], { reg: 1 })) { + chapterArr[v] = 1; + } + } + if (chapterArr.length === numVerses[Number(ch) + 1] && chapterArr.every((x) => !!x)) { + const dense = {}; + for (let v = 0; v < chapterArr.length; v++) { + if (chapterArr[v] !== 1) { + dense[v] = chapterArr[v]; + } + } + index[ch] = dense; + } + } + fullIndex[bookName] = index; +} + +await fs.writeFile(path.join(audioDir, "index.json"), JSON.stringify(fullIndex)); + +function parseChV(s) { + const [ch, v] = s.split("_"); + return [parseInt(ch) - 1, parseInt(v) - 1]; +} diff --git a/data/calendar.json b/data/calendar.json deleted file mode 100644 index b268d6db6..000000000 --- a/data/calendar.json +++ /dev/null @@ -1,3407 +0,0 @@ -{ - '9/23/2017': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2017': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2017': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2017': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2017': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2017': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2017': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2017': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2017': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2017': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2017': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2017': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2018': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2018': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2018': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2018': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2018': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2018': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2018': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2018': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/3/2018': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/10/2018': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/17/2018': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/24/2018': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/14/2018': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/21/2018': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/28/2018': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/5/2018': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/12/2018': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/19/2018': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/26/2018': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/2/2018': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/9/2018': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/16/2018': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/23/2018': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/30/2018': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/7/2018': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/14/2018': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/21/2018': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/28/2018': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/4/2018': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/11/2018': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/18/2018': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/25/2018': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/1/2018': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/8/2016': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/15/2016': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/29/2016': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/5/2016': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/12/2016': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/19/2016': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/26/2016': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '12/3/2016': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/10/2016': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/17/2016': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/24/2016': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/31/2016': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/7/2017': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/14/2017': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/21/2017': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/28/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/4/2017': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/11/2017': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/18/2017': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/25/2017': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/4/2017': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/11/2017': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/18/2017': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/25/2017': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '4/1/2017': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/8/2017': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/22/2017': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/29/2017': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/6/2017': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/13/2017': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/20/2017': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/27/2017': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2017': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2017': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2017': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2017': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2017': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/8/2017': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/15/2017': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/22/2017': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/29/2017': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/5/2017': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/12/2017': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/19/2017': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/26/2017': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/2/2017': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/9/2017': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/19/2026': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/10/2026': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/17/2026': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/24/2026': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/31/2026': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/7/2026': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/14/2026': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/21/2026': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/28/2026': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/5/2026': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/12/2026': { - 'haftara': ['I Kings 7:40-50'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/19/2026': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/26/2026': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/2/2027': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/9/2027': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/16/2027': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/23/2027': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/30/2027': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/6/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/13/2027': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/20/2027': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/27/2027': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/6/2027': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/13/2027': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/20/2027': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/27/2027': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/3/2027': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/10/2027': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/17/2027': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/1/2027': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/8/2027': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/15/2027': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/22/2027': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/29/2027': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/5/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/19/2027': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/26/2027': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '7/3/2027': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/10/2027': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/17/2027': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/24/2027': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/31/2027': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/7/2027': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/14/2027': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/21/2027': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/28/2027': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/4/2027': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/11/2027': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/18/2027': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/11/2021': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/18/2021': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/2/2021': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/9/2021': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/16/2021': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/23/2021': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '10/30/2021': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/6/2021': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/13/2021': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/20/2021': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '11/27/2021': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/4/2021': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/11/2021': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/18/2021': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/25/2021': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/1/2022': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/8/2022': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/15/2022': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/22/2022': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '1/29/2022': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/5/2022': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/12/2022': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/19/2022': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '2/26/2022': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/5/2022': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/12/2022': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/19/2022': { - 'haftara': ['Jeremiah 7:21-8:3', 'Jeremiah 9:22-9:23'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/26/2022': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/2/2022': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/9/2022': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '4/30/2022': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/7/2022': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/14/2022': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/21/2022': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/28/2022': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/4/2022': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/11/2022': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/18/2022': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/25/2022': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/2/2022': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/9/2022': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/16/2022': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/23/2022': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/30/2022': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/6/2022': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/13/2022': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/20/2022': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/27/2022': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/3/2022': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/10/2022': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/17/2022': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/5/2024': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/26/2024': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/2/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/9/2024': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/16/2024': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/23/2024': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/30/2024': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/7/2024': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/14/2024': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/21/2024': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/28/2024': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/4/2025': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/11/2025': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/18/2025': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/25/2025': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/1/2025': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/8/2025': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/15/2025': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/22/2025': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/1/2025': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/8/2025': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/15/2025': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/22/2025': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/29/2025': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '4/5/2025': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/12/2025': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/26/2025': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '5/3/2025': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/10/2025': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/17/2025': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/24/2025': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/31/2025': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/7/2025': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/14/2025': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/21/2025': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/28/2025': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/5/2025': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/12/2025': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/19/2025': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/26/2025': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/2/2025': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/9/2025': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/16/2025': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/23/2025': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/30/2025': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/6/2025': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/13/2025': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/9/2027': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/30/2027': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/6/2027': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/13/2027': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/20/2027': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/27/2027': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '12/4/2027': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/11/2027': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/18/2027': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/25/2027': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '1/1/2028': { - 'haftara': ['I Kings 7:40-50'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/8/2028': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/15/2028': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/22/2028': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/29/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/5/2028': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/12/2028': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/19/2028': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/26/2028': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '3/4/2028': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/11/2028': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/18/2028': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/25/2028': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '4/1/2028': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/8/2028': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/22/2028': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/29/2028': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/6/2028': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/13/2028': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/20/2028': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/27/2028': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2028': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2028': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2028': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2028': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/8/2028': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/15/2028': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/22/2028': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/29/2028': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/5/2028': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/12/2028': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/19/2028': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/26/2028': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/2/2028': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/9/2028': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/15/2029': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/22/2029': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/6/2029': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/13/2029': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/20/2029': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/27/2029': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/3/2029': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/10/2029': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/17/2029': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/24/2029': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/1/2029': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/8/2029': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/15/2029': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/22/2029': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/29/2029': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/5/2030': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/12/2030': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/19/2030': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/26/2030': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/2/2030': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/9/2030': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/16/2030': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/23/2030': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/2/2030': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/9/2030': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/16/2030': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/23/2030': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/30/2030': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/6/2030': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/13/2030': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '4/27/2030': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/4/2030': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/11/2030': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/18/2030': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '5/25/2030': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/1/2030': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2030': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2030': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2030': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2030': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2030': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/20/2030': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/27/2030': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/3/2030': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/10/2030': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/17/2030': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/24/2030': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/31/2030': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/7/2030': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/14/2030': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/23/2023': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2023': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2023': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2023': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2023': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2023': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2023': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2023': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2023': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2023': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2023': { - 'haftara': ['I Kings 3:15-4:1'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2023': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2023': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2024': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2024': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2024': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2024': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2024': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2024': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2024': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/2/2024': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/9/2024': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/16/2024': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/23/2024': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/30/2024': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/6/2024': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/13/2024': { - 'haftara': ['II Kings 4:42-5:19'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/20/2024': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/4/2024': { - 'haftara': ['Ezekiel 22:1-22:19'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/11/2024': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/18/2024': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/25/2024': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '6/1/2024': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/8/2024': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2024': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2024': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2024': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2024': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2024': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/20/2024': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/27/2024': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '8/3/2024': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/10/2024': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/17/2024': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/24/2024': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/31/2024': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/7/2024': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/14/2024': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/21/2024': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/15/2018': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '9/22/2018': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/6/2018': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/13/2018': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/20/2018': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '10/27/2018': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/3/2018': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/10/2018': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/17/2018': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '11/24/2018': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/1/2018': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/8/2018': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/15/2018': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/22/2018': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '12/29/2018': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/5/2019': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/12/2019': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/19/2019': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '1/26/2019': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/2/2019': { - 'haftara': ['Jeremiah 34:8-34:22', 'Jeremiah 33:25-33:26'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/9/2019': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/16/2019': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '2/23/2019': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/2/2019': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 35:1-38:20', - 'name': 'Vayakhel' - }, - '3/9/2019': { - 'haftara': ['I Kings 7:51-8:21'], - 'ref': 'Exodus 38:21-40:38', - 'name': 'Pekudei' - }, - '3/16/2019': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/23/2019': { - 'haftara': ['Jeremiah 7:21-8:3', 'Jeremiah 9:22-9:23'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '3/30/2019': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/6/2019': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 12:1-13:59', - 'name': 'Tazria' - }, - '4/13/2019': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 14:1-15:33', - 'name': 'Metzora' - }, - '5/4/2019': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 16:1-18:30', - 'name': 'Achrei Mot' - }, - '5/11/2019': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 19:1-20:27', - 'name': 'Kedoshim' - }, - '5/18/2019': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/25/2019': { - 'haftara': ['Jeremiah 32:6-32:27'], - 'ref': 'Leviticus 25:1-26:2', - 'name': 'Behar' - }, - '6/1/2019': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 26:3-27:34', - 'name': 'Bechukotai' - }, - '6/8/2019': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/15/2019': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/22/2019': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/29/2019': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '7/6/2019': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/13/2019': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '7/20/2019': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/27/2019': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '8/3/2019': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '8/10/2019': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/17/2019': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/24/2019': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/31/2019': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '9/7/2019': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '9/14/2019': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/21/2019': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/5/2019': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/12/2019': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/26/2019': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '11/2/2019': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/9/2019': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/16/2019': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/23/2019': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/30/2019': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/7/2019': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/14/2019': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/21/2019': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/28/2019': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '1/4/2020': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/11/2020': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/18/2020': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/25/2020': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '2/1/2020': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/8/2020': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/15/2020': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/22/2020': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/29/2020': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/7/2020': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/14/2020': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/21/2020': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/28/2020': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/4/2020': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/18/2020': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/25/2020': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '5/2/2020': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/9/2020': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/16/2020': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/23/2020': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/6/2020': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/13/2020': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/20/2020': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/27/2020': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/4/2020': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/11/2020': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/18/2020': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/25/2020': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '8/1/2020': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/8/2020': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/15/2020': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/22/2020': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/29/2020': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/5/2020': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '10/1/2022': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/8/2022': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/22/2022': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/29/2022': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/5/2022': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/12/2022': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/19/2022': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/26/2022': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '12/3/2022': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/10/2022': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/17/2022': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/24/2022': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/31/2022': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/7/2023': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/14/2023': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/21/2023': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/28/2023': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '2/4/2023': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/11/2023': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/18/2023': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/25/2023': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '3/4/2023': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/11/2023': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/18/2023': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/25/2023': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '4/1/2023': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/15/2023': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/22/2023': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/29/2023': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/6/2023': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/13/2023': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/20/2023': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '6/3/2023': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/10/2023': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/17/2023': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/24/2023': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '7/1/2023': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/8/2023': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/15/2023': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/22/2023': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/29/2023': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/5/2023': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/12/2023': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/19/2023': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/26/2023': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/2/2023': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/27/2025': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 31:1-30', - 'name': 'Vayeilech' - }, - '10/4/2025': { - 'haftara': ['II Samuel 22:1-22:51'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/18/2025': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/25/2025': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '11/1/2025': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/8/2025': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/15/2025': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/22/2025': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/29/2025': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/6/2025': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/13/2025': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/20/2025': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/27/2025': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/3/2026': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/10/2026': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/17/2026': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/24/2026': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/31/2026': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/7/2026': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/14/2026': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/21/2026': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/28/2026': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/7/2026': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/14/2026': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/21/2026': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/28/2026': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/11/2026': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/18/2026': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/25/2026': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/2/2026': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/9/2026': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/16/2026': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/30/2026': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/6/2026': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/13/2026': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/20/2026': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/27/2026': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 19:1-25:9', - 'name': 'Chukat-Balak' - }, - '7/4/2026': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/11/2026': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/18/2026': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/25/2026': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/1/2026': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/8/2026': { - 'haftara': ['Isaiah 54:11-55:5'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/15/2026': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/22/2026': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '8/29/2026': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/23/2028': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/14/2028': { - 'haftara': ['Isaiah 42:5-43:10'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/21/2028': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/28/2028': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/4/2028': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/11/2028': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/18/2028': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/25/2028': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/2/2028': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/9/2028': { - 'haftara': ['Amos 2:6-3:8'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/16/2028': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/23/2028': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '12/30/2028': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/6/2029': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/13/2029': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/20/2029': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/27/2029': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/3/2029': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/10/2029': { - 'haftara': ['II Kings 12:1-12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/17/2029': { - 'haftara': ['I Kings 5:26-6:13'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/24/2029': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/3/2029': { - 'haftara': ['I Kings 18:1-18:39'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/10/2029': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/17/2029': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/24/2029': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/14/2029': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/21/2029': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/28/2029': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/5/2029': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/12/2029': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/19/2029': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/26/2029': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '6/2/2029': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/9/2029': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/16/2029': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/23/2029': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/30/2029': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/7/2029': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/14/2029': { - 'haftara': ['Jeremiah 2:4-28', 'Jeremiah 3:4'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/21/2029': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/28/2029': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '8/4/2029': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/11/2029': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/18/2029': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/25/2029': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '9/1/2029': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/26/2020': { - 'haftara': ['Hosea 14:2-10', 'Micah 7:18-20', 'Joel 2:15-27'], - 'ref': 'Deuteronomy 32:1-52', - 'name': "Ha'Azinu" - }, - '10/17/2020': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Genesis 1:1-6:8', - 'name': 'Bereshit' - }, - '10/24/2020': { - 'haftara': ['Isaiah 54:1-55:5'], - 'ref': 'Genesis 6:9-11:32', - 'name': 'Noach' - }, - '10/31/2020': { - 'haftara': ['Isaiah 40:27-41:16'], - 'ref': 'Genesis 12:1-17:27', - 'name': 'Lech-Lecha' - }, - '11/7/2020': { - 'haftara': ['II Kings 4:1-4:37'], - 'ref': 'Genesis 18:1-22:24', - 'name': 'Vayera' - }, - '11/14/2020': { - 'haftara': ['I Kings 1:1-1:31'], - 'ref': 'Genesis 23:1-25:18', - 'name': 'Chayei Sara' - }, - '11/21/2020': { - 'haftara': ['Malachi 1:1-2:7'], - 'ref': 'Genesis 25:19-28:9', - 'name': 'Toldot' - }, - '11/28/2020': { - 'haftara': ['Hosea 12:13-14:10'], - 'ref': 'Genesis 28:10-32:3', - 'name': 'Vayetzei' - }, - '12/5/2020': { - 'haftara': ['Obadiah 1:1-1:21'], - 'ref': 'Genesis 32:4-36:43', - 'name': 'Vayishlach' - }, - '12/12/2020': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Genesis 37:1-40:23', - 'name': 'Vayeshev' - }, - '12/19/2020': { - 'haftara': ['I Kings 3:15-4:1'], - 'ref': 'Genesis 41:1-44:17', - 'name': 'Miketz' - }, - '12/26/2020': { - 'haftara': ['Ezekiel 37:15-37:28'], - 'ref': 'Genesis 44:18-47:27', - 'name': 'Vayigash' - }, - '1/2/2021': { - 'haftara': ['I Kings 2:1-2:12'], - 'ref': 'Genesis 47:28-50:26', - 'name': 'Vayechi' - }, - '1/9/2021': { - 'haftara': ['Isaiah 27:6-28:13', 'Isaiah 29:22-29:23'], - 'ref': 'Exodus 1:1-6:1', - 'name': 'Shemot' - }, - '1/16/2021': { - 'haftara': ['Ezekiel 28:25-29:21'], - 'ref': 'Exodus 6:2-9:35', - 'name': 'Vaera' - }, - '1/23/2021': { - 'haftara': ['Jeremiah 46:13-46:28'], - 'ref': 'Exodus 10:1-13:16', - 'name': 'Bo' - }, - '1/30/2021': { - 'haftara': ['Judges 4:4-5:31'], - 'ref': 'Exodus 13:17-17:16', - 'name': 'Beshalach' - }, - '2/6/2021': { - 'haftara': ['Isaiah 6:1-7:6', 'Isaiah 9:5-9:6'], - 'ref': 'Exodus 18:1-20:23', - 'name': 'Yitro' - }, - '2/13/2021': { - 'haftara': ['II Kings 12:1 - 12:17'], - 'ref': 'Exodus 21:1-24:18', - 'name': 'Mishpatim' - }, - '2/20/2021': { - 'haftara': ['I Samuel 15:2-15:34'], - 'ref': 'Exodus 25:1-27:19', - 'name': 'Terumah' - }, - '2/27/2021': { - 'haftara': ['Ezekiel 43:10-43:27'], - 'ref': 'Exodus 27:20-30:10', - 'name': 'Tetzaveh' - }, - '3/6/2021': { - 'haftara': ['Ezekiel 36:16-36:38'], - 'ref': 'Exodus 30:11-34:35', - 'name': 'Ki Tisa' - }, - '3/13/2021': { - 'haftara': ['Ezekiel 45:16-46:18'], - 'ref': 'Exodus 35:1-40:38', - 'name': 'Vayakhel-Pekudei' - }, - '3/20/2021': { - 'haftara': ['Isaiah 43:21-44:23'], - 'ref': 'Leviticus 1:1-5:26', - 'name': 'Vayikra' - }, - '3/27/2021': { - 'haftara': ['Malachi 3:4-3:24'], - 'ref': 'Leviticus 6:1-8:36', - 'name': 'Tzav' - }, - '4/10/2021': { - 'haftara': ['II Samuel 6:1-7:17'], - 'ref': 'Leviticus 9:1-11:47', - 'name': 'Shmini' - }, - '4/17/2021': { - 'haftara': ['II Kings 7:3-7:20'], - 'ref': 'Leviticus 12:1-15:33', - 'name': 'Tazria-Metzora' - }, - '4/24/2021': { - 'haftara': ['Amos 9:7-9:15'], - 'ref': 'Leviticus 16:1-20:27', - 'name': 'Achrei Mot-Kedoshim' - }, - '5/1/2021': { - 'haftara': ['Ezekiel 44:15-44:31'], - 'ref': 'Leviticus 21:1-24:23', - 'name': 'Emor' - }, - '5/8/2021': { - 'haftara': ['Jeremiah 16:19-17:14'], - 'ref': 'Leviticus 25:1-27:34', - 'name': 'Behar-Bechukotai' - }, - '5/15/2021': { - 'haftara': ['Hosea 2:1-2:22'], - 'ref': 'Numbers 1:1-4:20', - 'name': 'Bamidbar' - }, - '5/22/2021': { - 'haftara': ['Judges 13:2-13:25'], - 'ref': 'Numbers 4:21-7:89', - 'name': 'Nasso' - }, - '5/29/2021': { - 'haftara': ['Zechariah 2:14-4:7'], - 'ref': 'Numbers 8:1-12:16', - 'name': "Beha'alotcha" - }, - '6/5/2021': { - 'haftara': ['Joshua 2:1-2:24'], - 'ref': 'Numbers 13:1-15:41', - 'name': "Sh'lach" - }, - '6/12/2021': { - 'haftara': ['I Samuel 11:14-12:22'], - 'ref': 'Numbers 16:1-18:32', - 'name': 'Korach' - }, - '6/19/2021': { - 'haftara': ['Judges 11:1-11:33'], - 'ref': 'Numbers 19:1-22:1', - 'name': 'Chukat' - }, - '6/26/2021': { - 'haftara': ['Micah 5:6-6:8'], - 'ref': 'Numbers 22:2-25:9', - 'name': 'Balak' - }, - '7/3/2021': { - 'haftara': ['Jeremiah 1:1-2:3'], - 'ref': 'Numbers 25:10-30:1', - 'name': 'Pinchas' - }, - '7/10/2021': { - 'haftara': ['Isaiah 66:1-66:24'], - 'ref': 'Numbers 30:2-36:13', - 'name': 'Matot-Masei' - }, - '7/17/2021': { - 'haftara': ['Isaiah 1:1-1:27'], - 'ref': 'Deuteronomy 1:1-3:22', - 'name': 'Devarim' - }, - '7/24/2021': { - 'haftara': ['Isaiah 40:1-40:26'], - 'ref': 'Deuteronomy 3:23-7:11', - 'name': 'Vaetchanan' - }, - '7/31/2021': { - 'haftara': ['Isaiah 49:14-51:3'], - 'ref': 'Deuteronomy 7:12-11:25', - 'name': 'Eikev' - }, - '8/7/2021': { - 'haftara': ['I Samuel 20:18-20:42'], - 'ref': 'Deuteronomy 11:26-16:17', - 'name': "Re'eh" - }, - '8/14/2021': { - 'haftara': ['Isaiah 51:12-52:12'], - 'ref': 'Deuteronomy 16:18-21:9', - 'name': 'Shoftim' - }, - '8/21/2021': { - 'haftara': ['Isaiah 54:1-54:10'], - 'ref': 'Deuteronomy 21:10-25:19', - 'name': 'Ki Teitzei' - }, - '8/28/2021': { - 'haftara': ['Isaiah 60:1-60:22'], - 'ref': 'Deuteronomy 26:1-29:8', - 'name': 'Ki Tavo' - }, - '9/21/2030': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/16/2017': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/20/2025': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/5/2026': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/24/2022': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/12/2020': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/8/2018': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/4/2021': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/8/2029': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/25/2027': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/9/2023': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/28/2019': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-30:20', - 'name': 'Nitzavim' - }, - '9/16/2028': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - }, - '9/28/2024': { - 'haftara': ['Isaiah 61:10-63:9'], - 'ref': 'Deuteronomy 29:9-31:30', - 'name': 'Nitzavim-Vayeilech' - } -} diff --git a/data/maftirOffset.json b/data/maftirOffset.json new file mode 100644 index 000000000..96609c516 --- /dev/null +++ b/data/maftirOffset.json @@ -0,0 +1,55 @@ +{ + "Bereshit": 164, + "Noach": 328, + "Lech-Lecha": 251, + "Vayera": 307, + "Chayei Sara": 32, + "Toldot": 42, + "Vayetzei": 166, + "Vayishlach": 190, + "Vayeshev": 264, + "Miketz": 230, + "Vayigash": 256, + "Vayechi": 24, + "Shemot": 291, + "Vaera": 238, + "Bo": 174, + "Beshalach": 209, + "Yitro": 60, + "Mishpatim": 303, + "Terumah": 94, + "Tetzaveh": 90, + "Ki Tisa": 104, + "Vayakhel": 200, + "Pekudei": 73, + "Vayikra": 215, + "Tzav": 62, + "Shmini": 166, + "Tazria": 46, + "Metzora": 33, + "Achrei Mot": 72, + "Kedoshim": 38, + "Emor": 238, + "Behar": 100, + "Bechukotai": 29, + "Bamidbar": 253, + "Nasso": 189, + "Beha'alotcha": 246, + "Sh'lach": 128, + "Korach": 139, + "Chukat": 174, + "Balak": 208, + "Pinchas": 240, + "Matot": 252, + "Masei": 172, + "Devarim": 70, + "Vaetchanan": 136, + "Eikev": 0, + "Re'eh": 249, + "Shoftim": 268, + "Ki Teitzei": 341, + "Ki Tavo": 71, + "Nitzavim": 0, + "Vayeilech": 46, + "Ha'azinu": 68 +} diff --git a/data/torah/json/README.md b/data/torah/json/README.md new file mode 100644 index 000000000..c17ab690c --- /dev/null +++ b/data/torah/json/README.md @@ -0,0 +1,4 @@ +The hebrew json sources used in this project are derived from +[Miqra according to the Masora](https://en.wikisource.org/wiki/User:Dovi/Miqra_according_to_the_Masorah), +a project to transcribe the tanach to a digital format. To generate the json +sources for this directory, run `process_mam.js` diff --git a/data/torah/json/process_mam.js b/data/torah/json/process_mam.js new file mode 100644 index 000000000..28bbb6d12 --- /dev/null +++ b/data/torah/json/process_mam.js @@ -0,0 +1,118 @@ +const fs = require("fs"); +const gematria = require("gematria"); +const path = require("path"); + +const project_root = path.resolve(__dirname, "../../.."); +const mam_dir = path.join(project_root, "MAM-parsed/plus"); + +console.log("Processing tanach json..."); + +const namemap = { + הושע: "Hosea", + יואל: "Joel", + עמוס: "Amos", + עבדיה: "Obadiah", + מיכה: "Micah", + זכריה: "Zechariah", + מלאכי: "Malachi", + ירמיהו: "Jeremiah", + יהושע: "Joshua", + יונה: "Jonah", + דברים: "Deuteronomy", + ויקרא: "Leviticus", + יחזקאל: "Ezekiel", + 'שמ"א': "I Samuel", + 'שמ"ב': "II Samuel", + 'מל"א': "I Kings", + 'מל"ב': "II Kings", + שמות: "Exodus", + שופטים: "Judges", + ישעיהו: "Isaiah", + בראשית: "Genesis", + במדבר: "Numbers", + קהלת: "Ecclesiastes", + "שיר השירים": "Song of Songs", + רות: "Ruth", + חבקוק: "Habakkuk", + אסתר: "Esther", + איכה: "Lamentations", +}; + +const stripPref = (s, ...prefs) => + prefs.reduce((s, pref) => (s.startsWith(pref) ? s.slice(pref.length) : s), s); + +const books = {}; +for (const file of fs.readdirSync(mam_dir)) { + const { book39s } = JSON.parse(fs.readFileSync(path.join(mam_dir, file), "utf8")); + for (const book39 of book39s) { + const hebrew_name = stripPref(book39.sub_book_name ?? book39.book24_name, "ספר", "מגילת", " "); + const name = namemap[hebrew_name]; + if (name == null) continue; + books[name] = book39; + } +} + +const gemToArray = (obj) => { + const arr = []; + for (const [gem, v] of Object.entries(obj)) { + arr[gematria(gem).toMisparGadol() - 1] = v; + } + return arr; +}; + +const tmpls = { + נוסח: ([wte]) => wte, + "מ:אות-מיוחדת-במילה": ([_big, normal]) => normal, + "מ:פסק": () => "׀", + "מ:לגרמיה-2": () => "׀", + פפ: () => " ", + "מ:קמץ": ([], { ד }) => ד, + 'קו"כ-אם': ([wte]) => wte, + "מ:הערה-2": ([wte]) => wte, + 'כו"ק': ([_, wte]) => wte, + 'קו"כ': ([_, wte]) => wte, + "מ:כפול": ([], { כפול }) => כפול, + 'מ:כו"ק כתיב מילה חדה וקרי תרתין מילין': ([_standard, split]) => split, + ססס: () => " ", + סס: () => " ", + "מ:ששש": () => " ", + ר3: () => " ", +}; + +/** @returns {string} */ +const eval_wte = (wte) => { + if (typeof wte === "string") return wte; + if (Array.isArray(wte)) return wte.map(eval_wte).join(""); + const tmpl = tmpls[wte.tmpl_name]; + if (tmpl == null) return ""; + const args = (wte.tmpl_args ?? []).map(eval_wte); + const pos_args = []; + const kwargs = {}; + for (const arg of args) { + const [name, value] = arg.split("=", 2); + if (value == null) pos_args.push(name); + else if (name.match(/^\d+$/)) pos_args[name] = value; + else kwargs[name] = value; + } + return eval_wte(tmpl(pos_args, kwargs)); +}; + +const process_book = (book) => + gemToArray(book.chapters).map((chapter) => + gemToArray(chapter).map( + ([_precode, _nav, verse]) => eval_wte(verse).split(/ |(?<=[׀־])/), + // .map((w) => w.replace(/[\u0591-\u05C7\ufb1e\u034f]/g, "")), + ), + ); + +const processed_books = Object.fromEntries( + Object.entries(books).map(([k, v]) => [k, process_book(v)]), +); + +const outdir = path.join(project_root, "data/torah/json"); +fs.mkdirSync(outdir, { recursive: true }); +for (const [name, book] of Object.entries(processed_books)) { + fs.writeFileSync(path.join(outdir, `${name}.json`), JSON.stringify(book)); +} + +console.log("Done"); diff --git a/data/torah/labels/Achrei Mot-1.txt b/data/torah/labels/Achrei Mot-1.txt deleted file mode 100644 index 11a3817d0..000000000 --- a/data/torah/labels/Achrei Mot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.647075,3.459773,3.854512,4.574331,5.688889,6.524807,7.407166,8.034104,8.986122,10.356100,10.797279,11.563537,12.608435,13.978413,15.139410,15.812789,17.376215,19.698211,20.092950,20.387100,22.105376,22.537304,23.187463,23.791181,24.278801,24.531136,25.761794,26.690592,27.874810,28.312905,28.916624,30.333041,31.285059,31.630274,32.791272,33.929050,34.718528,35.740206,36.715445,37.737123,37.966238,39.104016,41.217032,42.169050,42.698483,42.795989,44.022020,45.577757,45.876533,47.153630,48.477168,49.145921,50.190819,51.258937,51.790844,53.160822,54.948758,56.130073,57.897692,58.165720,58.418055,60.252432,61.267942,61.894881,62.823679,64.077556,64.611615,65.447534,66.329892,67.374790,67.955289,69.464586,70.741683,71.600822,72.529620,73.806717,76.268032,77.336150,78.241729,79.216967,81.004903,81.538962,82.258781,83.141139,84.000277,85.230935,85.881094,86.949212,88.922908,90.501865,91.175243,91.445527,92.420765,92.742760,93.578679,94.479631,95.245889,95.705663,97.214960,98.654597,98.812511,99.411604,100.595821,101.775413,102.468928,103.490606,104.396184,105.208883,105.742942,106.602080,108.854416,110.503032,111.034007,111.614506,112.566524,113.541762,114.540221,115.399359,116.374597,117.396275,117.999994,119.369971,120.647069,121.413327,121.784846,122.713645,123.897862,124.803441,126.034098,127.311196,127.984574,129.470651,130.515549,132.953645,134.914902,135.983020,136.842158,137.724517,138.653315,139.837533,140.952090,141.834449,142.577487,143.692045,144.504743,145.549641,147.058938,148.243156,149.566694,151.633270,152.887147,153.421206,153.932045,154.884063,155.204517,155.970775,156.803610,157.662748,158.145741,159.097759,161.025016,161.489415,161.761886,162.574585,163.012680,164.220118,165.531319,166.018938,167.899755,169.200072,170.598349,171.411047,172.363066,173.640163,174.638621,176.008598,177.123156,178.005515,178.702113,179.607691,180.652589,181.256308,182.579846,184.365848,184.763582,186.272879,186.876598,187.480317,188.223355,189.454013,191.404489,192.282222,193.954058,194.427800,196.262176,197.214194,197.441768,198.347346,198.785441,200.248299,201.706349,202.658367,203.424625,205.305441,207.186258,207.650657,208.161496,208.974194,209.879773,210.994330,212.526847,214.245124,214.825623,216.288480,216.868979,217.519138,219.005215,220.909251,221.396870,222.023809,223.022267,224.160045,225.019183,226.218911,226.435600,227.333469,227.788616,228.345895,229.367573,230.644671,230.757686,232.243763,233.265441,234.171020,235.239138,236.144716,237.491473,238.884671,239.418729,240.301088,241.090566,242.460544,243.528661,243.691201,244.991519,246.384716,247.383174,248.428072,249.798049,250.308888,251.214466,252.096825,253.048843,254.093741,254.999319,256.229977,257.042675,257.855373,259.039591,260.154149,261.222267,261.895646,263.419802,264.253401,265.809138,267.736394,268.688412,269.431451,269.776666,270.821564,271.820022,272.748820,273.700838,274.606417,275.511995,275.903650,276.457845 diff --git a/data/torah/labels/Achrei Mot-2.txt b/data/torah/labels/Achrei Mot-2.txt deleted file mode 100644 index b3110fa0c..000000000 --- a/data/torah/labels/Achrei Mot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.017810,4.621529,6.548785,7.454364,8.220622,9.265520,10.612278,11.703615,13.979171,15.000849,16.045747,17.392504,18.785702,20.968377,21.413232,22.059715,22.933622,24.313472,26.063838,27.641791,27.929191,29.909532,31.281871,32.187449,33.255567,34.950624,36.668900,38.062098,38.597478,40.128674,41.892162,43.331799,43.478059,44.809599,45.420070,46.051675,46.794713,47.235893,48.791630,49.802373,49.968466,50.811708,52.114899,53.734735,55.522671,55.960593,56.667635,58.478792,59.129138,59.617869,62.334604,64.679820,65.980137,67.744854,68.340916,68.673102,69.810201,70.877207,72.285976,73.036663,73.361742,74.476300,75.228287,76.598264,77.759262,78.734500,79.021979,79.818348,81.327645,83.347781,83.915120,84.323019,85.029678,86.376436,88.001832,89.000341,90.821616,91.325644,91.641392,92.755950,93.290009,94.047015,95.311878,96.359542,96.704504,97.446322,99.272559,100.441697,101.370495,101.815061,102.531493,103.646050,105.109716,105.458015,106.479693,107.733571,108.592709,109.382188,110.357426,111,111.773843,112.824786,113.985783,115.471861,115.843538,116.814111,117.882229,119.182546,120.622183,121.643861,121.861219,122.981554,125.164230,126.510987,126.780129,128.003788,128.375308,129.443426,130.650863,131.672541,132.856759,133.998790 diff --git a/data/torah/labels/Achrei Mot-3.txt b/data/torah/labels/Achrei Mot-3.txt deleted file mode 100644 index 5867d40ab..000000000 --- a/data/torah/labels/Achrei Mot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.703880,4.546209,5.730427,6.300091,7.902268,9.682336,10.073011,11.016566,12.479423,14.128040,15.451577,16.473255,16.616732,17.597207,18.781425,19.902393,20.522921,21.142788,21.305328,22.884285,24.927641,25.499911,27.311067,29.424083,30.306442,32.303358,33.673335,34.578913,34.952436,36.088210,37.383660,38.614317,39.702446,39.968181,40.686307,42.195604,44.053200,45.214198,45.789435,46.722674,47.094193,48.162311,48.626710,50.414882,52.385511,53.592949,55.125466,56.541883,57.470681,57.731950,58.637528,59.752086,60.852323,61.354263,61.926952,62.135932,63.854208,65.495334,66.361084,67.522082,68.590200,69.797637,72.723351,74.000449,75.672286,76.581459,76.833283,79.250380,80.045054,81.229272,82.227730,83.760247,85.733943,86.918160,87.521879,89.379476,89.893114,90.633353,92.490950,93.460205,94.574763,95.619661,96.850319,97.964876,100.495851,101.405344,102.264482,103.913099,105.166976,106.281534,106.862033,107.999811,109.300128,109.399712,111.018405,111.955122,113.301880,114.532537,116.366914,117.057253,117.753852,119.634668,121.097525,122.374623,122.606822,123.721380,125.044918,126.057965,127.134713,129.441526,129.877903,130.451791,131.194829,131.612788,132.959546,134.511655,134.900201,135.849052,137.252045,137.899774,138.983746,141.238068,141.800425,142.775663,144.168860,146.188996,148.418112,149.053230,149.285429,149.773048,150.608967,152.350463,153.295149,153.689889,155.361725,156.476283,158.101680,160.586215,161.009923,161.776182,162.913959,163.371546,164.846948,165.734007,167.080764,169.913599,172.258814,173.101336,174.650469,175.416728 diff --git a/data/torah/labels/Achrei Mot-4.txt b/data/torah/labels/Achrei Mot-4.txt deleted file mode 100644 index f47266d0c..000000000 --- a/data/torah/labels/Achrei Mot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.280763,3.308349,3.627238,4.220515,5.567272,6.565730,6.867589,8.818066,9.569589,11.650900,12.742238,13.052562,14.005542,15.375520,16.451591,17.875140,18.936126,20.307039,20.985787,21.566285,22.191145,23.537903,24.538817,25.273882,26.416605,27.902682,28.770595,30.474297,31.350196,31.744936,33.486432,33.826745,34.322351,35.860197,36.827327,38.104425,39.311862,40.147781,41.796397,42.578831,43.962548,44.844906,47.190122,47.662461,50.115836,51.509033,52.437832,53.854249,55.084906,56.106584,57.430122,58.001464,60.289097,61.380038,62.343158,63.214414,64.369740,66.767067,67.469796,68.282494,69.071973,70.534830,72.880045,73.808844,75.736100,76.572018,78.731474,79.336223,82.238717,83.502048,83.996672,87.170505,87.706347,88.159617,90.667218,91.816811,94.231686,94.603596,96.334778,97.186084,97.929122,98.127787,99.625397,102.139733,103.895406,106.240622,107.491283,109.146898,110.776278,111.890836,112.052810,113.040139,113.328945,114.443503,116.022460,116.974478,117.972936,119.110714,120.573571,121.850669,122.872347,123.777925,125.519422,126.174587,126.964065,127.619708,127.846410,129.384835,132.545333,134.828444,135.437506,136.152103,137.522080,138.659858,140.563894,141.146284,141.632012,142.879666 diff --git a/data/torah/labels/Achrei Mot-5.txt b/data/torah/labels/Achrei Mot-5.txt deleted file mode 100644 index 195318733..000000000 --- a/data/torah/labels/Achrei Mot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.358253,4.632964,5.329563,6.165481,7.187159,8.650016,9.232242,10.110973,10.644886,11.607054,12.958508,13.743290,14.486328,15.322247,15.527964,16.940608,17.563506,18.998397,19.866711,20.772289,21.701087,23.325315,24.371382,24.998321,26.275419,28.668922,29.401640,30.144678,31.723635,33.058100,34.615346,35.229214,37.365450,38.274873,39.037287,40.150115,41.729072,42.448891,43.517009,43.847588,44.794106,45.945854,48.012430,49.405627,50.752384,51.122149,52.348913,53.736097,54.694128,55.701713,56.862710,57.673704,58.285479,61.533449,62.501166,64.305799,66.558135,67.765573,68.837025,69.052721,70.509858,71.748718,72.027357,73.443774,73.969168,74.646854,75.227353,76.049203,77.606448,78.218223,78.854338,79.876016,80.851254,82.360551,82.822808,83.496186,84.285665,84.703039,85.796324,86.716335,89.018834,89.743717,90.974374,91.332456,91.970518,93.112166,94.580426,95.970824,96.860678,98.918467,99.728245,100.587383,101.632281,103.256509,104.023936,105.695773,106.578131,108.412508,108.839519,109.418752,110.353099,111.547202,112.804386,113.122772,114.146105,115.413466,117.247843,117.716647,118.562009,118.828965,120.864507,121.620884,124.468419,126.481715,127.907553,129.022111,130.430445,131.086713,131.342546,132.377002,133.044393,134.601639,134.873049,135.569648,135.848287,136.823525,138.007743,138.913321,139.455801,140.465796,141.789333,143.019991,144.622167,146.038585,147.129923,148.198040,149.544798,150.729015,152.006113,153.074231,154.908607,156.092825,157.950421,158.925659,159.150504,160.032862,161.897930,163.028236,163.817714,165.373451,166.557669,167.277488,168.368826,169.529823,171.178440,172.598164,173.619842,173.875262,174.386101,175.663198,176.917076,177.218935,178.147734,179.308731,180.539389,181.607507,182.466645,183.163244,184.695761,186.947338,187.421887,189.256263,190.172794,191.171252,191.728531,192.541229,193.632567,195.490163,196.140322,199.042816,200.087714,202.107850,203.129528,203.856256,204.715394,205.690632,207.107050,208.778886,209.149212,210.543603,211.129138,212.777755,214.774671,215.471270,216.191088,217.282426,218.489864,219.534762,220.324240,221.067279,222.414036,223.890253,224.165509,225.346806,225.555785,227.111522,228.202860,229.348912,231.082134,232.150252,233.079051,234.123949,235.517146 diff --git a/data/torah/labels/Achrei Mot-6.txt b/data/torah/labels/Achrei Mot-6.txt deleted file mode 100644 index 974cc62ec..000000000 --- a/data/torah/labels/Achrei Mot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.724812,2.398191,2.613925,2.914568,4.112855,5.575712,6.063332,7.085010,8.106688,9.151586,9.987504,11.612901,12.843558,14.886914,15.862152,16.883830,17.464329,18.718207,20.436483,21.318842,21.844279,22.781699,24.491354,25.466592,25.990939,26.942957,27.709215,28.916653,29.659692,30.715701,31.859815,33.107175,34.477152,34.832841,35.893570,37.020855,37.6,38.549486,40.277821,41.213155,41.958844,42.887643,43.746781,44.152159,45.127397,46.908671,48.029892,48.461994,49.572703,50.520854,50.875490,52.285571,52.913182,53.973784,55.243165,55.886208,57.138614,58.358162,59.694353,60.045104,60.728667,61.703905,63.043183,64.254107,65.705980,66.550686,67.231199,68.206437,69.785394,71.062492,71.619862,72.672113,73.331857,74.546992,75.326559,76.185697,77.346695,78.623792,79.178494,80.249189,80.945788,82.153225,82.534876,83.244728,84.271925,85.541307,86.552600,86.935957,87.969017,88.756517,90.055782,90.381533,91.472871,92.285569,93.423347,94.979084,95.954322,97.161760,98.462077,99.181896,100.250014,101.271692,102.363030,102.966749,103.663403,104.589351,106.261188,107.422186,107.920063,108.895301,109.591899,110.845777,111.542376,112.447954,113.562512,115.002149,116.929405,118.136843,118.856661,120.226639,120.591279,120.967083,122.478649,123.155096,123.572656,125.292766,126.059025,127.080703,128.218481,129.727778,130.676256,131.326415,132.046234,133.044692,134.303944,134.512724,135.581677,136.446298,137.491196,139.580992,141.670787,143.667704,144.526842,146.082579,146.838672,147.638316,148.487289,149.764386,150.739624,151.830962,152.945520,154.431597,155.351192,156.159025,158.323346,158.714491,159.336746,160.683503,161.844501,162.915143,163.841417,165.477926,165.756565,166.731803,167.962461,169.239558,170.934615,173.186951,173.671484,174.055639,175.388145,176.038304 diff --git a/data/torah/labels/Achrei Mot-7.txt b/data/torah/labels/Achrei Mot-7.txt deleted file mode 100644 index cbd6e948e..000000000 --- a/data/torah/labels/Achrei Mot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.509592,3.827579,4.293684,5.180210,6.410868,7.386106,8.663203,9.708101,10.752999,12.610596,12.999325,13.565036,14.991351,15.781634,16.489884,18.614468,19.222149,21.328522,22.953437,24.999956,26.346713,27.321951,28.343629,29.272553,30.452122,30.861360,31.744667,32.556128,33.020527,33.810005,35.087103,36.619620,37.312876,37.910529,38.908987,40.789803,42.647399,43.901277,44.760196,45.726328,46.896432,48.035902,48.895040,49.253093,51.366109,52.611155,54.500803,55.018438,56.390589,56.775754,58.263537,59.447754,60.864172,61.524263,62.685260,63.846258,65.742881,66.720677,67.185076,68.949793,69.994691,70.376899,70.798174,72.136306,73.413403,74.032701,74.749865,75.522465,76.419178,77.616801,78.798412,80.261269,81.005195,81.841113,82.746692,83.977349,85.490753,86.535651,87.882408,89.716785,90.134669,90.901780,91.551939,93.293436,94.616973,94.967288,95.975224,97.530961,98.231859,99.276757,100.484194,102.666870,103.781428,104.826326,105.426930,106.931481,108.313399,108.522379,110.681834,112.098252,113.607549,114.838206,116.231403,117.282795,118.623059,120.129407,120.809464,121.867251,122.933891,124.221787,125.118499 diff --git a/data/torah/labels/Achrei Mot-h.txt b/data/torah/labels/Achrei Mot-h.txt deleted file mode 100644 index 36780b5cf..000000000 --- a/data/torah/labels/Achrei Mot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.921672,2.379361,3.215280,4.109811,5.294028,7.012305,7.323682,8.475162,9.690098,10.827876,11.176244,11.653047,13.312318,15.907952,16.813530,17.145808,19.181965,21.364641,22.200559,23.199017,24.801194,26.194391,27.239289,28.423507,29.932804,31.372441,32.208360,33.740877,35.668133,37.850809,39.104686,40.939063,42.254139,42.689693,44.398836,46.410511,47.943028,48.303285,49.348183,50.509181,52.430610,53.754147,55.217005,55.582425,57.648568,58.017296,59.523991,60.989057,62.126835,63.473592,65.191869,65.721064,67.462561,70.109635,71.317073,72.408411,73.707268,75.131317,77.013096,78.259140,79.670474,81.557073,82.662364,84.102001,85.402319,86.145357,87.050936,87.744325,89.322469,90.437027,91.196374,92.525062,93.526814,94.478833,96.167831,97.076934,99.365476,100.294274,101.269512,103.173548,104.171752,105.551299,106.184867,107.438744,109.064141,110.828858,111.196638,112.607742,113.977719,115.231597,117.135633,118.052125,118.784250,119.491762,119.918940,121.542981,121.928178,122.996296,124.439025,125.284554,126.625958,127.338023,128.986640,129.944502,130.635257,131.074757,132.421514,133.301189,134.305653,134.782455,135.977639,138.033560,138.501512,139.166595,141.024192,141.952990,143.230087,143.973575,144.159335,145.284819,145.958699,147.700617,149.659538,149.822078,150.611556,150.828439,151.743669,152.393828,153.438726,154.553283,155.284951,155.830381,156.465522,157.022801,158.711570,159.994956,161.039854,162.665250,164.708606,165.916044,167.193141,168.911418,170.351055,171.628153,172.377189,173.886486,175.302903,176.347801,177.910806,178.368536,179.487513,179.903453,181.389530,182.504088,183.502546,184.384904,185.267262,186.846219,188.491206,189.605764,189.988440,191.590617,193.030254,195.212930,196.072068,197.047306,197.767125,199.229982,200.104672,200.940591,201.730069,203.285806,205.094891,206.127616,207.520813,209.087315,211.204750,212.505067,213.828604,215.291462,216.568559,217.428175,218.114770,219.850330,221.147042,221.425682,221.955471 diff --git a/data/torah/labels/Balak-1.txt b/data/torah/labels/Balak-1.txt deleted file mode 100644 index e4d9e0523..000000000 --- a/data/torah/labels/Balak-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.484535,3.482993,3.947392,5.526349,7.388303,7.794195,8.258594,9.071293,10.510930,12.832925,14.736961,16.548118,17.778776,19.288073,20.704490,21.215329,21.329887,22.212245,25.091519,26.786576,27.854694,29.108571,30.989388,32.614785,34.240181,34.681361,35.586939,38.303673,41.902766,44.456961,46.128798,46.593197,47.847075,49.843991,51.353288,52.932245,53.930703,54.929161,56.670658,60.571610,61.221769,63.892063,65.099501,66.562358,67.700136,69.789932,71.968893,74.628506,75.237333,76.262727,76.633948,79.774215,84.356441,87.256686,87.929600,90.618841,91.713763,92.059592,93.117029,93.943510,95.257295,99.006389,103.524528,104.227201,105.334084,107.467701,108.589224,110.511837,111.056577,112.114014,113.395755,115.029976,116.215586,120.349203,124.482819,125.315951,125.911478,126.608577,128.499146,128.979799,129.941105,132.120065,132.568675,133.754286,134.843766,135.869159,137.311118,137.803864,138.604952,139.726476,142.257916,142.930830,144.340746,145.045703,147.352838,148.153927,149.364931,150.550541,151.992501,153.242199,154.171461,156.158161,160.836517,161.958041,163.271826,164.906046,166.059614,167.629747,169.392141,170.615238,170.866144,172.281502,174.181747,175.136403,176.642449,178.308713,180.039064,182.442329,183.627940,184.511859,185.729513,187.908473,189.222259,190.375826,192.843178,194.413312,195.470748,196.624316,198.034231,199.219842,200.117061,200.661801,202.296022,204.090460,205.468332,206.224076,207.345600,210.005214,212.463140,214.041491,215.066884,217.117671,219.136414,220.001589,220.514286,222.148506,225.192642,225.801469,228.044517,228.941736,230.159390,231.248871,232.819004,234.421181,235.670879,237.497361,238.715015,240.060844,240.445366,241.150324,242.143673,244.803287,245.988898,246.982248,247.687205,248.520337,250.186601,252.461693,253.970660,254.843799,257.463510,259.610427,260.571733,260.814781,262.128566,263.025785,263.923004,265.429050,266.230139,267.159401,267.441143,268.530623,269.100756,270.382498 diff --git a/data/torah/labels/Balak-2.txt b/data/torah/labels/Balak-2.txt deleted file mode 100644 index babe9c67f..000000000 --- a/data/torah/labels/Balak-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.904036,2.809615,4.574331,6.339048,6.777143,7.984580,9.168798,10.422676,11.003175,12.489252,13.627029,15.111565,16.481542,18.083719,19.058957,20.359274,22.565170,23.772608,24.887166,26.141043,26.489342,27.371701,29.949116,31.086893,32.131791,33.223129,34.337687,36.125624,36.822222,37.820680,40.119456,41.396553,42.278912,43.741769,45.134966,46.621043,47.131882,48.385760,49.848617,51.404354,52.333152,53.447710,54.864127,55.282086,56.373424,56.953923,57.487982,58.974059,60.181497,61.435374,62.176871,63.105669,64.661406,65.683084,68.794558,69.607256,70.373515,71.395193,72.904490,73.667664,74.410703,75.989660,76.779138,77.638277,78.311655,79.635193,81.469569,83.536145,85.022222,85.695601,86.903039,87.924717,88.551655,88.805533,89.432472,91.359728,92.451066,93.542404,94.331882,95.562540,96.328798,98.163175,99.811791,100.369070,101.181769,102.830385,103.944943,105.361361,106.429478,106.917098,108.867574,112.373787,114.045624,114.554921,116.969796,117.596735,118.502313,119.709751,122.121542,122.437138,123.319728,124.689705,125.850703,127.197460,129.423492,130.836825,131.553560,135.965351,138.658866,139.708481,141.264218,141.703855,142.586213,143.468571,144.884989,146.324626,147.230204,147.880363,148.855601,151.224036,151.641995,153.592472,154.381950,155.100227,156.446984,157.149346 diff --git a/data/torah/labels/Balak-3.txt b/data/torah/labels/Balak-3.txt deleted file mode 100644 index 5604b1499..000000000 --- a/data/torah/labels/Balak-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.366893,4.667211,7.331338,7.453605,9.092971,10.207528,10.648707,11.461406,12.924263,13.886845,14.307565,18.542660,19.007059,19.935857,21.329054,24.742388,27.760982,30.199077,31.661934,32.776492,33.728510,35.214587,36.352365,36.536583,38.092320,38.855494,40.713091,42.384927,43.567603,46.980936,47.352456,48.163612,50.206968,51.275086,53.434542,54.990279,56.499576,57.498034,58.937671,60.121889,60.259666,61.281344,62.512002,63.742660,65.391276,66.203975,66.993453,68.967149,70.731866,72.519803,75.143657,76.211775,77.558533,79.114270,80.716447,81.854224,82.806242,83.827920,84.965698,86.823295,88.936310,89.307830,90.074088,92.140664,93.975041,94.323340,95.855857,98.897671,99.362070,100.244428,101.080347,101.591186,102.845063,104.470460,106.815676,109.044791,109.671730,110.855948,112.225925,113.828102,115.290959,116.359077,119.308011,119.795630,120.422569,121.606787,122.628465,124.091322,126.645517,127.643975,128.317354,129.362251,130.523249,131.962886,132.961344,134.006242,135.213680,135.840619,136.931957,138.000075,138.441254,139.532592,141.483068,143.619304,144.780301,144.987739,145.475358,146.868555,148.888691,150.142569,150.583748,152.162705,153.230823,154.066741,155.506378,156.365517,157.294315,158.873272,161.311367,162.240165,163.424383,164.074542,165.955358,166.419757,167.859394,168.463113,169.902750,171.249508,172.085426,173.130324,174.918261,176.799077,178.749553,179.097852,181.396628,184.763521,185.970959,188.478714,189.175313,189.957081,193.197081,195.658397,196.354995,197.399893,198.461073,200.062478,201.664655,202.802433,203.684791,204.404610,205.913907,207.655403,209.325698,212.065653,212.553272,213.319530,215.223567,219.449598,219.844338,220.703476,222.328873,223.791730,225.115267,226.508465,227.669462,229.039440,230.525517,232.104474,233.660211,236.400165,237.352183,238.675721,239.952818,240.774859,242.618578,244.081435,244.615494,246.403431,247.425109,248.075267,249.143385,250.397263,251.488601,252.765698,254.135676,254.600075,255.296673,256.271911,257.572229,260.521163,261.566061,262.843159,264.027376,264.793635,265.397354,266.419032,267.881889,269.716265,270.923703,271.875721,274.685335,275.405154,276.450052,277.564610,278.655948,281.024383,283.090959,284.971775,285.341753,286.200891,287.083249,288.104927,289.265925,290.357263,291.378941,292.284519,295.001254,296.162251,297.462569,298.646787,302.013680,303.360437,304.033816,304.962614,306.541571,307.377490,312.880619,313.971957,315.829553,316.154632,318.151549,319.660846,320.078805,322.006061,324.258397,324.862115,326.789372,327.625290,328.600528,329.482886,330.458125,331.665562,332.942660,334.057217,334.544837,335.264655,336.518533,340.210505,341.069644,341.580483,342.044882,342.945834,343.990732,345.685789,346.103748,346.496945,348.842161,349.910279,350.606877,351.651775,352.696673,353.788011,354.786469,356.860964,358.750914,360.213771,360.464564,362.577580,365.735494,366.989372,368.220029,369.102388,369.469281,370.328419,371.368691,371.466197,372.568419,373.659757,376.353272,377.049871,377.932229,379.371866,382.111821,383.899757,384.035993,385.893589,386.404428,387.124247,387.867286,390.971050,392.526787,393.385925,394.430823,395.545381,398.192456,399.283793,401.930868,403.834905,405.158442,405.924700 diff --git a/data/torah/labels/Balak-5.txt b/data/torah/labels/Balak-5.txt deleted file mode 100644 index fdfe15e62..000000000 --- a/data/torah/labels/Balak-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.918829,4.287264,7.143318,7.839917,8.443636,10.486992,10.904951,11.856969,13.041187,14.014883,14.966901,16.174339,17.428216,18.774974,19.866312,21.329169,22.141867,23.279645,24.483999,25.157377,26.782774,29.081550,30.126448,31.403545,31.867944,32.471663,34.050620,35.768897,36.976334,38.346312,41.016606,41.945405,42.920643,44.592479,46.124996,46.355654,47.470212,48.793749,49.560008,50.419146,51.974883,53.251981,54.296878,55.875835,57.315473,58.313931,58.731890,59.985767,61.378965,62.238103,63.399101,66.487355,67.416153,67.718012,68.693250,69.389849,71.154566,73.406901,75.705677,77.377513,78.840371,79.304770,81.208806,82.532343,83.507581,84.622139,86.038557,86.828035,87.849713,88.476652,89.289350,91.030847,93.097423,94.351300,95.930257,96.835835,97.718194,99.343591,100.667128,101.665586,102.501504,104.150121,105.496878,106.100597,106.681096,108.794112,109.397831,110.117649,111.998466,113.113024,113.995382,115.272479,116.433477,117.664135,118.383953,120.241550,121.425767,123.353024,125.094520,126.464498,127.114656,128.856153,129.645631,130.504770,131.294248,132.501686,132.989305,133.778783,134.777241,136.332978,137.563636,138.376334,139.490892,140.605450,141.464588,142.555926,144.622502,146.178239,147.733976,149.545132,150.450711,151.542049,152.726266,153.051346,153.678284,154.839282,155.234021,155.930620,157.393477,159.738693,161.155110,162.107128,163.453885,164.243364,165.474021,166.611799,168.539055,169.398194,170.512752,171.557649,173.066947,174.483364,175.458602,176.433840,177.362638,178.175337,179.104135,179.870393,180.938511,182.099509,183.864225,184.537604,184.932343,185.977241,186.511300,187.463318,188.113477,189.483454,190.063953,190.830212,191.457151,193.221867,194.824044,195.752842,196.658420,197.006720,197.772978,199.978874,201.023772,201.859690,202.881368,204.831844,205.528443,206.364361,207.525359,208.175518 diff --git a/data/torah/labels/Balak-6.txt b/data/torah/labels/Balak-6.txt deleted file mode 100644 index 31475056c..000000000 --- a/data/torah/labels/Balak-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.695057,2.414875,2.642449,3.780227,4.424218,5.103764,7.113107,7.599184,8.481542,9.665760,10.849977,11.546576,12.684354,14.054331,15.679728,16.562086,17.908844,19.557460,20.463039,20.834558,21.949116,22.831474,24.619410,26.012608,26.334603,27.007982,29.144218,30.281995,30.905850,31.065215,32.026576,32.302132,32.789751,33.672109,34.600907,35.738685,36.631927,37.229478,38.135057,39.040635,39.853333,40.991111,42.593288,44.169161,45.051519,46.026757,46.769796,47.698594,50.322449,51.088707,51.831746,53.480363,55.593379,57.706395,58.771429,60.884444,62.184762,63.601179,65.273016,65.386032,66.732789,67.336508,68.265306,69.078005,70.262222,71.074921,72.235918,73.582676,74.279274,75.530068,77.643084,79.847031,81.681408,82.029707,84.371839,85.407622,85.661465,87.009752,88.000501,89.556238,90.902995,91.715693,92.272972,93.851929,95.384446,96.494378,97.910795,98.955693,99.907712,100.906170,102.130659,103.039139,104.118324,105.113698,106.576555,109.246850,110.129208,110.802587,111.475966,112.729843,113.844401,114.889299,116.119956,117.164854,118.906442,120.996238,122.041136,122.877054,124.522587,125.822904,127.550523,129.733199,132.310614,133.448392,134.841589,135.770387,137.047485,139.857099,140.785897,142.457734,143.827712,144.685308,145.939185,146.888120,147.584718,150.672972,151.764310,152.600229,153.502723,154.849480,156.358777,157.473335,159.052292,160.677689,161.931566,163.278324,164.485761,165.995058,166.807757,167.759775,171.033789,171.936283,174.759866,177.732020,179.078777,180.309435,182.027712,183.397689,185.975104,188.320319,189.850149,190.453867,192.056044,193.960081,195.422938,197.071554,199.118747,200.861124,201.580942,202.416861,202.689332,203.780670,205.057768,205.406067,206.543845,207.728062,209.121260,209.399899,211.443255,212.534593,213.509831,214.717269,216.156906,217.550103,218.548561,219.593459,220.465024,221.946475,223.595092,224.195727,224.935681,225.095137,226.627654,228.253051,229.344389,230.969786,232.920262,234.197359,235.474457,237.378493,239.068251,239.904170,240.436687,241.853104,244.012560,246.079136,246.682854,248.911970,249.678229,250.676687,251.442945,252.348523,253.718501,255.018818,255.340814,255.851653,257.241766,257.936823,260.583897,261.373376,263.300632,264.020451,265.413648,266.737185,267.056097,267.840950,268.978727,270.186165,271.904442,272.786800,273.505077,275.014374,275.715899,276.536097,277.743535,278.367390 diff --git a/data/torah/labels/Balak-7.txt b/data/torah/labels/Balak-7.txt deleted file mode 100644 index 521c476a5..000000000 --- a/data/torah/labels/Balak-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.620771,6.037188,6.989206,8.196644,9.241542,11.308118,12.353016,14.048073,15.320544,16.945941,18.199819,19.291156,20.684354,22.123991,23.331429,24.724626,25.769524,26.605442,27.743220,28.834558,29.949116,31.133333,31.969252,33.432109,35.846984,37.353197,37.910476,38.885714,39.947664,40.760363,41.874921,43.221678,44.313016,45.775873,46.867211,47.796009,50.164444,52.034658,53.079556,54.867493,56.167810,58.048627,59.116744,60.231302,62.112119,64.526994,66.152391,67.313388,68.404726,69.728264,70.935701,72.119919,73.373797,73.722096,74.415611,75.669488,77.225225,79.036382,81.660237,85.027130,87.743298,89.202206,90.525744,91.709961,92.708419,94.151517,95.675882,97.672798,99.623274,100.714612,103.129487,105.084589,105.406585,106.590802,107.473161,108.448399,109.655836,110.840054,111.745632,113.022730,114.578467,115.414385,117.086222,118.267356,118.519691,119.773569,120.679147,122.002684,123.442322,125.276698,126.971755,128.504272,129.688489,131.197786,132.985157,133.492912,134.328830,135.486744,136.437220,136.946517,137.991415,138.754590,140.797946,142.376903,143.561120,144.861438,148.344431,149.867696,151.330553,152.909510,154.256268,156.067424,156.973002,158.203660,159.782617,160.781075,161.616993,162.706789,163.400304,164.096903,164.886381,166.836857,168.853909,169.875587,170.804386,171.733184,172.987061,173.590780,174.496358,175.146517,176.884930,178.299805,179.367923,180.807560,182.223977,183.199216,184.035134,184.296721,184.784340,186.223977,187.911324,188.909782,190.233320,191.485655,192.971733,193.877311,195.360304,198.007379,200.654454,201.722572,202.512050,203.533728,204.787606,205.228785,206.529102,209.024766,211.226035,212.665673,213.035650,215.079006,216.100684,216.515559,216.976874,217.975332,220.204448,222.681026,224.476920,225.452158,225.962997,227.123995,230.294208,231.453881,231.935332,233.116466,235.278378,236.993750,237.992208,238.503047,240.337424,242.148580,243.286358,244.168716,245.724453,247.605269,248.394748,250.113024,255.196801,257.485956,258.484414,260.179470,262.408586,263.732124,264.242963,265.148541,265.238337,267.026273,268.767770,269.650128,270.973666,271.504641,271.896296,272.708994,273.962872,275.402509,276.400967,277.445865,278.165684,280.116160,283.580613,284.625511,285.018708,286.063606,286.410363,287.246282,288.825239,290.543515,291.797393,293.074490,294.258708,295.117846,297.242747,301.697463,303.291361,304.031316,306.237211,306.794490,309.488005,310.757393,310.881202,312.429230,313.353402,314.348776,315.509774,316.276032,317.204831,317.923107,319.478844,321.772994,323.235851,324.396849,325.091905,326.717302,329.759116,331.709592,333.328821,334.513039,335.999116 diff --git a/data/torah/labels/Balak-h.txt b/data/torah/labels/Balak-h.txt deleted file mode 100644 index daaef3bdb..000000000 --- a/data/torah/labels/Balak-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.876190,4.385488,8.031020,9.517098,11.049615,12.883991,14.207528,16.459864,17.992381,20.291156,21.034195,22.845351,24.377868,24.747846,26.257143,27.394921,28.668934,30.642630,31.362449,32.918186,35.867120,36.978594,39.439909,44.037460,45.825397,47.961633,49.354830,51.232562,53.577778,55.319274,57.339410,58.105669,59.614966,62.145941,62.887438,65.093333,66.254331,67.670748,68.435465,70.176961,71.795865,73.374822,73.839221,75.859357,76.555955,78.320672,80.549788,82.360944,83.334640,84.518858,85.004935,86.723212,88.511148,89.904345,92.296001,94.757316,97.520491,100.399765,101.235683,102.536001,104.602577,105.201670,107.639765,109.447838,111.328654,113.627429,115.624345,115.994323,116.641398,118.800527,122.464172,124.809387,127.247483,129.453378,130.080317,131.865170,133.072607,133.832698,135.759954,137.798685,139.679501,142.512335,144.509251,146.297188,151.452018,153.866893,156.304988,158.185805,158.579002,160.250839,162.201315,162.569750,164.450567,166.133851,168.153987,168.571946,169.499202,170.683420,173.910994,175.420291,177.138567,177.437343,179.434259,181.454395,182.986912,185.308908,187.050404,188.118522,188.722241,190.092218,191.810495,194.058205,195.056663,196.171221,196.773397,197.678976,199.093851,199.369406,200.809044,201.505642,202.759520,204.756436,208.146549,209.214667,210.001062,211.324599,212.392717,214.737933,216.821561,218.772037,220.559973,222.371130,223.903647,225.273624,226.318522,227.549180,230.289134,232.873296,234.600336,235.087955,236.202513,237.293851,239.731946,244.074078,245.049316,246.163874,246.814032,250.111266,251.458023,252.642241,254.058658,255.080336,255.704191,256.981289,257.976663,258.252218,259.807955,260.365234,261.688772,261.964327,263.566504,264.890041,265.679520,266.465914,268.625370,270.743973,272.694449,274.250186,276.154222,276.874041,278.476218,282.211547,284.394222,286.182159,286.761116,289.106331,291.358667,292.751864,294.795220,296.374177,298.510413,299.114132,300.971728,302.318485,304.129642,305.569279,306.660617,307.798395,308.402113,310.004290,311.437760,313.109596,314.920753,315.594132,317.683927,318.519846,321.004381,321.744336,325.204109,325.783066,326.196399,327.241297,328.425515,330.484381,331.900798,334.600372,335.185696,335.882295 diff --git a/data/torah/labels/Bamidbar-1.txt b/data/torah/labels/Bamidbar-1.txt deleted file mode 100644 index a0a1a02d6..000000000 --- a/data/torah/labels/Bamidbar-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.973696,3.924172,4.249252,5.944308,6.820499,7.702857,8.466032,9.371610,10.973787,11.786485,12.993923,14.108481,15.803537,18.009433,18.868571,19.658050,20.772608,22.444444,22.769524,23.350023,23.532698,24.484717,24.922812,25.828390,27.268027,27.871746,28.916644,30.356281,31.192200,31.656599,32.399637,34.141134,34.953832,35.743311,36.486349,37.531247,38.042086,38.785125,39.621043,40.805261,42.244898,43.939955,45.147392,46.052971,47.144308,48.630385,49.326984,49.977143,50.696961,51.765079,53.204717,53.808435,54.272834,54.946213,55.782132,56.664490,57.686168,58.661406,59.427664,60.333243,61.192381,62.724898,63.676916,64.000454,64.952472,66.554649,67.390567,67.644444,68.642902,70.175420,70.964898,71.336417,72.311655,73.728073,74.563991,74.889070,75.562449,77.187846,78.000544,78.324082,78.997460,80.158458,80.855057,82.155374,83.153832,83.432472,84.198730,85.754467,86.543946,86.796281,87.725079,89.095057,89.977415,90.277732,91.113651,92.413968,93.319546,93.691066,94.596644,96.222041,96.965079,97.243719,98.218957,99.612154,100.424853,100.748390,101.630748,102.931066,103.766984,104.045624,105.020862,105.949660,107.110658,108.085896,108.991474,109.824308,110.753107,112.401723,113.121542,114.096780,114.770159,116.395556,117.115374,117.974512,118.694331,119.924989,120.737687,121.341406,122.154104,123.036463,123.779501,124.056599,125.031837,126.610794,127.632472,128.747029,129.675828,131.069025,131.298141,132.435918,133.059773,134.081451,135.172789,136.682086,137.726984,138.307483,139.909660,140.652698,142.324535,143.926712,144.553651,145.505669,145.784308,146.411247,147.595465,148.756463 diff --git a/data/torah/labels/Bamidbar-2.txt b/data/torah/labels/Bamidbar-2.txt deleted file mode 100644 index 7034cc771..000000000 --- a/data/torah/labels/Bamidbar-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.159456,2.763175,3.455147,4.616145,5.498503,6.705941,7.866939,8.540317,9.654875,10.885533,11.489252,12.859229,13.323628,14.879365,15.715283,16.574422,17.131701,18.106939,18.710658,19.407256,20.243175,21.288073,22.100771,22.704490,24.329887,25.815964,26.300499,27.113197,27.925896,29.017234,29.737052,30.712290,31.757188,32.384127,33.359365,35.147302,36.076100,36.772698,38.026576,38.374875,39.837732,40.673651,41.393469,41.950748,42.786667,43.343946,43.994104,44.760363,45.758821,46.548299,47.198458,48.730975,50.611791,51.029751,51.768163,52.348662,53.648980,54.252698,55.158277,56.203175,56.621134,57.433832,58.455510,59.871927,60.568526,61.288345,61.868844,62.820862,63.517460,64.167619,64.933878,66.141315,66.907574,67.511293,68.440091,69.183129,69.763628,70.460227,71.063946,72.132063,73.409161,74.082540,75.127438,76.195556,76.776054,77.565533,78.633651,80.003628,80.816327,81.466485,82.093424,82.906122,83.416961,84.090340,84.786939,86.017596,86.667755,87.248254,89.012971,90.522268,90.940227,91.706485,92.449524,94.167800,95.003719,96.211156,97.232834,97.790113,98.579592,99.647710,101.110567,101.853605,102.526984,103.177143,103.915556,104.558005,105.107574,105.804172,107.150930,107.892426,108.821224,110.566897,112.424494,112.865673,113.771251,114.398190,115.466308,116.325446,117.254244,118.299142,118.786761,119.715559,120.806897,122.223314,122.943133,123.593292,124.104131,124.777509,125.218689,125.822407,126.426126,127.517464,128.237283,129.003541,130.628938,132.300775,132.741954,133.345673,134.181591,135.040729,135.574788,136.224947,137.084085,138.036104,138.964902,139.429301,140.195559,141.379777,142.703314,143.399913,144.235831,144.839550,145.675469,146.067124,146.740503,147.669301,148.551659,149.364357,150.146126,151.074924,151.468122,152.280820,153.093518,154.138416,155.043995,155.923269,156.991387,157.479006,158.384584,159.475922,160.938779,161.705038,162.331977,162.935695,163.678734,164.234471,164.907850,165.627668,166.765446,167.485265,168.297963,169.784040,171.711296,172.129255,172.311931,174.517827,175.214426,176.212884,177.304221,177.907940,178.697419,179.742317,181.089074,181.785673,182.459051,183.039550,183.712929,184.223768,184.711387,185.663405,187.033382,187.610797,188.400276,190.048893,191.720729,192.138689,193.044267,193.717645,194.692884,195.505582,196.295060,197.247079,197.734698,198.477736,199.569074,201.008711,201.751750,202.448348,203.028847,203.655786,204.213065,204.979323,205.745582,206.720820,207.487079,208.160457,209.692974,211.295151,211.782770,212.549029,213.152747,214.104766,214.940684,215.799822,217.053700,217.564539,218.400457,219.515015,220.931432,221.651251,222.301410,222.951568,223.624947,224.228666,224.739505,225.343224,226.434562,227.270480,227.874199,229.360276,230.590933,231.032113,231.984131,232.657509,233.377328,234.580140,235.485718,236.484176,237.018235,237.807713,238.919187,240.312385,240.985763,241.682362,242.286081,243.029119,243.586398,244.120457,244.747396,246.024494,246.860412,247.649890,249.368167,251.295423,251.968802,252.804720,253.385219,254.151478,256.659233,257.866670,258.865128,259.910026,260.560185,261.628303,262.580321,263.509119,264.293972,264.985945,265.448802,266.098961,266.490616,267.280094,268.116013,270.159369,270.577328,271.181047,271.622226,272.249165,272.829664,273.897782,274.896240,275.708938,276.382317,277.218235,277.705854,278.193473,278.982952,280.190389,281.119187,281.513927,282.210525,282.860684,283.417963,284.253881,284.950480,285.925718,286.831296,287.527895,288.619233,289.896330,290.709029,291.498507,292.052702,293.051160,294.351478,295.257056,296.162634,296.580593,297.161092,298.066670,298.856149,299.062045,299.688983,300.432022,301.801999,302.661138,303.334516,303.938235,304.449074,305.284992,306.051251,306.608530,307.606988,310.532702,311.786580,312.060593,313.569890,313.823768,314.470843,315.864040,316.323813,316.695333,318.738689,319.110208,319.271206,319.689165,320.939958,322.286716,323.192294,323.494153,324.283632,324.748031,324.837827,325.557645,326.695423,327.809981,328.831659,329.760457,331.432294,332.570072,334.195469,335.147487,335.867305,336.888983,337.957101,338.932339,339.768258,340.627396,341.602634,342.670752,343.553110,344.458689,345.526806,345.967986,346.920004,348.266761,348.568621,350.170797,350.820956,351.003632,351.769890,352.881364,354.738961,356.062498,356.735877,357.989754,358.779233,359.220412,359.870571,361.144584,361.559460,362.093518,362.859777,363.788575,364.879913,365.669391,366.087351,366.760729,367.480548,368.525446,369.640004,370.257802,371.201498,372.896554,373.497189,375.006486,376.608663,377.073062,377.769661,378.373380 diff --git a/data/torah/labels/Bamidbar-3.txt b/data/torah/labels/Bamidbar-3.txt deleted file mode 100644 index d24b42d2c..000000000 --- a/data/torah/labels/Bamidbar-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.739955,3.831293,4.153288,4.849887,5.195102,5.914921,6.959819,7.631655,8.049615,8.769433,9.698231,10.882449,12.020227,13.088345,13.784943,14.922721,16.710658,17.639456,18.076009,18.702948,19.863946,21.141043,22.232381,23.439819,25.250975,26.133333,27.085351,28.339229,29.407347,30.545125,31.590023,32.495601,32.867120,34.144218,35.529705,36.621043,38.501859,40.754195,41.729433,42.449252,43.331610,44.631927,45.467846,46.280544,47.325442,48.300680,49.461678,50.599456,51.597914,51.969433,52.712472,54.012789,54.918367,56.868844,59.028299,59.562358,60.444717,61.303855,62.302313,63.138231,64.113469,65.135147,66.017506,66.969524,67.317823,68.060862,69.337959,70.220317,71.845714,73.842630,74.469569,75.421587,76.048526,76.698685,78.393741,79.856599,81.551655,82.178594,83.943311,85.290068,86.915465,87.704943,88.401542,89.051701,89.585760,90.746757,91.861315,93.068753,93.881451,95.553288,97.410884,98.479002,99.547120,100.452698,101.335057,102.287075,103.401633,103.842812,104.818050,106.118367,106.884626,108.765442,110.739138,111.226757,112.178776,112.968254,114.152472,114.872290,115.615329,116.404807,117.356825,118.517823,119.376961,120.491519,120.839819,121.373878,121.977596,123.019410,124.087528,125.782585,127.825941,128.522540,129.288798,130.101497,131.239274,131.889433,132.911111,133.979229,134.791927,135.697506,136.394104,137.276463,138.367800,139.343039,140.504036,141.293515,141.920454,142.686712,143.569070,144.985488,145.682086,147.353923,148.189841,149.792018,150.860136,151.626395,152.624853,153.739410,155.109388,156.223946,156.522721,157.544399,158.635737,159.889615,160.748753,162.838549,163.230204,164.600181,165.640454,166.615692,167.303039,168.301497,169.344853,170.087891,170.970249,172.038367,172.827846,173.056961,173.730340,175.077098,175.866576,176.702494,178.606531,179.721088,180.510567,181.555465,182.739683,183.645261,184.736599,185.108118,186.036916,187.081814,188.057052,189.334150,190.007528,190.843447,191.702585,192.724263,193.374422,194.280000,195.255238,196.276916,197.228934,198.111293,198.459592,199.458050,200.523084,201.660862,203.472018,205.329615,205.863673,207.001451,208.092789,208.905488,209.903946,210.995283,211.947302,212.992200,213.294059,214.338957,215.453515,216.568073,218.402449,220.306485,220.863764,221.653243,222.396281,222.976780,224.648617,225.484535,227.063492,227.806531,229.431927,230.337506,230.964444,231.939683,233.263220,234.354558,235.492336,237.117732,237.953651,239.370068,240.136327,241.227664,242.249342,243.271020,243.944399,244.896417,245.198277,246.266395,247.450612,248.425850,250.097687,252.071383,252.559002,253.325261,254.114739,255.229297,255.949116,256.947574,257.760272,258.712290,259.803628,260.546667,261.521905,261.893424,262.752562,263.774240,264.795918,266.374875,268.209252,268.650431,269.579229,270.368707,271.367166,272.249524,273.247982,274.083900,275.035918,276.173696,276.521995,277.288254,278.217052,279.192290,280.957007,282.814603,283.464762,284.323900,285.066939,285.483356,286.133515,287.596372,288.105669,288.988027,290.328617,292.186213,294.043810,294.810068,295.437007,296.203265,297.526803,298.385941,299.709478,301.497415,302.121270,302.512925,303.186304,303.929342,304.834921,305.345760,306.065578,306.855057,307.969615,308.689433,309.130612,309.687891,311.011429,311.917007,312.636825,313.403084,314.680181,316.398458,317.048617,318.604354,319.556372,320.043991,321.042449,322.969705,323.666304,324.571882,324.873741,325.640000,326.754558,327.335057,328.263855,330.191111,330.748390,331.282449,332.722086,333.140045,334.626122,335.090522,335.740680,336.838367,337.883265,338.928163,339.482358,340.852336,341.200635,341.406531 diff --git a/data/torah/labels/Bamidbar-4.txt b/data/torah/labels/Bamidbar-4.txt deleted file mode 100644 index 751a41152..000000000 --- a/data/torah/labels/Bamidbar-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.957302,3.770001,4.745239,5.743697,7.531633,9.226690,10.991406,11.703887,12.516585,13.422164,14.397402,16.115678,17.067697,17.462436,18.159034,19.320032,20.457810,22.385066,23.638944,24.939261,26.587878,27.470236,28.561574,29.490372,30.813910,32.114227,32.950146,33.530644,34.575542,35.852640,37.617356,38.406835,39.637492,40.589511,43.840304,45.883660,46.580259,48.019896,48.925474,49.854273,51.177810,52.013728,53.174726,53.592685,54.126744,55.101982,56.541619,57.447198,59.258354,59.699533,60.233592,61.232050,62.276948,64.064885,64.970463,65.388422,65.922481,66.897719,67.849737,68.221257,69.219715,69.985973,71.820350,72.795588,73.770826,74.606744,75.651642,77.021619,77.973638,79.413275,79.691914,81.386971,81.921030,82.571189,82.896268,84.475225,85.473683,86.170282,86.890100,87.795678,88.236858,88.956676,90.001574,92.161030,92.532549,92.927288,93.295724,94.526231,95.541892,96.746336,96.772549,97.466155,98.603932,99.732458,99.868694,100.840848,102.048286,104.509601,104.834681,105.624159,106.669057,107.737175,109.014273,109.989511,110.523570,111.173728,112.195406,112.868785,114.029783,115.051461,115.794499,116.166019,116.630418,117.605656,118.905973,119.184613,120.090191,121.297629,122.272867,123.224885,124.339443,125.198581,125.732640,126.220259,127.218717,129.053093,130.701710,131.853456,132.036132,133.707969,134.613547,135.704885,136.749783,138.560939,138.909238,140.418536,141.416994,142.160032,143.019170,144.017629,144.969647,145.434046,146.734363,147.686381,149.549046,149.906245,151.485202,153.017719,154.201937,154.455814,155.547152,156.383071,158.194227,159.517765,160.214363,160.398581,160.955860,162.070418,163.556495,163.928014,164.880032,165.669511,166.528649,167.411007 diff --git a/data/torah/labels/Bamidbar-5.txt b/data/torah/labels/Bamidbar-5.txt deleted file mode 100644 index 9b975551f..000000000 --- a/data/torah/labels/Bamidbar-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.054229,3.122347,3.400986,4.280261,5.232279,6.091417,7.089875,8.041893,8.340669,9.362347,10.267925,11.080623,12.195181,13.588379,14.052778,15.817494,16.281893,16.862392,17.907290,18.905748,20.159626,22.086882,22.946020,23.410419,23.848515,24.916633,25.891871,26.890329,27.699943,28.396542,28.718537,29.461576,30.576134,32.387290,33.362528,34.616406,36.427562,37.588560,37.865657,38.887335,40.141213,41.070011,42.404433,43.215589,44.051508,45.491145,46.884342,47.720261,48.695499,49.879716,51.690873,53.641349,55.057766,55.940125,56.845703,57.728061,59.283798,60.375136,61.280714,62.186292,63.324070,65.204886,66.273004,67.178583,68.293140,69.291598,70.568696,71.056315,72.101213,73.401530,74.585748,75.978945,76.280805,76.884524,77.743662,78.347381,79.299399,81.319535,82.178673,83.061032,84.013050,84.756088,85.963526,87.078084,88.773140,90.468197,91.582755,92.418673,93.531689,93.876905,94.480623,95.757721,96.849059,97.290238,98.126156,99.983753,100.401712,101.121530,102.491508,103.280986,104.395544,105.394002,107.205159,108.968333,109.943571,110.500850,111.267109,112.497766,114.239263,114.703662,115.330601,116.491598,117.513277,119.069013,119.462211,121.366247,121.923526,122.782664,123.618583,124.500941,125.545839,126.358537,127.774955,130.120170,131.211508,132.070646,133.603163,134.740941,135.878719,137.364796,138.525794,139.849331,140.708469,141.428288,142.357086,143.610964,144.771961,145.047517,145.767335,146.321530,146.971689,148.039807,149.107925,150.059943,151.267381,152.080079,153.032097,153.937676,154.912914,156.259671,156.606428,157.372687,158.371145,159.971780,160.830918,161.806156,162.781394,163.826292,164.103390,164.753549,165.659127,166.773685,168.143662,168.561621,169.327880,171.835635,172.857313,173.971871,175.481168,176.758265,177.756723,179.100397,180.145295,181.233549,182.162347,183.973503,184.925521,186.341939,187.293957,188.478174,189.430193,190.451871,190.869830,191.519989,192.657766,194.468923,195.513821,196.512279,197.441077,199.391553,200.482891,201.481349,202.665567,203.733685,204.616043,205.150102,206.171780,207.170238,208.470555,209.770873,210.072732,210.815771,211.558809,212.092868,213.091326,213.904025,214.856043,216.017041,217.201258,217.639354,218.173413,219.328242,220.257041,221.418038,221.696678,222.718356,223.438174,224.645612,226.596088,227.594546,228.593004,229.916542,231.774138,232.447517,234.165794,235.117812,236.185930,237.393367,238.415045,239.529603,240.202982,241.410419,242.362437,243.639535,245.845431,247.726247,248.701485,249.955363,251.232460,252.625657,254.042075,254.994093,257.943027,258.918265,260.357902,260.938401,261.588560,263.446156,265.094773,266.325431,268.113367,269.111825,270.319263,271.364161,272.594818,273.198537,274.289875,275.404433,276.402891,277.262029,278.607245,279.210964,280.836360,282.368877,283.251236,284.946292,286.896769,287.382846,287.800805,288.892143,290.262120,290.864297,291.584116,292.141394,292.954093,294.068651,295.183208,296.181667 diff --git a/data/torah/labels/Bamidbar-6.txt b/data/torah/labels/Bamidbar-6.txt deleted file mode 100644 index 97a5a6629..000000000 --- a/data/torah/labels/Bamidbar-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.787937,3.204354,3.552653,5.387029,6.362268,6.733787,7.360726,8.359184,9.729161,10.866939,11.842177,12.399456,13.606893,15.325170,15.766349,16.973787,18.088345,19.433560,19.849977,20.732336,21.312834,22.589932,23.704490,24.633288,24.958367,25.582222,26.511020,27.509478,28.182857,29.483175,30.388753,31.781950,32.176689,32.823764,34.077642,34.634921,36.073016,37.884172,38.789751,40.833107,41.831565,42.830023,43.735601,44.223220,44.477098,45.173696,46.125714,47.263492,48.981769,49.446168,50.165986,51.443084,52.627302,54.484898,55.297596,55.878095,56.946213,58.200091,59.384308,60.266667,61.056145,62.263583,63.262041,64.469478,66.443175,67.371973,67.859592,68.370431,69.392109,70.390567,70.574785,72.269841,73.454059,73.848798,74.406077,75.706395,76.635193,77.262132,77.912290,78.910748,79.816327,81.000544,81.859683,82.370522,83.276100,84.135238,85.342676,86.248254,87.711111,88.918549,90.242086,91.495964,92.796281,93.307120,94.143039,95.164717,95.954195,96.975873,99.576508,101.526984,103.198821,104.290159,105.822676,106.844354,107.842812,108.701950,109.723628,110.629206,111.766984,113.508481,114.506939,115.644717,116.759274,118.640091,119.893968,120.845986,122.471383,123.353741,124.143220,124.932698,126.000816,126.859955,128.624671,129.414150,130.366168,131.527166,133.547302,135.567438,136.565896,137.657234,138.469932,138.841451,139.630930,141.140227,142.579864,143.764082,145.528798,146.620136,147.548934,148.640272,149.963810,151.473107,151.937506,153.423583,155.745578,156.883356,157.997914,158.462313,158.926712,159.971610,162.200726,163.083084,164.244082,164.824580 diff --git a/data/torah/labels/Bamidbar-7.txt b/data/torah/labels/Bamidbar-7.txt deleted file mode 100644 index 2955738b6..000000000 --- a/data/torah/labels/Bamidbar-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,3.459773,3.806531,4.642449,4.919546,5.732245,7.171882,9.099138,9.470658,10.004717,11.165714,12.001633,12.976871,13.743129,14.648707,16.204444,17.063583,18.247800,19.269478,20.291156,21.057415,22.102313,23.054331,23.425850,24.261769,25.028027,25.678186,26.096145,27.094603,28.139501,29.184399,30.136417,31.158095,32.969252,34.060590,34.455329,35.221587,36.034286,36.916644,37.984762,39.285079,40.260317,41.258776,42.141134,43.580771,44.579229,46.529705,47.156644,48.364082,49.292880,50.453878,51.104036,52.195374,53.054512,54.029751,55.283628,57.303764,58.464762,59.277460,60.438458,62.851139,63.617398,65.103475,66.185561,67.207239,68.368237,69.389915,70.759892,71.944110,73.662386,76.332681,77.331139,79.026196,80.140754,81.859030,82.509189,83.484427,83.972046,84.877625,85.458123,86.642341,87.687239,88.708917,89.707375,90.984473,92.099030,93.097488,93.979847,96.023203,97.787919,98.948917,100.226015,101.085153,102.710550,103.685788,104.962885,105.682704,106.704382,107.772500,108.190459,108.956717,110.953634,111.975312,113.647148,115.713724,116.247783,117.014042,118.035720,118.685878,120.334495,121.100754,122.122432,122.517171,123.631729,124.583747,124.978486,125.860844,126.743203,128.020300,128.786559,129.274178,130.226196,131.712273,132.524971,133.289688,133.542024,134.492500,134.972409,135.692228,136.435266,137.410504,138.455402,138.966241,139.778940,141.473996,142.426015,144.237171,145.398169,146.605606,147.534405,148.997262,149.949280,151.110278,151.783656,152.758894,153.757352,154.198532,154.988010,156.892046,157.310005,157.658305,158.073180,159.622749,161.248146,162.246604,162.734223,164.824019,165.892137,166.333316,167.308554,168.539212,170.071729,171.209507,172.416944,173.252863,174.204881,175.249779,175.783838,176.550096,177.827194,178.243611,179.149189,180.821026,181.796264,182.841162,184.071820,185.279257,187.183293,187.554813,187.737488,189.478985,190.431003,192.358259,193.287058,195.028554,195.585833,196.468191,196.955810,198.023928,198.557987,199.811865,200.276264,201.460482,202.449078,203.308826,204.446604,205.836717,207.578214,209.714450,210.411049,211.363067,212.222205,213.174223,214.474541,215.124699,216.587556,217.702114,218.143293,219.397171,220.047330,220.183566,220.973044,223.387919,224.502477,226.522613,227.332228,228.771865,229.909643,230.281162,231.000981,232.254858,233.113996,233.555176,233.948373,234.691411,235.852409,237.477806,238.267284,238.754903,239.358622,240.380300,241.378758,243.538214,245.349371,245.767330,246.510368,248.344745,249.250323,250.225561,251.409779,252.454677,253.638894,254.614132,255.426831,256.541389,258.631185,259.049144,259.815402,260.326241,260.626559,261.183838,262.251956,263.482613,265.340210,266.222568,266.663747,267.197806,267.638985,268.265924,269.241162,269.891321,271.493498,272.213316,272.817035,273.815493,274.906831,275.812409,277.043067,278.552364,279.434722,281.036899,282.221117,283.382114,284.403792,285.750550,286.145289,286.679348,287.910005,289.001343,289.906922,290.951820,292.275357,293.947194,294.736672,296.362069,296.989008,297.941026,298.707284,299.682522,300.445697,301.862114,303.673271,304.973588,305.204246,306.133044 diff --git a/data/torah/labels/Bamidbar-H.txt b/data/torah/labels/Bamidbar-H.txt deleted file mode 100644 index 5f490b1ad..000000000 --- a/data/torah/labels/Bamidbar-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.599093,3.970612,4.899410,6.130068,7.314286,8.150204,8.661043,9.566621,10.356100,11.702857,13.537234,15.696689,16.300408,17.182766,18.181224,18.622404,19.551202,20.503220,21.640998,22.755556,23.498594,24.009433,24.845351,26.958367,27.585306,28.374785,28.862404,29.651882,30.603900,31.904218,33.738594,34.504853,35.619410,36.478549,37.035828,37.964626,38.870204,39.729342,40.356281,41.703039,42.724717,44.280454,45.603991,47.528163,48.874921,50.265034,51.379592,52.238730,52.726349,53.330068,54.444626,55.489524,57.114921,57.718639,58.856417,60.574694,61.782132,63.036009,65.497324,66.426122,67.819320,68.585578,69.607256,70.861134,72.997370,74.135147,75.969524,77.502041,79.498957,80.985034,82.238912,83.260590,85.094966,86.534603,87.299320,88.413878,89.342676,90.573333,91.130612,91.850431,93.081088,94.102766,96.331882,97.307120,98.166259,99.861315,101.672472,102.903129,104.667846,107.036281,108.266939,109.497596,110.728254,111.866032,113.166349,114.931066,116.184943,117.554921,119.273197,121.525533,122.407891,122.962086,123.307302,124.491519,126.233016,127.765533,128.276372,129.181950,131.364626,132.339864,133.454422,134.638639,135.474558,136.867755,137.796553,138.818231,139.909569,141.488526,142.695964,143.647982,145.877098,147.014875,148.152653,148.617052,149.522630,150.660408,151.403447,151.983946,153.655782,154.514921,155.861678,156.929796,157.835374,158.903492,159.762630,160.970068,162.525805,163.199184,164.638821,165.683719,166.937596,168.028934,169.375692,170.908209,172.463946,173.415964,174.553741,176.016599,177.015057,178.547574,179.662132,180.730249,182.471746,183.934603,185.443900,186.535238,187.696236,189.251973,189.666848,190.665306,193.265941,194.287619,194.821678,196.075556,197.491973,198.792290,200.092608,200.858866,201.973424,203.087982,205.131338,206.036916,206.965714,208.521451,209.705669,211.307846,212.445624,214.001361,216.996735,218.180952,220.410068,221.640726,223.428662,224.450340,225.239819,225.820317,226.841995,227.631474,228.258413,230.046349,231.694966,232.832744,234.481361,235.363719,236.547937,238.451973,240.379229,240.913288,241.563447,242.747664,243.746122,244.791020,245.766259,247.229116,248.320454,249.829751,251.199728,252.407166,253.730703,254.984580,256.424218,257.213696,258.165714,260.394830,261.346848,262.275646,263.645624,265.549660,267.082177,268.661134,269.055873,270.100771,271.935147,272.538866,272.975420,273.950658,274.786576,275.645714,276.365533,277.363991,278.455329,279.477007,281.241723,281.961542,283.377959,284.353197,285.769615,286.884172,287.557551,288.509569,289.879546,290.390385,291.133424,291.737143,292.573061,294.221678,295.661315,296.218594,296.658231,297.261950,298.121088,299.258866,302.068481,302.486440,302.997279,304.227937,305.737234,306.271293,307.130431,308.036009,309.382766,311.008163,311.890522,312.703220,313.910658,314.793016,315.373515,316.070113,317.091791,317.741950,318.531429,319.692426,321.039184,322.734240,323.872018,324.893696,326.147574,327.355011,327.703311,328.446349,330.420045,331.627483,333.531519,334.158458,335.528435,336.666213,337.293152,338.407710,339.615147,340.706485,341.890703,343.098141,343.887619,345.373696,346.581134,346.929433 diff --git a/data/torah/labels/Bechukotai-1.txt b/data/torah/labels/Bechukotai-1.txt deleted file mode 100644 index 541d9ba89..000000000 --- a/data/torah/labels/Bechukotai-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.160998,2.345215,3.390113,3.921088,5.128526,6.359184,7.589841,8.448980,9.911837,10.910295,11.885533,13.092971,13.952109,14.880907,15.600726,16.715283,17.388662,18.294240,19.199819,19.989297,20.473832,20.795828,21.329887,22.792744,23.930522,24.229297,24.833016,26.018866,27.179864,28.410522,29.548299,30.453878 diff --git a/data/torah/labels/Bechukotai-2.txt b/data/torah/labels/Bechukotai-2.txt deleted file mode 100644 index a3f6af537..000000000 --- a/data/torah/labels/Bechukotai-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,2.832834,3.691973,5.015510,5.781769,6.826667,9.290595,10.219393,11.008871,11.493406,12.213225,13.118803,13.628100,14.510459,15.555357,17.157533,17.363429,18.686967,19.705561,20.866558,21.888236,23.095674,24.024472,24.930050,25.882069,26.880527,27.716445,28.714903,29.759801,31.872817,33.985833,35.190187,36.327964,38.043157,38.948735,40.759892,41.595810,42.919348,43.778486,45.213497,45.380663,46.560255 diff --git a/data/torah/labels/Bechukotai-3.txt b/data/torah/labels/Bechukotai-3.txt deleted file mode 100644 index 42b9ce821..000000000 --- a/data/torah/labels/Bechukotai-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.575873,4.574331,6.478367,7.732245,8.707483,9.868481,11.493878,12.445896,13.699773,14.535692,15.255510,16.091429,17.345306,18.854603,20.990839,22.175057,23.196735,24.311293,25.681270,26.373243,26.833867,27.859320,29.778392,30.776850,32.634446,33.632904,34.654582,35.351181,36.535399,37.626736,38.485875,39.298573,40.436351,41.713448,43.013766,43.989004,45.382201,46.218120,47.680977,48.545123,49.100268,50.470245,50.841764,52.234961,53.349519,54.208658,54.507433,55.482671,56.713329,57.057002,58.473420,59.773737,60.586435,60.978091,62.046209,63.137546,64.159224,65.250562,66.156141,66.408476,66.756776,67.755234,69.264531,69.845029,70.657728,71.326481,72.951878,73.761492,74.341991,76.037048,77.267705,78.405483,79.450381,79.984440,81.098998,81.609837,83.003034,84.489111,85.650109,86.857546,87.972104,89.249202,90.038680,91.246118,92.871515,94.287932,95.657909,96.517048,97.608385,99.001583,99.883941,101.137819,102.484576,103.320494,104.644032,106.106889,106.798862,107.462343,108.855540,110.197672,110.569191,111.474769,112.214724,113.398941,114.211640,116.022796,117.532093,118.646651,119.575449,120.063068,121.595585,123.151322,123.731821,124.521300,125.403658,126.787604,127.005835,128.018261,129.318579,129.919213,130.639032,132.148329,133.495087,134.447105,135.584882,136.211821,137.024520,138.278397,138.928556,139.648374,141.274284,142.295449,143.410007,144.292365,145.430143,146.277774,147.020813,148.088931,148.901629,150.178727,151.339724,152.593602,153.266980,154.544078,155.612196,156.657094,157.562672,159.280949,161.068885,162.206663,162.920314,163.709792,164.685030,166.263987,167.494645,168.887842,169.418817,170.672695,172.251652,173.110790,174.434327,175.850745,176.570563,177.754781,178.915779,179.937457,180.889475,182.305892,183.234690,184.233148,186.415824,186.787343,188.389520,189.550518,190.456096,191.895733,192.708432,193.149611,193.799770,194.751788,195.169747,196.400405,197.700722,199.070699,200.579996,201.880314,202.716232,203.366391,204.991788,205.525847,206.431425,207.778182,208.567661,210.378817,212.143534,212.631153,213.559951,215.324668,217.460903,218.087842,219.527479,221.385076,222.290654,223.103352,224.194690,225.332468,226.423806,227.793783,228.838681,230.162219,231.439316,232.252015,233.366572,234.527570,235.433148,236.454826,237.290745,238.033783,239.403761,240.286119,241.307797,242.700994,243.513693,244.300087,244.973466,246.436323,247.156141,247.945620,248.688658,249.687117,250.105076,251.358953,252.543171,253.657729,254.540087,255.538545,256.583443,257.581901,260.066436,260.437956,262.341992,263.526210,264.083488,265.662445,266.962763,267.520042,268.820359,269.586618,270.306436,271.606754,273.023171,274.021629,275.112967,276.366844,276.803398,277.592876,278.591334,280.309611,281.099089,282.515507,283.815824,284.767842,285.719860,286.996958,288.808114,289.597593,290.224532,290.897910,292.407207,293.312785,294.380903,295.704441,296.493919,297.631697,299.024894,300.139452,301.741629,302.949067,303.970745,305.224622,306.199860,307.175098,308.475416,309.450654,310.333012,311.702990,312.631788,313.769566,314.466164,316.346980,317.322219,318.204577,319.528114,320.712332,321.687570,322.709248,323.777366,324.961584,325.936822,327.353239,327.837774,329.021992,329.713965,330.340903,331.432241,332.407479,333.382717,334.915234,335.379634,336.935371,338.912377,340.050154,341.211152,342.557910,344.252966,345.576504,346.389202,347.387660,348.687978,349.802535,351.218953,352.774690,353.657048,354.562626,355.514644,357.465120,358.370699,359.508476,360.785574,361.575052,362.364531,364.222127,365.011606,366.567343,367.542581,368.146300,369.214418,370.027116,370.650971,371.463669,372.346027,373.460585,374.342944,375.643261,377.013238,377.918817,379.033374,380.217592,380.983851,382.307388,383.770245,385.465302,386.486980,387.508658,388.716096,389.900313,391.711470,392.965347,394.033465,395.078363,396.076821,397.586118,397.765710,398.531969,398.898862,399.850880,400.756458,401.963896,402.869474,403.329247,403.871904,405.636620,406.399795,407.166053,408.071632,409.116530,409.766688,411.206326,412.320883,413.040702,413.899840,415.246598,416.500475,417.359614,418.404512,419.008230,419.495849,421.158497,422.087295,423.062533,424.177091,425.059449,425.361309,426.243667,427.961943,428.214279,428.864438,429.653916,431.279313,431.720492,432.370651,433.647748,434.367567,434.901626,436.201943,438.361399,439.174098,440.288655,441.124574,442.749971,444.073508,445.141626,446.279404,446.674143,448.531739,450.273236,451.132374,452.107612,453.013191,453.171104,454.192782,455.346070,456.112329,457.853826,458.759404,459.270243,460.199041,461.081399,461.917318,462.869416,463.217716,464.889552,466.932908,467.745607,469.487103,470.183702,471.158940,471.716219,472.552137,474.061434,475.872591,476.801389,477.799847,479.611004,480.377262,481.259620,482.490278,483.720936,484.672954,485.624972,486.530550,487.668328,488.295267,489.665244,490.408283,491.778260,492.846378,494.657534,495.539893,497.327829,498.488827,498.903702,499.646741,501.414541,502.389779,504.688555,506.917670,507.800029,508.937806,509.773725,511.584881,512.374360,513.163838,514.046196,514.951775,515.787693,516.484292 diff --git a/data/torah/labels/Bechukotai-4.txt b/data/torah/labels/Bechukotai-4.txt deleted file mode 100644 index 66a3b9e74..000000000 --- a/data/torah/labels/Bechukotai-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.811156,2.623855,3.390113,3.942766,5.034104,6.845261,7.309660,7.913379,8.935057,10.421134,11.651791,12.905669,13.901043,15.038821,15.828299,17.085591,18.084049,19.105727,20.359604,21.358062,22.495840,23.517518,24.724956,25.607314,26.652212,27.070171,27.859650,28.625908,29.879786,31.598062,33.827178,34.570217,35.429355,36.358153,37.542371,38.146090,38.935568,39.817926,40.932484,41.675523,42.697201,43.625999,44.624457,45.204956,46.156974,47.968130,48.896929,49.338108,50.243686,50.963505,52.983641,54.910897,56.002235,56.907813,57.883051,59.206588,60.251486,61.157065,61.918697,62.359876,63.799514,64.751532,65.169491,65.842870,66.748448,67.863006,68.768584,69.790262,70.881600,71.856838,72.832076,74.805772,75.595251,76.640149,77.476067,78.311985,80.099922,80.680421,81.307359,82.189718,83.095296,83.344548,84.180466,85.596883,86.479242,87.640239,88.661917,89.567496,90.824119,92.008337,93.169334,93.568790,93.915116,94.590468,95.751466,97.353643,98.468200,99.629198,100.674096,101.533234,102.578132,103.010060,104.333597,105.285615,106.260854,107.259312,108.373869,109.697407,110.835185,112.344482,113.575139,114.596817,116.291874,117.963711,118.869289,119.821307,121.266059,122.101977,122.984335,124.493632,125.584970,126.235129,127.117487,128.348145,129.416263,130.089641,130.786240,132.458077,133.266149,134.102068,134.465877,134.860616,135.719755,136.462793,137.066512,137.879210,138.761569,140.061886,141.060344,141.594403,142.662521,143.637759,144.404018,145.216716,145.704335,146.702793,147.747691,149.465968,149.976807,151.393224,153.111501,154.086739,155.038757,156.455174,156.757034,157.592952,158.312771,159.520208,160.890186,161.818984,162.631682,163.676580,164.396399,165.139437,166.045015,167.089913,168.065152,168.901070,169.760208,170.596127,171.315945,172.384063,173.359301,174.589959,175.031138,175.936716,177.678213,178.235492,178.978530,179.976988,180.534267,181.346966,182.229324,183.576081,184.713859,185.619437,186.478576,187.291274,188.057532,189.055991,190.031229,191.686435,192.847432,193.613691,194.588929,195.071922,196.186480,197.579677,197.900131,198.805709,200.431106,202.373988,203.070471,204.951287,206.013237,207.058135 diff --git a/data/torah/labels/Bechukotai-5.txt b/data/torah/labels/Bechukotai-5.txt deleted file mode 100644 index 4a097189e..000000000 --- a/data/torah/labels/Bechukotai-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.622313,5.688889,6.826667,7.383946,8.335964,9.473741,10.402540,11.354558,12.329796,13.351474,14.558912,15.580590,16.834467,17.670385,18.622404,19.435102,20.294240,21.153379,22.058957,23.080635,24.264853,25.309751,26.145669,26.795828,28.908844,29.860862,31.718458,32.507937,33.297415,34.481633,35.038912,36.524989,37.128707,37.662766,38.568345,40.774240,41.517279,42.329977,43.189116,44.326893,45.789751,46.556009,47.368707,48.158186,48.622585,49.412063,50.921361,51.641179,53.661315,55.611791,56.122630,57.794467,58.583946,59.605624,60.348662,60.878095,61.337868,62.336327,62.678458,63.398277,64.187755,64.768254,65.209433,65.882812,66.765170,67.624308,68.641361,69.546939,70.475737,71.567075,72.797732,74.028390,75.769887,77.163084,78.231202,79.183220,80.135238,81.319456,82.201814 diff --git a/data/torah/labels/Bechukotai-6.txt b/data/torah/labels/Bechukotai-6.txt deleted file mode 100644 index e7951868c..000000000 --- a/data/torah/labels/Bechukotai-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.237759,2.581432,3.579890,4.764108,6.459164,7.062883,8.223881,9.315219,10.383337,11.521115,12.426693,12.914312,14.632588,15.584607,16.884924,18.162022,19.160480,20.019618,20.971636,22.155854,22.643473,23.525831,24.663609,25.871047,26.706965,27.867963,29.028960,29.957759,31.281296,32.163654,33.324652,34.253450,35.228688,36.273586,36.668325,37.806103,38.642022,39.617260,40.522838,41.544516,42.635854,43.471772,44.586330,45.329368,46.095627,47.094085,47.886068,49.418585,50.393823,51.578041,52.460399,53.667837,54.155456,54.782395,55.571873,56.431012,57.011510,57.940309,58.191102,58.841261,59.855229,60.667928,61.476000,62.567338,63.635456,64.750014,66.166431,67.443529,68.511646,69.510105,70.044163,70.578222,71.344481,72.528699,73.712916,74.432735,75.129334,77.544209,78.681987,80.260944,81.236182,82.490059,83.209878,83.697497,84.951374,86.089152,87.017950,88.689787,89.781125,90.640263,91.592281,92.451420,93.426658,94.100036,95.121714,95.980853,96.654231,97.304390 diff --git a/data/torah/labels/Bechukotai-7.txt b/data/torah/labels/Bechukotai-7.txt deleted file mode 100644 index 268ef726d..000000000 --- a/data/torah/labels/Bechukotai-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.506213,3.178050,4.780227,7.009342,7.520181,8.356100,9.215238,10.283356,11.096054,12.048073,12.791111,13.627029,14.857687,16.227664,17.133243,18.456780,19.501678,20.685896,21.475374,22.357732,23.541950,24.377868,24.981587,26.514104,27.326803,28.557460,29.927438,30.879456,31.924354,32.644172,33.433651,34.432109,35.360907,36.754104,37.241723,38.007982,38.983220,40.028118,42.025034,42.884172,43.487891,44.393469,46.088526,48.085442,48.665941,49.200000,50.175238,50.987937,52.172154,52.915193,53.801995,54.772789,55.862538,56.955465,59.207800,59.834739,60.461678,61.274376,62.133515,63.224853,65.082449,66.336327,67.892063,69.633560,70.153396,71.057936,71.452675,71.986734,73.333492,74.540929 diff --git a/data/torah/labels/Bechukotai-h.txt b/data/torah/labels/Bechukotai-h.txt deleted file mode 100644 index 2df8185bd..000000000 --- a/data/torah/labels/Bechukotai-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.249047,7.600068,9.893038,11.377739,12.216482,14.290497,16.566053,17.889590,18.957708,20.764239,21.925237,24.990271,25.710089,26.801427,28.659023,30.052221,30.981019,31.770497,32.467096,33.883513,35.160611,35.573944,36.525962,38.615758,39.939296,40.697296,42.191631,43.860384,45.694760,47.180838,48.759794,49.618933,50.470482,50.772341,51.213521,52.281639,54.554799,56.017656,56.316431,57.129130,58.638427,62.330399,64.536295,66.904730,67.949628,68.878427,69.850581,71.986817,73.519334,74.006953,75.237610,76.236068,77.791805,80.113801,82.029274,83.143832,85.256847,86.966767,87.384726,87.640146,90.031801,91.030259,91.722232,93.231529,95.135565,96.319783,97.504001,98.084499,99.132195,99.805574,101.430971,104.101266,105.610563,106.121402,107.723579,111.651888,112.952206,114.856242,116.156560,117.247898,118.548215,120.661231,121.079190,122.449167,123.377966,123.953839,124.274292,126.085449,126.967807,128.361004,129.986401,131.031299,131.402818,132.048351,133.232569,134.920577,136.104795,138.032051,139.425248,140.377266,141.607924,142.397402,143.883480,145.114137,146.159035,148.248831,149.293729,150.152867,150.919126,152.432525,154.290122,156.143092,157.582729,158.883047,159.811845,160.017741,160.644679,162.270076,163.802593,165.311890,166.542548,167.587446,168.771664,169.584362,170.791800,172.463636,173.810394,174.901732,175.505450,177.734566,178.965224,179.801142,181.565859,184.236153,185.002412,186.116970,186.321323,188.387899,189.383274,190.149532,192.053568,193.353886,194.886403,195.559781,196.233160,196.999419,197.858557,198.996335,200.203772,202.377881,203.893727,204.961845,206.192502,207.190960,208.305518,209.048557,210.232774,211.509872,212.599988,214.480805,215.502483,216.384841,218.306715,219.049754,220.605491,222.950706,224.901182,226.062180,226.921318,227.757237,229.498733,231.054470,231.820729,233.631885,235.164402,237.298787,239.202823,239.992301,240.990759,241.803458,242.871576,243.521735,244.188945,246.130170,247.639467,248.591485,249.729263,251.493979,252.283458,253.421236,255.185952,256.555930,257.624047,259.597744,260.480102,261.919739,263.684456,264.682914,265.727812,266.586950,267.864047,269.698424,273.390397,274.574614,276.153571,276.757290,278.266587,279.450805,280.077744,280.936882,281.354841,282.771258,284.466315,285.325453,286.393571,287.949308,290.317744,291.334796,292.426134 diff --git a/data/torah/labels/Behar-1.txt b/data/torah/labels/Behar-1.txt deleted file mode 100644 index 7d6035f64..000000000 --- a/data/torah/labels/Behar-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.252336,3.459773,3.758549,4.501587,5.473741,6.379320,7.188934,9.394830,9.859229,10.509388,11.554286,13.110023,14.085261,14.836100,15.620952,15.857778,16.735510,17.850068,18.569887,19.521905,20.450703,21.936780,22.958458,24.026576,25.117914,26.046712,26.859410,27.764989,28.949206,29.970884,30.737143,31.619501,32.501859,33.964717,34.452336,35.334694,36.681451,38.539048,39.467846,40.326984,41.186122,42.207800,43.206259,44.088617,45.226395,45.922993,46.967891,48.128889,48.755828,49.638186,50.450884,51.310023,52.285261,53.353379,54.375057,54.743492,55.532971,56.601088,57.344127,58.226485,59.085624,59.875102,60.711020,61.546939,63.334875,64.240454,65.076372,65.912290,66.887528,68.025306,68.814785,69.813243,71.624399,73.655977,74.679593,75.561951,76.978369,78.325126,78.998505,79.880863,80.902541,81.083675,81.989253,83.034151,84.427348,85.797325,86.656464,87.654922,88.583720,89.349978,90.162677,90.975375,91.788074,92.763312,94.077853,94.867331,95.563930,96.701708,97.584066,98.582524,99.395223,100.115041,102.412077,103.410535,104.176794,105.361011,106.382689,107.404367,108.124186,108.960104,110.028222,111.026680,111.700059,112.350218,113.186136,115.461692,115.949311,116.785229,117.621147,118.364186,119.455524,121.173801,121.870399,122.566998,123.379696,124.262054,124.749674,125.492712,126.375070,128.464095,129.242515,129.451494,130.496392,131.285871,131.443784,132.372583,133.231721,133.855576,135.225553,136.874170,137.965508,138.592447,139.428365,140.101744,141.309181,142.284419,143.050678,143.800682,143.982300,145.124220,145.862632,146.907530,147.113426,148.227984,149.107378,150.152276,150.825654,151.591913,152.094547,152.884025,153.278765,154.625522,155.577540,155.760216,156.781894,157.682846,158.495545,159.238583,161.119400,161.978538,162.161214 diff --git a/data/torah/labels/Behar-2.txt b/data/torah/labels/Behar-2.txt deleted file mode 100644 index 76f0c236e..000000000 --- a/data/torah/labels/Behar-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.555737,2.461315,3.459773,4.736871,5.363810,6.362268,7.151746,8.289524,8.893243,9.636281,10.448980,10.770975,11.560454,12.651791,13.441270,14.602268,15.438186,16.552744,17.086803,18.015601,19.269478,19.637914,20.543492,21.135738,21.797370,23.504174,24.312246,26.007303,26.912881,27.957779,28.909797,29.954695,30.906713,31.812292,32.833970,33.878868,34.946986,35.875784,36.595602,37.385081,38.183436,39.112234,39.878493,40.830511,41.036407,41.941985,43.102983,44.263980,45.982257,46.748515,47.839853,49.093731,50.231509,50.672688,51.578266,52.177359,53.082937,54.058175,55.195953,56.078311,56.949876,57.123209,58.180534 diff --git a/data/torah/labels/Behar-3.txt b/data/torah/labels/Behar-3.txt deleted file mode 100644 index abcd3a8ab..000000000 --- a/data/torah/labels/Behar-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.857596,2.925714,3.784853,5.108390,6.315828,7.430385,8.498503,9.520181,10.611519,11.726077,12.283356,13.003175,14.001633,14.976871,15.975329,17.066667,17.879365,18.808163,19.644082,20.062041,21.246259,22.894875,23.167347,24.049705,25.117823,26.255601,27.230839,28.524989,28.873288,29.848526,30.939864,32.031202,34.167438,34.794376,36.326893,37.418231,38.602449,39.066848,39.972426,40.916735,42.379592,43.512744,45.184580,45.625760,46.159819,47.924535,49.108753,50.246531,52.080907,52.823946,53.892063,54.983401,55.726440,56.210975,57.232653,57.576327,59.178503,61.245079,62.034558,63.195556,64.031474,64.600682,65.784899,67.015557,67.874695 diff --git a/data/torah/labels/Behar-4.txt b/data/torah/labels/Behar-4.txt deleted file mode 100644 index dd38d46fa..000000000 --- a/data/torah/labels/Behar-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.832834,2.226032,3.085170,4.176508,5.569705,6.614603,7.473741,8.797279,9.702857,11.490794,12.029723,12.936855,13.854603,15.600970,17.342466,18.108725,18.562330,19.212489,20.118067,21.632253,22.491391,23.582729,24.441867,25.602865,26.694203,27.062638,28.084316,29.105994,30.150892,30.403228,32.098284,33.143182,33.836697,34.347536,34.852207,35.801142,37.333659,38.123137,38.398693,39.675790,41.417287,43.274883,43.994702,45.431255,46.333749,48.028806,48.841504,49.886402,51.163500,51.929758,52.533477,53.392615,54.460733,55.319872,56.155790 diff --git a/data/torah/labels/Behar-5.txt b/data/torah/labels/Behar-5.txt deleted file mode 100644 index c02d9d3c4..000000000 --- a/data/torah/labels/Behar-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.018594,3.529433,4.388571,4.664127,5.407166,6.475283,7.473741,8.565079,9.749297,10.399456,10.887075,11.699773,12.698231,13.789569,14.695147,15.925805,17.179683,17.574422,19.014059,19.687438,20.569796,22.562086,23.490884,25.232381,27.113197,28.158095,28.549751,29.780408,30.546667,31.127166,33.007982,35.260317,36.374875,37.350113,38.650431,39.579229,40.484807,41.483265,42.806803,44.873379,45.732517,46.196916,46.823855,47.729433,48.658231,49.401270,49.935329,50.840907,52.025125,53.255782,53.929161,54.342494,55.754286,56.683084,57.681542,58.749660,59.864218,60.560816,61.559274,62.580952,63.463311,64.345669,65.529887,66.644444,67.387483,67.828662,68.641361,70.661497,71.172336,72.611973,73.517551,74.655329,75.607347,76.675465,78.416961,79.271474,81.012971,81.872109,83.056327,84.124444,84.728163,85.680181,88.095057,89.116735,90.022313,90.718912,91.717370,92.344308,93.110567,95.037823,95.757642,96.686440,97.615238,98.729796,99.588934,100.796372,101.585850,102.468209,104.441905,104.903220,106.326077,108.369433,109.182132,110.134150,110.853968,111.457687,112.293605,113.477823,114.615601,115.799819,117.007256,117.889615,118.771973,119.793651,120.350930,121.279728,121.999546,122.672925,123.206984,124.646621,125.900499,126.411338,127.038277,128.059955,129.685351,130.614150,132.541406,133.052245,133.841723,134.700862,135.536780,136.488798,137.580136,138.392834,138.880454,139.669932,140.598730,141.550748,142.340227 diff --git a/data/torah/labels/Behar-6.txt b/data/torah/labels/Behar-6.txt deleted file mode 100644 index cc1eb520d..000000000 --- a/data/torah/labels/Behar-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.905578,1.532517,3.343673,4.133152,4.992290,5.503129,6.315828,6.896327,7.546485,8.521723,9.561995,10.490794,11.396372,12.046531,13.021769,13.532608,14.020227,14.949025,15.877823,16.736961,17.967619,18.757098,19.639456,20.614694,21.334512,22.286531,22.630204,23.582222,24.017234,24.690612,25.665850,26.687528,27.453787,28.893424,29.381043,29.907392,30.580771,31.323810,32.415147,33.460045,34.435283,35.410522,36.385760,37.360998,38.150476,38.893515,39.497234,40.426032,41.679909,43.096327,44.512744,45.570068,46.356463,46.890522,47.517460,48.376599,50.187755,50.954014,53.155283,54.153741,54.966440,55.639819,56.615057,58.356553,59.192472,60.933968,61.955646,62.884444,64.207982,65.020680,66.808617,67.969615,68.875193,69.873651,70.802449,71.800907,73.031565,73.937143,75.260680,76.886077,78.186395,79.463492,80.717370,82.040907,83.016145,84.037823,84.966621,85.941859,87.706576,88.098231,88.910930,89.816508,90.814966,91.299501,92.184401,92.961672 diff --git a/data/torah/labels/Behar-7.txt b/data/torah/labels/Behar-7.txt deleted file mode 100644 index 57160144e..000000000 --- a/data/torah/labels/Behar-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.555737,3.343673,3.877732,4.481451,5.642449,6.640907,7.546485,8.614603,9.520181,11.470658,12.492336,13.351474,14.303492,15.000091,16.068209,17.229206,17.972245,19.667302,20.665760,21.733878,22.453696,23.103855,24.009433,24.984671,26.284989,26.819048,28.398005,29.326803,29.651882,30.278821,31.300499,31.950658,33.599274,35.456871,37.291247,38.521905,39.055964,39.845442,40.681361,41.772698,42.887256,43.421315,44.577154,45.743311,47.471020,48.074739,48.786848,49.553107,50.574785,52.594921,53.570159,54.684717,56.194014,57.099592,58.028390,58.957188,59.816327,61.046984,61.581043,62.161542,63.043900,63.995918,65.156916,66.410794,67.432472,68.523810,69.777687,70.451066,72.143018,73.884515,75.765331,76.316442,76.995988,77.988279,78.717139,79.288596,80.684667,81.680041,82.724939,82.930835,84.138272,85.415370,87.249746,88.410744,89.362762,90.221901,90.732740,91.429338,92.311697,93.867433,94.587252,95.144531,96.043941,96.941810,98.288567,99.588885,100.680223,101.376821,102.281,103.087388,103.734463,104.291742,104.658635,105.378454,106.423352,107.886209,108.838227,109.558046,110.393964,111.160223,112.112241,112.971379,114.155597,115.037955,116.082853,116.686572,117.403306,118.750064,120.561220,121.675778,122.651016,123.068975,124.276413,125.274871,126.250109,128.066770,128.796228,129.701806,130.700265,132.209562,133.254460,135.143329,135.839928,136.931265,138.138703,138.672762,140.222611,141.248635,142.572172,143.500971,144.592308 diff --git a/data/torah/labels/Behar-H.txt b/data/torah/labels/Behar-H.txt deleted file mode 100644 index 51e249b3c..000000000 --- a/data/torah/labels/Behar-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,3.831293,4.713651,5.456689,6.385488,7.476825,8.823583,9.961361,12.469116,13.072834,13.931973,15.162630,16.161088,17.647166,19.249342,20.294240,22.778776,23.266395,24.032653,25.402630,27.004807,27.863946,30.046621,31.137959,32.275737,33.715374,35.526531,37.500227,38.684444,39.102404,40.449161,41.563719,44.512653,45.162812,45.975510,47.159728,48.506485,51.269660,52.059574,53.568871,54.102930,55.031728,55.398621,57.325877,59.346013,60.298032,62.573587,63.107646,65.406422,67.519438,70.468372,71.373950,72.720707,73.370866,74.369324,76.946739,77.666558,78.339936,78.966875,80.104653,81.544290,81.939029,82.844608,84.841524,85.863202,86.397261,87.024199,87.952998,89.322975,90.785832,91.293587,91.685243,92.776580,93.821478,94.936036,96.324608,97.624925,99.064562,100.272000,101.572317,103.081614,104.451592,105.612589,106.727147,108.724063,109.908281,110.349460,111.069279,112.183837,112.950095,115.504290,116.618848,117.710186,118.337125,119.660662,122.493496,123.050775,123.863474,126.185469,126.719528,127.300027,127.717986,130.597261,131.108100,132.640617,133.848054,135.310911,136.379029,137.609687,138.933224,140.721161,141.696399,143.019936,144.111274,144.552453,145.736671,147.385288,148.499846,149.846603,151.355900,151.797079,152.586558,153.979755,155.280072,155.930231,157.184109,158.321886,160.086603,161.317261,163.546376,164.707374,165.102113,166.007691,168.840526,169.281705,171.046422,172.184199,173.925696,174.845243,177.260118,178.142476,179.094494,180.139392,181.044970,182.600707,183.459846,184.481524,185.549642,186.919619,187.662657,189.171955,190.541932,191.029551,193.026467,194.094585,195.418122,196.532680,197.647238,198.529596,199.504834,201.571410,202.755628,204.032725,204.891864,206.052862,207.724698,208.096218,209.280435,210.394993,211.138032,211.764970,212.577669,213.831546,214.481705,215.108644,215.573043,216.571501,217.732499,220.588553,221.888871,222.933769,224.930685,225.929143,228.088599,228.715537,229.597896,230.015855,230.898213,232.291410,233.336308,235.485266,237.203543,237.711298,238.454336,239.499234,239.985311,241.030209,242.141683,242.838282,244.068939,245.253157,246.510208,247.319733,248.025674,248.582953,249.767171,251.624767,252.576785,253.552023,254.643361,255.850799,256.965357,258.242454,259.426672,260.564450,261.841547,263.884903,264.720822,265.510300,267.832296,268.319915,268.534242,269.364813,270.388312,271.479649,272.594207,273.523005,274.869763,276.332620,277.609717,278.608175,280.465772,281.533890,283.228946,284.227404,285.295522,285.806361,286.874479,288.012257,289.660874,291.239831,292.212664,292.955703,293.698741,294.488220,295.579558,298.138732,298.583968,299.419887,299.579342,300.740340,301.622698,302.667596,303.851814,306.382789,307.125828,308.217166,310.190862,311.050000,312.280658,313.348776,314.718753,315.856531,316.204830,316.994308,318.062426,319.037664,319.780703,321.034581,321.800839,322.822517,324.912313,325.585692,326.537710,328.232766,331.065601,332.319479,334.432494,335.198753,336.150771,337.381429,339.414409,339.760748,340.898526,342.013084,342.610635,343.121474,345.342880,347.130816,348.328640,348.955578,349.559297,351.324014,352.299252,353.065510,353.362744,354.361202,355.429320,356.659977,359.144513,360.026871,362.604286,364.369002,365.506780,367.317937,368.200295,369.523832,371.033129,372.240567,374.353583,375.259161,376.350499,377.790136,378.904694,380.971270,382.016168,383.061066,384.314943,386.892358,388.118390,388.884649,390.347506,391.485283,392.202018,393.548776,395.568912,396.706689,397.751587,398.866145,399.911043,400.816621,401.490000,402.999297,403.928095,404.555034,405.251633,405.762472,406.830590,408.223787,409.199025,410.174263,411.637120,412.983878,413.425057,414.725374,417.256349,418.394127,418.881746 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-1.txt" "b/data/torah/labels/Beha\342\200\231alotcha-1.txt" deleted file mode 100644 index 0e0a0b5df..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.165029,3.335314,3.584000,4.286171,5.149257,6.363429,6.787657,7.533714,8.864914,9.947429,11.615086,11.936914,12.892571,13.399771,13.911771,14.745600,15.769600,16.910629,17.729829,18.534400,19.616914,20.128914,21.050514,21.650286,22.235429,22.776686,23.990857,25.205029,26.563583,28.203886,29.008457,29.856914,30.427429,30.939429,32.387657,33.309257,34.230857,35.240229,36.074057,36.761600,37.463771,38.005029,38.517029,39.292343,39.862857,41.545143,42.058533,43.285943,44.017371,44.426971,44.953600,45.714286,46.255543,46.767543,47.542857,49.078857,49.781029,50.297505,50.966599,51.698027,52.824427,53.263284,54.229420,55.238791,55.809305,56.613877,57.901191,58.881305,59.978448,60.665991,61.675363,62.787134,63.986677,64.908277,65.376391,66.312620,67.790105,68.331363,68.550791,68.843363,69.369991,70.935248,71.900734,73.334334,74.680163,75.440848,75.821191,76.377077,77.898448,79.302791,80.297534,80.897305,81.657991,82.169991,82.638105,82.901420,83.881534,85.095705,87.012048,87.567934,88.196963,89.074677,89.806105,90.420505,91.839477,92.585534,92.746448,93.068277,94.092277,94.648163,96.342883,96.650083,97.264483,98.069055,98.815112,101.375112,101.887112,103.218312,103.730312,104.549512,104.973741,105.866083,107.709283,108.294426,108.894198,109.640255,110.400941,111.322541,112.200255,113.487569,114.175112,115.052826,116.925283,117.832255,118.314998,119.017169,119.894883,121.240712,122.498769,122.864483,123.303341,123.961626,124.576026,125.512255,127.574883,128.028369,128.759798,130.266541,130.968712,131.656255,132.592483,133.557969,134.552712,134.991569,135.898541,137.624712,137.961169,138.707226,139.672712,140.477283,141.398883,142.115683,143.797969,145.129169,146.372598,147.440483,148.713169,149,149.985855,150.775798,151.594998,152.267912,153.365055,153.877055 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-2.txt" "b/data/torah/labels/Beha\342\200\231alotcha-2.txt" deleted file mode 100644 index edc1d1b2a..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.065752,2.576486,3.610471,4.576653,5.780143,6.099987,6.693256,7.388230,8.795127,9.591803,10.795294,11.744525,12.863263,14.354913,15.287194,16.236426,16.914448,17.406015,18.389148,18.982417,19.728242,21.355497,22.236926,22.660691,23.711626,24.643907,25.186325,26.016903,26.745777,28.034020,28.813746,29.566832,30.651668,31.278839,31.532906,32.109417,32.990846,33.889226,35.041865,36.211454,37.940412,39.194754,39.465963,40.042282,41.110168,42.042449,43.279840,44.093468,44.839292,46.127536,46.500448,47.280174,48.059900,48.484782,49.088617,49.654316,50.677657,51.917108,52.234916,53.455299,55.222311,56.451440,57.570177,60.180564,60.497923,61.924037,63.941154,64.466622,65.195496,65.771815,66.331184,67.161762,68.043191,69.280583,69.636545,69.958605,71.111244,71.975723,73.450422,74.569160,75.450589,76.162513,77.111745,77.552459,78.111828,78.620345,79.552626,80.603561,82.261412,83.744668,84.244534,85.049862,85.439725,86.049945,87.117831,88.846789,89.405735,90.033328,90.897807,91.096473,91.740733,92.757767,93.334087,94.012109,95.063044,95.741067,96.673348,98.148048,99.639698,100.944891,101.877172,102.894206,103.792586,105.453742,106.521628,107.318304,108.182783,110.199901,111.522045,112.505178,113.827322,114.878257,116.152453,117.042471,118.449368,119.483352,119.907116,120.720744,121.703877,122.381899,123.263329,124.060005,125.127891,125.839815,127.619624,128.297647,129.263829,129.653692,130.060506,130.501221,131.111441,132.060673,132.823448,133.738779,134.518505,135.721995,135.932820,136.326902,137.140491,137.983943,138.187350,139.272186,140.780787,141.577464,142.543646,143.272520,144.103098,145.154033,146.035463,146.815189,147.950877,148.781454,149.878234,150.450288,152.175190,153.158322,154.175356,155.039835,156.006018,157.192557,158.124839,159.006268,160.277561,160.599621,161.921766,163.142206,163.786328,164.871164,165.786495,167.108639,167.922266,168.786745,170.871665,171.685292,172.515870 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-3.txt" "b/data/torah/labels/Beha\342\200\231alotcha-3.txt" deleted file mode 100644 index 993306d2c..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.060158,4.085551,4.582226,5.239118,6.216446,7.353992,8.715842,10.077693,11.247282,12.833437,14.627875,15.701333,16.694683,17.832229,19.850971,20.587973,21.837671,22.558650,23.423826,24.817720,26.147527,26.424308,27.908760,28.966197,30.151808,31.577745,33.500357,34.942317,35.695340,36.945038,37.842257,38.627323,39.348303,40.197457,41.254893,42.039960,43.321702,44.747639,45.468619,46.173576,46.942621,47.791775,48.881255,50.259127,50.531498,53.191111,56.267291,57.965598,58.878839,59.471644,61.618561,62.195345,63.028477,63.973761,64.806893,66.713484,67.450485,68.299639,69.260945,69.581380,70.286338,71.119470,71.888515,72.593473,73.570801,74.788455,76.166327,77.111612,77.816570,78.697767,79.611008,80.492205,81.107302,81.918142,82.392526,83.431155,83.959873,84.744940,87.132183,88.013380,89.791797,90.881277,91.826561,92.595606,93.556912,95.912112,97.273963,98.203225,99.036357,100.270034,101.055100,101.968341,102.641255,103.554496,105.252804,106.438415,107.608004,108.184787,108.921789,109.786964,111.581402,112.558730,113.167557,113.952624,114.978017,115.859215,116.692346,117.861936,118.743133,119.319917,119.960787,121.130376,122.075661,123.709881,124.478926,124.847427,125.520341,126.273364,128.500390,129.061152,129.637936,130.471068,131.160004,132.169375,132.938420,133.403051,134.011878,134.716836,137.248276,138.530017,139.523367,140.660912,142.503416,143.464490,145.600958,146.690438,147.363352,148.324659,149.478226,150.631793,151.689230,152.442253,153.948299,154.685301,155.566498,156.591891,157.312871,157.873633,158.466438,159.347635,160.613355,161.190139,161.911118,162.648120,163.080707,163.673513,164.811059,165.403864,166.011066,166.853718,167.276553,167.991263,168.872461,169.721615,170.618834,172.477359,173.038121,173.646948,174.752450,175.889995,176.354627,177.331955,178.581653,179.895438,180.792657,182.955595,183.948945,184.750034,185.775427,187.313517,188.467084,190.069261,190.774219,191.671438,193.578028,194.635465,195.420532,196.093446,196.894534,197.663579,198.240363,199.361887,200.864218,201.849440,202.554398,203.371508,204.332815,206.159296,207.665342,208.322235,209.299563,210.373021,211.029914,212.231546,212.888439,214.170180,215.163530 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-4.txt" "b/data/torah/labels/Beha\342\200\231alotcha-4.txt" deleted file mode 100644 index 0c4e7497a..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.356129,3.448163,3.678041,4.674177,5.609012,6.405921,6.773725,7.448033,8.474819,9.379004,11.156724,12.796517,13.210297,14.957366,15.723624,16.168054,16.704435,17.608620,18.390204,19.386340,20.520403,21.654465,22.696577,23.600762,24.167793,25.071978,26.987624,28.045061,28.841970,29.914732,30.864893,32.596637,33.133018,34.282405,34.926063,35.784272,38.037072,38.987233,39.784141,40.259222,41.194057,42.082917,42.895151,43.600109,44.657546,45.270552,45.684332,47.569328,48.565464,49.760827,50.542411,51.415946,52.074928,52.979113,53.684071,54.358378,55.737644,56.733780,58.434873,60.442471,60.948201,61.775761,62.971124,65.177948,66.710465,67.308147,67.967129,68.963265,69.775499,71.737121,72.380778,73.560816,74.189148,74.909431,75.721665,76.304022,77.208207,78.786699,79.552958,81.223401,82.694618,83.598803,84.395712,84.932093,85.683026,86.387984,86.909039,87.690623,88.456882,89.223140,89.636920,90.648381,91.644517,93.422237,94.019918,94.847478,95.721012,97.023652,97.330155,97.989137,99.904784,101.498601,102.647989,103.552174,104.517660,105.222618,106.555907,107.873872,108.915984,110.080697,110.739679,111.873741,112.394797,112.992479,113.574835,114.325769,115.842961,116.777796,117.237551,117.881208,118.846694,120.026732,121.176120,121.789127,122.448109,123.045790,123.827374,125.651069,126.800457,127.781268,128.271673,129.114558,129.988093,130.815652,131.152805,132.118291,133.160403,133.727434,134.570318,135.259951,136.041535,136.700517,137.175597,137.865230,138.662139,139.244495,141.598070,142.456279,142.931360,143.544366,144.387251,145.291436,146.777977,147.544236,149.337281,150.088214,151.099675,151.957885,152.662843,153.812230,154.609139,155.942429,156.708688,157.919376,158.348481,159.344617,160.800508,161.428840,162.762130,163.574364,164.080094,165.551311,166.286919,166.945901,167.666184,168.371142,169.321302,169.873009,170.915120,172.325036,172.984018,174.271332,175.282794,176.018402,177.121814,178.393803,179.160062,180.370750,181.397537,182.485624,183.374483,184.585172,185.382081,186.041063,187.221101,188.232562,189.443251,190.347436,191.588775,192.401009,194.025477,195.251490,195.711245,196.370228,197.611566,198.301199,199.312660,200.170870,201.013754,202.914075,204.002162,205.258826,206.163011,208.231909,209.289346,210.147556,211.726048,212.476981,213.411817,214.392628,216.384900,217.059207,217.580263,218.530424,219.618511,221.411556,222.821471,224.813743,225.671953,226.637439,227.986054,229.380644,230.897836,231.771371,232.982059,235.250184,236.230995,237.671561,238.820949,240.705945,241.533504,243.403175,244.200083,245.088943,246.100405,247.111866,247.985400,248.935561,250.038973,251.081085,251.923969,252.812829 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-5.txt" "b/data/torah/labels/Beha\342\200\231alotcha-5.txt" deleted file mode 100644 index 2edd47113..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.268125,3.861943,5.501736,6.344620,7.172180,7.929615,8.842623,9.961361,10.804245,11.601154,12.306112,13.225622,15.110618,15.509072,16.627810,17.823173,18.803984,19.524267,20.734955,21.608490,22.543325,23.324909,24.535597,25.347831,25.884212,26.359293,27.202177,27.876484,28.750019,30.757616,31.493224,33.087042,33.592773,34.604234,36.121426,37.393415,38.144348,39.324386,40.979505,41.469910,42.726574,43.661410,44.105839,44.519619,44.8,45.474424,46.286658,46.393934,47.497346,48.064377,48.585433,48.968562,49.290391,50.317177,51.175387,51.558516,52.508677,53.719365,54.608225,55.972165,56.416595,57.014277,58.117689,59.083175,59.910734,61.427926,63.266946,64.876089,65.841575,66.638483,67.818522,68.722707,69.872094,71.573188,72.063594,73.473509,74.331719,74.791474,75.465781,75.772285,76.262690,77.090249,77.442728,78,78.500165,79.128497,79.480976,79.787479,80.185934,80.523088,82.162881,82.372789,83.509174,84.597261,85.639372,86.834736,87.631644,89.041560,89.348063,90.144972,91.171759,92.075944,93.792363,95.232929,96.121789,96.520243,97.163900,98.206012,98.941620,100.198284,101.592874,102.190556,103.293968,104.121527,104.504657,104.857136,105.286240,106.006523,106.711481,106.972009,107.5,108.106072,108.673103,109.270785,109.699889,110.052368,110.864602,111.922039,112.243868,113.117402,114.634594,115.538779,116.442964,117.193898,117.745604,118.818366,119.599949,120.427508,121.454295,122.128602,123.369941,124.672580,125.178311,126.434975,126.940706,127.553712,128.013468,128.350621,128.703100,129.653261,130.051715,130.879274,131.385005,131.768134,132.151263,132.488417,133.254676,134.266137,134.572640,135.323574,136.702839,137.545723,138.005478,138.741087,139.752548,141.966803,143.032134,144.748553,146.587574,147.160642,147.942226,150.578155,151.206487,152.616403,154.486073,156.340419,156.938101,157.673709,158.317366,158.930373,159.742607,160.800044,161.612278,162.347886,163.451298,164.217556,165.673448,166.209829,166.870204,167.389867,167.822222,168.193741,168.588481,169.610623,170.714035,171.250416,171.664196,172.476430,174.138050,174.463129,174.815608,176.225524,176.578003,177.405562,178.202471,180.026166,180.562547,180.869050,181.788561,182.585469,184.301888,184.639042,185.098797,186.815216,188.102531,188.991390,190.340005,190.769110,191.719271,192.960610,193.328414,193.926095,194.661703,196.439423,197.404909,198.983401,200.056163,201.772582,203.412376,204.224610,205.266721,206.002329,207.044441,208.055902,208.944762,209.772321,210.599880,211.274188,212.331624,212.837355,213.864141,215.074830,216.745273,217.695434,218.875472,219.764332,220.714493,221.388800,222.461562,224.254607,226.047652,226.936512,227.779396,229.357888,229.741018 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-6.txt" "b/data/torah/labels/Beha\342\200\231alotcha-6.txt" deleted file mode 100644 index 5a6f601ed..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-6.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.080359,3.923244,4.704827,5.501736,6.252669,7.923113,9.685507,10.696969,11.800381,13.057045,13.976555,15.432446,16.673785,17.409393,18.436180,19.616218,20.474427,21.148735,21.960969,23.416860,24.060517,25.960838,26.727097,27.569981,28.428190,29.730830,30.497088,31.677127,32.274808,33.286269,33.684724,34.573584,35.293867,36.535205,37.286139,38.450852,39.937393,40.596376,41.056131,41.761088,43.048403,43.799336,44.182465,44.856773,46.236038,47.109573,49.193796,49.776152,50.404484,51.140093,52.258830,53.086389,53.592120,53.990574,54.664882,55.691668,57.300811,58.327597,59.262433,60.411820,61.254705,62.542019,64.580267,65.423151,66.511238,67.354122,69.361720,70.127978,71.047488,72.074275,73.392239,73.867320,74.526302,75.231260,75.844267,76.871053,77.637312,78.480196,80.794297,81.637181,83.016446,83.637348,84.418932,84.878687,85.629620,86.058725,87.039536,89.139084,90.150545,91.085380,91.514485,92.020216,93.322855,93.705985,94.349642,95.238502,97.092847,97.966382,98.456787,98.962518,100.035280,100.709587,101.751699,103.437468,104.035149,105.705593,107.207459,109.107780,109.766763,110.670948,111.958262,113.276227,114.670817,115.666953,116.540488,117.260771,118.471459,119.544221,120.662959,121.429217,122.471329,124.509576,126.057419,126.670425,127.390708,128.141642,129.137778,129.934687,130.792896,132.064885,133.260249,133.720004,135.145244,136.156706,137.551296,138.103002,139.053163,140.033974,141.198687,141.643117,142.378725,143.313560,144.370997,145.075955,145.872863,146.853674,148.095013,148.416842,149.888058,150.746268,151.880330,152.830491,154.761462,155.405119,155.972151,156.677108,157.611944,159.619541,160.155922,161.703764,162.240145,162.715225,163.343557,164.477620,165.703634,167.297451,167.879808,168.538790,169.596227,170.239884,170.852891,171.603824,172.753212,173.274268,173.948575,175.082638,176.109424,177.917794,179.327710,180.185919,181.059454,181.319982,181.856363,182.929125,184.124488,185.166600,185.963508,187.174197,188.890616,189.488298,190.193255,191.250692,191.848374,192.415405,193.028412,193.901946,194.468978,195.296537,196.093446,196.752428,197.181533,197.901816,199.679536,200.123966,200.522420,201.494872,202.575064,203.540550,203.877703,204.168882,204.720588,205.210993,205.854650,206.452332,207.708996,208.398629,209.517366,210.007771,210.697404,211.693540,212.643701,213.256707,214.038291,214.712599,215.340931,215.877312,216.750846,217.563080,218.099461,219.340800,220.888642,222.114656,222.436484,223.371320,224.673959,225.869322,226.742857,228.520577,229.363461,230.727401,231.953415,232.689023,233.317355,234.788571,235.811643,236.439975,237.528062,238.662124,239.658260,239.995414,240.792323,241.451305,242.953172,243.504878,244.317112,246.569912,247.627349,249.466369,251.228764,253.374288,253.910668,255.243958,256.332045,257.144279,258.033139,258.845373,260.056062,260.960247,262.247561,262.891218,263.611501,264.239833,264.960116,266.109504,266.906413,267.458119,268.837384,269.971447,271.427338,273.373634,274.575964,277.007557,278.754627,279.873364,280.992102,282.585919,283.490104,284.532216,285.405751,286.018757,286.509163,286.984243,287.796477,288.961190,289.804074,291.413217,292.348053,293.405489,294.279024,294.646828,296.286621,297.374708,297.880439,298.769299,300.393767,301.558480,303.075672,303.933881,305.190545,305.956804,306.707737,307.841800,308.163628,309.420292,310.171225,311.811019,312.485326,312.945081,313.435487,314.431623,315.197881,315.856863,317.265850,318.900535,319.314315,320.019273,320.402402,320.923458,321.873618,323.314184,324.678124,325.490358,326.241292,327.160802,327.697183,328.662668,329.658805,331.896279,333.290870,333.903877,334.394282,334.808062,335.696922,337.382690,338.041673,338.792606,339.773417,341.060731,342.531947,343.451458,344.600845,345.428405,346.669743,347.298075,348.232911,350.271158,351.834326,353.014364,353.749972,354.546881,355.067937,355.938685,356.205714,356.474137,356.933892,358.527710,359.600472,360.336080,361.531443,362.435628,363.385789,364.152047,364.504526,365.148183,366.052368,366.925903,367.676836,368.672972,370.251465,371.308902,372.121136,372.550240,373.025321,374.098083,375.691900,376.550110,376.948564,377.622872,378.159253,379.017462,379.783721,381.929244,382.818104,383.247209,384.090093,384.994278,386.113016,387.032526,387.844760,388.764270,389.806382,390.756542,392.917391,393.607024,394.940314,396.855960,397.468967,398.035998,398.664330,399.721767,401.606763,402.097168,403.016678,403.568385,404.733098,406.480167,407.384352,408.273212,409.039470,410.418736,411.154344,412.319057,413.943525,414.341979,415.062262,418.096646,418.679002,419.721114,422.280417,423.567732,424.594518,425.973783,427.720853,428.563737,429.973653,430.969789,432.149827,433.115312,433.988847,435.138235,436.486850,437.544287,438.923552,439.689810,440.808548,441.682083,442.632243,444.042159,444.869718,446.019106,447.168493,448.777636,449.620521,449.942349,451.229663,452.149174,453.773642,455.030306,455.857865,456.930627,457.666235,458.616395,459.597206,460.164238,461.007122,461.987933,462.662240,463.336548,464.393985,465.344145,465.941827,466.370932,467.045239,468.010725,468.547106,469.880395,471.596815,472.163846,472.776853 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-7.txt" "b/data/torah/labels/Beha\342\200\231alotcha-7.txt" deleted file mode 100644 index 5dd64b2fd..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0,2.051019,3.051102,3.525718,4.390197,5.220775,6.034402,7.102288,9.051603,10.678857,11.543336,13.427635,14.665027,16.885551,17.343216,18.461954,20.004455,20.411269,21.750364,23.343717,23.903086,25.394736,26.343967,26.954188,27.598309,28.581442,29.496773,31.191829,31.666445,32.242765,33.175046,34.310734,36.904171,37.429638,38.514474,39.395904,40.023075,40.955356,42.006291,43.497941,45.447256,46.786351,47.328769,47.972891,49.922206,51.057894,51.973224,52.769901,54.464958,55.092129,56.058311,57.177049,58.261885,60.482409,61.329937,61.906257,63.313154,64.177633,65.109914,66.313404,67.110081,68.144065,68.906841,69.771320,70.517145,71.296871,72.161350,73.076680,73.720802,75.958277,76.1,76.398991,77.136689,78.146757,79.020060,79.952341,80.442979,81.019298,81.917678,82.460096,83.155069,84.392461,86.460430,88.392795,89.426779,90.172604,91.121836,92.342277,93.613569,95.596785,96.478215,97.359644,98.325827,98.936047,100.376845,101.529484,102.427864,103.224541,103.902563,104.682289,105.156905,105.784076,106.614654,108.496167,109.377596,109.818311,110.581087,111.445566,112.547352,113.445732,113.920348,114.496668,115.123839,116.242576,117.310462,118.293595,119.039420,119.751343,120.581921,121.446400,122.395632,123.327913,123.666924,124.243244,125.107722,126.734977,127.853714,129.464018,129.822766,130.500557,130.890420,131.483690,131.839652,132.415971,133.314351,134.399187,134.890754,135.416221,136.043392,137.280784,138.416472,139.314852,140.145429,141.145513,142.179498,143.162630,144.213566,144.925489,145.925573,147.027360,148.095245,149.213983,150.349671,151.502309,151.928163,152.505644,153.217567,153.963392,154.505810,156.374785,158.116281,159.302821,160.421558,161.201284,162.336972,163.150600,163.862523,164.354090,164.743953,165.591481,166.506812,167.167884,167.896758,168.693435,169.405359,169.896925,170.235937,171.293605,172.186877,173.475120,174.475204,175.441386,176.526222,177.560207,178.492488,179.289165,180.526556,181.357134,182.289415,183.408152,184.289582,185.171011,186.323650,187.289832,188.934037,189.493406,190.646044,192.646211,193.493740,194.527724,195.409154,196.578743,197.392370,198.460256,199.307784,201.155396,202.884354,203.477624,204.240399,205.054026,206.037159,207.189798,208.003425,208.410239,208.935706,209.630679,210.918922,211.376588,211.902055,212.546177,213.308952,214.088678,215.088762,215.868488,216.749917,217.682199,218.376940,218.885457,219.546529,220.173700,221.173783,221.987410,223.173950,223.885874,225.123265,225.919942,226.801371,228.242170,229.038846,229.513462,230.225386,230.937310,232.072998,233.462944,234.310473,234.954594,235.632617,236.937810,237.903993,238.412510,239.514297,240.717787,241.463612,242.141634,242.972212,243.972296,244.921527,245.752105,246.396227,248.481146,249.362576,250.040599,251.108484,252.023815,253.210355,254.176537,255.515632,257.092034,257.922612,258.888795,259.549867,260.193988,261.261874,262.041600,262.804376,263.499349,264.211273,265.313059,267.211523,268.076002,268.804876,269.957515,271.398313,272.432298 diff --git "a/data/torah/labels/Beha\342\200\231alotcha-H.txt" "b/data/torah/labels/Beha\342\200\231alotcha-H.txt" deleted file mode 100644 index bb6f70c8d..000000000 --- "a/data/torah/labels/Beha\342\200\231alotcha-H.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.885544,3.441280,4.068219,5.275657,7.435113,8.572890,10.291167,11.684364,13.100782,14.029580,15.956836,18.232392,19.207630,20.438287,20.856246,21.529625,22.922822,24.037380,25.593117,26.243276,27.822233,29.401190,31.189126,33.186042,33.952301,34.625680,36.134977,37.458514,38.967811,40.453888,41.638106,42.056065,42.822324,43.867222,44.981779,46.049897,47.118015,48.511212,49.138151,51.181507,51.994206,52.551485,53.387403,54.432301,55.593299,56.986496,57.636655,58.588673,59.749671,62.419965,63.070124,63.813163,65.438559,66.738877,68.921553,70.477290,71.777607,73.031485,75.678559,76.584138,77.002097,77.861235,79.579512,80.717290,82.203367,82.783866,85.105861,86.081099,87.334977,88.170895,89.378333,90.910850,91.955748,93.023866,94.602822,96.367539,98.643095,100.431031,101.499149,102.335067,103.751485,106.189580,107.141598,108.488355,109.486813,110.531711,111.971349,112.807267,114.432664,115.500782,117.590578,118.240736,119.285634,120.469852,121.421870,123.558106,124.904863,126.274841,127.807358,128.921915,131.127811,132.056609,133.682006,134.634024,135.864682,137.536519,138.604637,140.601553,142.830668,145.036564,145.849262,147.103140,147.497879,148.821417,150.702233,151.886451,153.511847,154.022686,156.251802,157.668219,158.805997,159.920555,161.081553,162.349398,163.603276,164.555294,165.437652,166.830850,168.131167,168.688446,170.267403,171.289081,173.402097,173.936156,175.097154,176.072392,177.001190,177.604909,178.812346,179.787584,180.414523,181.134342,182.295339,182.573979,183.363457,184.849534,185.871212,186.219512,187.171530,188.750487,189.748945,190.933163,191.745861,193.046178,194.392936,195.135974,196.413072,198.270668,199.385226,201.800101,202.728900,203.704138,205.120555,206.188673,206.815612,207.512210,208.649988,209.903866,210.530804,211.180963,213.015339,213.619058,214.431757,215.360555,216.800192,218.263049,220.143866,221.328083,222.396201,223.557199,224.578877,225.136156,225.646995,226.715113,227.574251,228.572709,230.569625,231.637743,233.890079,235.051076,236.513934,237.651711,239.973707,240.600646,241.157924,241.617788,242.667222,243.402641,244.780237,245.893435,247.843911,248.679829,250.003367,250.908945,252.186042,252.836201,253.857879,254.531258,255.158197,255.878015,256.597834,257.085453,258.734070,260.777426,261.961643,262.983321,263.656700,265.769716,267.070033,267.511212,268.138151,269.577788,271.040646,271.899784,272.619602,273.223321,274.732618,277.379693,278.378151,279.330169,280.862686,281.814705,283.091802,284.508219,284.833299,286.458695,287.596473,288.687811,289.616609,290.870487,291.938605,293.076383,294.678559,295.468038,295.816337,297.046995,298.277652,299.229671,300.437108,301.644546,302.828763,303.641462,304.895339,305.522278,306.567176,307.658514,308.889172,309.701870,311.211167,312.348945,313.254523,314.624500,315.321099,315.878378,317.178695,318.827312,320.754568,321.799466,322.240646,323.703503,324.353661,325.352119,326.513117,326.884637,327.534795,328.184954,329.345952,329.949671,331.087448,333.037924,334.106042,334.941961,335.870759,336.776337,337.185045,337.835203,338.618514,339.779512,340.870850,341.451349,342.496246,343.378605,344.260963,345.468401,345.932800,346.652618,347.627856,348.301235,349.369353,349.973072,351.343049,351.714568,353.456065,354.059784,355.290441,356.799739,357.983956,358.332256,359.191394,360.213072,362.293474,362.943775,363.640373 diff --git a/data/torah/labels/Bereshit-1.txt b/data/torah/labels/Bereshit-1.txt deleted file mode 100644 index e347386e1..000000000 --- a/data/torah/labels/Bereshit-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.028362,3.351900,4.014584,5.198801,5.869747,7.053965,7.648037,9.018015,11.363230,12.547448,13.662006,14.730123,15.761487,16.129648,16.852079,17.827317,19.108553,20.246331,21.342964,21.575662,22.086501,23.595798,24.453640,25.345326,25.771316,26.297344,27.281625,28.349743,30.474060,31.983357,32.516315,33.282573,33.537442,34.164381,35.544112,36.517468,36.774486,37.531649,38.065708,39.921315,41.192426,42.107331,43.012910,43.795442,44.840340,45.700670,46.674716,47.68,48.121550,48.7,49.257250,49.576787,51.146684,52.500352,53.475590,53.765494,54.599067,55.360529,56.637626,57.572146,58.581886,58.857239,59.580344,60.784495,62.189703,65.045757,65.463309,67.738865,70.246620,71.062402,72.223400,73.007150,73.889349,75.060951,76.320605,77.230589,78.015538,78.585146,79.571542,80.453740,81.916597,84.711912,86.360529,87.521526,88.543204,89.275727,89.761978,90.331587,91.081803,91.554161,93.638095,95.020438,97.110234,98.062981,99.799593,100.765149,102.040705,102.731135,103.567054,104.696838,105.973935,107.134933,108.295931,109.364049,111.268176,112.233732,113.338217,114.256727,115.074828,115.554097,116.304349,117.156274,118.124318,119.059832,119.309083,120.470081,121.760827,123.618423,124.732981,125.568899,127.263956,128.494614,129.655611,130.305770,130.996083,132.203521,133.109099,133.782478,134.571956,135.547194,136.115614,136.608812,136.949188,137.529686,138.095351,139.192890,140.539647,142.188264,143.976200,145.230078,145.973116,146.762595,147.552073,149.665089,150.251632,151.571457,152.328619,152.745406,153.217765,154.433393,154.989108,155.892146,156.183897,157.559293,158.941636,159.594602,160.060014,160.706034,161.115874,163.060879,164.678959,166.585550,167.530834,168.508162,169.341294,170.350665,171.987062,172.224004,172.896918,173.306887,174.210704,175.382313,176.247489,177.561274,178.746885,180.172822,181.826826,182.868241,183.733416,184.598592,185.656028,185.908447,186.709536,187.385171,188.202281,189.644241,190.349198,190.829851,191.070178,191.935353,192.672355,193.416849,194.007297,194.771207,195.695283,196.453492,197.062319,197.623081,198.504279,199.289345,200.042368,201.016261,202.589830,204.360648,205.690455,206.601204,207.295849,208.435066,209.423527,209.817409,210.914947,213.055809,213.792810,214.770138,216.117835,216.367907,216.965302,217.298731,218.326805,218.999719,219.882809,220.146774,221.307772,222.077886,222.571084,222.939245,223.536640,223.856176,225.620574,226.581880,227.495121,228.329688,229.204940,229.701615,230.294420,230.919269,231.912619,232.825860,233.081057,233.935470,234.362791,234.795378,235.428956,236.950227,238.264013,239.001014,239.207823,240.138559,240.955670,241.667093,241.779246,242.243877,243.077009,246.649863,248.585541,249.577306,251.176549,253.503609,254.335771,254.538629,255.108238,255.934865,256.800041,257.713281,258.354152,258.706497,259.797089,261.922158,263.428204,264.389510,265.126511,266.119861,267.786125,268.987758,269.285935,270.269499,271.112850,272.176090,272.881047,274.329055,275.530790,275.926737,276.287953,276.940918,277.295187,278.502625,280.138420,281.836728,282.765991,284.191928,285.185278,285.938301,286.739389,287.652630,288.950393,290.039874,290.616657,291.225484,292.266899,293.276271,294.376499,296.488218,297.177154,297.737916,299.276006,301.358836,302.240033,303.345535,304.034471,305.668692,306.149345,306.774194,307.719478,308.536588,309.422501,310.170809,310.353325,311.631471,313.236668,314.197974,314.999062,316.200695,317.216414,318.390363,320.627119,321.716599,323.126515,323.767386,325.545802,327.192115,328.009225,328.730205,329.158863,329.879843,330.407353,330.685165,332.159168,333.549132,334.238068,334.465094,335.362313,336.371685,337.184866,337.743162,338.111324,339.232848,339.809631,340.658785,341.341422,342.591782,343.613230,346.389408,348.344063,349.137257,350.596167,352.522494,353.683956,354.802926,355.485611,355.727512,356.463835,357.540312,359.636610,360.670594,361.577101,362.299474,363.106832,363.871697,364.409936,365.288114,365.424751,366.322099,367.661506,369.542323,371.618095,372.368796,373.870198,374.281470,374.510702,375.219240,376.170903,377.807838,378.956428,379.220393,379.755269,379.991448,381.054255,381.550001,381.719971,383.065567,383.972074,384.411163,384.708611,385.062715,385.884237,386.677431,387.797228,388.256519,389.743757,390.451966,391.004368,392.859875,393.709725,394.276292,395.692709,396.517044,397.349918,397.684047,399.324300,400.045839,400.783209,401.457292,402.363799,402.836873,403.003991,403.409049,404.103093,405.037929,406.103046,407.052046,408.102999,409.023670,409.215906,409.395755,409.941051,410.805066,411.510376,411.949465,412.770987,413.563623,414.039455,414.431929,415.081422,415.387065,416.849922,418.918782,419.966931,420.777093,421.134002,422.323793,423.499419,424.320941,424.884656,425.975297,426.869541,427.303783,428.224455,429.349033,430.085570,430.836271,431.771107,432.649285,433.093984,434.354595,435.487729,436.238430,436.414056,436.830745,437.913,438.842057,439.592758,440.303968,440.584592,441.335293,441.825336,442.845156,443.610021,443.952766,445.298362 diff --git a/data/torah/labels/Bereshit-2.txt b/data/torah/labels/Bereshit-2.txt deleted file mode 100644 index 52713f515..000000000 --- a/data/torah/labels/Bereshit-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.019244,1.932485,3.694879,5.216947,6.450623,7.588169,9.254433,10.760479,11.449415,12.218460,12.653539,14.058107,15.082932,15.512394,17.390067,18.591699,19.204045,20.033658,20.574529,21,21.651857,22.244662,22.982705,25.144603,25.903709,27.409755,28.210844,29.059997,29.682369,30.534000,31.783698,32.408547,33.145548,33.386450,34.395246,35.596879,36.494098,36.8,37.391317,38.448754,38.656687,38.892853,39.426082,40.531584,43.268143,44.440895,45.786724,46.176717,47.997728,49.888297,50.129395,51.250147,52.211453,52.975819,53.597310,54.550631,55.325052,56.200874,56.816629,57.738963,60.398577,62.401298,63.667018,64.404019,65.237151,66.182436,67.816656,68.537636,68.786529,69.498942,69.967360,71.021010,73.312123,74.257407,74.994408,75.337035,76.308193,77.039918,78.086610,79.095981,79.811764,80.271666,81.315770,82.501381,83.494730,84.067585,85.092978,86.086328,86.919460,87.306703,88.492314,89.856885,90.589958,91.487177,92.416439,92.611422,93.396488,94.600842,95.722366,96.727808,97.592983,98.570311,100.143166,101.072428,101.889539,102.581196,104.327568,105.256831,105.563966,105.919166,107.024668,107.636216,108.067596,109.942143,112.906170,113.755324,114.110524,114.911612,115.739607,116.636826,117.088156,118.498072,119.519536,119.891663,120.813370,121.758654,122.271351,123.312766,123.571835,123.718752,124.295536,125.256842,126.076673,126.893783,127.983264,129.040700,129.700314,130.517424,131.141065,132.054306,133.063677,134.008962,134.348140,135.597838,138.002143,138.588233,139.185915,139.346764,140.204973,141.308385,141.8,142.212571,143.086105,144.189517,145.760151,146.380756,147.147014,147.6,148.219776,148.756157,149.474593,149.719796,150.302153,150.715932,152.141173,154.424623,155.451410,156.003116,156.723399,157.290430,157.918762,158.930223,160.784569,162.347736,163.371113,163.812371,164.234984,165.106267,166.735624,167.486558,168.145540,168.536266,169.685654,170.283336,170.865692,171.708577,172.4,172.850237,173.371292,174.505355,176.850106,177.984169,179.501360,180,181.325056,181.9,182.673671,183.654481,184.259760,184.524022,184.842117,185.857311,186.876370,187.159820,188.094656,188.910362,189.209137,189.829741,190.550024,192.526971,193.147575,193.507652,194.833083,196.135722,197.116533,198.327222,198.982340 diff --git a/data/torah/labels/Bereshit-3.txt b/data/torah/labels/Bereshit-3.txt deleted file mode 100644 index ed930c827..000000000 --- a/data/torah/labels/Bereshit-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.848345,4.566621,6.424218,7.353016,8.374694,9.140952,10.000091,10.975329,11.625488,12.391746,13.877823,14.504762,15.108481,15.688980,16.687438,19.125533,20.100771,21.749388,23.490884,24.303583,25.093061,25.952200,27.972336,29.063673,30.410431,31.339229,31.850068,33.011066,37.376417,38.212336,39.814512,40.395011,41.602449,42.391927,42.995646,43.413605,43.854785,44.412063,45.619501,45.991020,47.012698,52.330068,54.628844,55.627302,57.508118,58.645896,59.946213,61.107211,62.036009,64.241905,65.147483,65.913741,66.912200,67.446259,68.189297,68.932336,69.721814,70.186213,71.556190,72.159909,72.624308,73.158367,73.599546,74.203265,75.387483,76.502041,77.663039,78.336417,79.265215,80.797732,82.098050,83.119728,83.909206,84.675465,85.673923,87.624399,89.667755,90.503673,91.246712,92.175510,92.895329,93.870567,94.660045,95.379864,95.867483,96.587302,97.910839,98.328798,99.187937,100.139955,100.882993,101.486712,102.090431,102.949569,103.622948,104.342766,104.946485,105.596644,108.266939,108.986757,109.474376,110.031655,110.797914,111.215873,111.680272,112.632290,113.839728,116.115283,116.997642,117.578141,118.855238,119.714376,121.246893,122.245351,123.150930,123.847528,124.520907,125.124626,125.960544,126.633923,127.887800,129.141678,130.000816,130.488435,131.277914,131.928073,132.346032,133.437370,134.900227,136.293424,137.013243,137.988481,140.264036,141.192834,141.773333,143.003991,143.793469,146.254785,147.160363,147.903401,148.367800,149.273379,150.898776,153.383311,154.103129,155.589206,156.471565,157.887982,159.792018,160.581497,161.045896,162.415873,163.832290,164.505669,165.805986,166.781224,167.477823,168.336961,170.566077,171.146576,172.284354,173.073832,174.490249,176.835465,177.601723,178.367982,179.830839,180.527438,181.154376,181.850975,183.197732,184.010431,184.869569,185.705488,186.309206,187.330884,192.067755,192.717914,193.298413,194.668390,195.945488,196.781406,197.315465,198.012063,198.499683,200.194739,201.704036,203.491973,204.908390,205.697868,206.417687,207.067846,207.601905,208.321723,210.248980,211.061678,211.642177,212.083356,212.594195,213.546213,214.057052,214.892971,216.030748,217.609705,218.050884,218.701043,219.165442,221.348118,222.253696,222.601995,223.205714,224.227392,228.012245,229.266122,230.055601,230.728980,231.402358,232.052517,232.656236,233.677914,235.187211,236.092789,238.716644,239.738322,240.574240,241.061859,242.246077,243.778594,244.498413,245.659410,246.356009,247.006168,247.749206,248.979864,249.885442,250.512381,250.907120,251.348299,252.346757,253.623855,255.342132,256.712109,257.826667,258.244626,258.639365,259.219864,260.566621,261.402540,262.308118,263.120816,264.165714,266.394830,267.253968,268.531066,268.949025,270.644082,271.503220,272.060499,273.221497,274.289615,274.962993,275.636372,276.425850,277.517188,278.074467,278.910385,279.723084,280.512562,281.348481,282.091519,282.672018,283.136417,283.484717,284.297415,287.385669,288.546667,289.846984,290.450703,291.147302,292.006440,292.563719,293.190658,293.701497,294.490975,296.000272,296.789751,297.857868,298.763447,299.808345,300.690703,301.596281,302.943039,304.034376,304.777415,306.100952,307.052971,308.144308,308.957007,309.491066,310.164444,310.768163,312.300680,313.183039,313.972517,314.761995,316.062313,317.734150,318.291429,320.218685,321.310023,322.703220,324.073197,324.537596,324.978776,325.628934,326.859592,327.858050,328.531429,329.204807,330.017506,331.015964,331.875102,332.873560,333.964898,335.218776,335.938594,336.704853,337.633651,339.630567,340.629025,341.395283,341.882902,343.206440,343.577959,344.042358,344.901497,346.248254,346.991293,347.734331,348.245170,349.150748,350.033107,350.636825,351.681723,352.982041,353.492880,354.143039,355.234376,355.698776,356.395374,356.882993,357.370612,358.043991,362.153923,363.663220,364.383039,364.917098,365.544036,366.403175,367.448073,368.376871,369.143129,369.537868,370.071927,372.393923,373.717460,374.855238,376.596735,378.152472,379.220590,380.102948 diff --git a/data/torah/labels/Bereshit-4.txt b/data/torah/labels/Bereshit-4.txt deleted file mode 100644 index 8b4f3a628..000000000 --- a/data/torah/labels/Bereshit-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.569705,6.777143,8.402540,9.238458,10.213696,10.817415,11.537234,12.140952,12.976871,13.394830,13.859229,15.577506,16.065125,16.831383,18.294240,19.269478,19.803537,20.871655,21.800454,22.915011,23.402630,24.470748,27.094603,27.791202,28.441361,29.114739,29.741678,31.065215,31.459955,32.202993,32.737052,33.340771,34.432109,35.685986,36.173605,36.707664,38.867120,40.097778,40.608617,41.490975,42.048254,43.650431,44.741769,45.624127,46.367166,47.388844,48.573061,49.176780,49.641179,50.105578,51.104036,53.913651,54.679909,55.051429,55.539048,56.096327,57.443084,58.209342,58.511202,58.952381,60.136599,61.158277,61.599456,62.087075,63.039093,64.664490,65.337868,65.825488,66.382766,66.754286,67.358005,68.426122,69.122721,69.865760,70.376599,71.491156,72.303855,72.954014,73.975692,76.645986,77.667664,78.550023,80.082540,81.266757,83.054694,84.587211,85.678549,86.909206,88.093424,89.115102,89.649161,90.276100,91.344218,91.971156,92.946395,94.618231,95.361270,95.941769,96.429388,96.847347,97.938685,99.099683,99.564082,100.028481,100.655420,101.212698,101.909297,103.186395,104.022313,104.765351,105.740590,106.739048,107.992925,108.619864,109.153923,109.664762,110.756100,111.638458,112.149297,112.961995,113.658594,114.587392,115.701950,116.352109,117.048707,117.977506,118.836644,119.602902,120.276281,121.112200,121.785578,122.366077,124.804172,126.429569,127.428027,128.356825,129.215964,130.098322,130.771701,131.143220,131.630839,132.164898,132.931156,134.068934,134.881633,136.042630,137.250068,137.923447,138.387846,138.782585,140.199002,141.522540,142.056599,142.753197,143.124717,144.216054,144.773333,145.655692,146.607710,147.304308,147.977687,149.045805,149.719184,150.833741,152.412698,152.993197,153.759456,154.850794,155.756372,156.569070,157.613968,158.240907,158.658866,159.935964,161.747120,162.350839,162.792018,163.511837,164.603175,165.276553,166.158912,166.646531,167.110930,168.527347,169.107846,169.641905,170.199184,171.174422,172.010340,172.776599,173.473197,174.309116,174.889615,175.400454,175.957732,176.445351,176.932971,177.954649,178.419048,179.301406,181.3,181.707302,182.364580,182.645079,183.132698,184.386576,185.199274,186.360272,191.399002,192.745760,194.092517,195.973333,197.296871,198.086349,198.875828,200.083265,201.035283,203.264399,204.077098,204.866576,205.772154,206.724172,207.165351,207.792290,208.953288,211.159184,211.716463,213.365079,214.479637,215.060136,215.663855,216.197914,217.103492,218.543129,219.541587,220.354286,220.958005,221.608163,222.629841,223.280000,223.767619,224.185578,225.230476,226.879093,227.529252,228.202630,228.667029,229.711927,230.315646,230.849705,231.546304,232.103583,233.403900,234.170159,234.588118,235.052517,236.004535,236.724354,237.165533,237.699592,238.721270,240.207347,240.694966,241.554104,242.273923,242.947302,243.667120,244.154739,245.269297,248.705850,249.704308,250.168707,250.725986,251.515465,252.583583,253.047982,253.698141,256.066576,257.065034,257.645533,258.574331,259.735329,261.291066,261.732245 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-5.txt b/data/torah/labels/Bereshit-5.txt deleted file mode 100644 index d4fdca853..000000000 --- a/data/torah/labels/Bereshit-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,2.414875,3.088254,3.900952,4.806531,5.735329,6.803447,7.639365,8.405624,9.125442,10.448980,11.749297,12.492336,12.910295,15.534150,15.603810,19.226122,19.295782,19.365442,19.435102,19.551202,20.805079,21.501678,22.360816,23.568254,24.334512,25.077551,26.122449,27.237007,28.026485,29.280363,30.905760,31.695238,33.158095,36.060590,36.153469,36.246349,36.362449,37.151927,38.127166,38.707664,39.566803,40.704580,42.492517,43.073016,43.653515 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-6.txt b/data/torah/labels/Bereshit-6.txt deleted file mode 100644 index 302578f8b..000000000 --- a/data/torah/labels/Bereshit-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.578957,3.413333,5.921088,7.337506,8.521723,9.822041,10.774059,12.097596,12.933515,14.140952,15.209070,16.486168,16.973787,18.041905,19.179683,20.433560,22.128617,24.171973,25.170431,25.890249,26.563628,27.933605,28.862404,30.093061,32.229297,32.902676,33.576054,33.901134,34.528073,35.758730,36.385669,37.662766,38.080726,38.521905,39.148844,40.147302,40.634921,41.238639,42.260317,43.189116,44.071474,45.139592,45.836190,46.695329,47.415147,48.320726,50.247982,50.874921,51.385760,52.221678,52.755737,53.661315,54.102494,54.590113,55.356372,56.215510,57.469388,58.467846,59.303764,60.464762,61.974059,62.717098,63.645896,64.342494,66.501950,67.593288,68.707846,69.543764,70.426122,71.076281,71.888980,72.608798,74.141315,75.046893,75.859592,77.183129,78.808526,80.201723,80.619683,81.316281,82.152200,82.802358,84.079456,85.960272,88.026848,89.141406,90.046984,90.906122,91.858141,92.786939,93.738957,94.853515,95.317914,95.782313,96.618231,97.802449,98.499048,100.310204,101.447982,102.539320,102.910839,103.607438,104.443356,105.441814,106.115193,107.345850,108.158549,109.249887,111.850522,112.616780,113.197279,113.870658,114.404717,114.961995,115.914014,116.680272,117.469751,118.630748,119.257687,120.349025,122.392381,123.228299,124.040998,124.760816,125.480635,126.130794,127.106032,127.500771,128.313469,129.567347,130.960544,132.237642,133.282540,133.863039,134.466757,135.441995,136.254694,137.299592,137.833651,138.599909,139.946667,140.596825,141.595283,143.360000,143.963719,144.428118,144.846077,145.426576,146.030295,146.842993,147.655692,148.305850,149.025669,150.093787,151.347664,152.183583,153.089161,153.785760,155.016417,155.411156,156.177415,157.524172,159.567528,160.682086,161.680544,162.052063,162.586122,163.491701,164.165079,165.024218,166.138776,166.858594,167.555193,168.576871,169.227029,170.480907,171.432925,171.943764,172.524263,173.174422,173.987120,174.660499,175.542857,176.193016,177.052154,178.213152,181.162086,182.137324,182.810703,183.484082,184.296780,184.784399,185.852517,186.990295,188.755011,189.892789,190.682268,191.123447,191.820045,192.841723,193.840181,194.606440,195.372698,196.185397,197.114195,197.810794,198.902132,200.225669,200.597188,201.015147,201.618866,202.338685,203.128163,204.289161,204.800000,205.426939,206.402177,208.631293,209.861950,210.651429,211.255147,211.928526,212.787664,213.809342,214.343401,214.947120,216.177778,218.383673,219.451791,220.334150,220.728889,221.309388,222.191746,222.865125,223.840363,224.513741,225.233560,226.440998,227.114376,228.298594,229.598912,230.086531,230.690249,231.735147,232.663946,233.546304,234.428662,235.589660,236.286259,237.145397,238.236735,239.629932,240.558730,242.694966,244.459683,245.690340,246.549478,247.246077,248.337415,248.848254,249.800272,250.914830,252.563447,253.886984,254.978322,255.419501,256.069660,256.998458,257.671837,258.391655,259.599093,260.133152,261.131610,262.989206,263.569705,264.034104,264.498503,265.241542,265.891701,266.727619,267.609977,268.190476,269.003175,270.210612,273.205986,274.088345,274.784943,275.644082,276.410340,277.524898,278.175057,279.219955,280.543492,282.377868,282.981587,285.071383,286.162721,287.346939,287.695238,288.554376,289.320635,290.156553,290.969252,292.153469,292.896508,293.987846,295.311383,295.775782,296.356281,297.238639,298.655057,299.514195,300.303673,301.441451,301.998730,302.997188,304.854785,305.690703,306.271202,307.014240,308.593197,309.266576,309.893515,310.799093 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-7.txt b/data/torah/labels/Bereshit-7.txt deleted file mode 100644 index a948bf1a7..000000000 --- a/data/torah/labels/Bereshit-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.484535,3.436553,5.247710,7.035646,7.732245,8.359184,8.962902,10.077460,10.588299,11.215238,12.074376,13.908753,14.953651,16.091429,16.462948,16.904127,17.507846,18.274104,19.226122,20.062041,20.596100,21.199819,22.198277,22.848435,23.823673,25.007891,25.541950,25.983129,26.795828,27.492426,28.328345,29.164263,30.093061,30.743220,31.393379,32.647256,34.249433,35.155011,36.710748,38.359365,39.288163,39.938322,40.449161,41.401179,42.097778,44.520560,44.892079,46.076297,46.912215,47.817793,50.093349,51.416886,52.485004,53.715662,54.412261,55.015979,56.269857,57.082555,58.220333,59.358111,60.774528,62.307045,64.187861,65.209539,65.627499,66.370537,67.206456,68.042374,68.831852,69.667771,70.410809,71.316388,72.221966,72.895344,73.870583,74.985140,75.519199,75.913939,76.471217,77.005276,77.794755,78.537793,79.768451,80.488270,81.184868,82.322646,83.576524,84.249902,84.667861,85.155480,85.991399,86.804097,88.824233,89.474392,90.008451,90.379970,90.867589,91.285549,91.657068,92.260787,93.421784,94.071943,94.861422,95.674120,96.486818,96.881558,97.276297,97.856796,98.924914,99.923372,100.782510,102.082827,102.524007,103.290265,103.592124,104.219063,104.846002,105.890900,106.308859,107.353757,108.723734,109.582873,110.325911,111.533349,112.137068,112.972986,115.527181,117.338338,118.220696,118.685095,119.219154,120.101512,120.983871,122.214528,122.887907,123.445186,124.582963,125.488542,126.324460,127.067499,128.019517,130.271852,131.409630,134.010265,135.171263,136.587680,137.702238,138.305957,139.327635,140.326093,141.626410,142.903508,143.855526,144.203825,144.784324,145.689902,146.502601,147.175979,149.103236,150.984052,152.075390,153.027408,153.561467,154.420605,155.929902,156.672941,157.299880,158.600197,159.668315,160.388134,161.340152,162.361830,163.058428,163.987227,164.614165,165.357204,165.937703,166.471762,167.214800,168.352578,169.420696,170.233394,170.813893,171.231852,171.812351,172.555390,173.553848,174.064687,174.807725,176.479562,178.453258,179.312397,179.707136,180.264415,180.914573,181.518292,182.400651,183.166909,184.444007,185.419245,185.906864,186.719562,187.369721,187.996660,188.786138,189.320197,190.016796,190.806274,191.526093,192.013712,193.012170,194.382147,195.868224,196.541603,197.818700 \ No newline at end of file diff --git a/data/torah/labels/Bereshit-H.txt b/data/torah/labels/Bereshit-H.txt deleted file mode 100644 index b89664685..000000000 --- a/data/torah/labels/Bereshit-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.925714,4.040272,5.108390,6.501587,7.987664,8.986122,10.959819,12.074376,12.678095,14.744671,15.905669,16.788027,17.879365,18.854603,19.806621,20.735420,21.548118,23.289615,24.845351,26.331429,27.190567,28.096145,29.442902,30.975420,34.295873,35.456871,36.037370,36.664308,37.500227,39.079184,39.868662,41.679819,42.701497,43.560635,44.234014,45.046712,45.673651,46.230930,46.973968,48.158186,48.785125,49.412063,50.689161,51.989478,53.173696,53.893515,54.427574,55.449252,56.935329,58.514286,58.955465,60.000363,61.184580,62.136599,63.042177,63.901315,64.737234,65.549932,66.641270,67.732608,68.591746,69.381224,70.449342,71.354921,72.028299,73.096417,74.327075,75.093333,76.045351,76.765170,78.158367,79.551565,80.480363,81.502041,82.477279,83.220317,84.659955,85.890612,87.074830,87.864308,88.839546,89.489705,90.534603,92.531519,93.297778,94.621315,95.991293,96.757551,97.454150,99.242086,100.333424,101.285442,102.307120,102.887619,103.700317,105.047075,106.254512,107.206531,107.740590,108.321088,108.831927,110.016145,113.290159,114.335057,115.426395,117.237551,118.561088,119.466667,120.232925,120.999184,121.765442,122.996100,123.762358,124.784036,125.527075,126.432653,127.616871,128.777868,129.776327,130.681905,131.796463,132.980680,134.350658,135.952834,137.044172,137.926531,138.739229,139.993107,140.527166,141.084444,142.291882,144.613878,146.146395,147.655692,149.397188,150.767166,151.672744,152.508662,153.600000,154.296599,154.877098,155.945215,157.872472,158.615510,159.730068,160.287347,161.309025,162.887982,164.141859,165.024218,165.744036,166.997914,168.692971,169.366349,171.340045,171.990204,172.965442,174.033560,174.776599,175.403537,175.867937,176.610975,177.725533,179.141950,180.442268,181.417506,182.230204,183.321542,184.227120,185.039819,185.968617,187.965533,189.080091,189.799909,191.146667,192.168345,193.143583,193.631202,194.745760,195.860317,196.580136,197.230295,198.321633,199.389751,200.063129,201.758186,211.742766,213.995102,214.831020,216.015238,217.408435,218.546213,219.660771,220.844989,221.797007,223.515283,225.140680,226.023039,227.021497,227.857415,229.041633,229.738231,230.249070,231.038549,235.264580,236.216599,236.959637,238.213515,239.072653,239.955011,241.046349,241.975147,242.439546,244.343583,246.038639,247.524717,248.499955,249.219773,250.520091,251.611429,252.586667,253.283265,253.933424,254.676463,255.442721,256.139320,257.114558,257.996916,259.529433,261.154830,262.153288,263.198186,263.941224,265.380862,267.168798,269.026395,270.280272,271.348390,271.836009,273.182766,273.623946,274.204444,274.622404,275.040363,275.574422,280.311293,280.984671,281.588390,282.284989,283.585306,284.978503,286.371701,288.298957,288.925896,289.785034,290.504853,291.619410,292.850068,293.778866,294.336145,295.172063,296.356281,297.215420,298.190658,299.165896,300.187574,301.720091,302.393469,303.879546,305.133424,305.992562,306.573061,307.037460,307.943039,309.057596,310.241814,310.938413,311.635011,312.261950,313.213968,315.094785,315.953923,317.184580,318.392018,319.274376,320.783673,322.292971,323.662948,324.661406,325.543764,326.356463,327.494240,329.398277,331.464853,333.438549,334.947846,335.690884,337.525261,338.523719,339.266757,340.241995,341.426213,342.471111,343.399909,344.444807,345.118186,345.605805,346.302404,347.277642,348.438639,349.228118,350.342676,352.478912,354.081088,356.101224,357.378322,358.353560,359.769977,360.373696,361.766893,363.113651,363.810249,364.878367,365.807166,366.991383,367.827302,368.384580,369.174059,370.288617,371.379955,373.191111,374.282449,374.677188,375.954286,377.161723,377.765442,378.322721,378.949660,379.344399,381.503855,382.386213,383.640091,384.684989,385.311927,387.076644,388.330522,389.746939,390.791837,391.534875,392.208254,393.067392,393.903311,394.832109,396.573605,397.804263,398.593741,399.685079,400.799637,401.798095,402.657234,404.468390,405.234649,406.186667,407.278005,408.694422,409.298141,410.760998,411.782676,412.943673,414.011791,414.476190,415.219229,415.683628,416.124807,417.169705,418.098503,418.725442,419.398821,419.932880,421.418957,422.301315 \ No newline at end of file diff --git a/data/torah/labels/Beshalach-1.txt b/data/torah/labels/Beshalach-1.txt deleted file mode 100644 index bcdf7b8f8..000000000 --- a/data/torah/labels/Beshalach-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.930900,4.118285,5.528573,7.730348,8.248413,10.248719,10.751773,11.713374,13.658692,15.294151,16.085640,17.352020,17.886232,18.608808,19.481842,21.170351,22.249484,23.976367,24.420413,25.355808,27.068300,28.282227,29.439680,30.078474,31.402007,32.421836,33.976031,34.447557,36.118745,36.735648,37.872513,38.072229,38.937424,41.289164,42.066261,42.406049,43.427788,44.017806,45.341750,47.442790,48.968203,49.379097,50.090678,50.954119,52.134155,53.630788,54.436666,56.048423,56.515523,57.218474,58.211431,59.247561,60.109390,60.886487,61.663584,62.858012,64.753650,64.940729,66.710784,67.611610,68.973420,70.642740,71.750823,73.233065,74.341147,75.103854,76.341454,80.011079,81.493321,82.399934,83.882175,84.788789,85.781746,87.263987,88.285726,90.228470,91.120692,91.725101,92.507157,93.572068,94.795277,95.457249,97.172006,97.5,99.201093,100.021362,100.870413,101.992887,102.798765,103.431956,104.266616,105.187620,106.295703,108.224056,108.941980,109.105259,109.611593,110.590160,112.921452,113.166093,113.655377,115.655683,118.001365,119.411653,120.462173,121.325615,122.318573,122.932833,123.839447,124.602153,125.652674,126.972670,127.658358,128.622534,129.530096,130.335974,130.542637,131.688699,132.816366,133.607855,134.514468,135.723286,136.629899,137.133574,138.256048,139.148270,139.752679,141.019060,142.616427,142.904241,143.195241,145.175072,146.083567,148.371687,149.571351,150.442547,150.964008,151.896007,152.860778,153.882517,154.105099,154.709508,155.831982,156.732525,158.033757,159.999212,160.805091,161.870002,162.409011,163.042201,164.207847,167.301845,168.222849,168.884821,170.223155,170.516532,171.581443,173.059850,173.5,174.009635,175.146500,175.594296,176.357003,176.9,177.465085,179.019280,180.587866,180.832507,181.998153,182.534346,183.412178,183.987806,185.326140,187.412790,188.012870,188.530935,189.250470,190.214646,191.509808,192.157389,193.279863,194.575025,194.899320,196.079356,197.489644,199.317261,199.704099,200.207773,201.229512,201.934656,203.071520,205.561110,206.903648,207.578468,208.888021,210.240746,211.478346,213.219620,214.083061 diff --git a/data/torah/labels/Beshalach-2.txt b/data/torah/labels/Beshalach-2.txt deleted file mode 100644 index 7303112cf..000000000 --- a/data/torah/labels/Beshalach-2.txt +++ /dev/null @@ -1 +0,0 @@ -2.041873,3.258137,4.996391,7.011088,8.033131,8.954136,10.076609,10.279702,11.344613,11.946491,12.694807,13.515076,14.436080,15.774415,17.155921,17.680124,18.082423,19.176115,20.413715,20.859826,22.083035,23.435760,24.428718,26.285117,26.685613,27.594669,27.873380,29.563751,30.451096,32.120416,33.212300,35.054309,36.392643,37.299256,38.531033,38.841374,39.719207,39.937794,41.4,44.686106,44.973919,46.729584,48.010355,48.326303,49.189744,50.484906,51.967148,52.916934,54.312830,54.854659,55.452763,56.735488,57.483804,58.865310,60.347551,61.174182,61.879325,63.764506,65.476998,66.133534,66.881849,67.831635,69.141188,70.162927,70.940024,71.990544,72.233758,73.514530,74.063951,74.366155,75.258378,76.294368,76.587877,77.624007,78.890388,80.315066,81.538274,82.331385,82.648773,84.671283,85.177805,87.115892,89.379886,90.502361,90.772738,91.811798,92.988936,93.722862,94.902898,95.763149,96.856841,98.511770,99.547900,100.296216,100.559231,101.404299,102.411648,103.231917,105.117098,106.083999,106.624439,106.858026,107.831000,109.342023,110.392542,111.486235,113.241899 diff --git a/data/torah/labels/Beshalach-3.txt b/data/torah/labels/Beshalach-3.txt deleted file mode 100644 index b4c6768b8..000000000 --- a/data/torah/labels/Beshalach-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.796622,2.612028,3.475470,3.697021,4.756242,5.261157,6.009472,7.103165,7.886978,8.143175,8.532336,9.571710,10.910044,13.111820,14.090387,14.319064,16.018740,17.816002,18.011627,19.787527,20.396242,21.202121,22.727534,24.755431,25.238244,26.936346,27.828569,28.663229,30.231814,32.361636,33.178933,34.229453,34.578291,35.269044,36.362737,37.686680,39.125749,40.628711,41.535325,42.3,43.031957,44.168821,45.938877,48.298950,49.234344,49.466707,50.157460,51.380669,53.136333,54.402713,55.424452,57.180117,59.525799,60.504366,62.317593,63.569583,64.616794,65.630229,66.767093,67.918349,69.745967,71.875789,72.811183,73.760969,74.984178,76.466419,78.092567,80.423859,82.064398,83.417123,84.985708,86.108181,87.327530,88.497036,89.536817,90.429040,91.493951,92.760332,93.013117,94.106809,94.795955,95.704175,96.999337,97.477106,98.182250,98.425279,99.994692,101.444513,102.351127,102.610159,104.797544,105.283821,107.197783,108.651242,109.816888,110.406907,113.227482,114.263612,114.925583,115.875369,116.158616,117.151574,118.228861,118.430331,119.178647,120.617716,122.071176,123.193650,125.199295,125.586018,127.370464,128.089998,128.982221,130.291773,131.730843,132.427741,133.607777,135.388805,137.378138,139.352353,140.330920,141.349440,142.676602,143.587105,144.364202,145.270816,146.335727,147.587717,148.141092,148.623847,149.832665,151.213626,152.264147,153.300276,154.379578,155.257410,155.545224,156.523791,157.502358,158.337018,158.927036,160.164636,162.481537,163.244243,164.035731,165.100643,167.345590,168.093906,169.130036,170.583495,172.123300,173.447243,174.684842,176.123911,177.453770,178.570329,179.842843,180.732444,181.805266,182.668707,183.920697 diff --git a/data/torah/labels/Beshalach-4.txt b/data/torah/labels/Beshalach-4.txt deleted file mode 100644 index 287f2546a..000000000 --- a/data/torah/labels/Beshalach-4.txt +++ /dev/null @@ -1 +0,0 @@ -2.228924,3.207889,3.944931,4.159903,5.452837,6.216807,6.464140,7.290202,7.512717,8.678094,9.685069,10.538484,10.706526,11.862427,12.128257,13.052969,13.410652,14.777767,16.288790,16.921980,17.166622,18.519347,18.970366,20.635825,21.844643,23.355665,24.103482,24.909360,26.679415,27.949350,28.827183,30.122345,31.921181,33.518548,33.911928,34.890495,35.480513,36.588597,37.834526,39.388721,40.546800,40.720286,41.639501,42.139830,44.168917,45.305782,46.126051,47.176571,48.044611,49.296601,50.519810,50.8,51.368861,52.045224,52.6,53.786497,56.090596,57.707824,58.556875,59.607395,60.312539,61.420622,62.541864,63.296024,64.521357,66.133115,68.277327,69.409689,71.064618,72.100748,73.424692,73.890141,75.098946,75.919216,77.142424,77.978477,79.014606,79.196563,80.199768,80.949178,81.251383,81.755057,82.906312,83.594068,85.213162,85.630648,86.421980,88.249598,89.064336,89.755089,90.618530,91.697831,93.007384,93.654965,93.985951,95.151598,96.533104,97.684359,98.950740,100.418590,102.223690,102.842490,104.238387,105.015164,106.698875,107.158143,107.949631,108.813072,109.949937,111.389006,112.640996,113.827344,115.295194,115.681003,116.256630,117.479839,118.155868,119.671706,120.445431,121.798156,123.050146,124.027725,124.935327,125.684470,126.090705,127.529890,128.121222,128.581724,130.078356,130.869844,131.589379,133.834326,135.259004,135.719507,137.374436,138.971802,140.353309,141.706034,143.289010,144.570783,145.351472,146.498134,147.418223,148.671128,149.531802,150,151.460155,153.201429,154.712451,155.458943,156.455479,156.772487,158.038868,159.083301,160.542848,161.449461,162.600716,163.766362,164.989571,165.968138,167.608677,168.472118,169.767281,170.688285,171.897103,173.120311,175.350868,176.574077,177.926802,178.876588,179.855155,180.421233,181.529316,182.435930,182.795697,183.371325,184.666487,185.630663,186.422151,186.825091,188.019518,189.055648,190.552279,191.458893,192.322334,193.214557,194.293859,195.732928,196.841011,197.949095,198.999615,200.323558,201.532376,202.654850,203.878059,205.184615,206.551730,207.976408,209.142055,210.178184,211.574081,212.131539,212.851073,214.131845,215.369444,215.969480,217.106344,217.653190,218.933961,219.775060,221.027050,221.789756,223.113700,224.423253,226.178917,227.229437,228.265567,229.318913,230.554620,231.163149,231.708708,232.888745,234.004424,235.328367,235.722915,236.399278,237.881519,238.917649,239.824262,241.105034,242.097991,243.162903,244.299767,245.537366,246.458370,247.566454,248.631365,249.624322,250.833140,251.854879,253.293949,254.171781,256.575026,257.452858,258.129220,259.366820,260.703175,261.422709,262.343713,263.494969,264.336775,265.566742,266.473355,267.754127,268.326757,269.075073,270.154375,271.564663,272.082727,273.320327,273.708876,274.236817,275.608447,277.680706,279.206119,280.040779,281.695709,283.278685,285.221428,286.487809,287.739799,290.128653,291.409425,292.013834,293.136308,294.661721,296.172743,297.064966,299.233951,300.504341,301.554861,301.889241,303.387765,304.519920,305.800692,306.764868,308.347844,309.945211,311.110856,311.441113,311.931126,313.024089,314.794725,316.607952,317.600910,318.694603,319.313402,320.479048,322.421791,323.112544,324.781865,326.249715,327.803909,328.270303,329.130192,330.354894,331.528831,331.721175,332.530631,333.595543,334.703626,336.185867,337.250778,338.099829,339.351819,340.240868,341.703955,341.839960,342.560306,343.533338,344.367999,345.850240,346.833353,348.604103,350.101290,350.706626,350.951770,351.928907,352.256690,353.090179,354.500274,354.786428,355.382509,356.231560,358.073568,358.612256,360.131437,361.413757,361.741873,362.386790,363.553773,364.929758,365.980279,367.160315,369.002324,369.699621,370.431281,371.606027,372.088026,372.764389,373.541486,374.097125,374.490539,374.907870,375.713748,377.181599,379.095561,380.606583,380.992214,381.743447,382.549326,382.984528,384.463912,385.802246,386.040981,387.652738,388.655776,389.476045,390.339486,391.634649,391.953614,392.917791,394.328079,395.551287,396.716933,397.563053,398.746021,399.265454,400.315975,400.936797,402.102442,403.901279,404.122483,404.844695,406.298154,408.053819,409.322417,410.960739,412.262830,413.068709,414.320699,415.630251,416.968586,418.350092,418.743486,419.674036,420.257611,422.257917,422.975046,423.557019,424.621931,425.014792,425.950187,427.173396,428.713200,429.450707,430.904166 diff --git a/data/torah/labels/Beshalach-5.txt b/data/torah/labels/Beshalach-5.txt deleted file mode 100644 index a9102c3d4..000000000 --- a/data/torah/labels/Beshalach-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.148940,3.555388,4.644548,6.328259,7.321217,8.803458,9.545492,10.351370,11.531407,12.625099,13.586631,14.150159,14.457151,15.517628,16.904688,18.155326,20.197175,20.426978,21.088950,21.470889,22.665317,23.088605,23.713648,24.649043,25.397359,25.813845,26.648505,27.425602,28.677592,30.106571,30.688777,31.408312,32.545176,33.682041,35.034766,35.754300,37.049463,39.467098,39.716114,40.958358,41.693709,43.025658,43.512141,44.174113,44.513746,45.413302,46.776915,47.940544,49.523520,50.553622,52.352735,52.861980,53.537864,54.327223,54.705272,55.770184,56.907048,58.202210,59.500470,59.833554,60.610652,61.920205,63.090293,63.906120,65.316407,65.689010,66.634554,67.598730,67.833611,68.855350,69.776354,71.647144,72.059984,72.347798,73.153677,73.852838,75.571313,77.173316,77.979194,78.238227,79.389482,80.483175,81.282786,82.793809,83.729204,84.014799,85.309961,86.289558,86.985016,88.208225,88.891748,89.582501,90.805710,92.359904,94.125821,95.032435,96.183690,96.443819,97.393605,98.890236,99.724896,100.904933,102.138879,102.756431,103.266573,104.230749,105.497130,106.648385,107.361653,107.894108,108.915847,109.462693,110.743465,111.750813,112.398394,113.492087,113.961071,114.232910,114.896466,116.177237,118.285887,120.890602,122.142592,123.711177,124.426998,125.304830,125.981192,127.190010,129.895460,131.003543,131.291358,132.097236,133.147756,134.362262,134.633557,136.194264,136.529050,137.524987,138.977841,139.745320,140.179826,140.971314,142.237695,143.489685,144.971926,145.993665,147.587878,148.226094,149.909805,151.133014,152.759162,153.881635,154.845812,155.939504,156.918071,157.867857,158.184452,160.155976,160.749591,161.339609,162.375739,163.411868,165.068537,165.778900,166.277885,167.112544,168.580395,169.199195,169.477090,170.801034,171.921192,172.655117,172.842196,173.979060,175.802525,176.268934,176.542357,177.391408,178.369975,179.478058,180.787611,181.636662,182.874261,183.967954,184.960911,185.637273,187.407329,190.040825,191.033782,192.199429,192.462160,193,193.543000,193.994234,195.246224,196.570168,196.901154,198.081191,199.419525,200.247604,201.414885,203.060370 diff --git a/data/torah/labels/Beshalach-6.txt b/data/torah/labels/Beshalach-6.txt deleted file mode 100644 index 402aaf252..000000000 --- a/data/torah/labels/Beshalach-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.011053,2.810974,3.859322,4.127236,4.680398,5.730919,7.831960,8.335634,10.508628,11.069865,13.012608,13.933612,15.502198,17.027611,17.876662,19.013526,20.265516,21.143349,22.611199,23.328084,24.292260,26.738677,28.192137,28.836502,29.599209,31.196575,33.139319,34.002760,35.222286,36.272807,37.496016,37.735218,39.054299,40.997042,42.263423,43.313943,44.306901,45.189340,46.661496,47.942268,48.943531,49.985746,52.069755,53.283793,53.758685,54.967504,55.658256,56.939028,57.701735,58.781750,59.053056,60.018636,61.443314,61.831480,63.558363,65.731358,66.450892,66.680134,67.534407,68.556146,69.304462,70.700359,71.977376,72.787009,73.184686,73.903647,74.851852,75.500958,76.549954,77.447235,78.540928,79.502716,80.821939,82.512758,83.505716,85.016738,85.865790,86.959482,87.645275,88.651529,89.774003,91.083555,92.018951,92.839220,93.659489,94.796354,95.653026,97.408690,98.636543,100.574641,102.040192,102.997781,104.044462,105.339624,107.259684,107.849702,108.657894,109.965134,111.821533,113.053045,114.598936,116.632324,117.639672,118.459942,119.265820,120.474638,121.784191,122.374210,123.583028,124.278314,124.711130,125.416273,126.524356,127.761956,128.611006,129.747871,131.719396,132.188075,132.743049,133.468792,133.675662,135.032190,136.426310,137.304374,137.456984,139.339167,140.672709,141.458849,142.221556,142.466198,143.387202,145.081713,146.017108,147.297879,148.391571,149.197450,150.449440,151.639772,152.546385,153.553733,154.589863,155.525258,156.201621,157.367266,158.158755,158.979024,160.533218,163.123543,164.102110,165.900946,166.866512,167.656330,168.634897,169.469557,170.289827,171.513035,172.994627,173.307184,174.418981,175.523351,176.774245,177.939891,179.248239,180.931950,181.809782,182.421689,183.400256,184.565902,186.494255,187.078061,188.301270,189.596432,190.805250,191.674017,192.369238,193.975415,195.805544,196.683376,197.183190,198.208789,199.115403,200.148317,200.577525,202.045375,203.740334,205.110592,206.376973,206.755218,208.031903,209.649235,210.350017,210.546713,211.476852,212.786405,213.577893,214.671585,215.937966,216.815798,218.039007,218.319619,219.028405,220.010532,221.058263,221.992419,223.242183,224.235141,224.651213,225.256880,226.105930,227.415483,229.717994,230.277701,231.285049,232.551430,233.380472,234.335875,235.645428,237.429874,239.171147,240.250449,240.955593,241.390769,243.099806,244.654001,245.704521,246.884558,247.885147,248.098800,248.885067,249.878024,250.698131,251.950121,253.094215,253.907255,254.074306,255.223963,255.712314,256.468578,257.599432,258.476527,259.541438,260.937335,262.813738,263.091557,265.350896,266.156774,266.825670,269.049373,269.657529,272.057027,272.6,273.485523,274.938983,275.773642,276.939289,277.866444,278.945746,280.902880,281.809493,283.579548,284.117383,284.978240,286.161003,287.502548,287.923538,289.477733,291.175835,292.068057,292.759291,294.255924,296.155495,296.449227,298.147328,298.556887,299.377157,300.111476,302.010654,302.874095,303.492895,304.385117,305.734284,306.812724,308.030927,309.458259,310.983673,311.674426,312.739336,313.444480,314.394266,315.372833,316.236274,317.027763,317.919985,319.215147,320.927640,322.942336,323.949685,324.166109,325.964381,326.842213,327.722240,328.456165,329.693765,330.663340,331.636508,332.560649,333.884592,335.611475,336.992981,337.216662,338.900373,339.821377,340.987023,341.908028,342.699515,343.174408,343.535140,344.398581,345.132507,346.111074,347.003258,347.871436,348.802133,350.111685,351.996866,354.118247,354.816859,355.752836,356.083822,356.976045,358.861225,360.415420,361.106173,361.955224,363.408683,364.761408,366.589026,367.541092,367.768311,368.631549,369.941102,371.034794,371.384660,372.248102,372.655203,373.163900,374.277189,374.849387,375.644304,376.752388,377.240267,379.054898,379.616135,380.335669,380.839344,382.019380,384.796783,385.717788,387.387108 diff --git a/data/torah/labels/Beshalach-7.txt b/data/torah/labels/Beshalach-7.txt deleted file mode 100644 index 34124d851..000000000 --- a/data/torah/labels/Beshalach-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.018839,5.527263,5.820076,6.478954,6.938623,8.536822,9.242157,10.479756,12.192249,12.538756,12.998127,14.222467,15.618364,16.899135,17.604279,18.309423,18.957004,20.352901,21.360250,22.166128,22.369277,23.446899,25.426460,26.063030,26.540459,27.206454,28.602351,29.580918,30.372405,31.379754,31.808083,32.818823,33.976971,34.324811,35.366916,35.647112,36.999837,38.498683,38.987967,39.721892,40.642896,41.578291,42.355388,42.634144,43.655883,45.598627,46.447677,47.037695,48.635062,49.843880,50.937573,52.534939,53.086000,53.676019,54.021395,54.870446,56.841970,58.439337,59.173263,59.461076,60.468424,61.403819,61.909351,62.959871,63.722578,64.758708,65.337716,66.057251,67.654617,68.863435,70.374458,70.570702,72.174676,73.253977,74.131809,75.239892,76.376757,77.268980,78.319500,79.513928,81.715703,82.711019,83.557712,83.989432,84.282592,85.289940,85.923131,87.031213,88.412720,89.607147,91.146951,92.758708,93.650931,94.310856,96.411897,98.584892,99.908835,101.606936,103.709907,105.019459,105.998026,107.019765,108.099067,108.861773,109.381065,110.420040,111.538442,112.186023,113.596311,114.934645,115.697352,116.762262,117.913518,119.280633,119.704738,121.201370,122.381406,124.252196,125.089570,126.053746,126.248599,127.241556,128.157633,129.601629,131.357293,132.638065,132.918857,133.818102,135.344063,136.444576,137.780304,138.053727,139.017903,140.456972,141.550664,142.183855,142.413678,143.565361,144.270077,144.917658,146.011351,147.317166,148.266952,149.533332,151.533638,152.440252,153.274912,153.584699,154.282260,155.585006,156.274140,157.353442,158.907637,160.476698,162.304316,163.398008,163.869259,164.362184,165.427096,166.707867,167.988639,169.299858,170.264034,171.314555,172.523373,172.929027,174.350990,176.567157,177.646459,178.610635,180.208001,181.272912,182.251479,183.604204,185.000101,186.467952,187.604816,188.338589,189.374871,190.261633,191.081903,192.204376,193.360678,194.887128,196.009601,196.988168,198.240158,199.434585,200.441934,202.039301,203.118603,204.917439,205.924787,206.788228,208.155344,209.273463,210.520811,211.978912,213.259684,213.561888,213.853714,215.088171,217.692886,219.448550,219.835790,220.584106,221.042418,221.783699,222.167784,223.359081,224.432158,226.039487,226.240195,227.779999,228.643441,229.204678,230.154463,231.233765,232.284285,233.392368,234.558015,235.127882,235.761073,236.768420,237.167206,238.001866,238.951652,240.045344,241.527585,242.474157,243.395162,244.618370,245.481812,246.258909,247.544228,248.921187,250.921492,251.352893,252.058037,252.415328,253.163644,253.911960,254.976871,255.955438,257.106693,259.017585 diff --git a/data/torah/labels/Beshalach-H.txt b/data/torah/labels/Beshalach-H.txt deleted file mode 100644 index 09be8806c..000000000 --- a/data/torah/labels/Beshalach-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.970373,4.538958,5.908473,7.244409,8.438836,10.568658,12.540182,13.849735,14,14.986600,15.533446,16.958124,20.109686,21.571543,22.271477,24.113485,26.718200,28.301176,30.085622,31.176041,31.541505,32.409985,33.295745,35.497521,36.920930,38.859209,39.872291,41.023546,43.225321,46.567846,48.084853,49.620401,51.063726,52.885979,55.709142,57.509288,59.263643,60.012450,61.912021,62.012264,63.438830,64.129927,66.882317,67.900289,69.555218,71.210147,72.361403,74.117067,76.505921,77.919261,78.984173,80.121037,81.200339,82.437938,83.551981,85.302987,87.011855,89.150653,89.666455,90.461977,92.976510,93.702194,95.167733,95.764919,97.074471,98.254508,98.870937,100.097577,100.584488,102.542934,104.183472,106.202687,107.875244,108.968937,110.249707,110.826568,111.862698,112.913218,115.561105,116.207870,116.970576,118.970883,120.159229,120.613367,121.949755,124.813503,126.799418,127.763594,130.008542,131.649081,133.822075,134.368921,136.383618,139.880556,140.353655,141.461738,142.280887,143.604680,144.755935,146.482818,146.936851,148.246404,149.439279,150.748832,151.335551,153.468672,155.526541,157.440661,158.606149,158.972418,159.936594,162.296667,164.182499,166.055769,166.696643,167.703238,167.984147,169.196742,170.573201,172.146296,173.513540,174.580849,175.793444,177.710707,178.804399,179.639059,181.437896,182.600828,183.776690,185.173495,186.484408,187.620324,188.627672,189.649411,191.688265,193.290256,194.700544,195.288594,196.007212,197.590188,198.833667,199.200265,201.187703,203.525032,205.827543,206.748547,208.648118,209.713029,209.931025,210.970337,211.550939,213.042596,214.409412,216.510453,216.953774,217.274479,219.788319,220.751807,221.860579,223.155052,224.608512,225.228912,225.486413,226.319605,227.154266,228.837976,230.238473,231.235703,231.750705,232.426571,234.283576,236.758169,237.794299,238.103952,239.903974,242.465517,243.268013,243.736196,244.940716,247.224161,248.160528,249.070355,249.391850,250.618490,252.322651,253.324589,254.459684,255.524595,257.927840,260.028881,261.093792,262.719940,263.971930,266.116143,268.102058,268.965500,270.821899,272.056600,275.484483,276.111067,277.527961,278.054028,278.5,280.247801,280.961446,281.275129,283.327409,284.031950,284.758412,285.694346,287.647102,289.896428,291.781608,292.731394,294.055337,295.192202,297.163726,301.380199,303.754662,304.949090,306.114736,307.985526,309.438985,310.359989,311.482463,313.655458,316.389689,316.749373,317.952604,319.065455,319.489927,320.425322,321.403889,322.382456,322.999619,324.605487,326.589526,328.051316,329.455866,330.027049,331.126955,332.191866,333.299950,334.278516,336.465902,337.530812,339.919667,341.085313,342.538773,343.065953,344.447093,347.775658,349.070821,349.723518,351.652433,353.172167,355.604195,356.597152,358.899662,360.140595,362.280193,364.278277,366.235411,367.228369,368.264498,368.745804,370.610181,371.991687,373.070989,374.754700,376.779828,379.214381,381.482264,383.207984,384.261503,384.720170,385.196898,386.045949,386.765484,389.082385,391.701491,392.349072,393.773750,395.860400,397.659236,399.501244,401.415206,402.508899,403.686319,404.468292,406.345600,408.789516,409.292500,409.767393,411.767699,414.775353,417.106645,418.040817,418.876017,419.480426,420.559728,422.661786,424.342929,425.566138,426.369797,429.235764,429.661125,430.508537,432.401716,434.704226,435.171642,436.359156,438.863136,440.134384,441.117137,442.167657,443.614085,443.844336,444.981201,446.420270,447.830558,450.003552,450.858499,451.664377,452.858805,454.657641,456.485258,458.845332,459.780727,460.151591,462.447998,463.806826,464.779550,466.195681,468.080242,469.086836,470.541669,472.023910,472.570757,473.376635,474.060970,474.823677,477.383043,479.762018,481.042789,482.208435,483.575550,485.230480,486.180265,487.748850,490.209659,491.763853,492.828764,494.454912,495.606168,496.368874,497.520130,497.955014,499.649952,500.979479,501.878390,503.404667,506.140153,507.348971,507.799980,509.210267,510.937151,512.534517,513.455521,514.275790,514.720656,516.376832,517.571259,519.355704,520.535741,521.413573,522.190671,522.675090,524.709042,526.810082,528.119635,529.371625,529.763686,531.634476,532.728168,533.490875,534.944334,536.383404,537.390752,539.016900,540.556704,542.384321,543.733972,545.391976,547.142346,548.509441,550.028058,551.855676,554.970370,556.590213,558.397471,559.741774,562.660742,564.128592,565.020814,566.718916,569.884868,571.511016,572.662271,574.576233,576.144818,577.425590,579.066129,580.332509,580.951309,581.929876,584.246777,585.795554,586.650366,587.456245,588.621891,589.934294,591.025136,592.147610,594.277432,595.759673,596.997272,600.105661,601.442239,602.149140,603.962367,606.895579,608.233913,608.455624,609.597991,611.371083,612.795762,614.134096,616.163183,618.249833,619.631340,622.682166,623.991719,626.351792,628.755037,630.697781,632.338319,634.410579,635.187676,636.367713,637.461405,638.999898,639.687739,641.921362,643.821472,645.260541,646.555704,647.462317,649.045293,651.175115,652.657356,653.414526,654.522610,655.760209,657.474409,658.249799,660.480356,662.092113,663.977293,665.200502,667.100073,669.273067,670.625792,672.611708,675.230813,676.525975,678.627016,680.832071,684.081088,684.089,685.376250,685.746376,686.455552,688.908232,690.767825,696.620693,697.628041,699.182236,700.088850,701.283277,702.808690,704.262150,705.312670,706.636614,709.058838,710.842745,712.037172,713.375506,713.918192,715.678017,716.658941,717.695070,718.961451,720.026363,720.875413,721.690919,723.307440,724.476113,726.396674,728.123557,729.361157,731.662725,733.054330,733.5,734.635689,735.721874,737.285192,738.968903,741.976557,742.15,743.271719,744.912258,747.051909,749.718749,751.100255,752.568106,754.009112,755.277888,758.099392,759.241544,761.831868,763.429235,766.235420,768.630475,770.020171,771.142645,773.157342,775.056580,776.567602,777.047675,778.314056,780.112892,781.408054,782.516138,784.033703,784.991336,787.312042,789.369911,790.621901,791.917063,792.751275,793.917369,795.780421,798.364092,799.249659,800.680993,802.091281,802.969113,805.012591,806.912162,808.264887,809.459314,810.8,811.646699,814.755089,815.978297,817.115162,818.352761,821.360416,822.260865,823.428776,825.429082,828.364783,829.803852,831.395120,832.579624,833.633035,834.810915,836.465843,839.473498,840.524019,841.348695,842.935837,844.164863,846.539327,848.291853,849.246947,850.914097,852.545136,853.474641,855.014965,855.968051,857.234432,858.821294,860.085389,861.447802,862.182850,862.705101,864.647844,866.026634,867.157198,867.618458,869.331251,870.017778,871.864013,874.018389,875.702100,877.846313,879.270992,879.640669,881.400814,882.518807,883.454202,884.821318,885.771103,886.749670,887.728237,889.858059,891.416212,892.563260,894.002578,894.894801,895.988494,896.981451,898.679552,901.010844,902.032584,903.975327,906.047586,908.537175,909.861119,911.185063,912.509006,913.608097,914.728305,916.915690,917.742953,918.016376,918.894208,920.577919,922.103332,923.168243,924.189982,926.003209,927.658139,929.010864,932.110699,933.015586,933.693159,935.721036,936.998532,938.000444,939.289928,940.613871,941.534875,942.499051,944.499357,945.852082,946.830649,947.938732,949.478536,951.464451,953.335241,954.745529,956.184598,957.247457,959.221034,960.554664,961.806654,963.547928,964.742355,966.382894,967.721228,969.721534,971.290119,972.527719,973.446598,974.470462,976.571503,977.622023,978.586199,980.025269,981.291649,983.061704,984.112225,984.946884,985.666419,987.449958,990.420094,991.715256,993.744343,995.830993,996.622482,997.860081,998.723522,1000.853344,1003.803599,1004.882738,1005.817196,1006.925279,1008.796069,1011.084189,1012.134709,1013.962327,1015.689209,1017.459265,1019.718603,1020.307058,1022.424053,1023.517745,1024.697782,1026.151241,1028.165938,1030.468449,1031.979471,1034.253200,1035.411987,1037.124479,1038.720705,1039.772366,1040.826257,1041.806033,1044.236850,1045.330542,1046.309109,1048.410150,1049.746420,1051.158772,1052.453934,1054.180817,1056.923670,1058.128000,1058.375037,1059.461223,1060.978459,1063.266578,1064.245145,1065.425182,1068.003926,1069.118570,1070.255434,1071.305955 diff --git a/data/torah/labels/Bo-1.txt b/data/torah/labels/Bo-1.txt deleted file mode 100644 index 6e3e1d40e..000000000 --- a/data/torah/labels/Bo-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.632947,2.697051,3.877087,4.147841,5.546407,6.661534,6.980889,8.304832,8.738580,10.564171,11.793556,12.054542,13.085824,13.517545,14.265860,15.474679,17.287905,18.842100,19.934283,20.635218,22.000493,25.727681,27.483346,28.346787,29.915372,30.651168,32.320488,33.284664,34.133715,35.299361,36.565742,37.149554,38.137252,38.640926,39.598976,40.393093,41.850050,42.206321,42.587540,44.170516,45.614693,46.423463,48.617240,49.077741,50.934140,52.214912,53.682763,54.098655,54.674283,55.969445,56.968298,58.162199,58.624354,59.627832,60.692743,61.843998,63.326240,64.110171,64.858487,66.542198,68.269080,68.901553,69.636196,70.324576,71.341317,71.549287,72.621900,73.701202,74.638022,76.205182,77.399610,78.925023,80.320920,80.579952,81.357050,82.335617,83.157078,84.062499,84.868378,85.098629,86.595261,89.041678,89.504006,90.088764,91.973944,93.082028,93.988641,94.295388,95.360300,96.468383,96.684243,97,98.036968,99.159442,100.138008,100.532864,102.151646,103.168951,105.039741,106.262950,107,108.637260,109.817297,110.140013,111.924459,112.989370,113.807006,114.987043,116.195861,117.548586,119.462548,120.714538,121.032442,122.815579,123.546940,124.781833,125.559794,126.671222,127.818192,128.983838,129.803916,131.344433,133.359429,134.093354,135.647549,137.388822,137.976356,139.116339,140.163890,140.3,141.017825,142.298596,143.421070,143.752056,145.349422,146.673366,146.980675,147.935795,149.378816,150.544462,151.724498,152.210729,153.023107,154.231925,156.678343,157.071058,157.804795,158.078218,159.099957,159.443453,160.366338,161.618328,162.812755,163.733759,164.467685,164.773640,165.647721,166.971665,167.654970,168.345723,169.957480,171.637769,172.918541,174.199312,175.465693,176.631339,177.955282,179.984370,181.308313,182.646647,183.668386,184.519568,184.879334,185.616828,186.649390,187.973333,189.437309,190.223536,190.712820,191.475526,192.641172,194.727822,195.604372,196.582939,197.036075,198.345628,200.604967,201.205013,202.026522,202.531699,204.015560,204.953090,206.246637,206.951892,207.441175,208.635602,209.657342,209.930765,211.038848,211.520612,212.250892,213.027990,214.395105,215.675877,216.755179,218.237263,219.126668 diff --git a/data/torah/labels/Bo-2.txt b/data/torah/labels/Bo-2.txt deleted file mode 100644 index e37f0c854..000000000 --- a/data/torah/labels/Bo-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.714772,2.844606,4.489318,4.735862,6.440965,7.491485,9.218368,9.5,10.104645,11.069739,12.321729,13.516156,13.791773,14.273823,15.591180,16.768523,17.048369,17.324351,18.132462,19.139809,20.679613,21.212069,21.874041,22.665529,24.047035,25.143860,26.049093,26.279344,28.409166,28.860427,29.358951,31.229741,33.326506,34.261901,34.8,35.585844,36.607583,37.186565,37.747802,38.539290,39.036899,40.136657,41.425754,42.404321,43.440451,44.692441,45.685399,46.001994,47.325937,49.254289,50.981172,51.873395,52.090807,52.867904,54.019159,56.249716,57.516097,58.206850,59.430059,60.624487,61.646225,64.898521,65.1,66.048904,66.538187,67.430410,68.380195,69.646576,70,70.653924,71.661273,73.949393,74.510629,75.143820,75.380064,77.446330,78.692027,80.562817,83.081188,83.394600,83.762577,84.501495,86.084471,87.178164,87.497542,88.256830,89.134662,90.084447,90.947889,92.286223,92.953857,93.940817,94.1,95.544181,97.012031,98.176231,99.357714,99.842384,100.336281,101.861694,103.756884,104.821796,105.944270,106.865274,108.318733,110.333430,112.017141,112.938145,113.974275,115.470907,117.557557,118.613667,119.187981,120.224111,120.900473,121.936603,123.289328,124.181551,125.577448,126.843828,128.023865,128.829743,129.042132,129.808310,130.988347,132.427416,133.233295,134.283815,135.550196,135.759158,137.284571,138.918631,139.731145,140.939963,142.004874,142.954659,144.321775,144.508854,145.271561,146.192565,147.804322,148.670018,149.574377,150.337084,151.258088,152.222264,153.186440,154.352086,154.848350,156.266048,157.578159,158.556726,158.844539,159.391385,160.528250,161.305347,162.096836,162.427821,163.075403,164.600816,165.665726,167.257930,167.473637,168.984813,170.060514,170.826821,171.045136,172.239564,173.091272,173.937665,174.271308,174.760592,175.825503,176.890414,178.056060,179.380004,180.948589,181.337138,182.272532,182.498133,183.812336,185.438484,185.949756,187.798558,188.328074,188.759795,189.709580,190.544241,191.781840,193,194.631197,195.395722,195.719542,197.149567,197.865446,199.174998,199.793798,201.045788,201.842677,202.903908,203.696237,205.005790,206.600618,207.579639,208.529425 diff --git a/data/torah/labels/Bo-3.txt b/data/torah/labels/Bo-3.txt deleted file mode 100644 index 42b3b4478..000000000 --- a/data/torah/labels/Bo-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.071814,2.146150,3.801058,4.103262,6.060396,7.600602,8.371853,9.235295,9.436765,10.717536,12.170995,13.005656,14.315209,15.336947,15.783428,16.848338,17.452747,18.733519,19.956727,21.122374,21.4,23.367322,24.058075,25.110326,26.045909,27.168383,28.535498,29.226252,30.535805,31.549131,33.391139,34.340925,36.010245,36.715389,37.693956,38.802039,39.780606,40.687695,41.728591,42.805557,43.135346,43.878542,45.101751,46.405779,46.608434,48.233397,49.076698,50.003451,50.299144,51.335273,51.869854,52.704514,53.898942,54.949462,55.942420,56.259015,56.834642,58.101023,58.806167,59.554483,61.094287,61.969508,62.358057,63.351015,64.142502,65.495227,66.632092,68.085552,68.651087,69.572091,70.493095,71.917773,73.457578,74.911037,76.019121,76.824999,77.789175,78.818024,79.926107,80.588078,81.667380,82,82.602775,83.178403,83.667686,85.178708,86.704122,88.243926,88.496767,89.970808,90.846851,91.438479,92.330701,93.179753,93.469364,94.230273,94.525719,95.671128,96.505789,98.304625,99.240019,100.132128,101.283498,103.056444,105.229438,107.028274,107.891716,108.740767,109.877631,110.733637,111.352436,112.158315,113.323960,115.755987,117.281401,118.389483,119.886116,121.195669,122.087891,123.354272,123.945801,124.678216,125.226572,126.305874,128.092036,129.599854,129.988403,130.477686,131.341128,132.175787,133.240699,135.859805,136.795199,138.320612,139.227226,139.989933,140.910937,142.004629,142.915947,143.434012,144.514489,145.760445 diff --git a/data/torah/labels/Bo-4.txt b/data/torah/labels/Bo-4.txt deleted file mode 100644 index a510b7d0e..000000000 --- a/data/torah/labels/Bo-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.593212,2.676310,3.951505,4.498351,5.239309,6.577643,8.045493,9.225530,9.990519,10.737213,11.276269,12.564170,13.584231,13.859749,15.730538,16.536417,18.479161,19.457727,20.306778,21.414861,21.710013,22.718112,23.610335,24.473776,25.711376,26.833850,27.531826,28.805374,29.855894,30.388350,31.852266,34.748730,35.425092,36.412287,36.999260,37.526133,38.771844,39.736020,40.628909,41.311715,42.457709,43.765522,44.067727,45.334108,47.118553,48.154683,49.752050,50.347469,51.067004,51.757757,52.851449,53.887579,54.374838,55.600071,56.749302,57.842994,58.940868,59.874444,60.953745,61.543763,62.507940,63.069177,64.465074,65.817799,65.968571,67.849280,68.642748,70.110599,71.379104,72.033958,73.600648,74.291401,75.220383,75.605689,76.483521,76.941412,78.179011,79.073641,79.648634,80.974314,82.039739,82.471460,83.298289,83.960261,85.068344,86.043980,86.821077,87.091611,88.159412,88.461214,89.151533,90.072537,91.295746,93.224099,93.855775,94.879028,95.416333,96.769058,98.423988,100.122089,101.964098,102.327013,102.629217,103.463878,104.586351,105.248323,106.313234,107.502592,108.460442,108.705084,109.381446,110.388795,110.834067,111.525659,111.784404,112.260444,113.382918,115.152973,116.163713,117.171061,117.458875,118.307926,118.544576,119.678591,120.565040,121.507391,122.658060,124.543240,126.011091,127.119174,127.736492,129.030229,129.795842,130.280041,131.332143,132.625642,134.021539,135.993064,136.396982,136.670406,137.359654,138.424327,139.374113,140.813182,141.518326,142.683972,143.907180,145.461375,146.972397,147.585051,147.987990,148.908994,149.513403,150.592705,151.287759,152.208763,154.324195,155.086901,157.461365,159.044341,160.296331,162.454935,163.375939,163.729091,164.580025,165.639203,166.991928,167.898542,168.862718,170.028364,171.168497,171.444014,172.629939,173.546361,175.086165,176.007169,176.291532,177.291449,178.319983,179.341050,179.837328,180.815302,181.171708,182.063930,183.373483,184.269573,185.186710,186.467481,187.546783,188.406335,189.820513,190.735649,191.656653,192.692783,194.146242,195.686046,197.225850,198.002948,198.497233,199.605316,200.154255,201.535761,203.737537,203.982645,204.975602,207.047862,207.493973,207.944148,209.120121,209.540248,210.722581,211.649664,213.330529,213.955848,214.664389,215.470978,216.720635,217.742375,217.991716,219.027846,219.891287,220.956199,221.452236,222.136235,223.466932,223.888249,224.782726,226.383883,226.835490,227.583805,228.418466,229.238735,230.274865,231.397338,232.634938,233.627895,234.055846,234.417825,235.149538,236.056152,236.325024,237.188976,237.616229,238.850070,239.561461,240.266604,241.130046,241.474589,242.525109,243.921006,245.316903,245.843893,246.669628,247.225399,248.765203,251.959937,252.598014,254.384596,255.895618,257.147608,258.457161,259.996965,261.470490,262.931777,264.111814,264.874521,266.126511,266.996820,267.539870,269.011282,270.565477,271.086972,273.349704,274.294983,275.949913,277.245075,277.542171,278.332985,279.151552,280.353450,281.945722,282.343354,283.552173,284.286567,285.299411,286.925996,287.928195,289.084162,289.723432,291.162501,293.151057,293.810388,295.335801,297.186103,297.934419,299.200800,299.888813,300.852989,301.860338,303.093146,303.352178,304.489043,306.158363,308.259404,311.9,312.397380,312.847405,313.595721,314.790148,316.200436,316.891190,318.387821,320.344955,321.021318,321.683290,322.647466,324.216051,325.410610,326.487421,327.019877,328.415773,330.790238,331.597093,332.489316,334.129855,335.180375,336.259677,337.511667,338.677313,339.583927,340.562493,341.656186,342.637695,343.501137,345.098503,346.796605,347.3,348.192502,349.732306,352.250677,353.301890,354.056487,355.431712,356.323934,357.532752,357.919194,358.313039,360.185568,361.567075,362.531251,362.992851,364.085446,365.135966,366.410870,367.093478,367.827404,368.647673,369.899663,370.313191,371.378102,371.659825,372.710345,373.732084,374.581135,375.163516,376.242818,376.664927,377.491481,378.070468,379.219628,380.106905,381.177032,383.997338,384.463837,386.708784,388.306151,389.443015,390.522317,391.486494,392.537014,392.820659,394.148772,395.156119,396.408110,398.696229,399.185522,400.046552,401.643918,403.370801,404.045574,405.350734,409.735063,411.688597,412.336178,412.883024,413.717684,415.012846,416.250446,417.229013,420.164714,420.898638,422.452834,424.064590,425.129502,426.611743,427.705435,428.698393,430.842606,431.284090,432.377783,433.831242,435.466040,435.869334,436.647972,438.446729,440.763630,441.713415,442.548076,443.627377,444.735461,445.843543,446.606250,447.872631,448.438233,449.469998,450.208289,451.431497,452.600059,454.720748,456.390068 diff --git a/data/torah/labels/Bo-5.txt b/data/torah/labels/Bo-5.txt deleted file mode 100644 index 5269e0683..000000000 --- a/data/torah/labels/Bo-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.637739,2.923274,4.664548,5.199249,5.933175,7.170774,8.034215,9.257425,11.099433,11.968368,12.946935,14.328442,16.186489,17.102210,18.325419,20.843789,21.851138,23.563630,26.168345,26.962411,27.416468,29.100178,30.452903,30.912470,31.934209,32.550790,33.385451,34.493533,34.955380,35.761259,36.624700,37.775955,39.805043,40.553358,42.294632,42.856942,43.533305,44.324793,44.605785,45.591174,46.802116,49.119018,49.896115,50.131899,52.155453,53.119630,53.357140,54.045851,54.319274,55.427357,56.492269,57.139850,58.449403,59.672611,60.507271,60.731989,61.912569,62.805350,63.596838,65.107860,66.258043,66.502684,67.452470,68.690069,70.273045,70.589640,71.424300,72.417258,73.031145,73.606772,74.844371,75.395545,76.815896,79.212983,79.601156,80.445144,80.666189,82.273786,83.017299,84.575256,86.086278,87.309487,88.431961,89.324183,90.849597,91.123020,91.957680,93.224061,95.756822,96.239782,96.941423,97.862428,99.071246,100.697394,101.661570,102.525011,103.805783,107.964693,108.692891,109.527551,110.822713,112.794238,113.959884,116.585928,117.270877,118.007646,118.482539,119.547450,120.813830,121.868739,122.117065,123.152254,123.699101,124.729410,125.668849,126.650559,127.502514,129.584893,131.007143,132.316696,133.309653,134.619206,135.655335,136.866765,138.453824,138.841095,139.629340,141.255489,142.036293 diff --git a/data/torah/labels/Bo-6.txt b/data/torah/labels/Bo-6.txt deleted file mode 100644 index c5b97c291..000000000 --- a/data/torah/labels/Bo-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.289387,4.501169,5.810831,7.480151,10.214383,11.451982,11.663127,13.538632,14.135444,16.045242,16.980636,17.844078,18.966551,19.323984,20.366126,21.230851,22.137465,23.216767,24.353631,25.044384,26.109296,27.174207,27.650037,28.957570,30.151997,31.619848,33.202824,33.995188,34.296468,35.317988,35.682295,36.670712,38.552056,39.401107,40.422845,41.646055,42.041210,42.803916,43.638577,44.512869,44.786292,45.448264,46.772208,49.056803,49.805119,51.431267,53.043024,54.467703,55.259190,56.065069,56.942901,57.993422,58.365526,59.144677,59.573530,60.377748,61.577640,63.505993,64.252523,64.468712,65.505171,67.332788,67.971318,68.877931,69.147267,70.345217,71.798677,72.762853,73.870937,75.194880,76.580847,76.853205,78.133977,79.413480,80.220627,80.438444,81.460183,82.611438,83.719522,84.042332,84.934556,85.451727,86.372731,87.034703,88.099615,89.437949,90.833845,91.368461,92.692404,93.296813,94.289771,96.736188,97.628411,98.822839,99.136582,100.592893,101.863891,102.495828,103.299608,104.053499,105.173248,106.576849,107.728104,108.327392,109.843535,110.688812,111.451518,112.890587,115.207489,116.099711,116.445088,117.019304,118.549258,119.391842,120.390562,121.844021,123.239918,123.513341,125.024364,127.528344,127.929904,129.556052,130.894386,132.247111,132.937864,133.513491,134.621575,136.132597,137.327024,137.931433,139.154642,139.838111,140.334679,140.960585,141.924761,142.960891,144.256053,145.493652,146.616126,147.263707,148.400572,149.421760,149.695183,151.364504,152.328680,153.868484,155.595367,156.458808,157.566891,158,158.703756,159.653541,160.209780,161.265299,163.107307,163.825085,164.803651,166.415408,167.136680,167.985731,168.219975,168.671880,169.990030,171.716913,172.767433,173.961860,174.681395,175.631181,176.969515,178.293458,179.387151,180.250592,180.955736,182.106991,184.164860,185.258553,186.438589,187.489110,188.352551,189.129648,190.295294,192.209256,193.461246,194.367859,195.418380,197.375514,197.807234,198.411643,199.462164,200.196089,201.505642,202.292064,203.228884,203.835642,204.958115,206.454747,207.275016,208.584569,209,209.768457,210.468448,211.660965,213.589318,214.114006,214.660852,215.653810,217.323129,218.719026,219.553935,219.764582,220.727364,221.878620,222.785233,223.605502,224.727976,225.291999,225.637376,226.543989,226.826760,227.430981,228.345628,229.000255,229.547101,230.324199,231.014607,231.864003,233.257001,234.188278,235.082959,235.701759,236.651544,237.586939,238.723804,239.043013,239.572822,240.465077,241.460649,242.237746,243.460955,245.421454,245.622924,246.900330,247.337012,248.325008,249.249378,250.515759,250.947479,251.644166,252.647505,252.990752,253.1,253.551989,254.674462,255.365216,256.502081,256.925548,257.688254,259.300012,260.767862,261.861555,264.020158,266.452185,268.322974,269.042509,269.432652,271.100378,272.223882,273.231230,274.598346,275.835945,276.785731,277.879423,278.606801,279.441461,279.848534,280.374601,281.644567,283.008097,283.742023,284.677417,285.684765,286.979927,287.498601,288.865717,290.506256,290.929614,291.674297,292.983850,294.091933,295.459048,297.444963,297.803320,298.402405,298.704609,299.711958,300.281180,301.726654,303.856476,304.921388,305.899954,307.022428,308.000995,309.655925,310.130817,311.545815,313.042447,313.920279,315.244223,315.797206 diff --git a/data/torah/labels/Bo-7.txt b/data/torah/labels/Bo-7.txt deleted file mode 100644 index cde57098f..000000000 --- a/data/torah/labels/Bo-7.txt +++ /dev/null @@ -1 +0,0 @@ -1.858119,2.871237,4.074591,4.270865,4.848807,6,6.673197,7.234434,7.522248,9.003490,9.794979,10.055009,10.860888,11.834451,13.134617,14.286687,15.668194,16.316058,17.338024,18.265441,19.762073,20.213685,21.714840,23.715146,24.124584,24.744353,25.823655,26.665826,27.658784,28.853211,29.977660,31.198894,32.104156,33.302887,34.061289,35.576616,37.102030,38.162234,39.252720,39.852238,40.807467,41.843597,42.935832,43.737138,44.960346,45.866960,47.176513,48.833120,50,50.200236,53.654002,54.106966,54.699497,57.681626,58.973172,60.905141,62.218192,64.232888,65.087815,65.821740,67.001776,68.242342,69.016473,70.455542,71.120480,71.911968,73.221521,75.624767,76.001510,76.862366,77.538729,78.243872,79.726113,80.949322,81.792648,82.571289,83.668881,84.935963,86.216735,86.911325,88.245822,89.209999,90.375644,90.908100,91.814714,92.937187,93.440665,94.188981,95.685612,97.369323,97.846814,98.667084,100.077371,101.099111,101.607295,103.348568,105.009769,106.247369,107.110810,108.175721,109.255023,110.564576,111.960473,112.867086,113.687356,114.334937,115.543755,117.054777,118.708654,119.442580,120.795304,121.299807,123.040585,124.637952,125.299924,126.364834,127.890248,129.487615,130.192758,131.272060,132.452097,133.373101,134.323816,135.503852,136.632945,137.553949,139.252051,141.943110,142.243468,143.005828,143.797315,145.063696,146.013482,147.366207,149.588228,150.091089,150.994326,152.016291,152.297395,153.016929,154.369654,156.326788,157.248104,158.140327,159.550615,160.687479,161.953860,163.896603,164.216151,164.748607,165.455917,166.722298,167.410347,168.895292,169.854238,171.499052,172.175414,173.110809,174.434753,175.787478,176.909951,177.709638,178.256484,179.148707,180.170446,181.192185,181.730021,182.041235,183.034193,184.493033,185.356475,186.090400,187.558250,188.752677,190.263700,192.897196,193.389695,193.748769,194.761511,196.301315,197.395008,198.270193,199.411609,200.748038,201.740996,203.050549,204.259367,206.012357,207.451476,208.933717,209.471999,210.674991,212.732859,213.015698,213.912896,215.951498,218.340353,219.400260,220.263702,220.439328,221.328146,222.335494,223.457968,224.321409,225.127288,225.611440,226.287803,227.410277,227.823487,229.034245,229.581091,231.090174,233.149982,233.621287,234.240087,234.887668,236.254783,236.931146,237.463602,238.184369,239.370026,240.438044,241.085625,241.425240,242.864310,244.504848,245.022913,246.159777,247.095172,248.298540,249.061247,250.205177,251.615464 diff --git a/data/torah/labels/Bo-H.txt b/data/torah/labels/Bo-H.txt deleted file mode 100644 index 67f50fce8..000000000 --- a/data/torah/labels/Bo-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.390103,4.074545,4.707736,6.110545,7.384404,7.806886,9.145220,11.203089,14.196353,16.441300,17.578165,18.715030,19.866285,20.336225,20.868681,22.609955,23.876335,25.142716,27.229366,28.582091,29.834081,30.683131,33.374191,36.227702,37.738724,39.595123,40.688816,41.116259,42.318518,43.151499,45.332731,47.279251,48.128301,50.617890,52.085741,53.251387,53.986285,55.021442,57.022720,58.605696,60.692347,61.383099,63.412187,64.290019,64.683464,67.173054,69.187750,71.432698,72.793036,73.095241,75.440924,76.077820,77.013215,78.696926,80.006479,80.567716,82.222645,83.820012,85.719583,86.856447,87.304688,88.254473,89.247431,90.628938,92.269476,92.996222,93.787710,94.149188,95.358006,96.578766,97.642368,99.736633,100.830326,102.485255,103.636510,105.219486,105.805747,107.473876,108.743393,109.822695,111.518197,112.439201,113.806316,114.223663,116.166389,116.662918,117.483187,119.263322,120.428968,121.968872,122.604411,124.246073,125.367155,126,126.835005,129.051171,130.028312,131.352256,132.345214,133.827455,134.701697,135.752217,136.874691,138.644746,139.983081,140.717005,141.094702,142.634506,144.303826,145.406676,146.500368,147.219903,149.594366,150.508879,151.273179,153.072016,154.136038,155.210123,155.857704,158.001917,159.858316,161.182260,163.326472,164.002835,165.514293,166.895799,168.723416,170.280915,171.201919,172.612207,174.137620,175.707194,176.872840,177.8,178.945100,179.862497,180.422258,182.465736,183.392493,184.284716,185.766957,186.918212,187.666528,189.350239,190.918824,191.296906,193.153305,194.506030,195.038486,195.459639,196.826755,199.258781,200.294911,202.352780,203.892584,206.310220,207.504647,208.483214,209.041800,210.302444,211.488217,212.100760,213.180062,213.452345,214.575036,215.293078,216.458724,217.130927,219.088060,220.196144,221.246664,222.297184,223.635519,224.743602,228.298102,229.679609,231.233803,232.859951,234.989773,236.788610,237.224220,238.260350,239.224526,241.268004,242.463,243.968321,245.263483,245.867892,246.673771,247.223166,248.978830,252.749191,253.287449,255.224390,256.246129,257.311040,257.993238,259.360354,260.943330,263.922203,264.942314,266.410165,267.762890,268.423234,269.632052,270.725745,272.999473,275.068948,277.141208,279.011997,280.076909,280.730410,282.414121,286.069356,286.577977,288.486992,289.450530,290.429097,290.804446,292.137547,293.015379,294.094681,295.994252,297.807479,298.857999,300.987821,301.669869,304.015551,306.231717,307.627614,309.829390,311.297240,311.795345,313.304137,314.527345,316.354963,317.664516,319.578478,320.289055 diff --git a/data/torah/labels/Chayei Sara-2.txt b/data/torah/labels/Chayei Sara-2.txt deleted file mode 100644 index 7677bbc0e..000000000 --- a/data/torah/labels/Chayei Sara-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.696004,5.521473,7.264131,8.089600,9.171882,9.832258,10.382571,11.024602,12.015166,13.372604,13.666104,14.014636,14.583293,15.078574,15.830668,16.692825,17.408232,17.848483,18.398795,19.407702,20.765141,21.590610,22.434424,22.709580,23.149830,23.938612,24.470581,24.929176,25.626239,27.167115,28.524553,29.478429,30.909243,31.459556,32.119931,33.477370,34.137745,35.421809,36.870966,38.631967,39.200624,39.567499,40.062781,40.484688,41.035000,41.823782,42.704283,44.153440,45.731004,47.638756,48.152381,48.996194,50.133507,50.757195,51.307508,52.334759,52.885072,53.600479,55.691668,56.241981,56.902356,57.599420,59.176983,59.910734,60.350984,60.864610,61.800141,63.157580,64.863550,65.707363,66.276020,66.844677,67.486708,68.752428,69.137647,69.559554,69.981460,70.751898,71.045399,71.522337,71.925899,72.934806,75.869809,76.530184,77.098841,78.052717,78.713092,79.465186,80.364031,80.620844,81.134469,81.758157,82.657001,83.647565,84.619784,85.316847,85.922191,86.454161,87.297974,89.132350,89.756038,90.801633,91.443664,91.883915,92.599322,93.589885,94.286948,94.928980,96.634950,98.927920,99.643327,100.725609,101.404328,101.807891,102.670048,103.220361,103.990799,104.687862,105.183144,105.605050,106.026957,106.980833,107.879677,108.264896,108.815209,109.420553,109.989210,110.447804,111.016461,111.731868,112.850837,113.474525,114.336682,115.473995,116.079340,116.666340,117.216653,117.546841,117.858685,118.629123,120.133312,120.848718,122.316220,123.306783,124.792628,125.819878,128.112849,128.919975,130.460851,131.378039,132.130133,132.827196,133.505916,134.111260,134.679917,135.285261,136.844481,137.541544,137.871732,138.293638,138.642170,139.485983,141.522141,142.329266,143.173079,144.310393,145.429362,146.401582,147.300426,148.235958,148.676209,149.483334,150.015303,150.895804,151.757961,152.766868,155.004807,155.463401,156.362246,156.747465,157.095996,157.591278,158.031528,158.746935,160.452905,161.149968,161.480156,161.755312,162.819251,163.681408,164.341783,165.240628,166.359597,166.799848,167.166723,167.863786 diff --git a/data/torah/labels/Chayei Sara-3.txt b/data/torah/labels/Chayei Sara-3.txt deleted file mode 100644 index 24ec73fc7..000000000 --- a/data/torah/labels/Chayei Sara-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.736704,4.683233,5.261410,6.591216,7.381391,8.113749,8.865379,9.674826,9.983187,10.522819,11.255176,13.105342,14.550785,15.225324,15.591503,16.420223,16.844220,17.191126,17.653667,19.927829,21.238364,21.912903,22.356172,22.606716,23.030712,23.647434,24.418337,25.169966,25.883051,26.480501,27.482674,34.131708,36.078237,37.003320,37.870585,38.487307,39.238937,39.643661,40.453108,41.031285,42.264729,43.228357,43.806534,44.423256,45.232704,46.870872,47.853772,48.431949,48.759583,49.164307,49.607576,50.763929,51.881738,52.363552,53.481361,54.194445,54.868985,56.237337,58.164593,59.166766,59.802761,60.361665,61.248203,61.537292,62.134741,63.098369,64.081270,65.006353,65.700165,66.432522,67.049244,68.552504,70.325580,71.250663,71.848112,72.927376,73.659733,74.257183,74.873905,75.336446,75.664080,76.377165,78.285148,79.210231,81.619302,83.026199,84.298188,86.129081,87.015619,88.383971,89.578870,90.291955,91.332673,91.814487,92.257756,92.758843,93.202112,93.838106,94.358465,95.534092,95.977361,96.728990,99.966781,101.007499,101.527859,102.163853,103.108209,104.226017,104.669286,105.228190,106.442362,107.251810,108.369618,109.005613,110.354692,112.224131,112.898670,113.688845,115.076470,116.907363,117.948082,118.661166,119.065890,120.087336,121.320780,121.956775,122.457861,124.404390,126.485827,127.757816,128.451628,128.952715,130.513792,132.845772,133.847946,135.813747,136.893010,137.914456,138.666086,139.321353,139.629714,140.342799,141.094429,143.252956,144.679126,145.372938,145.700571,146.413656,147.589283,147.994006,149.246723,149.863445,150.518712,151.463068,151.867791,152.715784,154.064863,155.510306,155.818667,157.090656,158.555371,160.444082,161.696798,162.621881,163.026605,163.469874,165.493493,166.457121,167.208751,167.883291,168.538558,169.560004,170.118908,171.063263,171.622168,172.315980,173.067610,173.915603,174.551597,174.821413,175.303227,176.343946,176.787215,177.673752,178.926469,179.427556,180.025005,180.545364,181.065723,181.451175,181.778808,182.568983,184.554057,185.517685,186.172952,186.558404,187.290761,190.952548,191.781268,192.340172,192.956894,193.496526,194.074703,195.231057,195.944141,196.580136,197.428129,198.565210,199.066297,199.567383,200.184105,200.453921,200.993553,201.340459,201.725910,202.496813,203.074990,203.768802,205.137154,205.734603,206.929502 diff --git a/data/torah/labels/Chayei Sara-4.txt b/data/torah/labels/Chayei Sara-4.txt deleted file mode 100644 index d12a2565c..000000000 --- a/data/torah/labels/Chayei Sara-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.787653,4.738278,5.585574,6.226212,7.011511,7.776144,8.582109,10.152707,10.566022,11.599310,12.756592,13.273236,13.748549,15.463807,16.311103,17.530383,18.171021,18.749663,19.328304,19.989608,21.684200,22.924146,23.668113,24.350083,24.846062,26.210002,27.015966,28.276578,28.855219,29.475192,29.991836,31.087121,31.583099,32.637053,33.732338,34.744961,35.096278,35.550925,36.976863,38.382134,38.774784,39.911400,40.593371,42.763275,43.114593,43.589906,44.767854,46.937759,47.516400,48.942337,50.037623,50.843587,51.587555,52.207527,52.682840,53.034158,53.716128,54.749416,55.038737,55.658709,57.063981,57.828614,58.221263,58.882568,59.171888,59.998519,61.920434,62.602405,63.139714,63.904347,64.813641,65.495611,66.074252,67.252200,68.058165,68.802132,69.628763,70.476059,72.067322,72.625298,73.307268,74.154564,75.125855,76.200474,76.717118,77.543749,78.349713,79.486330,80.147634,80.850270,81.842227,82.606860,83.557485,84.260121,86.946669,87.752634,88.703259,89.633218,90.191194,90.707838,91.121153,91.575800,92.092444,92.815745,93.973028,94.840990,95.998272,96.886900,97.486207,98.519495,100.710065,102.218666,102.941967,103.747932,104.243910,105.008543,106.124494,107.054454,107.757089,108.459725,109.224358,109.947660,110.774290,111.683584,112.840866,113.977483,119.309249,121.231165,122.285118,123.111749,123.442401,124.186368,125.033664,125.715634,126.914249,127.265566,127.596219,127.926871,128.402183,128.753501,131.109398,131.667373,132.142686,132.700661,133.382631,134.064601,134.725906,135.511205,136.482495,137.267794,137.970430,138.445742,139.210376,140.656979,141.152957,142.392902,142.806218,143.219533,144.273487,144.666136,145.348106,146.691380,147.208024,148.034655,149.522590,149.853242,150.369886,151.651163,152.250470,152.684451,153.407752,154.337712,155.432997,155.825646,157.954220,158.946176,160.000130,161.405401,161.880714,163.616638,164.195279,164.815252,165.373227,167.047154,167.501800,168.039110,169.465048,170.126352,170.746325,172.420251,173.990849,175.251460,176.140088,176.946053,177.256039,177.855346,178.516650,178.971297,179.694599,180.273240,181.203199,181.761175,182.959789,184.695712,185.191691,185.522343,185.956324,187.733579,188.704870,189.428171,189.965481,190.854109,191.660073,192.032057,192.569367,193.437329,194.057302,194.718606,195.297247,195.834557,196.599190,197.673810,199.203076,199.802383,200.236364,200.587682,201.021663,202.034285,202.798918,203.563551,204.162858,205.382138,206.126105,207.159393,207.510711,207.882695,208.316676,209.402316,212.119051,212.676330,213.001409,213.628348,214.069527,214.580366,215.393065,216.066443,216.832702,217.784720,218.133019,218.736738,219.177917,219.781636,220.455015,223.264629,224.100548,225.679504,226.585083,226.933382,228.164040,229.046398,229.673337,230.230616,231.112974,231.507713,231.972112,233.017010,233.527849,234.456647,235.292566,235.826625,236.430343,236.894743,239.402498,240.749255,241.376194,242.049572,243.326670,243.930389,244.650207,245.370026,246.229164,247.877781,248.551160,249.085219,250.037237,251.685854,252.986171,255.702906,256.074425,256.445944,257.328303,259.278779,260.045037,260.648756,261.089935,261.670434,262.436693,262.854652,263.249391,263.829890,264.990888,265.826806,266.105445,266.709164,267.591523,268.148801,268.636421,270.238597,271.144176,272.072974,274.418189,275.068348,275.486307,276.322226,277.181364,277.738643,278.806761,280.060638,280.850117,281.407396,283.775831,284.147350,284.449210,285.006489,285.470888,286.237146,288.605582,289.209300,289.720139,291.066897,292.460094,293.830071,294.317690,294.874969,296.152067,296.546806,297.405944,298.775922,299.727940,300.029799,300.656738,301.005037,301.376557,301.748076,302.142815,302.537554,303.512792,304.046851,305.045309,306.531387,308.342543,308.806942,309.271341,309.967940,310.989618,311.616557,312.220275,312.707894,313.125854,313.590253,314.704811,315.122770,315.726489,316.423087,316.864266,317.676965,318.466443,318.884402,319.395241,320.347260,321.136738,321.717237,329.166526,330.311463,331.658220,332.192279,332.842438,333.237177,334.096316,335.861032,336.604071 diff --git a/data/torah/labels/Chayei Sara-5.txt b/data/torah/labels/Chayei Sara-5.txt deleted file mode 100644 index 9d5f3f4d8..000000000 --- a/data/torah/labels/Chayei Sara-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.176711,5.540651,6.201956,6.615271,7.028586,7.545230,8.599184,9.405148,10.149116,12.711670,13.310977,13.992947,15.088232,16.762159,18.563364,20.030633,20.535768,20.949083,21.424396,21.920374,23.056991,23.821624,24.606923,25.536882,26.528839,29.752697,30.641325,31.488621,32.335917,33.183213,34.464490,35.187792,35.663104,36.179748,36.965047,37.647017,39.279612,39.920251,40.292234,41.118865,41.594177,42.544802,43.226772,43.764082,45.768661,46.884612,47.959231,50.335794,51.121092,51.968389,53.063674,53.394326,53.952302,55.522899,56.328864,57.134829,57.858130,59.056744,59.573388,59.945372,60.276024,61.267980,62.073945,64.967151,65.401132,65.855779,66.537749,66.951064,67.757029,68.748985,69.182966,69.947600,70.236920,71.042885,74.824719,75.114039,75.713346,76.787966,77.304610,78.792545,79.598509,80.466471,81.251770,81.830411,83.318346,83.958985,84.620289,85.281593,86.748862,89.249419,90.551362,92.473278,94.023209,94.498522,95.077163,95.800465,96.689092,97.247068,98.858997,100.140274,100.925573,101.586878,102.868155,104.824512,105.521110,106.148049,106.821428,107.355487,107.935986,108.818344,109.259523,109.840022,110.606280,112.254897,112.719296,114.205373,114.994852,115.598571,116.457709,117.758026,118.408185,119.104784,120.335441,121.055260,121.775079,124.073854,124.793673,125.072312,125.652811,126.651269,126.999568,127.440748,128.532085,129.112584,130.018162,131.411360,131.713219,132.943877,133.570816,134.267414,135.196212,136.194670,136.960929,137.982607,138.981065,139.538344,139.933083,140.420702,141.395940,142.208639,143.392856,145.204013,145.645192,146.318571,147.131269,147.340249,148.013627,148.454806,149.104965,150.730362,152.216439,153.005918,153.795396,154.259795,155.235033,156.256711,157.162289,159.298525,159.670045,160.482743,161.597301,162.804738,163.501337,164.290816 diff --git a/data/torah/labels/Chayei Sara-6.txt b/data/torah/labels/Chayei Sara-6.txt deleted file mode 100644 index 449b05ec7..000000000 --- a/data/torah/labels/Chayei Sara-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.037867,4.463804,5.228437,5.807078,6.406385,7.543002,8.782948,9.981562,10.580869,11.159510,11.655488,12.254795,12.771439,13.308749,13.660067,14.218043,15.003341,15.519985,16.015964,16.780597,18.082540,18.661181,19.322485,19.797798,20.293776,20.727757,21.554387,23.145651,24.860909,25.894197,26.824156,28.043436,29.614034,30.998639,32.093925,33.023884,33.809183,34.945800,35.855093,36.516397,36.971044,37.508354,38.314318,40.525555,41.848163,42.261478,42.571465,42.922783,43.315432,44.286723,47.717239,48.750527,49.432497,50.341790,51.933054,52.656356,53.420989,55.218910,56.706844,57.285486,57.719467,58.690757,59.042075,60.054698,60.406015,60.819331,61.315309,64.167184,65.572455,66.316423,66.915730,67.370376,67.659697,68.135010,69.333624,70.490906,71.069547,71.565526,72.268161,72.929466,74.603392,76.318650,77.537930,78.571218,79.046531,79.418514,80.245145,81.650416,82.146395,82.849030,84.357631,85.618242,86.527536,87.374832,88.160131,88.511449,89.090090,89.937386,91.136000,92.623935,93.533228,94.091204,94.669845,95.744464,96.571095,97.087739,97.625049,98.183024,100.394260,100.786910,101.324220,101.944192,102.543499,103.018812,103.494124,105.581366,106.345999,107.048635,107.482616,108.267915,111.181787,112.277072,112.897045,113.723675,114.570971,115.046284,115.314939,115.748920,116.368893,117.670835,118.270142,118.910781,119.551420,120.212724 diff --git a/data/torah/labels/Chayei Sara-7.txt b/data/torah/labels/Chayei Sara-7.txt deleted file mode 100644 index 950b9a4f2..000000000 --- a/data/torah/labels/Chayei Sara-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.567133,4.414429,5.137731,5.571712,6.357010,7.286970,8.733573,10.531494,12.019429,13.073382,13.693355,14.685312,16.751888,17.909170,18.673803,19.479768,20.244401,21.339686,22.538300,23.364931,24.294890,25.307512,26.196140,27.539414,29.006683,29.626656,30.907933,32.209876,33.119169,34.028463,34.607104,35.537063,38.130731,39.245289,40.429507,41.195765,41.869144,42.681843,43.866060,45.212818,47.070414,47.836672,48.695811,50.158668,53.130822,53.873861,54.732999,55.522477,56.102976,57.240754,58.192772,58.633951,59.284110,59.725289,61.350686,62.093725,63.185063,63.626242,64.415720,65.855357,67.550414,68.084473,69.500890,70.383248,70.661888,71.195947,71.846106,73.262523,74.052001,74.632500,75.120119,75.538078,76.443657 diff --git a/data/torah/labels/Chayei Sara-h.txt b/data/torah/labels/Chayei Sara-h.txt deleted file mode 100644 index 74fa68991..000000000 --- a/data/torah/labels/Chayei Sara-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.604815,3.356909,3.980597,4.751035,6.438661,7.686037,9.061820,9.887289,10.437602,11.886759,14.399855,15.206980,16.436013,18.215358,19.407702,20.233172,21.498892,22.764611,23.810206,24.745738,25.607895,27.222146,27.644053,28.707991,30.267211,31.239430,32.119931,33.238901,34.009339,37.678092,38.393498,39.475780,40.796532,41.401876,42.851033,45.125660,45.584254,46.574817,48.244100,49.619882,50.151851,51.124071,53.215260,53.912323,54.114104,55.269761,56.535481,57.397638,58.241451,60.809578,62.130329,62.662298,63.652862,67.119833,67.596771,69.155991,70.219929,70.916992,71.247180,72.604619,74.090463,75.576308,76.768653,77.795904,78.878186,79.538561,80.235624,81.446313,83.390752,84.216221,85.243472,85.683722,86.270723,87.297974,88.306881,89.480882,90.343039,90.783289,91.168508,91.700477,92.360853,93.204666,94.378667,95.369230,96.689981,98.982951,101.092484,101.789547,102.725079,103.036923,104.100862,104.926331,105.715113,107.255989,108.521709,109.310491,110.539523,113.364463,114.960370,115.932590,116.317809,118.152185,119.417905,120.206687,121.288969,122.389595,123.765377,124.260659,125.618097,126.682035,127.214005,127.507505,128.608131,131.011164,132.918915,133.909478,134.771635,135.743855,136.459262,137.339762,138.311982,138.972357,139.614389,140.072983,141.668891,143.851799,144.457143,144.677268,145.245925,146.254832,147.043614,147.850739,148.235958,148.731240,149.299897,150.345491,151.427773,151.978086,153.885838,155.646839,156.453965,157.848091,158.435091,159.168842,159.627436,160.030999,161.205000,162.947657,164.396815,165.093878,165.387378,165.882659,166.212847,167.019973,167.662005,168.689255,169.973319,171.000570,171.422476,172.321321,172.559790,174.100666,175.769948,176.063449,176.430324,177.622668,180.374233,181.970141,182.942360,183.566048,185.235331,186.721176,187.271488,188.005239,188.372114,189.105865,189.491084,190.573366,193.783525,194.884151,195.177651,195.727964,197.415590,198.461185,199.011498,200.075436,201.377843,202.478469,203.964314,205.395127,206.587472,207.302879,208.054973,208.807068,209.320693,210.329600,211.228444,212.475820,213.319634,213.906634,214.933885,216.144573,216.731574,217.813856,220.895608,222.454828,223.408704,223.922329,224.289205,225.408174,226.417081,227.297582,228.086364,229.462146,229.773990,230.764553,232.287086,232.543898,233.094211,233.332680,233.956368,234.928588,236.139276,236.616214,238.010340,239.074278,240.541780,241.532343,242.174375,243.183282,246.136628,246.375097,246.888722,247.915973,249.420161,251.034413,251.621413,252.116695,252.832102,254.428009,255.822135,256.610917,257.509761,259.087325,260.408076,261.160171,262.095702,262.847797,263.544860,264.058485,264.553767,266.002924,267.231956,267.745582,268.057426,268.846208,271.597772,273.450493,274.147556,275.651744,277.706246,278.311590,278.916934,279.265466,280.219341,282.237156,283.080969,283.704657,286.181065,287.556847,288.859254,289.336192,289.996568,290.803693,291.794257,292.509663,293.903790,294.600853,295.756510,297.022229,297.755980,298.196230,299.076731,300.415826,301.277983,302.305234,303.038984,303.350828,304.011204,305.221892,307.129644,307.771675,308.927332,311.220303,311.807303,312.302585,312.871242,313.403211,314.668931,317.237058,318.337683,318.667871,319.254872,319.493341,320.979185,323.345531,324.721313,325.858627,326.684096,328.078222,329.674130,330.958193,331.802006,332.058819,333.507976,334.902102,335.507447,336.993292,339.561419,340.551982,341.267389,342.221264,342.863296,344.404172,345.743267,346.733830,347.504268,349.100176,351.411490,352.163585,352.768929,354.052992,356.859588,358.528871,359.757903,360.858529,362.069217,362.986405,364.527282,365.150970,366.563439,367.664065,368.269410,368.581254,369.425067,371.259443,372.121600,373.662476,375.056602,376.285634,376.927666,378.945480,380.853232,382.852702,383.549765,383.990015,385.420829,386.154580,387.218518,388.429206,389.291363,391.290834,392.061272,392.648272,394.115773,396.408744,397.656120,398.408214,399.508840,400.957997,401.398248,402.645624,403.801281,405.305469,408.203784,410.386692,411.982600,412.734694,413.266663,414.092132,415.009321,416,416.678603,417.724198,418.494636,419.540230,420.145575,421.227857,422.383514,423.098921,423.612546,424.584766,426.309079,427.666518,428.290206,428.803831,429.482551,429.977832,430.803302,432.472584,433.132960,433.719960,434.435367,435.370899,435.664399,436.067962,437.223619,438.305901,439.204746,440.103590,441.350966,441.956310,442.818467,444.396031,445.111438,446.010282,447.624533,448.174846,449.862473,450.467817,450.834692,451.219911,451.586786,452.503975,456.099352,457.493478,458.814229,460.024918,461.143888,461.694200,462.427951,463.033295,463.785390,464.555828,465.014422,465.913266,466.720392,468.187893,469.068394,469.270175,469.967238,471.691552,473.672678,474.773304,475.378649,476.057368,476.864493,478.038494,478.368682,478.790589,479.340902,479.927902,481.322028,482.697810,484.293718,486.329876,487.980815,489.063097,489.796847 diff --git a/data/torah/labels/Chukat-1.txt b/data/torah/labels/Chukat-1.txt deleted file mode 100644 index 70959b2a4..000000000 --- a/data/torah/labels/Chukat-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.433469,3.524807,3.826667,4.495420,4.724535,5.557370,6.741587,7.763265,8.831383,9.899501,10.596100,11.246259,12.593016,13.661134,16.238549,16.656508,17.306667,19.187483,20.252517,21.970794,22.853152,24.408889,26.034286,26.885714,27.055964,27.582313,28.600907,30.153560,30.594739,31.198458,31.918277,33.238730,34.887347,35.607166,36.138141,37.043719,38.196313,39.370116,39.927395,40.504810,41.387168,42.757146,43.825264,44.568302,46.100819,48.515694,50.512610,52.346987,53.624084,55.637486,57.611749,57.839322,58.486397,60.034425,60.451307,61.938461,63.236160,63.979198,65.302736,66.579833,66.808949,67.993167,69.293484,69.638700,70.497838,70.959153,71.911171,72.117067,73.045865,73.579924,74.462282,75.669720,76.850854,78.360151,79.544368,80.751806,81.680604,82.841602,83.909720,85.699228,85.858684,86.485623,87.785940,89.388117,90.428389,91.937686,93.539863,94.631201,95.513559,96.395918,97.510475,97.878911,98.363446,99.937777,101.049251,102.187029,102.462584,103.716462,105.457958,106.200997,107.567890,108.612788,109.471927,110.679364,111.515283,112.606621,113.416235,113.572607,114.872924,116.660861,116.936416,118.445714,119.617024,120.643899,121.619138,123.801813,124.939591,125.984489,127.099047,128.167165,131.023219,132.253877,132.811156,134.363809,136.500045,137.266303,138.148661,139.054240,140.400997,143.744670,144.673469,145.300407,146.066666,146.995464,147.156462,148.271020,149.455237,149.662675,150.800453,153.354648,153.933605,155.675101,157.509478,158.554376,159.390294,160.272652,162.037369,163.266484,163.963083,164.543582,165.100861,166.046711,166.882630,167.648888,169.297505,169.898140,170.664398,172.217051,173.540589,175.351745,176.907482,177.998820,179.020498,179.600997,180.135056,181.899772,183.967955,186.071655,187.371972,188.765169,189.624308,191.017505,191.687800,194.404534,195.144489,197.443265,199.347301,199.717278,201.064036,201.595011,203.197187,203.658503,204.351702,205.112611,206.180729,207.794226,208.542614,209.282568,210.604564,212.578260,213.251639,214.644836,214.991593,215.940528,216.706786,218.030323,218.959122,219.725380,220.465335,221.556673,222.644927,223.782704,224.525743,224.870958,225.358577,226.355494,226.840029,227.513407,227.788963,228.621797,229.247194,229.874133,230.567648,231.285924,231.816899,233.279757,234.067693,235.878850,237.039847,238.642024,239.106423,239.799938,240.450097,241.355675,242.470233,243.747330,245.001650,245.441287,246.927364,247.461423,248.085278,249.826774,250.729269,251.611627,252.144144,252.933622,253.511037,254.274212,255.156570,255.456888,256.975193,258.136411,258.712284,260.151921,261.216955,262.074701,262.981671,263.724710,264.839268,265.721626,266.952284,267.579222,268.295957,269.153554 diff --git a/data/torah/labels/Chukat-2.txt b/data/torah/labels/Chukat-2.txt deleted file mode 100644 index bed27c803..000000000 --- a/data/torah/labels/Chukat-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.113016,3.482993,4.133152,6.594467,6.800363,8.750839,9.772517,10.213696,11.119274,11.696689,12.184308,13.670385,14.413424,15.574422,16.178141,16.613152,17.774150,18.467664,20.441361,21.532698,22.229297,23.506395,24.179773,25.108571,25.758730,27.500227,29.752562,30.658141,30.932154,31.904308,32.484807,33.483265,33.922902,35.060680,36.848617,37.684535,39.100952,41.167528,43.094785,44.342494,45.108753,45.898231,47.523628,48.647926,49.065885,49.878583,50.784162,52.154139,54.545794,55.103073,55.846112,56.612370,57.819808,59.561304,59.909604,60.675862,62.161939,64.112416,64.901894,66.016452,66.222348,66.849286,67.545885,67.983980,69.098538,70.346248,70.973187,71.693005,72.761123,73.875681,74.315318,75.453096,76.706973,78.100171,79.214729,80.282846,81.420624,82.511962,82.742620,84.693096,87.224071,87.711690,88.010465,88.425341,89.563119,90.816996,91.977994,93.069332,93.905250,94.089468,95.529105,96.756679,97.126656,99.239672,99.796951,101.515227,102.603481,103.462620,104.321758,105.505976,106.707246,107.659264,109.377540,110.561758,111.258357,112.326475,113.510692,115.228969,116.297087,116.992103,117.733640,119.506157,122.501531,122.917948,123.660987,123.914865,125.354502,126.617560,127.430258,127.894657,128.939555,130.448852,131.447310,132.676426,136.159419,137.877696,138.852934,139.503093,141.383909,142.962866,144.239964,144.699737,145.837515,146.952072,147.462911,148.345270,149.366948,150.806585,151.526403,152.269442,154.614657,156.826986,158.049934,159.350251,160.604129,161.416827,161.904446,162.647485,163.204764,163.901362,165.828619,166.989616,168.336374,169.613471,170.379730,171.262088,172.098006,172.701725,174.350342,177.526059,177.983539,179.748256,180.491294,182.093471,182.511430,183.184809,183.742088,184.647666,185.412383,185.689480,186.873698,187.965036,188.356691,189.633789 diff --git a/data/torah/labels/Chukat-3.txt b/data/torah/labels/Chukat-3.txt deleted file mode 100644 index cb286ce91..000000000 --- a/data/torah/labels/Chukat-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.731759,4.036933,4.123961,5.034547,6.855720,7.062143,7.242245,9.579417,10.975650,11.212426,12.396188,13.731715,14.824419,16.008181,18.542471,18.823214,20.603410,21.996608,22.719006,24.086404,25.763400,26.458286,27.049971,27.280457,28.467255,30.404026,30.729084,32.070682,32.662367,34.932763,36.061108,37.502478,37.660704,38.735736,39.379021,40.538306,41.858540,43.669696,46.665070,48.223904,50.081500,50.731659,51.962316,52.169754,52.796693,54.329210,55.440684,57.576920,58.179096,58.477872,59.731750,60.217827,61.354062,62.375740,63.234879,63.954697,65.463994,66.973292,68.412929,68.666806,70.594062,72.539913,72.954788,74.789165,76.837562,78.434697,79.837350,80.487509,81.276987,83.103558,84.320548,86.665764,88.664243,91.380977,91.845376,92.446011,92.746329,94.673585,96.136442,96.531181,98.690637,99.525013,101.707689,102.681385,103.331544,104.469322,106.884197,107.743335,108.765013,109.322292,110.506510,111.435308,112.224787,113.130365,113.639662,114.590138,116.610274,118.305331,118.953948,120.231045,120.669140,121.480297,121.827054,122.825512,123.031408,124.656805,126.514401 diff --git a/data/torah/labels/Chukat-4.txt b/data/torah/labels/Chukat-4.txt deleted file mode 100644 index b64bd2118..000000000 --- a/data/torah/labels/Chukat-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.809615,4.667211,6.362268,7.407166,7.709025,8.195102,9.425760,10.308118,11.074376,12.049615,12.862313,14.139410,14.998549,15.416508,15.973787,17.018685,17.549660,19.221497,20.962993,22.077551,23.167347,24.255601,25.137959,25.506395,26.806712,27.990930,29.593107,30.429025,33.192200,34.853712,35.318111,36.548769,37.615345,38.660243,40.378519,41.771717,43.002374,44.511671,45.904869,46.833667,48.133984,48.668043,49.364642,50.966819,52.545776,53.147952,54.959109,55.911127,56.770265,58.903417,60.706864,62.309041,63.052079,63.562918,64.909676,66.883372,67.974710,69.733259,70.476297,71.544415,72.519653,73.727091,74.586229,75.306048,76.095526,77.906683,79.620333,80.502692,81.536796,82.186955,83.069313,84.248461,85.315481,86.662238,87.287635,89.330991,91.140612,92.852714,93.498247,96.075662,97.535435,99.694891,100.275390,101.297068,102.365186,103.317204,104.849721,106.475118,109.145413,109.981331,110.351308,111.210447,112.464324,114.321921,115.738338,115.992215,117.594392,119.057249,119.767816,121.021694,122.020152,122.879290,123.738429,125.712125,127.289540,129.263236,130.493893,130.770991,131.931989,132.767907,134.323644,135.181240,136.551218 diff --git a/data/torah/labels/Chukat-5.txt b/data/torah/labels/Chukat-5.txt deleted file mode 100644 index 2565debd0..000000000 --- a/data/torah/labels/Chukat-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.853399,3.478796,6.339708,7.189363,9.093399,9.463377,10.460293,11.249771,12.968048,15.266823,17.054760,17.612039,18.355077,18.607413,19.443331,20.209590,21.277708,21.787005,22.506823,23.132220,23.944918,25.616755,26.940293,27.796347,28.050225,29.141562,29.883059,30.417118,30.830451,31.042515,32.014669,33.036347,33.872265,34.638524,35.985281,37.889318,38.186551,39.370769,39.810406,40.483785,41.130860,43.616100,44.669635,45.132492,46.479250,46.940565,47.869363,48.983921,50.027277,51.141835,52.047413,53.533490,55.182107,55.505644,56.318343,56.408138,57.846234,60.121789,60.631086,61.558343,62.719340,63.903558,65.134216,66.271993,68.501109,70.419114,71.510451,72.230270,72.880429,74.203966,75.826279,76.056937,76.799975,77.798433,79.005871,79.306188,81.163785,84.228819,84.923875,85.526052,87.476528,87.964148,90.030723,91.238161,92.375939,92.792356,94.069454,95.485871,98.202606,100.083422,100.780021,101.755259,103.287776,105.958070,107.513807,108.510723,109.205780,111.225916,113.176392,113.476710,115.171767,116.122243,117.004601,118.304918,119.688864,119.896302,120.755440,122.264737,123.263195,124.306551,124.863830,127.580565,130.668819,131.969136,132.503195,133.221472,134.219930,135.404148,136.588365,137.377844,138.422742,139.003240,140.651857,142.300474,143.507912,145.619386,146.803603,148.870179,150.583830,151.905826,153.415123,154.367141,155.806778,156.340837,156.989454,158.266551,158.963150,159.682968,160.472447,161.587005,163.814578,164.278977,166.229454,167.576211,169.085508,169.757345,171.661381,172.658297,172.935395,174.235712,175.186188,176.068547,176.440066,177.902923,178.876619,179.201699,180.385916,182.522152,185.865826,186.632084,187.305463,188.211041,188.416937,189.322515,190.711386,190.825944,191.451341,192.635558,193.982316,194.586035,195.468393,196.861590,198.301227,200.205264,204.524175,206.171250,207.401908,208.539685,209.747123,210.583041,211.860139,212.298234,212.573790,213.409708,214.431386,215.360184,216.730161,217.821499,218.888075,221.326171,223.392747,224.994923,226.875740,227.734878,229.140502,231.067758,234.337907,234.916103,236.193200,237.072474,237.583313,238.372792,240.416148,243.201000,243.710298,244.221137,245.683994,247.170071,248.841908,249.375966,250.119005,251.047803,252.278461,253.439459,253.575694,254.620592,255.663948,256.639186,257.032384,258.332701,260.133155,260.713654,261.385490,263.289527,265.069753,266.227667,266.486171,268.154923,268.842270,269.258688,270.257146,270.976964,271.811341,272.320638,273.063676,274.062134,274.408892,275.871749,276.986307,277.636465,279.029663,280.678279,281.374878,282.489436,283.673654,285.879549,286.621046,287.874923,289.778960,290.405898,291.124175,292.029753,292.446171,293.514288,296.229481,296.622678,297.271295,298.870388 diff --git a/data/torah/labels/Chukat-6.txt b/data/torah/labels/Chukat-6.txt deleted file mode 100644 index 22212b15b..000000000 --- a/data/torah/labels/Chukat-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,2.670295,3.691973,5.061950,6.478367,7.987664,9.218322,11.679637,12.747755,14.883991,16.439728,17.562534,17.864686,18.616327,19.870204,20.822222,22.374875,23.744853,25.091610,26.206168,27.947664,30.037460,32.939955,34.751111,37.398186,38.443084,39.720181,41.066939,42.553016,43.760454,44.545306,45.845624,46.839456,47.721814,48.906032,50.090249,51.042268,51.808526,52.458685,54.339501,55.454059,55.895238,57.009796,57.938594,58.913832,60.121270,60.933968,62.094966,63.627483,64.927800,66.158458,67.319456,68.828753,70.059410,70.593469,71.452608,72.195646,73.426304,74.656961,75.446440,76.955737,78.163175,79.579592,80.369070,82.087347,82.783946,83.875283,84.618322,85.636916,86.699773,86.812789,87.760181,88.782074,89.534240,91.113197,92.433651,93.850068,95.032744,95.354739,96.351655,97.373333,98.486349,99.345488,100.272744,101.456961,104.173696,106.299932,108.623418,110.411355,111.781332,113.197749,114.939246,117.981060,119.606457,121.440833,123.251990,125.318566,127.478021,128.778339,131.680833,134.397568,135.512126,136.835663,137.903781,138.530720,139.831037,143.569450,143.940969,144.939427 diff --git a/data/torah/labels/Chukat-7.txt b/data/torah/labels/Chukat-7.txt deleted file mode 100644 index e84e7bb48..000000000 --- a/data/torah/labels/Chukat-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.368435,3.181134,4.226032,4.455147,5.383946,5.637823,6.636281,7.913379,8.955193,11.579048,12.438186,13.483084,14.969161,16.873197,17.732336,18.661134,19.288073,20.518730,22.028027,22.980045,24.071383,24.860862,25.418141,26.184399,27.995556,28.644172,29.456871,31.685986,31.905850,34.413605,35.433741,37.662857,39.357914,41.076190,41.376508,41.723265,43.627302,46.715556,47.597914,48.619592,49.896689,51.197007,53.333243,54.957098,56.837914,58.416871,59.368889,59.801612,60.985830,62.284605,62.561703,64.187100,66.276895,66.950274,67.832632,68.227372,69.063290,70.154628,71.451081,72.581929,73.441068,74.044787,76.970501,79.547916,80.523154,81.126873,81.591272,82.543290,83.866827,85.120705,86.142383,86.815762,87.489140,88.998437,90.600614,91.134673,92.806510,94.206779,95.306555,97.326691,99.137848,99.718347,100.902564,102.202882,102.897939,104.453675,105.614673,106.543471,107.797349,110.069821,110.346918,110.715353,112.410410,113.232451,113.312905,114.904288,115.783562,117.037440,117.873358,119.684514,120.542111,121.726329,122.864106,124.512723,125.046782,126.486419,127.065376,127.947734,129.387372,130.989548,133.009685,134.658301,135.865739,138.164514,139.116533,140.416850,141.763607,142.506646,144.155263,144.805422,146.036079,147.034537,148.636714,149.753015,150.935490,152.181657,153.200251,154.732768,156.427825,158.053222,159.028460,159.887598,161.327236,164.299390,164.995988,165.901567,166.319526,167.596623,169.895399,170.522338,171.869095,173.146192,173.610592,175.653948,176.722066,177.650864,178.440342,180.344378,182.318075,183.339753,185.824288,186.311907,188.006963,189.934220,191.466737,193.483789,194.087508,195.309681,195.818211,197.350728,198.812043,199.856941,200.507100,201.760977,202.945195,204.733131,205.383290,206.172768,207.960705,209.609322,209.977757,211.579934,212.810592,215.968505,217.708460,218.397358,218.748732,219.505739,219.898936,220.990274,221.987190,223.703925,226.374220,228.719435,230.066192,230.296850,230.605156,231.357495,231.681032,232.934910,234.583527,235.442665,236.255363,238.229059,239.552597,240.109876,241.340533,242.037132,242.733731,244.335907,245.938084,247.006202,247.818901,248.747699,248.996951,249.258538,250.227608,250.896361,251.453640,252.125477,252.868515,254.308152,255.515590,255.862347,257.859263,259.227699,259.620896,260.735454,262.011010,263.698356,264.812914,266.322211,267.258731 diff --git a/data/torah/labels/Chukat-h.txt b/data/torah/labels/Chukat-h.txt deleted file mode 100644 index b544a92c6..000000000 --- a/data/torah/labels/Chukat-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.921088,5.241542,6.425760,7.726077,9.049615,10.489252,10.788027,11.484626,12.854603,13.945941,14.758639,15.176599,16.639456,19.379410,19.913469,21.585306,22.212245,24.812880,26.461497,26.902676,28.806712,30.617868,31.082268,33.334603,34.681361,35.586939,36.353197,37.816054,37.973968,39.460045,40.667483,40.989478,41.569977,42.452336,44.333152,45.749569,46.655147,48.094785,49.325442,50.857959,51.830113,52.898231,56.032925,57.333243,58.401361,59.353379,60.723356,62.162993,63.997370,65.831746,67.642902,69.872018,70.054694,70.890612,71.237370,72.978866,75.478778,76.200272,76.985125,77.192562,78.144580,78.632200,80.095057,81.395374,82.556372,83.879909,84.739048,84.946485,85.828844,86.455782,87.663220,89.985215,91.796372,93.932608,95.650884,96.672562,98.576599,101.525533,102.291791,103.940408,105.565805,106.401723,107.957460,109.513197,110.418776,111.045714,112.949751,114.110748,116.548844,117.245442,118.708299,122.400272,123.282630,124.188209,125.720726,127.021043,127.647982,128.692880,131.247075,132.431293,134.010249,134.544308,137.052063,138.236281,139.420499,140.999456,142.346213,144.064428,145.477823,146.936145,147.725624,149.165261,150.437732,151.203991,152.364989,154.106485,154.686984,156.498141,157.930068,159.625125,160.112744,160.809342,163.386757,163.897596,165.360454,166.053968,167.098866,168.561723,169.885261,171.092698,173.391474,175.202630,176.665488,178.639184,180.937959,181.959637,182.725896,184.838912,186.162449,186.509206,187.507664,187.899320,189.478277,192.334331,193.448889,195.236825,196.676463,197.419501,197.671837,199.210612,199.555828,201.088345,202.644082,203.596100,204.269478,205.523356,206.754014,208.190567,209.069841,210.393379,211.577596,212.250975,213.737052,214.689070,217.312925,217.543583,217.938322,219.331519,220.283537,221.212336,223.998730,226.738685,227.853243,229.176780,231.289796,231.777415,232.097868,232.957007,235.371882,235.859501,236.939231,238.480272,238.847717,239.426674,240.448352,241.209985,242.997921,245.238959,246.214197,246.701816,248.489752,249.070251,249.766850,252.158505,252.622904,253.458822,255.223539,255.687938,256.709616,258.789866,259.867530,260.935648,261.037870,262.314968,262.849027,265.008482,267.493017,268.305716,269.280954,271.742269,272.880047,273.460546,275.364582,277.106079,278.267076,278.708256,279.613834,280.147893,282.307349,284.358505,285.496283,286.564401,287.374015,288.743993,289.278051,290.369389,291.576827,292.226986,293.550523,294.920500,296.001230,296.629525,296.997961,298.693017,300.504174,301.502632,303.313788,305.148165,307.005761,308.417553,308.561498,308.946986,309.782904,311.103358,313.123494,314.631249,315.513607,316.581725,317.255104,319.298460,320.784537,322.688573,323.290750,323.755149,326.425444,327.493562,328.584900,330.024537,331.394514,333.500607,334.501362,336.103539,337.961135,339.307893,339.841952,341.397689,342.396147,343.348165,345.020002,346.552519,349.710432,352.317499,352.677961,353.258460,354.256918,355.278596,356.270886,357.946576,359.288708,360.658685,361.982223,363.839819,365.209796,366.742313,367.647892,369.226849,369.923447,370.689706,373.361697,375.260953,376.514830,377.977688,378.697506,380.624762,382.869293,384.285711,385.748568,386.329067,387.350745,387.556640,390.017956,390.807434,392.548931,394.174327,395.577150,397.000994,398.089248,398.692967,400.689883,401.247162,403.151198,403.894237,405.032015,406.425212,406.723987,407.977865,409.928341,411.762717,413.457774,414.451606,414.711652,415.049157,416.233375,417.852604,420.731878,422.891334,423.236550,424.815507,428.391380,429.063216,429.888341,431.931697,432.442536,434.578772,435.182491,435.318727,437.083443,437.896142,439.335779,441.193375,442.925166,444.179044,445.270382,446.106300,447.058318,448.823035,450.727071,451.493330,453.118727,456.624940,458.018509,458.572332,459.476368,461.171425,462.634282,462.818500,464.211697,464.954736,466.159089,466.550745,468.269021,471.008976,472.820132,473.865030,476.651425,477.998182,478.578681,481.363534,482.849611,483.383670,484.704123,486.399180,488.512196,491.670110,492.157729,494.222763,496.885348,497.766164,499.298681,499.972060,501.527797,504.081992,504.685711,505.498409,507.193466,510.094418,512.021674,513.647071,514.715189,516.549566,521.077457,522.238454,523.236912,524.839089,526.232287,526.627026,527.950563,528.531062,529.692060,530.664214,531.314373,531.543488,532.983126,533.470745,534.260223,535.699860,537.952196,539.461493,542.572967,543.780405,546.636459,548.734180,552.566085,553.402004,554.586222,556.234838,556.931437,558.301414,559.485632,560.460870,561.389668,563.450707,564.330893,564.374249,566.371165,567.137423,568.971800,571.340235,572.036834,573.383591,574.312389,577.330983,578.770621,580.999736,582.718013,583.970348,585.177786,586.547763,587.871301,589.427038,590.866675,591.911573,593.838829,595.533886,596.950303,597.461142,598.784680,600.758376,602.058693,603.544770,604.496788,606.029305,606.348217,607.718194,609.181051,609.970530,611.526267,613.337423,615.380779,615.676471,616.837469,618.207446,619.484543,620.784861,621.109940,622.781777,623.312752,624.775609,626.493886,626.935065,628.349783,629.766200,631.688830,632.756948,634.614545,635.123842,636.702799,638.885474,639.930372,641.996948,643.157946,644.806563,645.385520,646.151778,648.264794,648.891733,649.495452,650.447470,652.235406,653.699014,657.019467,658.226905,660.223821,661.872438,663.265635,664.891032,666.098470,667.538107,668.188266,669.767223,671.299740,672.623277,674.922052,677.290488,678.957699,680.652755,681.140374,681.581554,682.626452,683.782823,684.804501,686.058379,687.776656,689.959331,694.719422,697.900556,698.504275,699.456293,701.244229,702.219467,704.843322,706.352619,707.885136,709.371213,710.834071,711.855749,713.109626,714.688583,716.012120,717.474978,720.215837,720.887674 diff --git a/data/torah/labels/Emor-2.txt b/data/torah/labels/Emor-2.txt deleted file mode 100644 index e3fcdd3e6..000000000 --- a/data/torah/labels/Emor-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.788144,4.809822,5.317577,6.199936,7.244834,8.117940,8.498711,9.789777,10.973995,11.644289,14.500344,17.031319,18.052997,18.888915,19.371908,20.277487,21.624244,22.715582,23.923020,24.805378,25.896716,26.895174,27.359573,29.124289,29.635128,30.262067,31.515945,31.954040,33.068598,34.047932,34.953510,35.996866,37.181084,37.921038,38.710517,39.453555,40.544893,42.216730,42.936549,43.586707,44.260086,45.096004,46.071242,47.023261,47.998499,48.880857,49.693555,50.297274,51.388612,51.876231,52.433510,53.153329,54.848385,55.870063,56.659542,57.611560,58.401038,59.840676,60.537274,61.558952,62.557410,63.405936,65.054553,65.565392,66.238771,67.840948,68.955505,70.511242,71.904440,73.181537,74.296095,75.340993,75.570109,76.429247,77.311605,79.076322,79.772920,80.678499,81.885936,82.930834,83.813193,84.741991,85.949428,87.458725,88.596503,89.989700,91.290018,92.033056,93.217274,94.285392,95.562490,95.791605,97.625982,98.248295,100.268431,100.872149,102.961945,103.844304,104.703442,105.167841,105.818000,106.561038,107.629156,108.650834,109.115233,110.183351,112.458907,113.155505,114.246843,116.104440,117.613737,118.565755,118.929564,119.742263,120.322762,121.135460,121.855279,122.011651,122.824349,124.171106,126.284122,127.375460,127.746979,128.466798,129.442036,130.277954,130.788793,132.158771,132.646390,134.527206,136.199043,137.961040,138.355779,139.516777,140.228886,141.366663,141.877502,142.481221,143.456459,144.571017,146.173194,148.518409,149.307888,150.120586,151.072604,152.210382,154.160858,156.738273,157.318772,158.711970,159.617548,160.499906,161.033965,163.030881,163.773920,164.888478,165.724396,166.955053,167.419453,168.278591,169.602128,171.297185,172.295643,174.965938,177.171834,179.215190,180.887026,181.513965,182.721403,183.342174,185.083670,186.267888,188.380904,189.379362,190.377820,191.448730,192.142536,193.606644,194.721202,195.812540,196.509138,197.461156,198.366735,199.876032,200.433311,200.684104,201.610938,203.023152,203.835850,204.509229,205.438027,206.320385,207.156304,208.108322,208.592857,209.026326,210.303424,211.441202,212.224512,212.897891,213.594490,214.003197,214.859252,215.529546,216.620884,217.738905,218.296184,218.946343,220.107341,221.430878,222.568656,223.892193,224.403032,225.076411,226.585708,226.980447,227.886025,228.884483,229.790062,230.112057,231.528474,233.618270,234.082669,234.918588,236.009926,236.961944,238.053282,239.121400,240.235957,241.698815,242.836592,243.208112,244.438769,245.622987,246.412465,247.457363,249.641256,251.893592,252.799170,253.704748,254.656766,255.283705,256.166063,257.327061,258.827106,259.022118,261.265202,262.028376,262.837991,263.906109,264.718807,265.995905,266.483524,267.296222,268.712639,269.478898,270.454136,272.195633,273.124431,273.797809,274.355088,274.932503,275.745202,276.882979,279.251415,280.412413,280.992911,281.689510,282.595088,284.917084,285.567242,286.164794,286.977492,288.301029,289.345927,290.669465,291.215950,291.982208,293.607605,294.489964,295.279442,296.301120,297.554998,298.553456,299.435814,300.248512,300.968331,301.757809,302.570508,304.265564,305.612322,306.726880,307.446698,308.491596,309.466834,311.161891,312.183569,313.460667,314.691324,316.804340,319.521075,320.078354,321.494771,324.141846,324.675905,325.256403,326.301301,327.810598,329.180576,330.062934,330.968512,331.897311,332.547469,333.058308,333.628901,334.423660,336.463497,337.183316,337.787034,338.530073,339.760731,341.223588,342.454245,343.336604,344.520821,345.588939,345.937238,347.051796,348.561093,349.907851,350.488350,351.254608,352.067306,352.810345,353.669483,354.226762,355.085901,356.516551,357.886528,358.722447,359.906664,360.881903,362.182220,362.553739,363.761177,365.711653,366.594011,367.662129 diff --git a/data/torah/labels/Emor-3.txt b/data/torah/labels/Emor-3.txt deleted file mode 100644 index 586af3698..000000000 --- a/data/torah/labels/Emor-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.616193,3.753971,4.261726,4.981545,6.119323,7.257100,7.605400,9.300457,9.950615,11.854652,12.760230,13.201409,14.223087,15.430525,16.986261,18.147259,19.122497,20.608574,21.699912,23.464629,24.254107,25.159686,27.435241,28.642679,29.687577,30.778915,31.545173,32.450751,33.472429,34.517327,35.469345,36.282044,37.605581,39.138098,40.647395,42.574652,43.689209,45.848665,47.543722,49.076239,51.226943,51.888758,52.492477,53.328396,54.048214,55.348532,55.998690,56.602409,57.670527,58.529666,59.481684,61.896559,62.500278,63.429076,64.032795,64.984813,66.238690,67.399688,68.003407,69.094745,70.325402,71.602500,72.252659,73.320777,74.504994,75.317693,76.594790,77.291389,77.895108,78.638146,79.003498,80.025176,81.905992,82.532931,83.949348,84.645947,85.644405,86.085584,87.896740,88.662999,89.777557,90.915334,92.006672,92.865811,94.026808,94.723407,95.837965,98.345720,98.879779,99.808577,102.014473,102.548532,103.570210,104.893747,106.403044,107.355062,108.585720,109.700278,111.116695,112.579552,113.461910,114.669348,115.458827,116.805584,118.222001,119.359779,120.915516,122.122954,122.982092,123.887670,125.234427,126.906264,127.672523,128.972840,130.226718,130.714337,132.502273,133.361412,135.613747,136.240686,137.006944,138.284042,138.980641,139.770119,141.279416,142.811933,143.694291,145.041049,146.062727,147.037965,148.198963,149.429620,151.333656,152.401774,152.866173,153.585992,154.584450,155.490028,155.740822,156.469480,156.840999,157.560817,158.605715,159.697053,161.833289,162.669207,163.690885,164.712563,165.664582,166.941679,168.195557,169.472654,171.562450,172.816328,173.907666,175.324083,176.624400,177.019139,177.692518,179.271475,179.735874,180.432473,181.430931,182.708028,183.776146,184.983584,185.703402,186.841180,187.491339,188.396917,189.720455,191.508391,193.064128,194.062586,195.200364,196.175602,197.057960,198.102858,199.078096,199.565715,200.540953,201.539412,202.816509,204.232926,205.649344,207.460500,208.296418,209.410976,210.688074,211.732972,212.940409,213.451248,214.472926,215.564264,217.816600,219.000817,219.627756,220.951294,222.042631,223.110749,224.805806,226.082904,227.104582,228.567439,229.751656,230.703675,231.609253,232.816690,234.000908 diff --git a/data/torah/labels/Emor-4.txt b/data/torah/labels/Emor-4.txt deleted file mode 100644 index a985a3319..000000000 --- a/data/torah/labels/Emor-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.545986,3.683764,4.078503,4.867982,5.889660,8.165215,8.792154,9.558412,10.742630,12.484127,13.598684,15.386621,16.477959,17.220997,18.219455,19.148254,20.262811,21.330929,22.515147,23.165306,24.256644,25.649841,28.482675,29.341814,31.245850,32.476508,34.728843,35.773741,36.865079,37.677777,38.304716,39.001315,39.999773,40.742811,41.787709,42.925487,43.622086,44.736644,45.665442,47.662358,48.800136,50.425533,51.609750,52.724308,53.676326,54.512245,55.533923,56.462721,58.041678,59.225895,61.431791,62.824988,64.961224,66.099002,66.818821,67.933378,68.955056,70.487573,72.507709,73.181088,73.784807,75.015465,76.315782,76.965941,77.987619,78.939637,80.030975,80.890113,81.842131,82.794149,83.931927,85.139365,85.743084,86.439682,87.113061,87.902539,88.715238,89.458276,90.270975,90.944353,91.873152,93.452109,95.379365,96.540362,97.329841,98.142539,99.280317,100.441315,101.230793,101.950612,102.554331,103.320589,104.411927,105.178186,106.292743,107.918140,109.079138,109.706077,110.333016,111.308254,113.374830,113.908889,114.675147,115.929025,117.716961,118.738639,119.295918,120.271156,120.665895,122.384172,123.521950,124.357868,125.774285,126.819183,128.491020,128.885759,129.860997,131.672154,132.020453,133.761950,134.922948,136.292925,136.710884,137.709342,140.054557,140.419909,142.486485,143.438503,144.553061,146.085578,147.710975,148.988072,150.381270,151.728027,154.189342,155.048480,156.697097,157.161496,157.997415,159.088753,160.899909,161.294648,163.361224,164.591882,165.892199,168.260635,169.189433,170.838050,171.859728,172.974285,174.831882,176.155419,177.293197,178.059455,179.220453,180.776190,181.704988,182.865986,183.934104,185.907800,187.161678,188.578095,189.553333,191.573469,192.084308,192.780907,193.918684,194.870703,195.892381,198.005396,198.585895,199.468254,201.023991,202.045669,203.020907,205.482222,206.596780,208.547256,210.056553,211.147891,212.842948,213.980725,215.025623,217.138639,217.649478,218.415737,219.808934,220.946712,221.898730,222.920408,224.197505,225.103084,226.403401,227.378639,228.748616,230.048934,231.186712,231.999410,234.669705,235.644943,236.968480,238.268798,241.310612,243.307528,244.445306,246.302902,247.556780,248.833877,250.110975,251.550612,252.758050,253.895827,255.358684,256.635782,258.052199,259.398957,259.747256,261.511972,262.765850,263.810748,265.041406,266.318503,267.293741,269.313877,269.755056,271.589433,272.634331,273.563129,274.654467,275.815465,276.767483,277.951700,279.368118,280.854195,282.108072,282.665351,283.408390,284.522948,287.379002,288.214920,288.818639,289.793877,291.140635,293.369750,295.691746,296.550884,297.502902,298.524580,299.894557,301.380635,302.564852,305.745986,307.278503,308.253741,309.530839,310.529297,312.038594,313.292471,313.803310,314.616009,315.684127,318.006122,319.004580,320.188798,321.814195,324.252290,326.109886,327.178004,329.082040,329.797233,330.609932,331.770929,332.815827,333.489206,334.278684,335.416462,335.927301,336.995419,338.318957,340.594512,341.314331,342.753968,344.727664,347.769478,347.908798,348.687483,350.754059,351.374830,353.185986,354.254104,355.159682,356.483220,357.760317,358.898095,359.548254,360.709251,361.986349,362.868707,364.215465,365.399682,366.351700,367.280499 diff --git a/data/torah/labels/Emor-5.txt b/data/torah/labels/Emor-5.txt deleted file mode 100644 index 2f1910cef..000000000 --- a/data/torah/labels/Emor-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.320454,4.156372,4.806531,6.013968,9.032562,9.636281,10.518639,11.772517,12.979955,14.071293,16.184308,17.531066,19.551202,20.967619,21.919637,23.173515,24.520272,25.402630,25.983129,26.958367,27.675102,28.743220,29.927438,30.600816,31.692154,33.526531,34.432109,35.685986,37.357823,38.565261,38.983220,39.563719,40.399637,43.696871,45.043628,46.808345,48.805261,50.175238,51.939955,53.495692,55.097868,56.096327,56.723265,57.791383,59.138141,60.740317,61.111837,62.597914,64.269751,65.198549,66.545306,67.218685,68.310023,69.819320,71.096417,72.280635,73.116553,73.998912,75.276009,75.879728,77.156825,77.992744,79.850340,81.034558,82.288435,83.310113,84.633651,85.423129,85.980408,86.723447,87.930884,88.441723,89.370522,90.438639,91.112018,91.994376,93.619773,95.059410,95.895329,97.729705,98.983583,99.982041,100.492880,101.352018,102.652336,103.372154,104.254512,107.274216,107.785055,108.620973,109.503332,110.478570,111.268048,112.466234,113.418252,113.905871,114.950769,116.251087,117.040565,119.518491,120.400849,122.328106,123.507697,124.575815,125.086654,126.108332,127.594409,127.919489,129.219806,130.729103,131.634682,132.540260,134.142437,134.560396,135.233775,136.928831 diff --git a/data/torah/labels/Emor-6.txt b/data/torah/labels/Emor-6.txt deleted file mode 100644 index ccf22716c..000000000 --- a/data/torah/labels/Emor-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.113016,3.181134,3.715193,4.342132,5.294150,8.266304,8.707483,9.311202,10.611519,11.818957,13.119274,14.628571,16.625488,17.832925,19.110023,20.108481,21.942857,24.404172,25.472290,26.331429,27.910385,28.852108,30.013106,30.663265,31.615283,32.172562,33.054920,34.053378,34.749977,35.887755,37.606031,38.767029,40.044127,40.880045,41.971383,43.016281,46.801133,47.637052,49.099909,50.237687,51.584444,52.931201,54.045759,55.020997,56.646394,57.342993,57.796601,58.771839,59.886397,60.508710,61.785807,63.039685,64.572202,65.640320,66.336918,67.358596,68.449934,69.985636,70.987533,72.445764,74.024721,76.230617,78.371443,80.796780,81.934558,83.188436,83.742631,84.323129,85.646667,87.001524,88.092862,89.230640,90.368418,93.131592,94.478350,94.826649,95.709007,96.730685,97.171864,99.493860,100.283338,101.560436,102.930413,105.832907,107.899483,109.292681,109.942839,111.219937,113.658032,115.051229,115.464563,116.927420,117.995538,119.229370,119.326876,119.783565,120.851683,121.614858,122.682975,124.029733,125.167511,126.305288,127.512726,128.720164,129.974041,131.506558,133.108735,134.246513,136.591728,137.659846,138.333225,139.285243,140.748100,141.885878,143.255855,143.650595,144.393633,145.461751,146.436989,148.782205,150.964880,152.032998,153.402975,154.308554,155.376672,157.559347,158.511366,159.765243,160.694041,161.831819,162.807057,163.944835,165.012953,165.895311,168.658486,169.680164,170.934041,172.118259,173.116717,174.672454,175.740572,176.622930,177.598168,178.178667,179.246785,180.570322,181.940300,183.333497,186.050232,187.327329,189.324245,190.392363,192.528599,193.805697,194.177216,195.384654,196.615311,198.031728,199.215946,200.075084,201.375402,202.188100,203.325878,204.649415,206.971411,207.969869,208.341388,209.363066,210.500844,210.965243,211.917261 diff --git a/data/torah/labels/Emor-7.txt b/data/torah/labels/Emor-7.txt deleted file mode 100644 index dbf2e18c8..000000000 --- a/data/torah/labels/Emor-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.287949,3.588266,4.029445,4.842144,5.887041,7.961684,8.258917,9.118056,11.161412,12.503543,14.477239,15.452478,16.334836,18.238872,19.283770,20.444768,21.443226,22.441684,23.463362,25.437058,27.201775,28.734292,30.150709,32.008305,34.051661,35.259099,37.000595,39.276151,39.624450,41.458827,42.666264,43.850482,44.779280,45.893838,47.031616,49.283951,50.375289,52.000686,53.277784,54.578101,54.921775,56.082772,57.266990,58.451208,59.472886,62.013088,63.079271,64.927175,65.739873,67.133070,68.061869,69.013887,70.174884,71.382322,72.473660,73.495338,74.772435,76.281733,78.650168,80.089805,81.366903,82.226041,83.828218,85.953745,87.463042,88.995559,89.692158,90.853156,92.757192,93.337691,94.614788,96.031206,97.390982,98.762772,100.155969,101.595606,102.895924,104.173021,105.375833,107.488849,108.673066,110.948622,113.761740,115.038837,116.362375,117.314393,118.405731,118.963010,120.031128,121.006366,122.260243,123.607001,125.789676,127.020334,129.272669,130.364007,131.292806,134.613259,136.261876,137.794393,138.467772,140.069948,141.416706,142.879563,143.274302,144.481740,146.014257,146.396636,147.907956,149.231494,150.253172,150.833670,151.716029,152.668047,153.829045,154.618523,155.663421,157.312038,158.635575,159.657253,161.445190,162.420428,164.115484,166.507140,167.036573,168.127911,169.706868,170.256437,171.092355,172.578432,174.064509,175.086187,175.550586,176.432945,177.338523,179.915938,180.984056,181.448455,182.214713,183.143512,183.840110,185.674487,186.905144,188.135802,189.180700,189.668319,190.202378,191.573723,193.222340,194.290458,194.615537,195.358576,196.148054,197.750231,197.954585,200.160480,200.764199,201.460798,202.946875,205.501070,205.849369,208.519664,208.914403,210.098621,210.563020,211.631138,213.186875,214.301433,214.719392,215.903610,216.832408,217.598666,218.806104,219.758122,220.733360,221.708598,223.821614,224.425333,225.539891,226.700889,227.815446,228.883564,230.207102,230.741161,231.530639,232.877396,234.038394,235.152952,236.151410,236.635945,237.050821,238.304698,239.289279,240.659256,241.889913,242.470412,243.654630,245.837306,246.882204,247.819729,248.168029,248.864627,249.746986,250.559684,251.534922,252.928119,253.462178,254.460636,255.969933,256.875512,257.781090,258.779548,260.962224,261.635602,262.401861,263.191339,264.630976,266.372473,267.370931,268.137190,269.293562,270.059820,271.197598,272.544355,273.380274,274.262632,275.771929,276.561407,277.350886,278.233244,278.999503,280.253380,281.042859,281.762677,282.761135,283.620274,284.758051,285.501090,286.778187,287.683766,289.146623,290.330840,291.120319,292.211657,293.581634,294.301453,295.392791,296.530568,297.691566,298.829344,299.711702,301.987258,302.753516,303.937734,305.493471,306.886668,309.487303,309.858822,310.481135,312.060092,313.464174,313.662269,315.995149,316.408482,317.151521,318.591158,320.030795,321.215013,322.213471,323.095829,324.651566,325.835784,328.157779,329.109797,330.247575,331.360024 diff --git a/data/torah/labels/Emor-H.txt b/data/torah/labels/Emor-H.txt deleted file mode 100644 index 46fde5e03..000000000 --- a/data/torah/labels/Emor-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.856054,4.551111,5.665669,7.941224,8.893243,10.774059,11.377778,12.492336,13.839093,15.162630,15.743129,16.625488,17.763265,19.969161,21.106939,22.476916,24.473832,25.890249,28.165805,29.535782,30.069841,31.161179,32.484717,33.947574,35.108571,36.548209,38.591565,40.007982,40.425941,42.655057,45.139592,46.277370,46.625669,48.018866,50.039002,51.525079,52.012698,53.707755,56.447710,57.585488,58.096327,59.025125,60.604082,61.997279,63.204717,64.574694,66.246531,67.244989,68.243447,69.474104,70.519002,73.189297,75.766712,76.904490,78.274467,79.853424,81.896780,82.988118,84.553812,85.041431,85.993449,87.990365,89.058483,90.567780,91.241159,92.982655,93.934673,95.560070,97.115807,99.670002,100.413041,101.248959,103.129775,103.617394,104.569413,107.820206,108.238165,109.631363,110.973494,111.083426,113.660841,114.354356,115.213494,116.699571,117.558710,119.044787,120.043245,121.691862,123.015399,124.547916,125.941113,127.032451,127.752270,128.866828,129.308007,130.283245,132.001521,133.278619,134.021657,135.066555,136.622292,137.249231,138.781748,140.058846,141.614583,141.958256,143.421113,144.532447,144.784782,145.899340,146.244555,147.684193,148.984510,149.356029,150.215168,151.561925,152.931902,154.209000,154.859159,155.462877,156.554215,158.111429,158.970567,159.131565,161.174921,162.382359,163.195057,164.263175,165.772472,166.469071,167.421089,168.674966,170.114604,171.531021,172.459819,173.249298,174.317415,175.431973,176.337551,177.661089,178.450567,179.170386,180.401044,182.421180,183.071338,184.696735,185.811293,187.227710,188.620908,190.617824,192.823719,193.334558,194.309796,194.843855,195.865533,196.538912,197.723130,199.325307,199.859366,201.275783,203.040499,203.992517,204.828436,205.942994,206.686032,207.847030,209.495647,210.289449,210.607121,213.115096,214.747680,215.699698,217.274029,219.382522,221.611637,222.308236,222.582249,223.481660,224.712317,226.523474,228.334630,230.285107,231.237125,232.305243,233.419800,234.255719,236.090095,236.871864,237.124200,238.772816,239.210912,240.299166,241.645923,242.923020,244.246558,245.500435,247.102612,248.373275,249.231138,250.690912,252.118649,253.047447,254.324545,255.439102,257.459239,260.083093,260.849352,261.638830,262.614068,263.867946,264.936064,266.700780,268.186858,269.556835,270.926812,272.203910,273.736427,274.340146,275.013524,276.406721,277.126540,278.612617,280.493434,281.027492,281.943955,283.035293,283.708672,284.776790,286.541506,287.377424,289.652980,291.139057,292.766580,294.182997,295.738734,296.969392,298.107169,299.244947,300.336285,300.777464,302.054562,302.771296,303.723315,304.837872,305.348711,306.277510,306.741909,308.294562,308.918417,310.006671 diff --git a/data/torah/labels/Kedoshim-1.txt b/data/torah/labels/Kedoshim-1.txt deleted file mode 100644 index 48f0d601d..000000000 --- a/data/torah/labels/Kedoshim-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.536417,3.082184,3.461384,4.026584,5.100984,7.913384,8.162584,8.430373,9.805784,10.624773,12.267973,13.563573,14.479973,15.329573,16.403973,17.825973,18.679173,19.279573,19.911573,21.396773,22.471173,23.625501,24.385040,25.505040,26.057040,27.401040,28.521040,29.449040,29.905040,31.569040,32.137040,32.737040,33.105040,35.121040,36.433040,37.521040,38.193040,39.313040,40.049040,41.041040,41.681040,43.121040,44.981227,46.933227,47.893227,48.949227,49.973227,51.509227,53.141227,54.869227,56.917227,58.197227,59.637227,61.365227,61.549227,62.605227,63.981227,64.685227,66.189227,68.333227,69.261227,70.189227,71.053227,72.333227,73.245227,73.757227,74.093227,75.565227,76.797227,78.045227,79.229227,79.805227,80.285227,80.997227,81.781227,82.709227,85.109227,86.005227,86.773227,88.117227,89.545869,89.761869,90.721869,92.353869,93.929263,95.657263,96.553263,97.545263,98.505263,99.753263,100.905263,101.177263,102.681263,104.201263,105.001263,106.665263,107.737263,108.857263,109.233263,110.385263,112.209263,112.945263,114.065263,115.313263,116.201263,116.993263,118.561263,119.425263,120.689263,121.377263,122.721263,122.993263,124.081263,124.577263,126.977263,127.825263,128.849263,129.577263,130.921263,133.272953,133.688953,134.008953,134.984953,135.672953,136.984953,137.528953,138.322411,138.544494,139.568494,140.224494,141.344494,141.808494,143.824494,145.256494,146.792494,147.712494,147.920494,149.008494,150.152494,151.296494,152.416494,153.664494,154.912494,155.480494,156.376494,157.496494,158.816494,160.672494,161.208494 diff --git a/data/torah/labels/Kedoshim-2.txt b/data/torah/labels/Kedoshim-2.txt deleted file mode 100644 index f19d90045..000000000 --- a/data/torah/labels/Kedoshim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.184000,2.176000,3.040000,4.384000,5.152000,6.176000,7.296000,8.096000,9.024000,9.952000,10.656000,11.584000,12.832000,13.792000,15.296000,16.128000,17.504000,18.368000,19.712000,20.640000,21.600000,21.899829,22.304000,23.264000,24.437334,25.909334,26.533334,27.245334,27.410324,28.658324,30.066324,31.756248,32.844248,33.148248,34.684248,35.516248,36.444248,37.172248,38.548248,38.948248,40.388248,41.060248,42.084248,42.332248,43.565525,44.781525,46.333525,47.605525,49.045525,49.861525,51.461525,52.061525,55.293525,57.725525,59.421525,59.629525,61.021525,62.397525,63.789525,64.093525,65.101525,66.509525,67.981525,69.069525,70.637525,71.757525,72.685525,74.157525,78.029525,78.837525,79.605525,79.949525,82.189525,83.133525,85.405525,87.122688,88.338688,90.066688,91.506688,93.202688,94.263755,95.799755,96.591755,97.711755,98.559755,99.255755,100.119755,102.287755,104.239755,105.031755,106.039755,106.479755,106.879755,108.767755,110.639755,110.887222,112.021412,113.525412,114.061412,114.733412,115.621412,116.673660,117.433660,119.161660,121.913660,122.745660,125.369660,127.241660,128.337660,129.897660,131.273660,131.961660,133.161660,134.273660,135.521660,137.825660,138.737660,141.321660,142.777660 diff --git a/data/torah/labels/Kedoshim-3.txt b/data/torah/labels/Kedoshim-3.txt deleted file mode 100644 index da351bc63..000000000 --- a/data/torah/labels/Kedoshim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.024000,2.176000,2.544000,4.240000,5.680000,6.032000,6.928000,8.112000,9.552000,10.480000,10.776000,11.704000,12.952000,14.584000,15.672000,17.208000,18.456000,18.792000,20.232000,21.425717,22.625717,23.425717,23.873717,24.641717,25.889717,26.625717,27.873717,29.281717,31.329717,32.449717,32.721717,33.681717,34.673717,35.377717,36.497717,37.233717,38.001717,39.249717,39.953717,40.625717,41.057717,41.761717,42.433717,43.457717,44.097717,45.313717,46.555565,47.675565,48.411565,49.371565,50.843565,51.931565,52.475565,53.179565,54.427565,55.771565,57.595565,58.907565,59.707565,60.827565,62.587565,63.675565,64.299565,65.131565,65.835565,66.459565,67.547565,68.187565,68.987565,69.291565,70.123565,71.211565,72.187565,73.435565,74.331565,75.483565,76.187565,77.307565,77.867565,79.243565,80.331565,81.675565,82.571565,83.003565,84.091565,84.515565,85.635565,85.907565,86.803565,87.307565,88.571565,89.107565,89.795565,90.731565,91.659565,92.059565,92.715565,94.187565,95.517902,96.413902,97.277902,98.653902,99.165902,100.093902,101.245902,102.781902,103.389902 diff --git a/data/torah/labels/Kedoshim-4.txt b/data/torah/labels/Kedoshim-4.txt deleted file mode 100644 index c24295ca1..000000000 --- a/data/torah/labels/Kedoshim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.163996,2.283996,4.363996,5.259996,6.347996,7.115996,7.787996,8.875996,10.315996,12.171996,13.099996,14.891996,17.099996,18.203996,19.995996,21.243996,21.723996,22.907996,23.403996,24.139996,25.003996,25.739996,26.667996,27.403996,28.107996,29.803996,30.363996,31.227996,31.787996,32.907996,35.755996,37.003996,38.699996,40.299996,41.227996,41.915996,43.163996,44.923996,46.171996,47.163996,47.803996,48.363996,49.323996,50.123996,50.859996,52.619996,53.275996,54.107996,54.683996,55.515996,56.763996,58.491996,58.763996,59.003996,59.867996,60.163996,60.307996,61.651996,62.931996,63.923996,65.171996 diff --git a/data/torah/labels/Kedoshim-5.txt b/data/torah/labels/Kedoshim-5.txt deleted file mode 100644 index 52d9c7fb1..000000000 --- a/data/torah/labels/Kedoshim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.600000,2.432000,2.880000,3.448000,4.568000,5.384000,6.280000,9.512000,11.624000,12.584000,14.472000,15.528000,17.704000,18.568000,20.328000,21.336000,23.512000,24.568000,26.200000,27.992000,29.208000,30.040000,30.712000,31.704000,32.248000,33.272000,34.776000,36.664000,38.200000,38.536000,39.304000,40.232000,41.288000,42.760000,43.560000,44.296000,45.096000,46.600000,47.560000,48.648000,49.640000,51.528000,52.648000,52.816000,54.096000,55.440000,55.584000,55.952000,57.424000,60.912000,62.288000,64.368000,64.928000,66.752000,67.448000,68.408000,68.758720,69.846720,70.838720,71.894720,72.790720,73.718720,74.998720,75.766720,76.854720,78.001937,79.537937,79.945937,81.577937,82.409937,83.081937,84.521937,86.217937,88.137937,90.345937,90.721937,91.777937,93.505937,95.329937,96.449937,97.377937,98.369937,99.617937,102.369937,103.617937,104.865937,105.297937,106.289937,106.945937,108.481937,109.505937,110.625937,112.897937,113.201937,113.969937,114.769937,115.921937,117.169937,117.905937,118.769937,119.793937,121.969937,123.345937,124.273937,125.809937,126.769937,127.857937 diff --git a/data/torah/labels/Kedoshim-6.txt b/data/torah/labels/Kedoshim-6.txt deleted file mode 100644 index a67a59c16..000000000 --- a/data/torah/labels/Kedoshim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.967768,2.207768,3.455768,4.735768,5.567768,6.431768,7.103768,8.799768,9.391768,10.063768,11.567768,12.463768,14.191768,14.503768,15.943768,16.679768,17.223768,17.863768,18.567768,20.327768,22.056107,22.931750,23.731750,24.563750,26.483750,27.859750,28.691750,28.931750,29.763750,30.435750,31.459750,32.195750,32.403750,33.107750,33.971750,34.475750,34.987750,35.819750,37.259750,39.243750,40.683750,41.547750,41.795750,42.571750,43.627750,44.347750,45.019750,45.979750,46.635750,47.531750,48.347750,49.179750,50.107750,51.995750,53.435750,54.171750,54.411750,55.531750,56.155750,56.923750,57.819750,58.747750,59.387750,60.283750,61.147750,63.067750,64.027750,65.371750,65.611750,66.411750,67.339750,68.523750,69.515750,70.219750,71.083750,71.979750,72.779750,73.339750,74.363750,76.123750,76.987750,78.523750,78.859750,80.331750,81.099750,81.739750,82.555750,83.195750,85.627750,87.363750,88.123750,89.291750,89.899750,90.459750,91.259750,92.795750,95.483750,96.555750,97.995750,99.787750,101.035750,101.475750,102.115750,102.771750,103.635750,105.075750,107.091750,108.051750,108.883750,109.379750,109.731750,110.419750,111.811750,112.643750,113.987750,114.171750,114.891750,115.259750,116.219750,116.915750,117.491750,118.419750,119.251750,120.600393,121.000393,121.832393,122.400393,126.138179,126.570179,127.466179,128.034179,128.506179,131.034179,132.058179,132.218179,134.490179,135.530179,136.874179,137.130179,138.058179,138.874179,139.770179,141.258179,142.282179,142.810179,143.610179,145.362179,147.042179,147.858179,148.754179,149.714179,152.626179,153.426179,153.946179,154.162179,156.122179,158.042179,159.386179,159.722179,160.682179,160.954179,162.154179,163.178179,165.706179,166.618179,166.826179,167.514179,168.570179,169.546179,170.410179,171.242179,172.234179,173.356821,174.956821,176.492821,177.644821,178.460821,178.860821,179.756821,181.132821,181.348821,183.044821,184.029750,184.893750,186.077750,187.845339,189.125339,190.085339,190.229339,191.989339,192.885339,193.525339,194.197339,195.349339,195.989339,197.013339,198.293339,200.245339,201.389339,202.605339,203.229339,203.821339,204.501339,205.189339,205.893339,207.045339,208.325339,209.045339,209.877339,210.997339,213.533821,213.805821,214.013821,214.941821,215.149821,215.421821,216.733821,217.709821,218.669821,219.269821,220.613821,221.269821,222.197821,223.245821,225.005821,226.093821,227.770071,229.025589,230.337589 diff --git a/data/torah/labels/Kedoshim-7.txt b/data/torah/labels/Kedoshim-7.txt deleted file mode 100644 index 11492833a..000000000 --- a/data/torah/labels/Kedoshim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.948603,2.748603,3.772603,4.892603,5.612603,6.068603,6.932603,8.244603,9.524603,9.956603,10.132603,10.900603,11.732603,12.980603,13.940603,15.220603,16.916603,19.508603,20.324603,20.572603,22.588603,25.064877,26.643575,27.379575,28.307575,29.235575,30.771575,31.635575,32.227575,33.379575,34.091575,35.147575,36.395575,37.059575,37.875938,38.547938,38.915938,40.195938,43.075938,43.699938,45.331938,46.387938,47.763938,48.579938,49.123938,50.035938,51.187938,52.043938,53.307938,53.643938,55.947938,57.379938,59.267938,60.547938,61.619938,63.051938,64.203938,65.099938,65.963938,66.955938,68.427938,70.160815,70.704815,71.920815,72.616815,73.352815,73.848815,74.808815,76.200815,78.016815,78.480815,79.152815,79.872815,80.896815,82.096815,82.368815,83.744815,84.496815,85.168815,86.160815,87.376815,88.072815,89.160815,89.536815,90.688815,92.448815,93.312815,94.400815,96.192815 diff --git a/data/torah/labels/Kedoshim-h.txt b/data/torah/labels/Kedoshim-h.txt deleted file mode 100644 index 2eebdd967..000000000 --- a/data/torah/labels/Kedoshim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.392000,4.408000,5.880000,6.840000,8.280000,9.176000,10.488000,11.000000,13.176000,14.360000,14.744000,16.888000,18.520000,19.832000,21.080000,22.968000,23.928000,24.680000,26.088000,28.712000,30.952000,32.072000,34.088000,35.976000,37.192000,39.789533,40.877533,42.189533,42.653533,44.989533,47.037533,49.437533,50.317533,51.597533,53.389533,53.901533,54.173533,55.453533,55.885533,57.453533,57.789533,58.685533,59.613533,60.797533,62.738480,63.346480,64.114480,64.418480,64.722480,66.738480,68.082480,68.722480,70.258480,70.930480,71.602480,72.370480,73.618480,75.570480,76.594480,77.362480,78.202480,79.962480,82.778480,83.514480,85.018480,86.938480,88.506480,90.266480,91.966143,92.958143,94.846143,95.126143,95.686143,96.742143,98.758143,100.390143,100.790143,103.286143,105.334143,106.454143,107.958143,108.686143,110.094143,111.134143,113.150143,113.878143,115.014143,116.006143,116.350143,117.534143,118.334143,119.038143,119.742143,121.982143,122.750143,123.998143,124.798143,125.950143,127.006143,128.030143,128.766143,129.134143,130.286143,131.758143,132.654143,133.998143,135.310143,136.430143,137.582143,139.502143,140.622143,141.934143,143.086143,143.790143,145.230143,147.438143,151.200225,151.648225,152.288225,152.752225,154.800225,157.680225,158.896225,159.856225,161.104225,163.280225,164.464225,165.904225,166.256225,167.920225,169.768673,170.856673,172.520673,172.648673,174.536673,176.216673,176.432673,178.416673,179.408673,181.520673,183.888673,185.008673,186.032673,187.664673,189.200673,190.480673,191.952673,192.672673 diff --git a/data/torah/labels/Ki Tavo-1.txt b/data/torah/labels/Ki Tavo-1.txt deleted file mode 100644 index ec74715d2..000000000 --- a/data/torah/labels/Ki Tavo-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.623855,2.783311,4.362268,4.611519,5.818957,7.305034,8.883991,10.323628,11.275646,11.995465,13.481542,15.130159,16.399546,17.490884,20.672018,22.785034,23.226213,23.829932,26.175147,27.475465,29.449161,31.678277,33.117914,35.416689,37.390385,38.295964,38.946122,40.269660,41.268118,43.311474,43.562268,44.630385,46.046803,47.207800,48.972517,50.365714,51.526712,52.594830,53.709388,55.358005,55.517460,56.910658,57.769796,58.652154,59.697052,60.440091,61.969524,63.943220,65.446757,66.538095,68.024172,69.463809,70.261088,71.166667,71.538186,72.722404,74.185261,76.251837,78.016553,79.874150,80.942267,82.358685,84.750340,86.979456,88.094014,89.580091,91.994966,94.107982,95.338639,96.406757,97.985714,99.820091,102.234966,104.394422,105.834059,108.063175,109.781451,111.360408,112.544626,114.286122,115.679320,116.979637,117.606576,118.721134,119.626712,120.857370,122.134467,123.063265,123.875964,124.735102,126.081859,128.496735,130.122131,131.376009,132.792426,134.301723,135.323401,136.205760,137.436417,139.851292,140.362131,141.523129,142.382267,143.775465,145.284762,146.817279,147.119138,148.303356,150.460087,150.790619,152.996514,154.087852,155.341730,156.131208,158.174564,160.543000,161.912977,163.445494,165.070891,166.371208,168.228805,169.552342,171.108079,172.036877,173.731934,176.262909,178.166945,178.724224,180.187081,181.046220,182.509077,183.228895,183.809394,185.550891,186.758328,188.755245,189.800143,190.868260,192.679417,195.837331,197.462728,198.925585,199.552524,200.713521,202.199598,203.917875,204.614474,205.961231,206.583544,207.953521,211.038691,212.455109,214.382365,215.961322,219.096016,220.257013,221.464451,223.461367,225.760143,226.510883,228.670339,231.015554,232.153332,233.987708,235.357686,236.681223,238.538819,240.048116,242.119593,244.250928,245.388706 diff --git a/data/torah/labels/Ki Tavo-2.txt b/data/torah/labels/Ki Tavo-2.txt deleted file mode 100644 index fd0370366..000000000 --- a/data/torah/labels/Ki Tavo-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066576,4.597551,8.521723,9.218322,9.729161,12.051156,14.675011,15.975329,17.089887,18.181224,19.527982,21.492426,23.837642,25.254059,27.111655,29.247891,30.594649,32.057506,34.286621,40.323810,43.272744,44.851701,47.173696,49.774331,51.097868,51.608707,53.837823,55.509660,57.460136,58.992653,60.780590,62.847166,65.145941,65.912200,67.467937,68.837914,70.184671,71.113469,72.042268,73.876644,74.944762,76.872018,77.940136,79.170794,81.585669,84.023764,85.416961,86.647619,87.971156,89.712653,91.082630,92.081088,93.218866,94.913923,97.746757,99.139955,101.183311,102.878367,105.664762,106.895420,107.963537,109.960454,113.260911,114.561229,116.952884,117.603043,120.668077,122.572113,123.129392,124.383270,124.750163,126.445220,127.861637,129.672793,130.764131,132.127941,133.288939,135.146535,136.609392,138.884948,140.974743,142.135741,143.900458 diff --git a/data/torah/labels/Ki Tavo-3.txt b/data/torah/labels/Ki Tavo-3.txt deleted file mode 100644 index 96ef19df1..000000000 --- a/data/torah/labels/Ki Tavo-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.834376,4.249252,5.688889,8.010884,11.006259,13.374694,13.955193,14.976871,16.114649,16.764807,18.645624,20.874739,22.476916,23.707574,24.752472,25.983129,27.074467,28.792744,29.489342,30.580680,32.229297,33.274195,36.246349,37.221587,39.264943,40.913560,43.769615,45.580771,47.833107,51.014240,52.825397,54.265034,55.936871,58.839365,60.696961,62.577778,63.854875,64.574694,66.269751,67.941587,69.474104,70.472562,71.145941,72.469478,73.073197,75.186213,77.067029,79.110385,79.969524,81.082540,82.545397,84.356553,85.656871,87.769887,88.768345,90.300862,93.621315,94.248254,96.291610,97.661587,99.286984,100.935601 diff --git a/data/torah/labels/Ki Tavo-4.txt b/data/torah/labels/Ki Tavo-4.txt deleted file mode 100644 index adb9523cf..000000000 --- a/data/torah/labels/Ki Tavo-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.925714,4.295692,6.246168,7.685805,8.312744,9.334422,10.402540,12.004717,12.325170,12.766349,14.252426,16.713741,18.896417,20.219955,21.264853,22.983129,25.676644,28.904218,30.181315,31.551293,32.062132,34.453787,35.266485,37.193741,38.168980,39.144218,40.653515,41.814512,42.859410,45.901224,47.294422,49.244898,50.777415,52.588571,53.703129,55.676825,57.878095,60.362630,60.850249,61.500408,63.241905,64.472562,65.656780,67.444717,73.133605,75.966440,77.057778,77.498957,79.449433,80.819410,81.887528,84.116644,85.184762,87.390658,88.551655,90.339592,91.756009,93.265306,94.844263,96.771519,98.141497,99.302494,100.881451,102.413968,106.515616,108.141013,108.651852,110.997067,114.224641,114.944460,116.523417,118.798972,120.122510,122.514165,124.018836,126.062192,127.292850,128.268088,129.638065,131.263462,132.261920,133.910537,135.814573,136.557612,137.811489,139.529766,141.015843,143.012759,144.452396,145.056115,145.775934,147.076251,148.701648,150.652124,151.813122,153.020559,153.949358,154.924596,155.969494,157.385911,159.568587,160.613485,161.820922,163.492759,165.280696,167.161512,168.299290,169.971126,170.807045,173.523779,174.545457,175.892215,177.749811,179.723507,179.952623,182.440088,183.070355,183.488315,185.322691,186.599788,187.528587,188.527045,190.106002,192.962056,194.076614,196.352169,198.116886,198.720605,199.065820,200.180378,201.202056,202.920333,204.127770,205.613847,207.192804,208.168042,210.138655,211.415752,212.925049,214.782646,218.195979,219.356977,220.468451,222.047408,223.812124,224.226999,225.805956,226.451489,227.682147,230.027362,231.420559,233.231716 diff --git a/data/torah/labels/Ki Tavo-5.txt b/data/torah/labels/Ki Tavo-5.txt deleted file mode 100644 index 241c1d01d..000000000 --- a/data/torah/labels/Ki Tavo-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.157914,4.295692,4.760091,5.944308,7.105306,8.103764,9.938141,12.469116,15.092971,16.788027,17.182766,18.111565,18.692063,19.783401,21.339138,23.057415,23.498594,24.775692,26.215329,28.049705,29.396463,31.207619,32.066757,34.551293,36.850068,38.127166,38.568345,39.822222,40.658141,41.842358,43.165896,44.293698,45.594016,47.056873,47.799912,49.750388,51.120365,53.140501,55.392837,55.880456,56.086351,56.547667,57.894424,58.544583,59.752020,61.005898,65.371249,66.369707,68.993562,69.899141,72.081816,73.289254,75.680909,77.956465,78.908483,79.930161,80.975059,82.391476,84.759912,85.293970,86.896147,88.359004,90.263041,92.427726,93.472624,94.215663,95.423100,96.630538,97.094937,97.954075,99.579472,101.576388,102.737386,103.433985,104.664642,105.848860,106.054756,106.983554,108.330311,110.605867,111.557885,112.417023,113.601241,114.739019,115.087318,115.946456,117.316434,119.429449,121.449585,122.285504,122.866003,123.771581,125.327318,126.441876,126.790175,127.509994,128.903191,131.039427,132.316524,132.873803,133.849041,135.010039,135.892397,136.588996,137.192715,138.191173,139.305731,139.700470,140.373848,141.720606,143.833622,144.924960,145.366139,145.734574,146.895572,147.847590,148.265549,148.938928,150.216025,152.449740,153.657178,153.982257,155.120035,155.746974,156.629332,156.928108,157.485387,158.344525,159.389423,159.736180,160.548879,161.918856,163.938992,165.123210,165.610829,166.748607,167.839944,168.211464,168.884842,170.254820,172.182076,173.250194,173.993232,175.525749,176.988607,177.336906,178.149604,179.473142,180.959219,182.607836,183.513414,184.674411,185.440670,186.067609,187.158947,188.366384,188.691464,189.411282,190.734820,193.172915,195.030511,195.587790,197.189967,197.793686,198.487201,199.439219,200.179173,201.433051,202.268969,203.337087,203.708607,204.405205,206.007382,208.665015,209.172770,210.356988,211.448326,212.632543,214.397260,215.767237,217.206874,218.391092,219.041251,219.363246,220.733224,222.683700,223.891138,225.121795,226.143473,228.813768,230.462385,231.948462,233.295219,234.363337,234.920616,235.570775,237.126512,239.791775,241.626151,242.206650,243.065788,244.157126,245.991503,247.268600,248.522478,249.683475,250.798033,252.121571,253.259348,254.118487,255.070505,256.138623,256.904881,258.390958,260.550414,261.084473,262.849190,263.824428,264.938986,265.798124,267.028782,268.166559,269.373997,270.697534,272.369371,273.639382,274.870039,277.075935,278.027953,278.770992,280.001649,281.000107,282.370085 diff --git a/data/torah/labels/Ki Tavo-6.txt b/data/torah/labels/Ki Tavo-6.txt deleted file mode 100644 index c9cd31fca..000000000 --- a/data/torah/labels/Ki Tavo-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,3.831293,4.153288,5.476825,7.079002,8.518639,9.958277,11.328254,12.651791,13.650249,15.345306,16.668844,18.108481,19.153379,20.360816,21.823673,23.193651,24.749388,25.654966,26.021859,27.275737,30.035828,31.336145,32.497143,33.515737,36.302132,38.275828,39.042086,39.970884,41.294422,42.269660,43.360998,44.939955,46.263492,46.867211,48.399728,49.514286,50.744943,51.627302,52.138141,53.206259,55.017415,55.574694,56.549932,58.244989,59.754286,61.495782,63.492698,65.094875,65.675374,66.929252,68.113469,70.063946,70.830204,71.875102,72.687800,74.150658,75.613515,77.207982,79.320998,80.667755,82.177052,84.499048,86.565624,87.610522,89.143039,90.187937,91.790113,92.788571,94.158549,95.389206,97.455782,99.406259,101.008435,101.774694,102.842812,104.723628,105.907846,109.344399,109.762358,110.876916,112.409433,112.897052,115.451247,116.774785,117.448163,118.539501,119.979138,122.301134,122.811973,123.601451,124.739229,125.784127,128.013243,129.174240,130.544218,131.705215,132.216054,133.562812,135.319964,136.782821,137.850939,139.360236,140.776654,142.587810,143.772028,144.909806,145.954704,146.883502,148.067719,148.787538,150.552255,151.039874,152.618831,153.756608,155.985724,157.378921,159.598984,161.944200,163.035538,164.103655,165.868372,167.006150,168.863746,169.676445,170.883882,172.021660,173.902476,175.058848,176.637805,177.798803,178.634721,179.726059,181.931955,184.114631,185.205968,186.459846,188.456762,190.871637,191.312816,192.009415,192.845333,193.518712,194.772590,195.724608,196.769506,197.628644,198.046603,198.298939,199.343837,200.481615,202.379483,203.285061,204.237079,205.096218,206.768055,208.161252,208.509551,209.182930,209.925968,211.690685,212.271184,212.944562,213.734041,214.407420,214.961615,216.076172,216.610231,217.794449,219.257306,219.907465,219.997261,220.984925,221.494222,222.539120,223.212499,224.001977,224.977216,226.091773,226.715628,227.294585,228.153723,228.910730,229.514449,230.791547,232.277624,233.020662,234.762159,235.271456,236.386014,236.755991,237.893769,238.381388,239.403066,239.937125,240.581462,241.510260,242.137199,242.996338,243.412755,244.666632,245.154251,246.315249,247.847766,249.380283,250.100102,251.493299,252.259557,253.556451,255.065748,256.435725,257.271026,257.601277,258.274656,259.061051,260.222048,261.011527,261.940325,262.962003,263.519282,264.192661,264.421776,265.048715,266.395472,267.437286,269.480642,270.897060,273.102955,275.006992,276.536425,277.581323,279.206720,281.017876,282.411073,282.921912,284.454429,285.937422,287.353840,288.027218,288.302774,289.185132,290.021051,291.019509,291.366266,292.387944,293.363182,294.988579,296.451436,296.892615,297.208628,298.021326,298.741145,299.809263,300.434660,301.340238,302.594115,303.662233,304.265952,305.357290,306.471848,307.818605,310.163821,310.883639,312.671576,313.971893,315.040011,316.526088,317.454886,320.055521,320.728900,321.518378,322.354297,323.793934,324.931712,325.558651,326.557109,327.555567,328.971984,330.086542,331.154660,331.804818,332.239204,333.447082,335.812433,336.810891,338.598828,339.922365,340.801640,342.101957,343.671662,344.461141,346.236293,347.838470,349.278107,350.253345,350.459240,351.434479,353.106315,354.104773,355.381871,356.705408,358.818424,360.350941,361.233299,363.137336,364.155930,366.477925,367.569263,368.451621,369.589399,370.703957,371.493435,372.306134,372.558470,373.858787,375.925363,376.386678,377.965635,379.730352,380.286706,381.308384,382.117999,383.302216,384.065391,385.830107,386.805346,387.594824,389.173781,390.102579,391.031377,391.611876,392.633554,393.539132,394.351831,395.280629,395.837908,397.277545,399.251241,400.133600,401.712556,402.664575,404.429291,406.217228,407.563985,408.655323,409.839541,410.512919,411.279178,411.906117,413.299314,414.529971,415.760629,416.268384,416.964983,418.028475,419.143033,420.605890,421.674008,422.463486,423.136865,424.739042,425.458860,426.201899,427.037817,427.409337,428.198815,429.034733,429.592012,430.660130,431.739554,432.691572,433.666810,435.129667,436.012025,436.499644,437.126583,437.753522,438.380461,440.214837,441.654474,442.397513,443.117331,443.581730,444.556968,446.461005,447.250483,448.129758,449.104996,449.755154,450.683953,451.728851,453.145268,454.236606,455.420823,456.117422,456.930120,457.649939,458.880597,459.670075,460.064814,460.622093,461.458012,462.549349,463.408488,464.174746,465.614383,466.427082,468.052479,469.956515,470.815653,471.976651,472.859009,473.602048,474.577286,475.111345,476.318783,477.050866,477.547720,478.188643,479.140662,480.673179,482.066376,483.317170,484.245968,485.081886,485.569505,486.614403,488.437711,489.505829,490.643607,491.874264,492.779842,493.964060,494.753538,495.937756,496.704015,497.888232,498.700931,499.234990,500.414582,501.134400,502.039978,503.247416,503.874355,504.803153,506.289230,507.098845,507.772223,509.374400,510.837257,511.371316,512.114355,512.694854,513.809411,514.413130,514.967325,516.267643,518.914718,519.680976,520.307915,520.888414,521.817212,522.838890,523.558709,524.533947,525.021566,525.764604,526.693402,527.428577,528.148396,529.100414,530.191752,531.027670,531.631389,532.165448,532.862046,533.651525,534.185584,535.044722,535.834201,537.204178,538.481275,540.733611,541.383770,542.498328,543.659325,544.564904,545.307942,546.329620,547.235198,548.349756,548.907035,549.998373,550.973611,551.995289,552.900867,553.945765,554.479824,555.756922,556.476740,557.126899,558.032477,558.938055,559.632740,560.656332,561.671012,563.110649,563.598268,564.527067,565.757724,566.941942,568.288699,569.054958,570.099856,570.703575,571.002350,572.441987,573.324346,574.644799,575.620037,577.268654,578.313552,579.381670,579.985389,580.960627,582.237724,582.841443,583.723801,585.116999,586.695956,587.067475,587.903393,589.505570,590.596908,590.824482,591.706840,592.030377,593.191375,594.236273,595.397271,596.395729,597.161987,598.160445,598.903484,600.760289,600.967727,602.593124,603.521922,605.727817,606.656616,607.492534,609.350130,611.138067,612.299065,613.622602,614.226321,616.313033,616.939972,617.891990,618.263509,619.470947,620.051446,621.049904,622.001922,623.255799,625.740334,626.854892,627.714031,628.735709,630.361105,631.266684,632.404461,633.286820,634.819337,636.514393,637.280652,637.532988,638.392126,639.947863,640.643610,641.221876,642.013587,642.956354,643.281433,644.233451,644.953270,646.276807,647.321705,647.786104,648.668463,651.955102,652.698141,653.841000,654.421499,656.471961,657.104220,658.907667,659.813245,660.017599,661.341136,663.314832,664.731249,665.915467,667.053245,667.773064,668.748302,669.955739,671.023857,671.650796,673.601272,674.576510,676.828846,678.082723,678.941862,680.729798,681.496057,682.633834,683.864492,685.234469,687.115286,687.904764,689.042542,689.923358,690.619957,691.107576,692.268574,693.592111,694.265490,695.008528,696.123086,697.121544,698.282542,699.188120,700.534878,701.347576,702.369254,703.228392,704.807349,705.036465,706.753590,708.185127,708.997825,710.112383,710.971522,711.361635,712.029707,712.824258,714.008476,715.219088,716.287206,717.099904,717.609201,718.259360,719.397138,720.628880,721.557678,722.347157,724.181533,724.854912,726.364209,727.082019,728.034037,729.148595,730.051089,731.281747,731.908685,732.441202,733.486100,735.018617,735.993855,737.317393,738.849910,739.755488,740.730726,741.678118,742.459887,743.156486,743.641021,744.311316,745.565193,746.726191,747.538889,748.370182,749.740159,750.994037,751.713855,753.246372,754.523470,755.777348,758.145783,758.981701,759.537438,760.347053,760.644286,761.526645,762.617982,763.381157,764.333175,765.912132,767.258889,768.559207,769.253098,770.159842,771.108776,772.664513,774.127370,777.192404,779.000477,779.833311,781.598028,783.014445,783.966463,784.988141,786.172359,787.310137,788.122835,788.584150,789.652268,790.766826,791.904604,792.717302,793.286638,794.726275,795.747953,797.326910,797.930629,798.146343,799.585981,801.397137,801.928112,802.203668,802.993146,804.130924,804.943622,806.034960,806.912693,807.702171,810.442126,810.925119,812.573736,813.731650,814.677500,815.324575,815.832330,816.524303,817.731740,818.823078,819.446933,819.789065,821.041400,821.824988,822.590807,823.589265,824.493301,825.210036,826.788993,828.739469,829.691487,831.177564,832.103278,833.635795,834.332394,834.724049,835.629627,836.511986,837.231804,837.996521,838.733392,839.795342,840.512076,841.465649,841.765966,842.603427,843.247418,844.129776,845.032270,845.680887,846.470366,847.445604,848.351182,848.978121,849.990547,850.849685,851.615944,852.242883,854.087377,856.246833,856.966652,857.802570,858.754588,859.451187,860.379985,861.180560,862.164838,862.897295,863.288950,863.985549,864.911263,865.744098,866.437613,867.621830,870.422046,871.188452,871.524589,872.968678,874.756615,875.589449,877.377386,878.399064,879.676161,880.256660,880.860379,881.649857,883.135935,883.945940,884.635980,885.512170,886.069449,887.625186,888.437885,889.482783,890.132941,890.518429,890.643780,891.201059,892.222737,894.080334,894.869812,895.377567,896.883780,897.789359,898.227454,898.642329,899.362148,900.337386,901.515436,902.653213,903.532488,904.948905,906.574302,907.060379,908.427272,909.075889,910.329767,910.907182,912.114619,913.350236,914.268233,915.183070,915.995768,916.762027,917.412186,918.015904,918.707877,919.822435,922.515950,923.700167,924.582526,925.163025,926.207923,927.067061,928.065519,928.805474,929.779170,930.684748,931.845746,932.797764,933.703342,934.330281,935.073319,938.231233,939.206471,940.321029,941.087288,941.667787,943.174000,944.334997,944.977446,945.262461,946.156799,946.946277,947.944735,948.687774,949.173851,949.680064,950.515982,951.370495,952.299293,953.158431,954.017570,955.573306,956.734304,957.242059,958.286957,959.598403,960.666521,962.895637,964.753233,965.960671,966.375546,967.579900,968.414276,968.993233,969.641850,970.010285,971.284299,973.211555,974.674412,976.578448,977.646566,978.923664,979.666702,980.874140,983.683755,984.496453,985.982530,986.818448,988.443845,989.371101,989.646657,991.388154,993.059990,993.524389,994.012008,995.030603,995.816997,996.699355,998.185433,999.137451,999.880489,1000.527564,1001.595682 diff --git a/data/torah/labels/Ki Tavo-7.txt b/data/torah/labels/Ki Tavo-7.txt deleted file mode 100644 index 61211c46e..000000000 --- a/data/torah/labels/Ki Tavo-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.670295,4.272472,4.685805,4.986122,6.054240,7.006259,8.306576,9.212154,12.021769,12.648707,13.252426,16.178141,17.524898,19.103855,20.729252,22.470748,23.910385,25.164263,25.953741,27.370159,28.229297,29.924354,31.712290,33.268027,34.243265,35.125624,36.472381,38.933696,41.812971,44.111746,45.504943,46.573061,49.521995,51.124172,52.378050,53.167528,54.630385,56.000363,56.929161,58.438458,59.529796,60.481814,61.387392,62.966349,64.197007,66.077823,67.122721,68.074739,69.351837,70.187755,71.371973,73.276009,75.133605,76.782222,77.316281,78.314739,79.243537,80.822494,82.169252,83.423129,84.769887,85.954104,87.347302,88.113560,89.529977,91.271474,92.386032,94.166167,95.116735,96.393832,98.390748,100.268481,100.918639,102.172517,103.263855,105.748390,106.561088,107.420227,111.297959,112.458957,113.294875,115.477551,117.869206,120.079308,122.331644,124.073141,124.514320,125.791417,127.811553,129.599490,130.853367,132.989603,134.823980,135.590238,137.749694,140.187789,140.675408,141.882846,143.322483,144.483481,146.155318,147.084116,149.034592,150.311689,151.519127,152.169286,153.167744 diff --git a/data/torah/labels/Ki Tavo-H.txt b/data/torah/labels/Ki Tavo-H.txt deleted file mode 100644 index 95fe64208..000000000 --- a/data/torah/labels/Ki Tavo-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.586697,3.922640,4.473772,4.993651,6.947997,7.876795,10.256841,11.301738,13.778534,14.742177,15.670975,16.657823,17.934921,18.766969,21.746863,23.952200,25.531156,27.316155,28.709206,31.379501,32.261859,35.257234,36.275828,38.621043,40.826939,43.195374,44.396463,47.043537,47.898050,49.105488,50.196825,51.311383,53.842358,54.933696,55.676735,57.232472,58.556009,60.367166,61.597823,64.360998,64.848617,65.475556,68.703129,69.608707,70.909025,72.650522,73.579320,75.947755,78.385850,78.873469,80.289887,81.450884,83.285261,84.283719,85.142857,87.093333,88.115011,90.088707,91.272925,93.246621,96.218776,97.495873,98.517551,99.933968,102.302404,103.393741,105.228118,106.667755,108.060952,109.129070,110.545488,113.030023,116.048617,116.838095,117.743673,118.811791,120.948027,121.714286,122.666304,125.197279,127.565714,128.866032,129.304127,130.279365,131.649342,132.531701,134.876916,137.732971,138.449705,140.284082,141.259320,143.418776,146.228390,146.716009,150.175782,150.779501,151.545760,152.520998,155.005533,156.793469,157.745488,160.555102,162.017959,162.969977,164.316735,165.869388,168.583039,170.626395,171.903492,173.784308,175.038186,176.222404,178.405079,179.032018,181.609433,183.021237,183.555296,184.298335,185.761192,188.245727,190.637383,191.333981,192.796838,194.190036,197.301510,200.180784,201.782961,203.942417,205.939333,206.752031,208.702507,209.422326,211.488902,212.951759,214.019877,215.622054,216.968811,220.219605,223.632938,224.770716,226.512213,228.927088,229.902326,230.413165,232.410081,234.337337,237.239832,238.098970,241.164004,242.441101,243.857519,245.552575,246.713573,248.640829,249.569627,251.729083,253.633120,254.933437,256.698154,258.044911,259.322008,260.877745,263.710580,265.498516,266.682734,267.866952,269.353029,270.723006,273.505219,274.082190,274.732349,277.472303,278.145682,280.537337,281.949129,282.785047,284.178244,285.455342,288.172076,289.240194,292.142689,293.814525,296.066861,297.297519,299.851714,300.757292,302.777428,304.472485,306.215872,307.811532,310.087088,310.899786,313.384321,315.218698,317.169174,318.562371,319.793029,321.906045,324.088720,326.967995,327.571714,328.454072,329.336430,330.776067,333.562462,334.444820,337.300875,338.067133,340.342689,341.341147,343.338063,344.638380,345.752938,347.192575,348.237473,349.723550,350.977428,352.138426,353.554843,356.132258,358.175614,359.801011,361.379968,362.540965,365.234480,368.090534,368.833573,370.017791,371.016249,372.014707,373.431124,374.592122,376.658698,378.957473,380.397110,381.720648,383.090625,385.760920,388.733074,390.103052,390.637110,391.264049,392.192847,393.307405,394.956022,396.233120,398.230036,400.691351,401.248630,401.805909,403.500965,404.894163,405.567541,406.774979,408.609355,409.932893,413.369446,416.782779,417.641918,418.408176,418.942235,420.655886,423.744140,424.254979,426.275115,426.925274,429.293709,430.245727,430.942326,432.521283,433.821600,436.282915,437.281374,439.719469,441.437745,443.181971,444.683913,447.261328,448.445546,450.070943,451.905319,454.180875,455.086453,457.594208,460.798562,462.563278,464.211895,465.419333,468.391487,469.273845,471.154661,472.454979,473.499877,474.567995 diff --git a/data/torah/labels/Ki Teitzei-1.txt b/data/torah/labels/Ki Teitzei-1.txt deleted file mode 100644 index de5f07e8d..000000000 --- a/data/torah/labels/Ki Teitzei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.345009,2.247122,4.058278,4.731657,5.892655,8.423630,10.861725,13.323040,14.948437,16.271974,18.152791,20.149707,21.937643,22.959321,23.702360,24.631158,27.231793,28.230251,29.693108,30.668346,32.456283,34.337099,34.791202,35.335557,36.589435,38.138892,38.589430,39.648416,41.070177,41.455751,43.392172,46.689406,47.433934,48.200193,49.872030,52.542324,54.190941,56.048538,58.649172,59.147868,60.088810,60.644568,61.505227,62.402483,63.322182,65.048878,66.687845,68.090692,69.460670,71.457586,73.013323,74.011781,76.008697,79.027291,79.584570,81.070647,82.396129,84.048146,86.000501,87.672338,88.833335,89.258355,90.644492,91.912878,92.628455,94.207412,95.159430,95.995348,96.877706,98.897842,99.678772,100.829536,102.615692,103.525188,105.893624,107.635120,109.353397,111.234213,112.952490,114.290439,115.320925,116.496335,118.168172,119.932888,122.394204,123.132256,124.571893,127.079648,129.866043,131.259240,133.116836,133.418049,134.649353,135.229852,135.920720,136.895958,137.592556,138.529419,140.696809,142.236547,142.687702,143.019517,145.487341,146.027036,146.747146,147.238683,148.747980,150.721677,153.368751,153.863528,154.901268,155.233149,157.176824,159.591699,161.077776,161.936915,162.981813,164.073151,165.094829,165.554728,166.753227,167.426606,168.181012,168.843023,170.277058,171.577375,172.273974,173.225992,175.408668,176.083407,176.949411,178.933244,179.865961,181.189498,182.420156,184.115212,185.183330,186.042469,187.040927,188.039385,188.944963,191.104419,192.265417,193.101335,193.937253,195.887729,198.435870,199.161743,199.830557,200.981321,203.234596,205.022533,205.549079,206.183530,207.135549,207.781174,208.454552,210.033509,212.773464,213.166714,213.903632,216.063088,217.131206,217.897464,219.499641,220.985718,221.914516,223.052294,224.434319,225.874540,228.021364,233.803133,234.522306,235.660729,236.797861,238.237498,239.607476,241.116773,242.184891,243.949607,244.901626,246.712782,247.943439 diff --git a/data/torah/labels/Ki Teitzei-2.txt b/data/torah/labels/Ki Teitzei-2.txt deleted file mode 100644 index 04a2e4c2f..000000000 --- a/data/torah/labels/Ki Teitzei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.136379,3.111617,5.410393,7.337649,8.266447,9.241686,10.752724,12.054278,13.099176,13.635871,14.654913,15.538276,16.321300,18.596855,19.223794,21.336810,22.072624,23.078307,24.672183,26.217754,27.587731,28.493309,29.514987,30.745645,31.836983,33.323060,34.809137,35.401274,37.776327,39.288798,40.960634,42.562811,43.514829,44.536507,46.649523,47.624761,50.318276,50.774124,51.400382,53.350033,54.394931,54.957052,56.252527,57.877924,60.246360,61.268038,62.359376,63.706133,65.958468,66.932472,67.676745,68.650749,70.740545,71.947982,72.830340,74.200318,76.359774,76.828800,77.799411,79.262268,80.755573,83.079560,83.540391,84.749405,85.980062,87.210720,89.439836,90.786593,93.224688,94.687545,97.473940,98.617836,101.430087,104.173053,105.317610,107.361809,108.212430,109.210888,111.091705,111.997283,112.740321,113.901319,115.619596,116.342105,117.244993,119.450888,120.300526,122.575113,123.006431,123.875430,125.842314,126.741850,127.879627,129.296045,130.503482,132.384299,133.289877,134.218675,135.263573,136.819310,137.433986,138.355648,138.849722,139.704880,140.126820,141.264597,142.231355,143.052534,143.818792,144.925444,145.858922,147.784960,149.829159,150.828442,152.105539,152.778918,153.521956,154.729394,156.795970,157.980188,158.630346,160.302183,165.642773,168.591707,169.543725,170.658283,171.447761,171.925415,173.839417,175.671144,176.829129,178.058012,179.551525,181.014383,181.567417,183.870437,184.722337,185.218617,186.462328,187.112487,187.762645,188.691444,189.295162,191.013439,193.242555,194.658972,195.262370,196.307589,197.058429,198.346393,199.281789,199.955168,201.418025,202.857662,203.786460,206.062016 diff --git a/data/torah/labels/Ki Teitzei-3.txt b/data/torah/labels/Ki Teitzei-3.txt deleted file mode 100644 index 793fea6dc..000000000 --- a/data/torah/labels/Ki Teitzei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.765716,3.290843,4.594493,5.825151,7.055808,8.193586,9.656443,10.570126,11.490820,12.678085,14.164273,14.676056,15.419094,16.463992,17.810750,18.531843,19.320047,20.202405,21.224083,21.898511,23.755058,25.184522,26.461620,27.831597,29.062255,30.571552,32.359488,33.075244,34.100985,34.864735,36.237221,37.816177,38.767351,39.881909,41.367986,42.356331,43.434562,44.897419,46.507701,47.512490,48.318858,48.695374,50.222894,51.182462,52.350181,53.260091,54.200332,55.489372,55.880778,56.461277,57.134656,58.040234,58.678280,59.665631,61.580775,62.889977,63.600911,65.119257,66.354082,67.621511,68.420658,69.092533,69.628096,72.024468,72.641183,73.696305,74.578663,75.925420,77.704797,78.889015,79.981128,81.002806,81.467205,83.185481,85.728729,86.380831,87.730531,89.028016,91.442891,92.067771,93.997086,96.457452,96.920627,97.618450,98.686568,100.683484,103.203121,103.972433,105.291803,105.746758,107.202615,107.521084,109.721093,112.252068,113.101868,114.818700,116.235117,118.812532,120.290160,124.292442,126.753757,127.868315,129.795571,131.955027,132.604281,134.044823,135.737696,137.246993,138.570531,139.801188,140.869306,142.610803,144.143320,145.211438,146.070576,147.626313,150.157288,151.248626,152.076365,153.036562,153.489059,154.371418,155.834275,157.575771,158.968969,160.965885,162.173322,164.147019,165.888515,167.676452,169.603708,170.927245,172.088243,173.295681,174.410239,175.455136,176.685794,178.171871,179.085540,180.472571,181.772888,182.315722,183.026766,184.332135,184.842974,186.514811,187.853788,188.991566,190.036464,191.313562,192.358460,192.908596,193.844537,194.959094,196.839911,198.461470,198.769935,200.737026,201.279772,202.014123,202.546064,204.661198,208.237071,209.421289,210.651946,212.068364,213.391901,213.813788,214.785098,216.019766,217.505843,218.573961,219.502759,220.594097,221.917635,222.823213,225.145208,226.029336,227.420764,228.744301,230.738929,231.223408,232.178566,233.100029,235.050505,236.490143,236.857270,238.185199,240.155695,241.354606,241.666491,242.757829,244.553596,245.729983,246.682002,248.959079,250.072115,251.395652,252.881729,254.135607,256.152483,257.360585,258.702703,260.401202,261.446632,262.607630,263.861508,265.626224,266.057812,268.017880,268.568566,270.286842,271.006661,273.142897,274.907613,275.813191,278.808566,281.107341,281.677942,284.240856,284.551742,285.643635,286.656313,287.008500,288.623591,289.837447,291.165789,292.466106,292.885005,293.487784,294.352612,295.049210,295.447920,296.279868,297.525548,298.903723,299.855741,301.759777,302.848524,305.363390,306.385068,308.405204,308.975255,310.448560,313.146902,314.493659,314.988246,316.057391,317.271467,318.200265,320.475821,322.472737,323.192555,324.074914,325.050152,326.768428,329.183304,329.721213,331.040900,332.225118,332.845239,334.236547,335.051771,336.151247,340.300063,342.831038,344.224236,345.036934,345.386837,346.430131,348.601799,349.577037,350.459396,351.364974,352.827831,354.337128,355.428466,356.984203,360.026017,362.022933,364.600348,365.691686,366.806244,367.990462,368.718458,369.691834,371.819736,373.639227,375.009204,376.681041,377.620415,379.402323,381.351048,382.826709,383.778727,386.449022,390.767933,391.952151,393.159589,394.970745,396.085303,397.571380,398.987797,399.939815,401.070468,401.999266,404.530241,405.598359,407.154096,408.454414,409.110899,409.894051,410.843451,411.704143,413.327986,414.183649,414.976603,415.905314,416.346493,416.926992,417.693250,418.691708,419.713386,420.549305,422.058602,422.751973,424.647619,425.955047,427.812644,429.020081,430.250739,431.040217,433.013913,433.838632,434.430331,435.480693,436.479151,437.663368,438.731486,439.869264,441.239241,441.625032,442.330579,443.003958,443.839876,445.651033,446.565545,448.469582,450.745137,452.581870,453.317381,454.500264,455.796887,456.925693,458.458210,459.254546,460.043135,461.787130,462.783700,464.084017,464.842913,466.661432,467.542314,469.865786,471.073223,471.659659,472.745060,474.146747,475.748924,477.118901,478.628198,480.114276,481.693232,484.874366,486.012144,487.939400,488.424758,489.286158,489.685746,491.781763,494.119281,494.887016,496.394057,499.414907,500.622253,502.735269,504.174906,505.869963,507.495359,507.987833,509.274819,512.719120,514.298077,516.852272,519.011728,519.552195,520.922172,522.315370,522.963442,524.149746,525.589383,527.307660,528.513841,529.326539,530.812616,532.716653,533.404665,535.141077 diff --git a/data/torah/labels/Ki Teitzei-4.txt b/data/torah/labels/Ki Teitzei-4.txt deleted file mode 100644 index 4ab014999..000000000 --- a/data/torah/labels/Ki Teitzei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.368910,3.151273,4.829758,5.430392,6.781540,7.431699,8.093095,9.555952,10.809830,11.320669,11.947608,12.922846,14.501803,16.707698,17.590057,18.425975,19.401213,19.945614,20.980170,21.779991,22.639129,23.451827,25.286204,25.835501,26.516861,27.654639,28.369684,29.558675,32.097373,33.026171,33.862089,34.999867,35.835785,36.927123,37.948801,38.715060,40.851295,41.295663,42.035513,43.103631,43.862757,44.763548,46.496345,46.914304,47.959202,49.607819,50.153040,51.233216,51.546237,51.940977,53.728913,55.091654,55.644864,56.461632,57.502460,58.686678,60.404955,61.682052,62.843050,63.329890,63.748628,65.798250,67.378000,68.795840,69.980058,71.048176,72.696792,74.359225,75.241584,76.565121,79.305076,80.280314,81.441312,82.114110,83.623987,85.670682,87.806918,88.851816,90.988051,92.079389,93.611906,95.229329,95.805280,97.721838,100.344962,101.505960,103.711856,106.103511,107.728908,110.492082,112.744418,114.416255,115.995212,117.829588,119.153125,120.867362,121.962740,123.432951,124.384969,125.569187,127.124924,128.494901,129.702339,132.349414,133.620555,134.578530,135.710433,136.286384,137.471197,138.415343,139.390581,140.806998,141.666136,143.895252,146.542327,147.796204,150.838018,153.206454,154.288956,156.082631,156.953280,158.416137,159.530695,160.505933,161.736591,163.431647,164.253060,165.103484,166.450058,167.471736,168.757731,169.559877,170.327790,171.349468,172.233495,174.183972,175.138370,177.425717,178.412863,180.154359,181.176037,183.242613,185.007330,186.121888,187.468645,188.443883,189.558441,191.462477,193.738033,194.899031,196.431548,197.073863,199.591590,200.644757,202.125773,203.811966,204.841085,205.909203,206.954101,208.207979,210.413874,211.143515,212.178591,213.037729,214.523806,216.962908,218.007806,219.749302,220.608441,221.699778,222.883996,225.716831,226.831388,229.292704,230.593021,232.218418,233.704495,234.444833,236.444450,237.345591,238.297609,238.739780,239.574706,241.780602,243.001815,243.655810,244.747148,246.744064,248.508781,249.254993,250.319937,252.277110,252.579052,253.414888,255.783323,257.548040,259.010897,260.543414,261.843731,262.865409,264.490806,266.441282,267.416520,268.391758,268.919595,269.761736,270.644094,271.944411,273.272129,274.758206,275.733444,277.010542,278.403739,280.400655,282.142152,283.558569,285.462605,286.577163,288.481199 diff --git a/data/torah/labels/Ki Teitzei-5.txt b/data/torah/labels/Ki Teitzei-5.txt deleted file mode 100644 index 5025817bf..000000000 --- a/data/torah/labels/Ki Teitzei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.744775,3.161324,5.061574,6.702699,9.812198,12.144322,14.163339,15.510096,16.763974,17.948191,18.737670,20.432726,21.338305,22.777942,24.426559,26.353815,27.909552,29.279529,31.276445,33.134042,34.434359,35.711457,36.756355,37.638713,39.728509,40.492591,41.632545,43.049291,44.137616,45.606418,48.346372,48.888240,50.425714,51,51.824989,54.360341,55,55.851678,56.682336,58.052313,59.608050,61.032562,62.440885,63.611657,65.051294,66.746351,68.232428,69.811385,71.529661,73.317598,74.594695,76.127212,77.241770,78.186633,79.238686,82.628799,83.325398,86.065353,87.5,88.921407,89.896645,91.057643,92.706260,94.192337,95.748074,97.292779,98.087429,98.762487,99.904446,101.613371,103.145888,103.958586,104.933824,105.560763,107.511239,108.486977,110.490877,111.416875,113.762091,114.876649,118.545401,119.868939,122.167714,124.791569,125.520123,127.938623,129.571431,131.127167,133.193743,133.718896,134.703041,135.487796,136.627946,137.910082,139.256840,140.626817,141.171270,142.182554,144.004369,145.731869,147.198064,148.392218,149.612940 diff --git a/data/torah/labels/Ki Teitzei-6.txt b/data/torah/labels/Ki Teitzei-6.txt deleted file mode 100644 index 3ba6e9bb3..000000000 --- a/data/torah/labels/Ki Teitzei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.525195,2.273032,3.237591,4.886208,6.256185,7.463623,8.601400,10.157137,10.883001,11.805754,12.920312,13.895550,14.963668,17.750062,19.081914,20.475111,21.728989,23.331166,25.040193,25.565310,26.378008,27.051387,28.583904,29.494635,30.539533,31.932731,33.558128,34.174198,35.299624,35.994591,37.801191,38.892529,40.099967,41.795023,43.165001,44.442098,45.974615,47.483912,49.039649,50.827586,51.709944,53.312121,54.774978,56.446815,57.631032,59.117110,60.231667,62.182144,64.991758,66.222963,68.776611,69.635749,70.610987,72.607903,75.371078,76.380868,77.214203,79.120823,82.023317,84.670392,85.901049,87.572886,88.896423,91.195199,93.958374,96.094609,97.000188,98.881004,100.134881,101.411979,102.990936,104.662773,106.032750,108.470845,109.322009,110.224047,111.872664,113.196201,114.751938,115.786865,116.486224,116.741643,117.786541,118.831439,121.080766,122.192682,123.870169,126.660026,128.749101,129.863659,131.721255,132.766153,134.066471,136.388466,137.188789,138.269283,140.101241,141.111336,141.705333,142.701876,143.375255,144.303083,145.552759,147.798683,150.747617,152.117594,153.255372,153.700250,155.020088,156.662079,158.178002,159.594419,161.521676,164.308070,165.979907,167.373104,168.835961,170.507798,171.761676 diff --git a/data/torah/labels/Ki Teitzei-7.txt b/data/torah/labels/Ki Teitzei-7.txt deleted file mode 100644 index 3e10a51a1..000000000 --- a/data/torah/labels/Ki Teitzei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.205370,2.215568,3.504146,4.448182,5.632400,8.349135,10.299611,12.621606,13.550404,15.013262,17.358477,20.446731,21.305869,23.395665,24.649543,26.414259,27.319837,29.502513,30.756391,31.917388,32.822967,35.446822,36.106950,37.048998,37.483173,38.558296,39.490687,40.535585,41.835902,42.292392,43.856038,45.102975,46.217533,47.657170,48.734251,49.872029,51.218786,51.729350,52.890623,54.610344,55.105525,55.918223,56.312963,57.125661,57.984799,59.099357,60.724754,62.210831,63.395049,64.486387,65.299085,66.204663,67.713960,69.246477,70.152056,71.916772,74.819267,75.724845,76.282124,77.350242,78.859539,81.622713,82.760491,83.967929,84.896727,85.964845,87.776001,89.285298,90.678496,92.211013,92.910177,94.115049,95.944430,97.099340,99.589963,100.867060,102.980076,106.045110,107.109235,109.663430,111.010187,112.264065,114.005561,116.257897,117.558214,119.462251,120.669688,122.387965,124.431321,126.149598,127.635675,128.959212,130.050550,132.024246,133.208464,134.485561,135.948418,136.843451,138.014994,139.512718,141.730187,142.844745,144.423702,146.258078,147.488736,148.672954,150.135811,150.598119,151.714768,153.340164,155.522840,156.521298,158.053815,159.725652,162.628146,163.135360,163.747855,164.694722,165.701829,166.932487,167.800907,169.495964,170.982041,172.468118,174.047075,174.734954,175.876765,177.305920,178.304060,179.128281,179.997873,181.185054,182.737292,184.246589,184.625612,185.639787,187.113399,189.006680,189.397022,190.833738,192.542849,192.821488,194.818404,197.813778,198.221485,198.672917,199.671375,200.941256,202.984612,204.470689,206.258625,207.953682,208.853186,210.115984,211.784975,213.189013,214.326791,215.069829,216.068287,216.747564,217.809784,219.481621,219.704175,220.619399,222.094977,223.302415,224.509853,225.577971,227.807086,228.498392,229.386043,230.221961,232.138401,232.914404,233.723502,235.606357,238.230254,239.437144,240.644581,241.852019,243.268436,243.742708,244.661633,245.383589,247.490215,248.204481,249.922758,251.199855,252.244753,253.080671,254.752508,256.215365,257.446023,258.769560,260.255637,261.788154,263.808290,266.646991,268.057542,269.537398,270.768056,272.904292,273.407120,273.947135,274.945594,276.013711,277.105049,277.838255,278.823326,280.989143,282.745776,283.7,284.840357,286.096332,287.466309,287.933078,289.226123,292.506628,293.737286,295.850302,296.538253,299.033602,300.845179,301.773977,303.608353,305.117650,306.138748,306.975247,308.600063,309.399503,310.351521,311.628618,313.415889,313.857734,314.604531,315.463669,316.694327,317.646345,319.411061,320.850699,321.544679,322.694052,324.890971,326.562807,327.816685,330.510200,331.717637,333.923533,335.572150,337.011787,338.288885,339.589202,341.261039,342.561356,344.349293,346.578408,347.692966,349.155823,350.270381,351.175959,351.458625,352.313737,352.706300,353.265863,354.767599,355.700719,356.661051,357.995172,358.980545,359.793244,361.650840,362.502329,363.949616,365.389253,366.658701,367.842918,369.189676,371.093712,372.486909,373.787227,375.017884,375.444227,376.364642,377.512696,378.789794,381.645848,382.853286,384.780542,387.543717,389.540633,389.977747,390.771290,391.582352,392.743350,394.577726,395.390149,396.179628,398.107160,399.941261,400.777179,401.984617,403.540354,405.514050,406.439491,407.267385,409.008882,410.703939,411.888156,413.025934,414.488791,416.671467,417.809245,419.341762,420.758179,421.706493,422.499675,424.911844,427.071300,428.557377,429.593309,430.182774,431.689814,433.547410,435.056707,435.985505,437.680562,438.632580,439.445279,440.675936,441.697614,442.974712,444.971628,447.038204,448.083102,449.406639,450.242467,451.008726,451.798204,452.564462,453.446821,455.257977,458.114032,459.878748,460.701855,461.468113,462.396911,463.859768,465.369065,466.576503,468.526979,469.664757,471.499133,473.751469,475.469746,476.816503,477.359205,479.240021,481.167277,482.653354,483.349953,484.928910,485.927368,486.832946,488.992402,494.472311,497.281926,498.466143,500.532719,505.642651,506.601305,508.521926,511.540520,513.096257,513.890750,514.930834,518.798271,520.246684,521.616661,523.218838,524.960335,526.307092,526.677526,528.048589,529.528519,530.944937,532.593553,533.917091 diff --git a/data/torah/labels/Ki Teitzei-h.txt b/data/torah/labels/Ki Teitzei-h.txt deleted file mode 100644 index 661c38d0c..000000000 --- a/data/torah/labels/Ki Teitzei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.991581,4.996650,5.468751,7.721087,9.671563,11.204080,13.479635,13.981308,15.406892,16.307475,18.443710,19.567624,22.298712,23.400458,26.268835,27.336953,30.610967,32.700762,33.768880,36.787475,39.434549,42.197724,45.030558,45.668135,48.745751,50.572881,52.778777,56.284990,59.767983,60.720154,61.496031,64.444966,67.068821,69.019297,71.062653,72.548730,74.081247,77.285601,81.163333,81.901603,83.322789,83.918884,85.315463,87.019011,88.418972,91.314703,92.406041,93.074236,95.563955,96.503613,97.760534,99.534567,101.183184,102.785361,106.268354,107.173932,108.436605,111.260644,112.793161,114.690176,116.490211,117.933343,120.777110,123.540285,125.839061,127.905636,129.531033,130.901011,131.557748,134.040555,138.145636,139.399514,141.744729,144.359723,145.864924,148.176657,149.433960,151.916767,154.213845,156.829629,157.642741,160.420382,161.304882,164.831835,166.526892,169.034647,172.099681,174.013751,176.674012,181.016143,182.896960,185.845894,187.610610,189.065770,189.950270,191.455472,192.821016,195.551835,198.523989,199.661767,202.866121,206.511654,207.454061,208.074763,209.052368,211.220203,212.265101,213.565418,217.094851,219.376420,219.840819,221.721635,223.973971,224.545904,227.146539,228.052117,230.977832,232.719328,235.645043,237.758059,240.521233,241.728671,243.423727,245.142004,248.903637,251.922231,255.010485,257.541460,258.041258,261.175802,262.665487,264.186206,266.048312,267.631101,268.606790,270.487606 diff --git a/data/torah/labels/Ki Tisa-3.txt b/data/torah/labels/Ki Tisa-3.txt deleted file mode 100644 index c704edd79..000000000 --- a/data/torah/labels/Ki Tisa-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.590782,5.186040,5.534339,7.299055,9.690711,11.803727,12.825405,14.032842,14.891981,15.188943,16.029758,17.121096,18.462957,19.066676,20.436653,20.976556,21.487395,22.532293,23.623631,24.900729,25.899187,27.362044,28.569481,29.212567,30.048485,30.628984,32.068621,35.056068,35.367896,36.807533,37.991751,39.268848,41.126444,42.241002,42.892732,43.105917,44.530862,47.108276,47.933973,48.630572,49.257511,50.581048,52.856604,53.307146,54.444923,55.018670,56.256080,57.997039,58.713506,59.599216,60.638215,61.735451,62.893098,63.705796,64.112780,64.782522,65.683376,66.956590,67.374964,68.303762,69.464760,71.949295,72.922604,74.548001,74.976665,75.835803,76.532402,77.752671,78.831177,80.085055,81.018658,82.326062,83.463840,84.725540,85.723998,86.954656,87.990489,89.035387,90.242824,90.492580,90.913822 diff --git a/data/torah/labels/Ki Tisa-4.txt b/data/torah/labels/Ki Tisa-4.txt deleted file mode 100644 index 99e46dfec..000000000 --- a/data/torah/labels/Ki Tisa-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.538315,3.617442,3.958397,5.214107,5.829488,6.103914,7.463848,9.205344,10.157362,11.086161,12.363258,12.790703,13.882040,14.276780,15.693197,17.234453,18.534770,20.462026,21.297945,21.721286,21.979081,23.559113,25.773434,26.803851,27.848749,28.148228,28.693302,28.972803,30.193965,32.339806,34.197402,35.242300,36.867697,38.390034,38.645454,39.783232,41.129989,42.987585,43.311678,43.974794,45.684540,48.563815,49.247112,50.284341,51.120260,51.484105,52.652777,54.419639,54.677434,55.579232,56.554470,58.063767,59.705243,61.260980,62.143338,63.025696,64.209914,65.835311,66.061982,67.437488,69.263626,70.627444,71.988599,73.580043,74.515643,75.606981,77.302038,78.880994,80.088432,80.606595,82.038908,83.841503,84.165826,85.382582,86.706119,86.893461,88.235681,89.814638,90.116498 diff --git a/data/torah/labels/Korach-3.txt b/data/torah/labels/Korach-3.txt deleted file mode 100644 index f120ff390..000000000 --- a/data/torah/labels/Korach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.738699,3.720964,3.952757,4.435751,4.602916,5.477565,6.986862,9.160286,9.949764,10.638632,11.520770,13.099727,13.889205,15.744071,17.466793,17.885853,18.977191,20.370388,21.693925,22.364220,23.571658,24.198597,25.313154,26.212976,26.741498,28.076329,28.940830,29.423086,30.328665,31.907622,33.138279,33.788438,34.252837,34.853472,35.987116,37.217774,37.516549,38.561447,39.629565,40.646617,41.750870,42.329827,42.979986,43.653364,45.093001,46.346879,47.043478,47.879396,48.204475,48.854634,50.224611,51.664249,52.476947,53.034226,54.357763,56.116312,56.441391,58.066788,59.808285,60.733999,63.452119,66.168944,67.655021,68.876600,69.963967,71.333944,72.375758,73.420656,73.977935,74.628094,75.835531,76.485690,78.020245,78.507864,80.458340,83.569814,85.343628,85.900907,86.690385,87.247664,88.289478,89.648662,90.670340,92.295737,93.270975,95.569751,96.684308,98.588345,100.492381,101.676599,103.510975,106.394846,108.247846,109.292744,110.778821,110.915057,111.890295,113.283492,115.977007,116.794791,117.243311,118.357868,119.658186,120.162857,120.743356,122.700576,123.161891,124.212882,124.441997,125.510115,127.367712,128.273290,129.931114,130.519458,132.377054,133.646442,134.900319,135.573698,136.849905,138.359203,139.294744,141.291660,142.266899,144.397267,146.167851,148.042376,148.294711,149.502149,152.050747,153.188524,153.652924,153.742719,154.553876,155.691654,157.479590,158.478048,160.219545,162.541540,164.395849,166.237151,167.049849,167.839328,168.303727,169.805073,171.450606,173.251458,175.324316,176.142672,176.479031,177.311866,178.774723,182.164836,183.209734,183.883113,185.949689,187.651489,188.394528,188.553984,189.738201,191.013757,191.919335,192.406954,193.985911,195.084211,195.448768,196.424006,197.259925,198.724192,199.698020,200.173365,201.827611,204.474686,205.697270,206.166120,207.060408,208.305780,209.240000,210.377778,211.422676,212.116252,212.985756,214.551773,215.327374,216.859891,217.832045,219.189936,220.717518,222.234887,223.036194,224.195532,225.346346,226.590929,227.204697,228.872657,230.033655,231.310753,232.319424,232.856409,233.761988,235.828564,236.289879,238.201360,239.540672,240.330151,242.861126,244.718722,246.878691,247.593884,247.737830,248.381821,249.867898,251.289596,251.661115,253.007872,253.283428,253.698303,255.463020,256.853064,257.179754,258.339210,259.175129,260.637986,260.995993,261.915083,262.611682,263.819120,264.388762,267.892350,270.944137,272.964454,274.251660,275.654223,278.010985,279.113996,280.789986,282.852408,284.881768,286.056762,287.449960,288.521748,290.356851,290.654084,291.629322,293.785694,295.271771,296.011566,296.638504,298.472881,300.503578,301.362717,302.848794,303.661492,304.706390,306.053148,307.005166,307.930880,309.672377,311.859735,312.672433,314.294843,316.454299,317.545636,319.449673,321.910988,322.607587,323.164866,324.558063,325.277881,327.019378,329.457473,329.916939,331.076277,332.408444,332.977250,334.076917,335.078739,335.821777,336.680916,337.400734,338.213433,339.609346,342.462684,343.860846,345.277263,346.727341,347.297399,347.993998,349.651261,352.840801,353.046696,353.673635,354.042070,354.994089,356.845977,357.272204,357.834823,358.167281,358.951539,360.050809,361.502339,363.716760,364.006594,364.497235,366.308391,368.626141,370.267048,371.358386,371.633941,372.234576,372.534894,373.463692,374.873941,375.056617,375.637116,376.247274,377.160381,378.387955,379.595393,380.849270,381.452989,383.157143,383.922456,384.661566,385.764037,386.528753,387.547347,388.195964 diff --git a/data/torah/labels/Korach-4.txt b/data/torah/labels/Korach-4.txt deleted file mode 100644 index b3633570c..000000000 --- a/data/torah/labels/Korach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.351020,3.337868,3.860317,4.556916,5.717914,8.345692,9.332540,10.266478,11.172789,12.593084,13.492857,14.798980,15.878820,16.188322,17.693764,18.967074,20.267391,20.474829,22.378865,23.121904,23.795282,27.533695,28.230294,29.804727,31.197822,31.752017,33.052334,34.817051,35.671563,37.707634,39.752108,39.981223,41.094239,41.883718,43.184035,43.718094,44.249069,46.080362,46.612879,47.564897,48.888434,50.862130,52.882266,54.414783,55.993740,56.945758,59.058774,60.521631,60.939591,61.682629,63.145486,64.561904,65.792561,66.767799,67.835917,69.020135,69.461314,70.738411,71.829749,72.387028,73.571246,74.825123,75.074375,76.026393,76.418049,77.665758,79.332969,81.144126,83.535781,84.534239,85.834557,86.858969,88.205726,89.018424,90.357472,91.472030,92.586588,93.608266,94.165545,94.721281,96.369898,97.879195,98.622234,98.735250,99.611440,99.835797,100.534071,100.948946,102.249263,105.219994 diff --git a/data/torah/labels/Korach-5.txt b/data/torah/labels/Korach-5.txt deleted file mode 100644 index d626887a5..000000000 --- a/data/torah/labels/Korach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.119132,4.135005,4.341744,5.096392,6.460565,8.367085,8.650520,9.618049,11.638185,12.444715,15.695509,16.621223,18.200180,19.265389,20.478910,21.568706,21.965356,23.913922,24.969704,25.941858,26.799455,27.519273,28.355192,29.601200,30,30.753105,31.794919,32.322811,33.692788,34.897142,35.640180,36.615418,37.404897,37.822856,38.565895,39.329069,40.204195,41.166620,42.072198,42.884897,43.090793,44.785849,46.408162,46.988661,48.196099,49.287436,50.727074,52.538230,54.688392,55.593970,56.894288,59.236419,60.467077,61.372655,62.205490,62.760168,63.659095,64.889753,69.538210,71.708710,73.125127,74.889843,75.894382,76.794817,78.373774,79.396860,80.975817,82.461894,85.410828,86.827245,86.963481,87.240579,89.260715,90.518584,92.213641,92.837496,97.015998,99.820526,100.979509,102.419146,103.041459,103.985677,104.589395,105.330892,106.375790,107.443908,108.140507,109.255064,110.346402,110.973341,111.685450,113.496606,114.914115,116.702052,117.166451,118.048809,118.722188,119.558106,120.781332,122.785680,123.993118,126.616972,127.754750,128.822868,129.240827,129.937426,131.234660,133.391031,134.505589,135.178968,135.922006,136.618605,137.640283,139.590759,141.541236,143.660739,144.880349,146.488017,148.619627,150.523663,151.940081,152.238856,152.633595,153.748153,155.002031,156.163028,156.670784,157.088743,157.947881,159.526838,160.707972,162.542348,163.168917 diff --git a/data/torah/labels/Korach-6.txt b/data/torah/labels/Korach-6.txt deleted file mode 100644 index 6a216c948..000000000 --- a/data/torah/labels/Korach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.390113,2.876190,3.154830,4.803447,6.568163,6.801905,7.496961,8.240000,8.820499,9.818957,10.724535,11.444354,11.978413,13.046531,14.509388,16.390204,17.690522,18.224580,19.455238,20.267937,20.941315,21.823673,23.054331,24.168889,25.097687,25.515646,26.699864,27.762061,28.413515,29.249433,29.385669,30.012608,30.894966,31.682902,33.470839,34.373333,35.023492,36.648889,37.275828,38.785125,40.921361,41.339320,42.082358,43.173696,44.311474,45.356372,47.283628,48.560726,49.930703,50.534422,50.602540,51.786757,53.667574,54.851791,55.360470,56.173169,57.194847,58.377522,59.050901,59.444098,60.605096,61.719654,62.671672,63.437930,64.366729,64.877568,65.595844,68.289359,69.286275,69.611355,71.422511,72.117568,73.348225,74.369903,75.530901,76.227500,77.179518,79.594393,80.314212,82.496887,83.332806,84.493803,85.236842,85.863781,86.699699,88.278656,90.113033,91.436570,92.365368,92.690447,93.944325,95.709042,95.822057,96.424231,97.323645,97.806638,99.068861,99.494358,100.567920,101.086910,101.876389,102.153486,102.591581,102.890357,104.260334,106.191031,107.460062,109.935345,110.260425,111.073123,111.721740,112.371899,113.161377,113.901332,114.853350,115.875028,116.080924,116.539155,117.816252,119.580969,120.370447,121.159926,121.949404,122.646003,123.296162,124.271400,124.875119,125.594937,126.593395,127.266774,127.824053,128.381332,129.542330,132.142964,132.768361,133.788497,134.158475,135.156933,136.248271,137.069042,137.509949,138.670946,140.923282,142.101332,142.746865,143.870452,145.943509,146.087454,146.917205,147.758843,149.123101,150.276389,151.112307,153.225323,153.945141,154.313577,156.124733,156.796570,158.212987,159.791944,161.858520,162.949858,165.411173,166.432851,168.151128,169.288906,169.425141,170.905051,172.019608,172.948407,174.225504,175.473214,177.702330,177.956207,179.465504,180.626502,181.507318,182.436116,183.272035,183.713214,184.525912,186.429949,186.964008,187.487197,187.744234,189.926910,190.713305,192.378974,193.981150,195.080687,195.801649,197.032307,197.493622,198.027681,199.211899,199.931717,200.953395,201.230493,202.182511,202.781604,204.914756,205.185686,207.159382,207.995300,209.945776,210.619155,211.664053,212.451989,213.281740,213.862239,214.698157,215.464416,216.555754,217.043373,218.413350,219.410266,220.478384,221.732262,222.057341,222.800379,223.543418,224.400723,225.029495,225.453713,226.521831,227.207636,228.647273,229.529631,231.410447,232.060606,234.342824,234.666361,236.036339,236.568856,238.472892,240.469808,242.209763,242.929581,243.183459,244.251577,244.810874,245.344933,246.317087,246.781486,248.221123,249.266021,250.107306,251.044706,251.458040,252.386838,253.128334,254.611328,256.142821,256.413232,256.979852,257.576420,258.063481,259.410238,261.602278,261.772477,262.996995,264.481530,265.014047,265.710646,266.291145,266.894864,267.730782,268.218401,268.915000,269.959898,271.213775,272.421213,272.812868,273.741667,274.151916,275.312914,275.726247,276.186020,277.741757,277.947653,279.456950,280.107109,281.662846,283.056043,283.915181,284.983299,285.260397,286.258855,287.861032,288.624629,290.271281,291.032914,291.706292,292.518991,293.769873,294.325521,295.252778,296.526791,297.960261,300.047595,300.644524,301.269920,302.338038,303.681712,304.796270,305.864388,306.816406,307.373685,308.186383,309.486701,310.043979,310.972778,311.622936,312.830374,315.477449,316.104388,317.311825,319.099762,319.657041,320.609059,321.723617,323.070374,323.697313,324.533231,324.997630,325.647789,326.948106,327.691145,328.271644,329.709739,329.982211,330.924977,332.132415,333.037993,333.548832,334.338311,335.545748,336.962165,337.332143,338.350737,340.183571,341.692868,342.923526,343.875544,344.524161,345.615499,346.989765,347.977766,349.696043,350.322982,351.691417,352.109376,353.990193,355.662029,356.335408,357.542846,359.354002,360.979399,362.210057,362.626474,363.810691,365.436088,366.898945,367.781304,368.172984,368.611054,369.702392,370.234909,371.233367,372.324705,374.855680,376.179218,376.522891,378.238084,379.190102,379.863481,380.908379,382.231916,382.696315,383.276814,383.834093,385.064750,385.854229,386.713367,388.896043,390.219580,390.753639 diff --git a/data/torah/labels/Korach-7.txt b/data/torah/labels/Korach-7.txt deleted file mode 100644 index 967a1e137..000000000 --- a/data/torah/labels/Korach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.941194,3.766793,4.592391,5.985588,6.244838,7.170018,8.047217,9.130814,10.276332,11.513772,12.010119,12.567398,13.380096,13.493112,14.352251,14.652568,16.185085,16.740822,17.778944,18.986990,19.497829,20.287307,20.471525,21.005584,21.864722,22.979280,23.977738,25.301276,26.508713,27.901910,29.248668,29.805947,30.595425,31.106264,31.733203,32.847761,33.428260,34.380278,35.518056,36.307534,38.095471,39.256468,39.953067,40.858645,41.344722,42.296740,43.829257,47.010391,47.381910,48.450028,48.680686,50.422183,51.142001,52.628078,53.487217,54.601774,55.623452,56.761230,58.386627,58.874246,59.454745,60.476423,61.289121,62.330935,62.813929,63.858827,64.392885,65.507443,66.993520,68.711797,69.385176,69.485949,70.117421,71.324858,71.880595,72.622092,74.827988,75.640686,76.871344,77.544722,79.657738,80.400777,80.841956,82.188713,82.862092,84.603588,85.845008,87.334291,88.657829,89.911706,91.606763,93.184178,94.438056,95.552613,96.574291,97.340550,98.176468,99.546446,101.630234,102.326833,104.416628,105.415087,105.645744,106.713862,107.967740,108.198397,109.590053,110.006470,110.749508,111.049826,111.978624,112.977082,114.091640,115.206198,117.079304,118.100982,118.936901,119.957037,120.512774,121.836311,123.136628,124.018987,124.412184,125.619622,126.780619,128.104157,129.590234,130.658352,132.399848,133.630506,134.496774,134.924656,135.574814,136.619712,137.571731,138.570189,139.057808,140.311685,141.658443,143.005200,144.212638,146.325653,146.718851,147.438669,148.437127,149.783885,151.362842,152.639939,153.336538,154.799395,156.192592,157.701889,158.375268,158.745245,159.720483,160.463522,161.996039,162.669418,163.482116,163.875313,164.732910,165.544066,166.917068,167.751444,169.121421,170.047136,170.883054,171.533213,172.369131,173.739108,174.157068,175.109086,176.223644,177.802601,179.076731,179.468269,181.024006,181.392442,182.960696,183.708269 diff --git a/data/torah/labels/Korach-h.txt b/data/torah/labels/Korach-h.txt deleted file mode 100644 index 23f8f7962..000000000 --- a/data/torah/labels/Korach-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.877732,5.108390,5.246168,6.500045,8.241542,9.541859,10.865397,12.165714,13.535692,16.066667,17.668844,17.922721,20.337596,24.377868,27.512562,28.580680,28.625578,31.017234,32.470507,33.613243,35.424399,36.789751,38.693787,39.715465,40.992562,41.573061,43.175238,45.543673,46.238730,48.421406,48.744943,49.138141,50.415238,51.030354,52.800726,54.263583,55.384354,55.672290,56.136689,57.506667,58.658413,59.958730,61.723447,62.443265,62.720363,64.042358,65.830295,66.991293,68.105850,69.940227,72.842721,73.514558,75.279274,76.369070,79.944943,81.361361,83.172517,86.051791,87.584308,88.534785,90.531701,91.739138,93.780952,95.313469,97.078186,97.449705,98.030204,99.400181,100.700499,101.420317,103.185034,103.904853,106.203628,107.271746,110.313560,110.960635,113.050431,113.607710,116.695964,119.296599,119.969977,123.127891,123.870930,124.521088,126.285805,127.005624,128.645936,130.507211,131.268844,132.104762,133.497959,135.007256,136.562993,138.374150,140.195105,141.620317,144.128073,147.820045,148.586304,150.072381,150.792200,153.694694,154.321633,155.598730,156.295329,157.015147,159.267483,161.426939,164.027574,165.931610,166.604989,169.437823,170.923900,172.363537,173.919274,175.405351,176.171610,177.820227,179.886803,181.535420,183.810975,185.320272,187.108209,188.129887,189.383764,189.778503,191.194921,194.190295,195.211973,196.323447,196.880726,197.967438,198.181043,199.964354,202.263129,203.865306,204.422585,205.676463,206.303401,209.345215,213.222948,215.707483,217.351474,218.767891,219.554286,221.156463,222.572880,224.035737,225.661134,227.193651,227.704490,228.540408,230.142585,231.164263,234.507937,236.388753,237.038912,238.432109,241.148844,242.890340,244.376417,244.747937,246.257234,248.230930,250.901224,251.412063,252.201542,252.712381,256.102494,257.867211,258.215510,259.678367,261.187664,263.997279,264.693878,267.433832,269.361088,270.011247,270.940045,272.936961,274.306939,278.695510,279.554649,281.806984,282.619683,283.502041,285.615057,286.404535,289.864308,291.141406,292.070204,293.324082,295.924717,298.037732,300.444898,300.615147,302.047075,303.927891,305.530068,306.226667,307.898503,308.033197,309.496054,310.796372,311.260771,313.118367,313.722086,315.881542,319.155556,321.361451,322.383129,324.240726,327.352200,329.024036,330.231474,331.020952,332.832109,333.250068,334.875465,335.641723,337.568980,338.312018,340.169615,341.788986,343.696221,345.042978,346.343296,347.792366,350.393001,352.204157,356.546289,357.103568,359.216584,360.052502,360.424021,363.024656,363.651595,365.694951,367.899305,368.712003,371.307629,372.283250,373.095949,373.838987,375.325064,376.184203,377.414860,380.085155,383.382389,384.241527,385.611504,387.074361,388.839078,389.721436,391.904112,393.018670,395.503205,397.384021,398.800439,400.727695,402.283432,403.600801,403.746289,406.898035,408.291232,409.521890,411.495586,413.074543,414.096221,415.582298,415.695314,416.065291,417.713908,419.153545,419.314543,422.240257,422.843976,423.935314,425.398171,426.744928,428.161346,429.763522,430.436901,433.339396,435.080892,435.520529,436.797627,438.771323,439.955541,441.488058,441.672275,441.949432,443.893681,446.328693,446.630552,448.720348,450.601164,453.944838,454.548557,455.918534,457.869010,459.331867,459.935586,460.655405,461.746742,463.790098,465.624475,466.948012,467.946470,470.593545,472.079622,472.403160,473.494498,474.841255,476.280892,476.418670,477.835087,478.508466,479.646244,481.689600,483.245337,486.171051,487,488.028647,489.143205,490.397083,491.441981,493.183477,494.530235,495.547287,496.383205,497.962162,499.578512,500.669850,501.105828,502.499025,505.030000,506.817937,507.581111,508.765329,509.369048,510.715805,512.201882,512.828821,513.548640,514.989624,515.285510,516.353628,516.932585,519.602880,522.418046,522.882445,524.368522,525.065120,528.617773,531.798907,532.379406,534.631742,536.071379,536.721538,537.812876,538.764894,540.065211,540.761810,542.201447,542.781946,543.014145,544.303669,545.603987,546.715461,548.087402,550.704667,552.443080,553.531334,553.879633,554.729097,554.913588,556.469325,558.257262,559.789779,560.597851,560.874949,561.850187,563.661343,566.378078,566.912137,568.514314,570.395130,571.881207,572.875039,572.926105,574.057715,574.567012,577.794586,579.029468,581.467563,582.257041,583.069740,585.879354,588.154910,588.781849,590.825205,591.312824,592.288062,592.377858,593.045068,594.925885,597.591554,597.938311,598.936769,600.058663,600.278901,601.506474,602.874910,603.407427,604.800624,606.031282,607.215499,608.771236,609.723254,611.859490,614.181486 diff --git a/data/torah/labels/Lech-lecha-4.txt b/data/torah/labels/Lech-lecha-4.txt deleted file mode 100644 index 393b64111..000000000 --- a/data/torah/labels/Lech-lecha-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.083610,3.854512,4.856686,5.222864,5.878132,6.726124,7.265756,7.959568,9.520646,10.002460,10.580637,11.544265,12.026079,12.739164,14.878418,16.535859,17.229671,17.769302,18.289662,18.848566,19.311107,19.947102,20.390371,21.007093,22.452535,23.165620,24.611062,25.979414,26.519046,27.251403,27.983761,28.658300,29.236477,29.679746,30.547011,31.105916,31.876818,32.223724,32.628448,33.495713,34.247343,34.671340,35.345879,36.444415,37.061137,37.697132,38.641488,39.161847,40.067657,40.954195,41.358919,41.802188,42.650180,45.386884,46.350512,47.718864,49.010126,50.551931,51.862465,52.537005,53.134454,54.117355,54.425716,54.868985,56.121702,56.738424,57.470781,58.106776,58.742770,59.744943,60.631481,61.826380,63.156187,65.430349,66.085616,66.895064,67.415423,68.186326,68.918683,69.708858,70.402670,70.788122,71.732477,73.428463,75.278629,75.702625,76.068804,76.724071,77.379338,77.996060,78.921143,79.711318,79.961861,80.443675,81.330213,82.332386,82.660020,83.527285,84.471641,85.493087,86.360352,88.499606,88.981420,90.118502,91.197765,92.546844,93.491200,94.262102,95.052278,95.591909,96.131541,96.767536,97.075897,97.519166,99.619875,100.467868,101.566404,102.221671,103.358752,104.360925,106.076183,106.577270,107.829986,108.947795,109.448882,110.104149,111.202685,111.780862,112.416856,113.322667,113.804481,114.189932,115.442649,116.001553,116.425549,117.389177,118.834620,120.280062,121.474961,122.149500,122.804767,123.941849,125.618561,126.158193,126.929096,127.603635,128.162540,129.685072,130.436702,131.072697,133.385404,133.886491,134.156307,134.522485,135.775202,137.317007,137.856639,138.165000,138.569723,139.591169,140.786068,141.113702,142.173693,142.501326,144.100949,144.602035,145.083849,145.623481,146.375111,147.107468,147.512192,148.360185,149.959808,150.557257,151.694338,152.638694,153.255416,154.720131,156.049937,157.283381,158.304827,159.730997,160.598262,161.388437,162.159340,162.544791,163.412056,163.990233,164.472047,165.474220,168.326560,169.039644,169.463641,169.945455,170.485087,171.294534,171.834166,172.739976,173.722877,174.108328,176.286128,176.825760,177.577390,178.194112,178.791561,179.177012,179.485373,180.641727,182.087169,183.474794,184.284241,184.862418,185.710411,187.155853,187.734030,188.196571,188.832566,189.352925,190.393644,192.185992,192.918349,193.284528,194.074703,194.672152,195.924869,196.348865,197.139040,197.775035,198.661573,199.239750,199.490293,199.933562,200.453921,201.012825,203.017172,203.325533,205.850239,207.893130,208.779668,209.993839,211.150193,211.497099,212.537818,213.154540,213.674899,214.118168,214.561437,215.313067,215.544337,216.064697,216.662146,217.201778,217.702864,219.726483,220.246843,220.767202,221.345379,222.212644,222.578823,222.887184,223.542451,224.024265,224.544624,225.142073,226.703151,227.281328,228.148593,228.591862,229.150766,229.478400,229.960214,230.364938,231.116568,232.138014,232.523465,232.889644,233.352185,233.641273,234.315813,234.836172,235.973254,236.320160,236.898337,238.864138 diff --git a/data/torah/labels/Miketz-1.txt b/data/torah/labels/Miketz-1.txt deleted file mode 100644 index 18db60952..000000000 --- a/data/torah/labels/Miketz-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.781769,7.035646,8.289524,9.404082,11.284898,12.399456,13.792653,14.802721,14.987755,16.555102,18.093061,18.450522,20.215238,21.538776,23.164172,24.139410,25.091429,26.066667,27.111565,28.295782,29.642540,31.221497,34.356190,36.051247,37.235465,38.860862,40.021859,41.345397,41.576054,42.713832,43.665850,44.617868,46.127166,47.311383,49.912018,50.933696,51.932154,52.373333,53.000272,54.370249,55.925986,57.946122,58.991020,59.966259,61.220136,62.520454,63.635011,65.121088,66.258866,67.187664,68.279002,70.043719,71.344036,72.737234,76.080907,77.613424,78.635102,80.957098,82.025215,83.836372,85.647528,86.854966,87.598005,88.805442,90.198639,92.149116,93.240454,94.424671,95.539229,96.769887,97.838005,98.975782,100.601179,102.505215,103.875193,105.105850,106.011429,107.242086,108.542404,109.796281,111.235918,112.559456,113.186395,113.999093,115.067211,117.458866,118.364444,119.618322,120.779320,123.124535,124.749932,125.283991,125.514649,126.420227,127.186485,127.929524,128.254603,129.485261,131.203537,131.946576,132.550295,132.991474,133.943492,134.825850,135.499229,136.149388,137.798005,139.632381,140.352200,141.536417,142.024036,142.836735,144.113832,144.717551,147.016327,147.875465,148.734603,149.965261,151.126259,152.121633,152.469932,153.584490,154.931247,156.626304,158.298141,159.296599,160.178957,161.548934,164.056689,164.915828,165.589206,166.796644,169.374059,170.906576,171.928254,172.740952,173.716190,174.737868,176.363265,177.524263,178.406621,179.799819,180.937596,182.493333,183.491791,185.001088,185.976327,187.183764,188.460862,189.946939,190.504218,191.758095,192.315374,192.733333,194.219410,195.055329,196.053787,197.307664,199.234921,200.581678,201.138957,201.835556,202.996553,204.111111,206.247347,207.176145,207.524444,208.360363,209.080181,210.635918,211.866576,212.795374,214.072472,214.560091,215.558549,216.951746,217.485805,218.437823,220.040000,221.479637,222.733515,224.358912,225.009070 diff --git a/data/torah/labels/Miketz-2.txt b/data/torah/labels/Miketz-2.txt deleted file mode 100644 index 868072818..000000000 --- a/data/torah/labels/Miketz-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.065034,4.063492,4.339048,5.291066,6.753923,8.007800,9.400998,10.027937,11.119274,13.510930,14.625488,15.554286,16.622404,17.667302,18.410340,19.362358,20.407256,21.823673,23.379410,23.681270,25.074467,26.235465,27.628662,30.275737,31.483175,31.808254,32.481633,33.758730,34.919728,35.685986,36.080726,36.963084,39.703039,40.864036,41.444535,42.094694,42.698413,43.929070,46.251066,46.548299,48.104036,49.265034,50.518912,51.517370,52.353288,53.189206,53.930703,54.952381,56.159819,57.622676,60.083991,61.175329,62.243447,63.543764,64.890522,66.423039,67.885896,68.977234,70.300771,71.461769,72.506667,73.574785,74.317823,75.780680,77.591837,78.381315,78.845714,79.751293,81.283810,82.862766,84.023764,85.370522,87.181678,89.364354,90.757551,92.266848,93.776145,95.912381,97.607438,97.674014,99.787029,100.878367,101.691066,102.223583,103.082721,103.266939,104.451156,106.192653,107.283991,108.514649,109.907846,111.184943,112.717460,114.110658,116.316553,117.384671,119.126168,120.821224,121.982222,122.725261,123.654059,125.070476,126.788753,128.013243,129.104580,130.149478,130.962177,131.960635,133.121633,134.212971,135.629388,138.392562,139.716100,140.807438,142.223855,143.013333,143.918912,145.196009,146.658866,147.007166,148.818322,149.816780,150.374059,151.256417,153.508753,154.182132,154.530431,155.157370,156.388027,157.131066,157.874104,158.524263,159.731701,160.985578,162.518095,163.609433,164.561451,165.815329,167.463946,168.508844,170.064580,171.063039,171.689977,172.409796,173.660590,174.725624,175.956281,176.815420,177.395918,178.301497,179.903673,180.693152,181.714830,183.015147,185.964082,187.264399,189.145215,190.375873,192.628209,193.580227,194.183946,195.043084,196.320181,197.365079,198.526077,199.547755,200.755193,203.333506,204.205714,204.945669,206.106667,207.848163,209.125261,210.263039,211.145397,211.422494,212.583492,214.510748,216.020045,217.134603,217.993741,218.224399,219.617596,221.451973,222.403991,222.984490,224.145488,225.167166,225.956644,226.560363,227.094422,228.394739,232.318912,233.526349,234.199728,234.896327,236.312744,237.380862,237.822041,238.631655,239.537234,240.698231,241.766349,242.741587,243.089887,244.436644,245.365442,246.271020,247.339138,248.128617,250.357732,251.286531,252.006349,252.702948,253.538866,254.305125,254.955283,255.489342,256.603900,258.345397,260.110113,261.549751,262.107029,263.082268,264.591565,265.148844,265.729342,266.797460,267.772698,269.003356,270.210794,271.278912,272.997188,274.506485,275.737143,276.921361,277.919819,279.057596,280.172154,281.681451,282.122630,282.610249,283.817687,285.768163,286.789841,288.508118,289.599456,289.970975,290.760454,292.292971,292.618050,293.244989,294.382766,295.590204,296.333243,297.563900,300.884354,301.488073,301.786848,302.737324,303.921542,305.082540,306.057778,307.427755,308.797732,310.177732,311.994376,312.248254,313.664671,314.616689,315.429388,317.008345,318.401542,319.237460,320.421678,321.373696,322.790113,323.718912,324.787029,325.855147,326.737506,328.223583,329.547120,330.336599,331.265397,332.008435,334.005351,335.352109,336.466667,337.650884,338.695782,339.926440,340.367619,341.784036,343.107574,343.873832,344.222132,345.499229,347.101406,348.192744,350.700499,352.465215,353.440454,355.274830 diff --git a/data/torah/labels/Miketz-3.txt b/data/torah/labels/Miketz-3.txt deleted file mode 100644 index 24ea82ee9..000000000 --- a/data/torah/labels/Miketz-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.156372,4.969070,5.151746,6.266304,7.636281,9.168798,10.678095,11.792653,12.140952,12.512472,13.185850,13.789569,14.509388,15.531066,16.784943,17.922721,19.014059,19.221497,20.243175,20.800454,21.427392,22.402630,22.797370,23.795828,24.399546,25.537324,26.164263,27.278821,28.458413,29.108571,29.433651,30.408889,31.662766,32.638005,33.659683,34.216961,34.842358,35.187574,36.441451,37.735601,38.265034,38.432200,39.588571,40.443084,41.464762,42.486440,43.020499,43.554558,44.181497,45.203175,46.410612,47.200091,47.989569,48.593288,50.613424,51.402902,52.331701,52.559274,53.906032,55.902948,57.342585,58.526803,59.339501,59.896780,60.590295,61.774512,62.585669,63.653787,65.116644,66.207982,66.961302,67.344218,67.831837,69.113651,71.342766,72.503764,73.037823,73.943401,74.892336,76.146213,78.653968,79.280907,79.907846,81.092063,81.417143,82.787120,83.274739,84.157098,84.644717,85.201995,86.316553,87.965170,89.008526,89.380045,91.260862,92.328980,94.279456,95.231474,95.788753,96.042630,97.691247,98.225306,99.061224,100.117007,100.785760,101.389478,102.805896,103.920454,104.802812,105.079909,105.613968,107.076825,108.261043,108.838458,109.999456,111.090794,113.482449,114.527347,115.386485,115.802902,117.033560,118.287438,119.216236,120.330794,121.329252,122.629569,123.001088,123.604807,124.765805,127.018141,127.761179,128.689977,129.502676,130.570794,131.987211,134.309206,134.820045,135.097143,136.629660,137.442358,138.998095,139.950113,140.786032,141.738050,142.782948,143.711746,144.292245,145.639002,147.264399,147.657596,149.120454,149.840272,151.210249,152.139048,153.439365,154.530703,155.622041,156.713379,157.572517,158.338776,159.290794,160.103492,161.589569,162.123628,162.657687,163.679365,164.097324,164.538503,165.304762,167.580317,168.369796,169.363628,170.106667,171.012245,171.848163,172.614422,173.798639,174.866757,175.442630,175.999909,176.905488,177.530884,177.970522,178.829660,179.385397,180.453515,181.637732,182.938050,183.564989,183.981406,184.837460,186.114558,186.648617,187.438095,188.274014,188.668753,188.829751,189.921088,190.617687,191.243084,191.541859,192.726077,194.212154,194.862313,195.698231,196.464490,197.509388,198.066667,198.763265,199.715283,201.085261 diff --git a/data/torah/labels/Miketz-4.txt b/data/torah/labels/Miketz-4.txt deleted file mode 100644 index d9779a4be..000000000 --- a/data/torah/labels/Miketz-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.387029,6.315828,7.198186,8.730703,9.729161,10.495420,11.308118,12.910295,15.418050,16.486168,17.275646,18.459864,19.527982,20.828299,21.757098,22.685896,24.055873,24.752472,25.518730,27.190567,28.142585,28.650340,29.413515,30.481633,31.619410,32.800544,33.418231,34.049796,35.229388,36.669025,37.992562,38.456961,39.292880,40.732517,42.056054,42.915193,43.261950,44.306848,45.607166,45.837823,46.905941,47.741859,48.322358,49.062313,50.827029,52.893605,53.845624,54.775045,55.252789,55.972608,57.249705,58.503583,60.036100,60.593379,60.799274,61.542313,62.563991,64.119728,65.512925,66.751383,67.796281,68.794739,70.211156,71.113651,72.181769,73.249887,74.689524,75.920181,76.220499,77.381497,77.961995,78.542494,79.401633,79.958912,81.352109,82.838186,83.975964,84.556463,84.949660,85.669478,87.062676,88.246893,89.175692,90.220590,91.520907,93.262404,96.397098,97.604535,98.719093,99.346032,99.762449,100.505488,101.968345,102.688163,103.291882,104.290340,104.847619,105.846077,107.169615,107.912653,109.236190,110.428209,110.962268,111.751746,112.866304,114.004082,114.445261,116.024218,116.860136,117.997914,118.810612,119.809070,120.528889,121.132608,122.107846,122.502585,123.431383,124.058322,125.335420,126.078458,127.100136,128.377234,130.374150,131.372608,132.719365,133.996463,134.948481,136.132698,136.713197,137.293696,138.268934,139.151293,140.614150,143.168345,144.027483,145.188481,145.580136,146.578594,147.272109,148.479546,149.385125,149.892880,151.169977,152.606531,153.581769,154.765986,156.135964,156.643719,157.594195,158.894512,160.355828,161.934785,162.352744,163.258322,164.837279,166.532336,167.948753,170.015329,171.013787,172.499864,173.753741,174.659320,176.122177,177.259955,179.605170,180.580408,181.277007,182.112925,183.181043,185.085079,185.781678,186.081995,187.057234,188.125351,188.566531,190.424127,191.840544,192.839002,193.883900,195.114558,196.113016,196.879274,198.017052,199.410249,200.269388,201.871565,203.009342,204.727619,205.261678,206.027937,206.678095,208.187392,209.464490,210.300408,210.973787,212.506304,213.992381,214.688980,215.501678,216.546576,219.031111,219.727710,220.168889,220.865488,221.956825,223.512562,224.627120,225.254059,225.811338,226.740136,228.853152,229.781950,231.035828,233.375552,233.816054,234.466213,235.069932,236.161270,237.043628,240.108662,240.944580,242.709297,243.916735,245.588571,247.771247,248.537506,249.025125,249.698503,250.859501,252.043719,253.251156,254.296054,254.433832,255.385850,256.221769,257.498866,259.054603,260.610340,261.608798,262.514376,264.602242,265.737324,267.246621,268.872018,269.870476,270.867392,271.912290,273.073288,274.536145,275.464943,276.324082,276.718821,277.879819,278.805533,280.593469,280.800907,282.379864,283.447982,284.516100,285.537778,287.279274,288.578050,290.807166,291.921723,292.222041,294.218957,295.240635,297.771610,299.675646,300.859864,302.160181,303.297959,304.133878,306.084354,307.198912,308.313469,309.033288,309.799546,311.099864,312.562721,314.072018,314.582857,315.534875,316.417234,317.647891,319.342948,320.016327,320.945125,322.268662,323.685079,324.358458,325.055057,326.285714,326.795011,328.304308,329.349206 diff --git a/data/torah/labels/Miketz-5.txt b/data/torah/labels/Miketz-5.txt deleted file mode 100644 index f19aac2db..000000000 --- a/data/torah/labels/Miketz-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.366893,3.620771,4.921088,6.151746,7.243084,8.520181,9.518639,11.074376,12.421134,13.651791,14.789569,15.880907,16.693605,18.133243,18.992381,19.805079,20.942857,22.150295,23.288073,24.797370,25.865488,26.654966,27.955283,28.884082,29.673560,33.086893,34.155011,34.362449,36.057506,38.740386,40.583946,43.068481,43.625760,45.785215,46.922993,48.827029,49.941587,51.613424,53.308481,54.144399,55.371973,56.695510,57.229569,57.949388,59.296145,60.410703,61.478821,62.663039,65.537080,66.396218,67.975175,69.902431,72.108327,73.362204,75.684200,77.518576,78.029415,78.981433,79.910232,81.071229,82.417987,83.137805,83.718304,84.414903,85.808100,87.479937,88.176535,89.407193,90.312771,90.986150,92.216808,93.006286,93.981524,95.351501,97.464517,98.416535,99.670413,101.202930,102.271048,103.919665,105.080662,106.543520,107.588418,108.028055,109.212272,110.628690,111.464608,112.997125,114.529642,116.572998,118.220073,118.614812,121.004926,123.025062,124.348599,125.625696,126.693814,127.111774,128.203111,129.526649,131.035946,132.196944,133.520481,134.658259,135.401297,136.446195,137.885833,138.046830,139.045288,139.390504,140.644381,142.308508,143.446286,145.466422,147.324018,148,149.622794,150.760572,152.409189,153.872046,155.404563,156.704880,156.862794,158.186331,158.971184,159.667783,160.410821,162.082658,163.475855,163.635311,164.517669,165.864427,167.071864,168.209642,169.092000,170.856717,172.505334,174.293270,176.847465,177.590504,178.099801,178.958939,180.073497,180.561116,182.000753,182.906331,183.904789,185.414087,188.107601,188.499257,189.404835,190.426513,191.587511,192.887828,194.698984,195.372363,196.928100,197.531819,198.390957,199.203656,200.666513,204.195946,205.426604,206.726921,208.050458,209.141796,210.372454,212.160390,213.344608,214.900345,215.059801,216.429778,217.544336,218.287374,219.123293,220.516490,221.259529,222.025787,223.767284,224.603202,225.276581,227.041297,228.211638,229.093996,230.278213,231.717851,232.948508,234.620345,236.083202,236.501161,237.337080,238.358758,239.519755,241.400572,243.049189,244.140526,245.347964,246.369642,247.577080,248.621978,249.248916,249.968735,251.222613,252.499710,253.428508,254.611184,255.563202,256.213361,257.026059,258.024517,258.837216,260.369733,263.806286,264.827964,266.058622,268.357397,270.516853,272.792409,273.790867,274.441025,275.276944,276.252182,276.948780,277.691819,278.713497,279.363656,280.594313,281.639211,282.614449,283.287828,284.100526,285.772363,288.767737,289.742975,290.973633,292.436490,293.365288,293.571184,294.241479,295.193497,296.633134,298.908690,299.465969,301.277125,302.925742,303.738440,304.899438,306.664155,308.150232,309.171910,310.562023,311.746241,312.860799,314.579075,315.740073,316.575991,317.760209,318.828327,319.337624,320.568282,321.775719,322.750957,323.447556,324.654994,326.698350,327.650368,327.833043,328.715402,329.667420,330.345515,330.949234,331.664336,332.664427,333.265062,333.752681,334.704699,335.888916,336.817715,337.467873,337.884291,338.580889,339.857987,341.088644,342.388962,345.361116,345.895175,346.406014,347.032953,348.495810,349.053089,350.167647,351.375084,353.372000,354.347238,355.879755,357.365833,358.224971,359.475765,360.729642,361.215719,362.074857,364.420073,364.463429,366.367465,367.574903,368.944880,371.034676,371.963474,373.078032,375.423248,376.468145,377.257624,378.488282,378.835039,379.949597,380.901615,381.830413,383.432590,384.593588,385.519302,386.494540,387.653996,388.277851,388.719030,389.089007,390.296445,392.316581,393.686558,394.917216,396.078213,397.448191,399.120028,400.164926,400.791864,401.674223,402.254721,403.160300,404.158758,405.389415,406.434313,407.641751,409.104608,410.869325,411.937443,412.212998,413.141796,414.047374,416.717669,417.925107,418.482386,419.596944,420.293542,421.036581,421.895719,422.754857,424.148055,424.705334,426.423610,427.538168,428.374087,429.047465,429.976263,430.974721,432.205379,433.110957,434.597034,436.083111,437.336989,438.381887,439.612545,440.262703,442.027420,442.886558,443.815356,444.628055,445.696173,450.200844,451.268962,451.988780,454.844835,455.727193,458.281388,460.510504,461.601842,462.693179,463.227238,464.202477,465.177715,466.199393,467.639030,468.219529,468.916127,469.426966,470.657624,472.166921,473.792318,474.883656,476.091093,476.973452,478.273769,478.527647,480.129823,481.960476,483.794852,484.166372,485.350589,487.092086,488.253084,490.017800,490.969818,492.386236,493.872313,495.311950,496.287188,497.192766,498.307324,498.934263,499.092177,499.858435,500.133991,501.527188,502.757846,504.197483,504.986961,506.937437,507.494716,508.144875,509.282653,510.048911,511.767188,513.299705,514.692902,515.296621,515.900340,517.386417,518.268775,519.429773,521.124830,521.821428,522.378707,523.353945,523.980884,525.257982,527.092358,528.671315,530.110952,531.898889,532.734807,533.570725,536.403560,536.912857,538.700794,540.674490,541.858707,542.648186,544.366462,545.479478,546.176077,547.429955,548.590952,549.473311,550.355669,551.539886,552.956304,553.931542,555.046100,556.485737,558.227233,559.086372,560.061610,561.361927,561.942426,564.055442,565.170000,565.936258,567.608095,569.047732,570.464150,571.321746,572.227324,573.341882,574.526100,575.501338,576.639116,577.985873,578.798571,578.911587,580.049365,581.290907,583.218163,584.100521,584.843560,585.958118,587.258435,588.349773,589.742970,591.252267,591.786326,592.668685,593.527823,594.015442,595.292540,598.125374,599.216712,600.331270,602.026326,603.907143,605.091360,605.602199,606.832857,607.900975,609.294172,610.733809,611.918027,612.916485,613.473764,614.797301,616.167279,617.630136,618.721474,620.671950,622.204467 diff --git a/data/torah/labels/Miketz-6.txt b/data/torah/labels/Miketz-6.txt deleted file mode 100644 index 57e0b9f40..000000000 --- a/data/torah/labels/Miketz-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.826667,3.871565,6.402540,6.955193,9.323628,10.647166,11.970703,12.130159,13.291156,14.034195,14.218413,15.402630,16.911927,18.281905,18.908844,20.162721,21.021859,22.531156,23.436735,24.435193,26.362449,27.639546,28.568345,30.031202,30.983220,32.144218,33.583855,35.065306,35.596281,36.664399,37.611791,39.144308,41.227937,43.085533,43.851791,46.104127,46.684626,48.727982,50.794558,51.258957,51.909116,52.721814,54.254331,56.297687,57.760544,59.176961,60.825578,62.218776,63.101134,65.098050,66.166168,68.163084,69.625941,71.204898,71.669297,73.201814,74.641451,74.917007,75.822585,77.006803,77.375238,77.955737,79.256054,80.463492,81.206531,81.810249,83.110567,85.403175,86.076553,87.260771,88.421769,90.000726,91.092063,91.904762,92.996100,95.434195,95.921814,96.595193,96.802630,98.567347,100.239184,100.562721,102.211338,103.441995,103.952834,104.649433,105.949751,107.342948,108.573605,111.104580,112.776417,113.380136,115.400272,117.717642,119.157279,120.202177,121.223855,121.943673,122.895692,123.731610,124.939048,125.635646,126.192925,127.237823,129.211519,131.417415,132.183673,133.739410,134.296689,136.131066,138.592381,139.846259,141.007256,141.936054,142.655873,143.584671,146.270476,147.733333,148.522812,149.590930,150.612608,151.564626,151.934603,153.165261,154.615782,156.032200,156.519819,157.680816,158.795374,159.840272,161.001270,161.674649,163.369705,164.855782,165.668481,166.713379,168.245896,170.567891,170.939410,172.053968,172.564807,173.098866,174.004444,175.676281,176.488980,177.739773,178.436372,179.526168,180.245986,181.499864,183.148481,183.845079,184.866757,186.492154,187.628390,188.116009,189.044807,189.671746,190.574240,191.828118,193.235283,193.792562,195.000000,196.323537,197.159456,198.320454,200.479909,202.523265,203.637823,204.589841,205.681179,206.818957,207.883991,208.975329,211.181224,212.992381,214.315918,215.430476,216.915011,217.843810,219.074467,221.001723,222.992472,224.571429,226.638005,227.218503,228.449161,230.701497,231.258776,233.116372,235.322268,236.552925,237.873379,239.034376,240.102494,240.961633,242.331610,244.723265,245.721723,247.857959 diff --git a/data/torah/labels/Miketz-7.txt b/data/torah/labels/Miketz-7.txt deleted file mode 100644 index fb812f040..000000000 --- a/data/torah/labels/Miketz-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.690913,5.316309,5.873588,6.686287,7.475765,7.847284,8.683203,9.890640,11.121298,12.142976,12.886015,13.579529,14.810187,15.853543,16.526922,17.920119,19.568736,20.567194,21.379892,22.331910,23.864427,24.978985,26.116763,27.231321,28.461978,30.574994,31.759212,32.455811,33.756128,35.218985,35.565742,37.144699,39.157216,40.271774,40.525652,41.500890,42.197489,42.801207,43.451366,43.912681,45.375538,47.534994,48.556672,49.578350,51.714586,52.968464,54.942160,56.079937,57.055176,57.751774,58.027330,59.490187,61.061434,62.501071,63.522749,65.589325,67.609461,69.629597,71.208554,72.833951,73.855629,74.737987,76.084745,77.176083,78.406740,79.637398,80.821615,83.050731,83.654450,84.443928,84.721026,86.834042,89.086377,91.013634,91.431593,92.453271,93.614269,94.543067,95.448645,96.214903,97.468781,98.467239,98.996672,99.623611,100.179348,101.711865,102.385244,104.358940,105.261434,107.211910,108.628328,109.603566,110.741343,111.925561,112.905840,113.657806,114.958123,117.744518,118.696536,119.369915,119.973634,121.134631,122.202749,122.849824,124.753860,125.891638,126.588237,128.376173,131.063520,132.246196,132.452092,134.634767,135.074405,136.955221,138.092999,138.836037,140.136355,140.343792,141.249371,141.969189,142.596128,143.523384,144.893362,146.379439,147.888736,148.956854,150.721570,151.670504,152.390323,153.060618,154.268055,155.822250,157.169008,158.097806,158.860981,159.766559,160.347058,162.969371,163.710867,164.732545,165.357942,166.819257,167.419892,168.766650,170.291457,171.916854,172.938532,173.097987,174.003566,174.907602,176.393679,177.252817,178.181615,179.342613,180.317851,181.409189,182.430867,183.567103,184.913860,186.005198,186.700255,187.838033,188.697171,190.229688,191.204926,191.971185,192.991321,194.593498,196.126015,196.983611,197.749869,198.864427,200.652364,202.090640,203.019439,204.180436,204.853815,205.361570,206.406468,208.230051,209.042749,210.435947,211.689824,212.641842,213.408101,215.335357,216.240935,217.100074,218.377171,220.931366,221.651185,222.463883,223.787420,224.205380,225.041298,226.364835,227.131094,227.688373,228.384972,228.963928,229.985606,230.937625,231.655901,233.095538,235.208554,237.298350,237.877307,238.247284,239.408282,240.453180,241.776718,242.333996,243.750414,246.230323,247.693180,248.621978,250.015176,251.269053,252.406831,253.428509,254.775266,256.145244,257.909960,259.279937,260.696355,261.485833,261.831049,262.945606,264.036944,265.430142,266.614359,267.471956,268.400754,269.583430,270.651547,271.533906,272.577262,273.482840,274.620618,275.572636,276.571094,277.838940,278.512318,279.510776,280.277035,281.089733,281.809552,282.599030,283.876128,285.315765,286.360663,286.894722,288.495357,290.004654,290.887012,291.512409,292.719847,293.950504,295.622341,296.109960,296.876219,298.106876,298.676498,299.521182,300.072293,301.233291,303.415967,304.646624,304.759640,305.781318,306.988756,308.264311,309.169890,310.284447,311.538325,313.419141,314.928438,315.572429,316.143676,317.002815,318.372792,320.787667,322.248983,322.826397,324.033835,324.496692,327.886806,329.651522,330.441001,332.159277,334.202633,335.015332,335.547849,336.569527,337.335785,339.681001,340.424039,341.794017,342.560275 diff --git a/data/torah/labels/Miketz-H.txt b/data/torah/labels/Miketz-H.txt deleted file mode 100644 index 204d524dd..000000000 --- a/data/torah/labels/Miketz-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.947392,5.433469,6.339048,8.684263,9.891701,12.329796,15.023311,17.072750,18.453696,18.822132,21.353107,22.792744,23.721542,25.532698,27.088435,28.063673,29.062132,29.455329,31.196825,32.031202,34.446077,36.582313,37.534331,38.416689,38.973968,41.528163,43.150476,45.263492,47.515828,48.630385,49.466304,51.138141,52.368798,53.692336,55.512834,56.627392,58.020590,59.228027,61.480363,62.664580,63.500499,65.915374,68.887528,70.025306,71.070204,72.440181,73.601179,74.225034,75.081088,76.961905,78.400494,80.974331,81.856689,82.437188,83.248345,84.316463,85.616780,86.147755,87.189569,88.931066,91.514310,92.071589,93.023607,93.743426,96.088641,97.040659,97.923018,99.385875,101.777530,102.520569,104.471045,106.584061,107.232678,107.906056,110.646011,112.410727,113.385966,115.382882,117.704877,118.401476,119.190954,119.748233,121.094991,122.929367,124.995943,126.574900,127.643018,127.825693,128.731272,129.379888,130.819526,132.352043,133.211181,134.139979,136.550229,137.124560,137.657077,138.492995,139.188052,140.743789,143.013176,144.336714,146.472950,147.750047,149.630864,150.582882,151.279480,152.835217,153.833675,154.948233,155.691272,157.200569,158.245467,159.290365,159.986963,160.822882,162.796578,164.420433,165.047371,166.603108,169.296623,170.434401,171.920478,172.988596,173.476215,174.219254,175.078392,176.030410,177.632587,178.677485,179.536623,181.185240,181.997938,182.996396,183.785875,184.737893,186.131090,187.728641,188.471680,189.655898,190.143517,191.768913,193.022791,193.719390,194.485648,195.762746,197.806102,198.804560,200.940795,201.405195,202.217893,203.100251,205.282927,206.327825,206.464061,207.439299,208.368097,209.087916,209.807734,211.247371,212.756669,215.009004,215.705603,216.332542,218.027598,218.491997,221.069412,221.671589,222.552405,225.013721,225.495172,227.329548,230.324922,230.928641,233.550954,234.151589,234.851272,235.287825,236.681022,237.911680,239.119117,239.698074,241.764650,242.763108,245.247644,245.919480,246.612995,247.077394,248.470591,249.352950,250.351408,252.291143,253.498252,255.518388,258.397663,259.163921,259.766098,260.136076,261.598933,262.690271,263.711949,264.546325,266.636121,267.495259,269.167096,271.253808,271.529364,273.897799,274.385418,275.546416,276.311132,277.750769,278.842107,280.072765,281.187323,282.975259,284.250815,285.411813,285.828230,287.314307,289.148683,290.354579,291.165735,292.837572,294.695169,295.925826,297.040384,298.038842,298.523377,298.894896 diff --git a/data/torah/labels/Mishpatim-1.txt b/data/torah/labels/Mishpatim-1.txt deleted file mode 100644 index 9e2239e01..000000000 --- a/data/torah/labels/Mishpatim-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.163772,3.282214,4.922753,5.802322,6.665308,8.133158,9.082944,10.104683,10.968124,11.917910,12.637444,13.515276,14.580188,16.393414,17.285573,18.422438,19.731991,20.206904,21.185471,22.120866,23.344075,24.668018,25.066511,25.670920,26.505580,27.354631,28.419542,29.268593,30.534973,30.949036,32.013947,32.909188,33.657504,34.823150,35.724759,36.075140,37.034312,37.868972,38.991446,40.355439,42.253149,43.394851,44.857864,45.908384,46.728654,48.282848,49.156233,49.861377,50.580912,51.674604,52.779193,52.965382,54.362169,55.427410,56.492321,56.847871,57.845046,58.450799,59.344531,61.439554,63.693785,64.718750,64.972944,66.656654,67.966207,68.129880,69.100053,69.891541,70.253851,71.560861,72.539716,73.403158,73.593586,74.451135,75.676887,77.000830,78.382337,79.256301,80.296299,81.490726,82.021360,82.936161,84.179964,84.633167,85.674714,86.207459,87.603355,88.194180,89.935454,91.504039,93.389219,93.993628,94.310223,95.285584,96.684687,97.654920,99.252287,99.631221,100.533058,101.597970,102.258142,103.051429,104.643191,105.722493,107.089609,108.025003,108.946008,109.615133,110.665653,111.131800,112.045774,112.701997,113.479094,115.479401,116.457968,117.666785,118.170460,119.465622,120.746394,121.212518,122.234257,122.824275,123.774061,124.608721,125.774367,126.508292,126.925622,128.120050,129.501556,130.652811,131.703331,132.207006,133.142401,134.667814,135.387348,136.409087,137.876938,138.668425,139.877244,140.985327,141.676428,142.726601,143.633214,144.410311,145.863771,148.655565,149.677304,150.842950,151.314302,152.292869,153.487296,154.739286,156.034034,157.257657,158.466475,159.401870,160.661902,162.185268,163.281586,163.679604,165.005843,166.574428,167.624949,169.438176,170.517478,171.553607,172.057282,173.079021,174.575652,176.057893,177.180367,177.655260,178.734562,179.555262,180.577001,181.800210,182.715734,183.181717,183.450259,184.380341,185.617940,186.189349,187.272870,188.125165,188.964622,189.861972,191.273481,191.786934,193.673086,195.140937,196.608787,197.125631,198.420793,199.384969,200.680131,201.615526,203.270456,204.752697,205.666918 diff --git a/data/torah/labels/Mishpatim-2.txt b/data/torah/labels/Mishpatim-2.txt deleted file mode 100644 index 009c4ba86..000000000 --- a/data/torah/labels/Mishpatim-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.967202,2.553777,4.172052,4.625999,4.938497,6.493109,7.195145,7.430799,8.335117,9.356856,10.407377,11.069349,12.119869,13.141608,14.551896,15.415337,15.728069,16.980059,17.584468,18.447910,19.584774,20.620904,21.628253,22.160708,22.995368,23.959544,24.819020,25.869540,27.524470,29.826980,30.834870,31.644291,32.763650,33.831071,34.532214,35.338093,36.575692,37.770120,39.439439,40.533132,41.318930,42.317578,43.372100,44.652872,45.789737,47.387104,48.066609,49.045176,50.225213,51.423895,52.225519,52.829928,53.779714,54.945359,55.895145,56.744196,57.780325,58.543032,59.478427,60.629682,61.708984,62.558035,63.637337,64.270527,65.292266,66.616210,67.422088,68.472609,69.609473,70.559259,71.509044,73.955461,74.876466,76.603349,77,78.708580,79.927598,80.470865,81.064564,82.633149,82.970852,83.3,83.630214,84.637562,86.019069,87.483865,88.563167,89.210748,90.433957,91,91.801073,93.268923,93.6,94.074802,95.053264,96.118280,97.256121,98.510391,99.201145,100.568260,101.330967,101.906595,102.627505,102.970741,104.237886,104.653621,104.913863,105.763299,106.778046,108.073209,109.756920,111.239160,112.174555,112.980434,113.229393,114.405103,115.229894,115.985525,117.314684,120.638933,122.106784,123.103826,124.308559,125.574940,127.301823,128.330137,129.409438,130.546303,131.827075,132.724674,133.377846,133.956737,135.232758,136.384013,137.664785,138.236983,139.229940,140.338024,142.180190,143.014850,143.820728,144.914421,146.353490,147.418401,148.540875,149.300307,149.827551,150.557567,151.762561,152.435118,152.829583,153.820868,154.471479,155.013251,156.006208,157.089293,157.932013,158.751681,159.707106,160.347656,161.887460,162.678948,163.599952,164.132408,165.240491,166.996155,168.449615,170.133325,171.313362,172.507790,173.961249,175.270802,175.958644,176.980383,178.232373,179.901693,182.448845,182.916506,183.738218,185.004599,185.868041,186.616357,187.868347,188.76,189.105946,189.940606,190.300374,191.433365,192.283301,193.060398,194.168482,195.147049,196.053662,197.391996,198.557642,199.046027,200.111837,200.982629,202.392916,202.925372,204.033455,204.623473,205.091076,205.990589,206.911593,209.487527,209.962420,210.739517,211.732475,213.134338,213.349227,214.846829,216.041257,216.294907,216.919089,218.358158,219.178428,220.804576,223.553197,224.397086,225.001495,226.037625,227.260833,228.484042,229.071801,230.395744,231.518218,232.698505,233.601767,234.422036,235.386212,236.393561,237.415300,237.998168,238.981769,239.811354,240.510962,241.250423,242.266164,242.535679,243.287903,244.852579,245.387984,246.720401,247.828485,249.382679,250.721013,251.598845,252.563022,253.484763,254.217951,254.748213,256.000203,256.519440,258.474489,259.512704,260.304192,261.653262,262.793782,263.221434,263.840233,265.034661,265.659200,266.537032,268.076835,269.328825,270.367353,271.192144,272.517578,273.798350,274.315263,275.006016,275.768722,277.049494,278.638581,279.275927,280.930856,281.799155,283.345049,285.273401,287.014675,287.347279,288.799121,289.401572,289.999086,291.020825,292.421483 diff --git a/data/torah/labels/Mishpatim-3.txt b/data/torah/labels/Mishpatim-3.txt deleted file mode 100644 index 674dc9bd5..000000000 --- a/data/torah/labels/Mishpatim-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.984820,2.886103,3.459514,4.423690,5.718852,6.049331,7.114750,8.496256,8.798461,9.992888,11.374394,12.180273,13.360309,14.597908,16.209666,17.231405,18.123628,19.490743,20,20.776887,21.985705,23.295258,24.201871,25.468252,26.432428,27.228175,28.321867,28.745395,30.069339,31.206203,32.429412,33.537495,33.799357,35.523411,36.560460,37.884403,38.373686,38.662789,40.183321,40.874074,41.161914,41.959909,43.154337,44.406327,45.125861,46.377852,46.933502,47.609865,48.746729,49.760302,50.977286,51.600317,51.977112,52.869335,53.991809,55.027939,55.500725,56.421729,56.939794,58.278128,58.870444,59.474853,60.942704,62.180303,62.885078,64.080964,64.683493,64.928134,65.410432,68.418087,69.108840,72.030150,72.706512,75.325618,75.901246,76.462482,76.807859,78.390835,78.836947,79.025781,81.292720,82.621096,83.671616,84.138877,84.966778,85.830220,86.753636,88.063188,89.329569,89.796490,91.307512,92.473158,93.552460,94.761278,95.826189,96.683875,98.050990,98.736327,100.060271,100.463210,100.765415,102.290828,103.355738,103.686724,104.550166,104.823589,106.190705,106.874466,107.910596,109.018679,110.889468,111.364134,112.213184,112.493648,113.558559,114.106301,115.743696,117.187478,118.856798,120.180742,120.972230,122.195439,122.735239,123.325257,124.922624,126.174614,127.038055,128.174920,129.153486,130.189616,130.985417,132.525222,133.096106,133.858813,134.909334,136.132542,137.341360,138.895554,139.481640,140.103301,141.198065,142.717271,143.658500,145.196228,145.616839,147.041517,147.817882,148.903215,150.112034,151.004256,151.997214,153.421892,153.718257,154.645101,155.704173,156.079226,156.941772,157.722008,159.703744,160.558290,161.234653,162.190973,162.645359,163.881190,164.345676,165.295462,166.058168,166.979172,168.562148,169.235084,170.328776,171.609548,173.753761,174.574030,174.749014,175.984959,177.150605,178.301860,180.230212,181.367077,181.931815,183.479724,184.390629,185.669267,187.340721,188.495450,189.786207,190.578626,191.657928,192.866746,193.917266,195.269991,196.982483,197.520762,198.997180,199.488106,200.079751,200.338784,201.360522,201.812467,203.490345,205.325223,206.382874,207.821942,208.687116,209.711969,211.151037,212.085729,212.315980,213.438454,214.229942,215.539495,215.923411,216.514495,217.565015,218.155034,219.464587,220,220.758231,221.837533,222.368640,223.735756,224.335254,224.838928,225.687979,226.983141,227.990489,228.393429,229.041010,229.890060,230.868627,231.732069,232.624292,234.207268,235.646337,236.725639,237.977629,238.812289,240.150623,241.174705,242.095709,243.333308,244.674754,246.142604,246.822247,248.448394,249.490581,249.767707,251.398486,251.792472,252.549742,253.600262,254.144296,254.852252,255.456661,256.809386,257.231280,258.051549,258.756693,259.864776,261.078416,261.725997,262.718955,263.582396,264.906339,265.493970,265.858422,266.736254,267.678997,268.655404,269.333927,269.851991,270.864218,272.234867,273.735452,274.872317,276.185515,277.423114,278.804621,279.130527,279.4,280.065922,281.116442,282.929669,283.327387,284.548238 diff --git a/data/torah/labels/Mishpatim-4.txt b/data/torah/labels/Mishpatim-4.txt deleted file mode 100644 index 28f1e92f1..000000000 --- a/data/torah/labels/Mishpatim-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.706943,3.248915,3.914850,5.368309,6.274923,7.383006,7.682928,8.965982,10.242436,11.595160,12.444211,13.782545,14.631596,15.552600,16.115630,17.079807,17.636419,18.355953,19.564771,20.960668,21.996798,22.903411,23.853197,24.116044,25.011599,25.873729,26.934912,27.605310,28.539956,29.500049,30.334709,31.557917,32.464531,33.526477,34.332355,35.522599,36.404688,37.475315,38.635172,39.469832,40.577915,43.175346,44.197085,45,46.072814,46.481376,47.090136,47.939180,48.181586,49.218546,50.184134,50.669615,51.637594,52.309224,52.891672,53.315882,54.194604,55.594324,56.203217,57.167393,57.407530,58.664025,60.410887,61.331891,62.065816,63.116337,65.591535,66.109660,67.072430,68.397779,69.311320,71.203562,72.585069,74.355124,74.896762,75.880537,76.959839,77.909624,78.988926,80.111400,80.643855,82.313175,83.392477,85.435955,86.558429,87.407480,88.616298,90.069757,91.259624,92.108675,92.986507,94.310450 diff --git a/data/torah/labels/Mishpatim-5.txt b/data/torah/labels/Mishpatim-5.txt deleted file mode 100644 index 618fcb863..000000000 --- a/data/torah/labels/Mishpatim-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.088373,2.582434,4.405356,5.196844,6.348099,7.571308,8.434453,9.197160,10.593057,11.542842,12.463847,12.838821,13.931697,14.550497,14.783814,15.478089,16.672516,18.125976,18.715994,19.908121,20.621908,21.723649,22.975639,24.155675,25.494009,26.112809,27.580659,28.832649,29.408277,30.458797,32.559839,33.754266,34.084124,34.847959,35.898479,36.228927,36.789659,37.841050,38.459850,39.870138,40.733579,41.841662,42.790160,42.977239,44.157275,45.466828,45.719793,47.262696,49.635379,50.964589,52.993677,54.159322,55.238624,56.361098,58.807516,60.059506,60.850993,62.261281,62.742910,63.508957,64.732166,66.271970,68.070806,68.833513,69.797689,71.064070,71.771473,72.890466,74.057630,75.136932,76.791861,78.098932,79.509280,80.602973,81,81.839302,83.059312,85.232307,85.858196,86.461777,87.566338,89.192486,90.183566,90.946273,91.896058,92.960970,94.155397,94.553828,95.535292,95.825171,96.755604,98.050766,99.158849,99.935946,100.468402,101.677220,102.267958,102.868987,105.056372,107.344492,108.423794,109.949207,110.827039,112.237327,113.546880,115.676702,116.899911,117.734571,118.871435,119.458077,120.065863,120.989279,122.270051,122.777655,123.559448,124.463939,125.689270,127.459325,128.610580,129.704273,130.913090,131.776532,132.697536,134.122215,135.100782,136.194474,137.331339,138.511376,139.705803,140.030114,141.189810,141.679093,142.945474,144.067948,144.988952,146.341677,147.708792,148.018900,150.011303,150.418992,151.220121,152.336107,154.019818,154.539633,155.182580,155.513566,156.305053,156.780859,157.916811,158.522115,159.155306,159.714196,160.404949,160.663982,161.628158,163.614073,164.894845,166.889089,169.168880,169.989149,170.982107,172.392394,172.863987,173.741819,174.835511,176.274580 diff --git a/data/torah/labels/Mishpatim-6.txt b/data/torah/labels/Mishpatim-6.txt deleted file mode 100644 index a9aee64eb..000000000 --- a/data/torah/labels/Mishpatim-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.773946,2.791199,4.659660,5.582950,6.491557,7.876101,9.361601,10.558655,12.996029,13.463199,14.516029,15.035233,16.535156,18.199903,20.299384,21.308948,22.520424,23.071052,24.109460,25.147867,25.704766,26.209547,27.087394,28.601739,29.189804,29.878680,31.501730,32.359349,32.726988,33.347788,34.270817,35.511138,38.063891,38.958075,39.751304,41.308916,42.565424,42.868293,44.541283,45.969094,46.243119,47.959376,48.560207,49.396703,51.704276,54.285873,56.809782,57.316737,58.484945,60.388694,61.903039,63.561607,64.902883,66.345117,68.869025,69.454271,70.521524,71.963757,73.210083,74.790534,75.497229,76.665437,78.453807,79.211309,80.091071,81.980397,83.206295,84.446616,86.263830,88.931961,89.552121,90.662641,92.018340,93.066145,93.294581,94.556671,95.057819,96.518108,98.032453,99.604487 diff --git a/data/torah/labels/Mishpatim-7.txt b/data/torah/labels/Mishpatim-7.txt deleted file mode 100644 index c3ac9d7d1..000000000 --- a/data/torah/labels/Mishpatim-7.txt +++ /dev/null @@ -1 +0,0 @@ -1.864634,2.786137,4.635193,5.889936,7.260058,8.673447,9.097362,9.807371,10.643866,11.970721,12.628035,13.810666,14.863496,16.118240,17.531628,17.794426,18.2,19.146929,19.997847,20.892031,21.988129,24.021678,24.247087,24.601012,26.358095,27.517687,28.801275,30.223550,30.398669,31.608093,32.934948,35.458856,35.886510,37.593361,37.852963,39.799978,40.322893,41.299081,42.8,44.260189,46.394694,47.923461,48.846491,49.884899,50.485398,51.255201,52.088958,53.314857,54.209041,54.987847,55.579783,56.833906,58.030959,59.516460,61.117339,62.530727,63.439334,64.521009,65.631529,66.972805,67.294476,68.573684,70.154722,70.387374,72.423711,73.054183,73.952478,74.585366,75.351748,76.673391,78.288693,78.649250,80.028730,81.677940,82.716348,84.605674,85.427747,86.707199,87.648786,89.475548,91.206227,92.199778,93.079540,94.565041,96.324565,97.550463,98.444648,99.483056,101.026245,101.448627,102.328389,103.395642,104.304248,105.097476,106.006083,106.251263,108.169434,108.805680,109.342832,109.907354,111.591771,112.059381,112.709437,114.247944,115.286352,115.484150,117.361580,118.630745,119.871066,121.154653,122.510353,123.851630,124.933304,126.231314,128.091795,129.418650,130.452650,131.173766,132.111218,132.398870,133.466122,134.706442,135.240069,136.509234,138.946608,139.581191,140.446530,141.629162,142.984861,144.643429,145.834920,146.907735,147.744230,148.176901,149.215309,150.484474,151.508459,151.840173,153.412207,154.479460,154.836484,156.253407,156.988945,157.984086,160.156679,160.591033,162.451514,163.144832,163.721725,164.673599,166.577347,168.408983,170.038706,170.831935,171.206915,172.101100,173.312576,174.711542,175.894173,176.856274,178.021694,178.944724,180.084088,181.021540,181.858035,183.055088,184.006962,185.002103,185.737642,187.208720,189.386492,189.862429,191.045060,191.968089,193.641080,194.838134,195.991920,198.587940,200.361887,202.034878,203.304043,204.356873,205.568348,206.491378,207.688432,208.712417,210.024849,211.481505,212.952583,213.933301,214.885175,215.202732,216.628648,218.200683,219.311202,220.335188,221.647620,222.628339,223.623480,225.801252,227.402130,228.059998,228.511405,229.607502,230.487265,232.405435,233.963047,234.770697,234.929343,235.953329,237.208071,237.597474,238.693571,240.712698,241.621305,241.990249,242.745992,243.624314,244.185864,245.136180,246.397845,247.160977,247.453727,248.442463,249.824740,250.947841,251.854960,253.136446,254.317141,255.541033,256.923310,257.859227,259.880212,263.489127,264.180266,265.173778,266.786435,268.341497,269.968552,271.566810,272.776303,274.086587,275.123295,276.139163,277.542280,278.823766,279.954870,280.775597,281.999488,282.668442,283.359580,284.511478,286.138534,286.700650,288.370336,289.723815,291.768434,293.207646,294.717406,294.969122,296.544830,297.690481,299.346333,300.483833,301.224403,302.082091,303.253935,303.816954,304.808997,305.306219,306.160315,307.990996,309.400027,310.911893,311.862209,312.752546,314.410782,315.793060,316.901762,318.298437,319.839100,320.760619,321.653340,321.926915,322.268814,323.856344,324.688950,325.668064,326.603980,327.198368,328.019095,329.055804,329.703746,330.156877,330.963206,332.259091,333.367792,333.986937,334.865259,336.146745,337.557820,338.623326,339.242471,340.538356,341.575063,342.410190,342.712563,343.691676,344.757181,345.563510,345.823799,347.089774,348.025691,348.477834,349.592642,350.108460,350.799599,351.879503,353.608285,354.574941,355.366082,356.689288,358.316080,358.479139,359.859472,360.694598,361.918490,362.681621,364.006304,365.431777,366.355849,367.649180,368.193417,369.258923,370.281232,371.418731,372.570629,373.160976,374.687241,376.631068,378.229326,378.963661,380.129958,381.281855,381.596909,382.785588,383.533637,384.417319,385.367634,386.749912,387.585038,389.629656 diff --git a/data/torah/labels/Nasso-1.txt b/data/torah/labels/Nasso-1.txt deleted file mode 100644 index 78617d32f..000000000 --- a/data/torah/labels/Nasso-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.902494,4.249252,4.458372,5.340730,6.664267,8.870163,9.357782,10.611660,11.099279,12.120957,12.467714,13.141093,13.788168,14.693746,16.365583,18.246399,19.082317,20.220095,21.682952,23.144624,23.650481,24.297555,24.924494,25.385809,26.291388,26.918326,27.475605,28.125764,28.752703,29.472521,30.262000,30.912159,31.771297,32.769755,33.930753,34.580911,35.254290,36.229528,37.669165,39.433882,39.782181,40.243496,41.102635,41.587170,42.028349,42.887487,44.257465,45.697102,46.718780,47.110435,47.737374,48.689392,49.502091,50.407669,50.964948,51.381365,52.658462,54.516059,55.073338,56.327215,56.556331,57.879868,59.273066,59.873701,61.568757,62.729755,63.379914,64.030072,64.421728,65.141546,66.163224,67.092023,68.415560,69.437238,69.689574,70.290208,71.632340,72.558054,73.068893,74.531750,75.739188,76.366127,77.875424,80.224752,80.967791,82.455559,83.324536,84.290447,84.801286,85.335345,86.055163,87.332261,87.982420,88.911218,89.654256,90.675934,92.205367,93.180605,93.920560,94.496433,94.914392,96.354030,97.001104,98.603281,99.833939,100.225594,101.084732,101.804551,102.451626,104.193122,104.703961,105.609540,105.838655,106.488814,107.437748,108.691829,109.667067,110.783167,111.058722,111.778541,112.379176,113.354414,115.444210,116.187248,117.278586,118.602124,120.213915,120.405570,121.102169,121.752328,122.611466,123.114595,123.552690,124.318949,125.921126,126.478405,127.337543,127.682758,128.983076,130.027974,130.863892,131.792690,132.068246,132.738541,133.315956,134.337634,135.213824,135.933643,137.048201,137.884119,139.370196,142.063711,142.829969,143.990967,145.778904,147.799040,149.331557,150.004935,150.817634,151.467792,152.350151,154.300627,155.508065,156.506523,157.272781,157.913906,159.104074,159.663362,161.381639,162.310437,163.030256,164.075154,164.742511,165.624869,166.411264,167.270402,167.972616,168.669214,168.828670,169.401915,170.599625,171.616677,173.009874,174.101212,175.169330,175.842709,176.048604,176.208060,177.647697,178.739035,179.551734,180.643072,182.198808,183.127607,183.597370,184.324196,184.881475,185.249911,185.946509,186.706600,186.982156,187.350591,188.116850,188.836668,189.458981,190.689639,191.638573,192.590591,193.983788,195.353766,195.887825,196.561203,197.791861,198.813539,199.603017,200.485376,201.228414,201.855353,202.598391,203.155670,204.107689,205.129367,205.849185,206.217621,207.053539,207.726918,208.002473,208.908051,209.626328 diff --git a/data/torah/labels/Nasso-2.txt b/data/torah/labels/Nasso-2.txt deleted file mode 100644 index b36e28e53..000000000 --- a/data/torah/labels/Nasso-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.583220,3.043764,4.320862,5.597959,6.352608,7.629705,8.798388,10.005826,10.655984,11.538343,12.095622,12.583241,13.442379,14.394397,15.090996,15.787594,16.530633,17.389771,17.947050,19.479567,20.965644,23.125100,24.286098,25.005916,26.050814,27.583331,28.535349,29.185508,30.462606,31.832583,33.388320,34.386778,35.129817,36.081835,36.403830,37.216529,38.122107,39.167005,40.397662,41.442560,42.835758,43.555576,43.784692,43.967368,45.267685,46.637662,48.216619,48.889998,49.958116,51.119114,51.955032,53.092810,54.509227,55.484465,56.041744,56.784783,57.411721,57.921018,58.664057,59.267776,60.173354,60.986052,61.636211,62.634669,63.308048,65.072764,66.512402,67.626959,69.275576,70.645554,71.783331,73.502940,74.801925,75.753944,76.496982,76.991070,78.082408,79.220185,80.102544,80.729482,81.588621,81.840956,82.305355,83.234154,83.766671,85.183088,85.853383,89.127396,90.868893,91.728031,93.701727,95.234244,96.534562,97.370480,97.741999,99.111977,100.621274,101.271433,102.757510,103.964947,104.940185,105.636784,106.588802,107.262181,107.420095,108.138371,109.229709,109.780820,110.971206,111.870616,113.797872,115.028530,115.881501,116.647759,117.344358,118.830435,120.219006,121.588984,122.884819,123.833462,124.576501,125.064120,126.695407,127.200356,127.687975,129.127612,129.681807,130.494506,130.839721,131.768519,132.349018,134.141820,134.861639,135.578374,135.948351,137.364768,138.734746,139.663544,140.380278,141.494836,142.073793 diff --git a/data/torah/labels/Nasso-3.txt b/data/torah/labels/Nasso-3.txt deleted file mode 100644 index 9e6b5ecee..000000000 --- a/data/torah/labels/Nasso-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.347787,3.415905,3.549057,4.197674,5.381892,6.171370,6.493365,7.306064,8.072322,9.535180,9.737991,11.015089,11.292186,11.988785,12.278309,12.871143,13.880486,14.295361,15.688558,16.756676,16.916132,17.447107,18.631325,18.908422,19.300077,20.298536,21.459533,22.504431,23.526109,23.940985,25.636041,26.564839,27.377538,28.120576,29.606653,30.623453,31.320052,31.874247,32.849485,35.111163,36.156061,36.572478,37.152977,38.476514,39.776832,40.541548,40.888306,41.002863,42.024541,42.626718,43.276877,43.716514,45.040052,46.224269,46.758328,46.917784,47.357421,48.680959,51.745993,51.859009,52.275426,53.831163,54.315698,54.569575,56.102092,56.752251,58.052569,59.120687,60.188805,61.280142,62.208941,62.743000,63.555698,65.529394,66.342092,67.572750,69.708986,70.215199,72.746174,73.091390,74.461367,75.575925,75.713702,76.267897,77.312795,78.497013,78.959870,79.701367,81.466083,81.998600,82.692115,83.969213,84.407308,84.661185,86.240142,87.586900,88.724678,90.466174,91.371752,92.788170,93.970845,94.667444,96.060641,97.871798,99.056015,100.240233,100.631888,101.197086,101.668334,103.015091,103.707064,105.703980,106.632778,108.252338,108.623857,110.481454,111.733789,112.661045,113.589844,114.145581,115.561998,116.955195,117.232293,118.718370,119.366986,120.736964,122.083721,123.151839,123.520274,124.704492,125.336156 diff --git a/data/torah/labels/Nasso-4.txt b/data/torah/labels/Nasso-4.txt deleted file mode 100644 index 90b024a05..000000000 --- a/data/torah/labels/Nasso-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,3.413333,3.760091,4.317370,5.664127,6.964444,7.171882,7.868481,8.750839,9.557370,10.880907,11.670385,12.436644,12.713741,13.874739,14.687438,16.150295,17.148753,18.170431,19.331429,19.980045,22.418141,23.159637,24.483175,25.829932,26.712290,27.432109,28.593107,29.336145,30.706122,31.681361,32.517279,33.074558,33.956916,34.607075,36.696871,37.602449,39.158186,39.435283,40.758821,42.105578,42.334694,43.193832,43.580862,44.579320,45.049977,45.607256,46.396735,46.814694,47.488073,48.323991,48.741950,49.601088,50.088707,50.808526,51.737324,53.293061,54.198639,54.546939,56.799274,57.124354,58.703311,59.957188,60.282268,61.071746,62.464943,63.811701,64.856599,65.553197,66.598095,67.248254,68.014512,69.384490,71.079546,71.869025,72.403084,73.378322,74.191020,74.864399,75.584218,76.977415,77.650794,79.369070,80.181769,81.040907,82.341224,83.548662,84.825760,85.708118,86.683356,87.426395,88.680272,90.909388,92.163265,92.627664,93.417143,93.858322,95.832018,96.644717,98.558060,99.231439,99.788718,101.483774,102.459012,103.945089,104.664908,105.315067,105.568944,106.938922,108.030259,108.725316,109.002414,111.463729,111.903366,113.459103,114.782640,114.966858,115.637153,116.589171,117.377108,117.768763,119.208400,120.137198,121.089216,122.180554,122.877153,123.968491,125.036609,126.035067,126.870985,127.753343,128.287402,129.100101,130.725498,132.420554,133.767312,135.323049,136.344727,136.432981,137.454659,137.9,138.375747,139.878876,140.529035,141.829352,142.316971,142.781371,145.335566,147.189559,147.983261,149.074598,151.811469,152.763487,153.599406,154.690744,156.130381,158.382716,160.083048,161.725144,162.325779,163.045598,163.367593,164.412491,165.573489,166.293308,167.126142,167.729861,169.982197,171.793353,173.140110,174.719067,175.480700,175.599884,178.127775,179.285689,181.514804,182.211403,182.954441,183.790360,184.951358,185.694396,187.157253,188.852310,191.313625,191.917344,192.939022,193.960700,195.028818,195.655757,196.747094,197.466913,198.395711,199.208410,200.810587,203.596981,204.386460,205.942197,207.126414,208.287412,209.819929,210.655847,213.279702,215.485598,217.250314,218.364872,219.200791,220.663648,223.659022,224.169861,225.145099,226.607956,227.467094,228.767412,230.021290,230.179203,230.499657,232.380473,235.445507,236.002786,237.419203,238.231902,238.673081,239.323240,240.762877,242.597253,243.735031,244.849589,246.173126,247.357344,248.471902,249.470360,250.120519,250.956437,251.394532,252.091131,253.298568,254.831085,255.177843,256.199521,256.639158,257.405416,258.357435,258.891494,259.657752,261.445689,262.560246,263.187185,264.046324,265.849654,266.264646,268.470541,269.817299,271.326596,272.092854,274.066550,274.250768,275.202786,275.922605,277.455122,281.074351,281.979929,283.883965,284.975303,285.274079,287.990813,288.966051,289.569770,291.311267,292.216845,293.772582,294.654940,295.839158,296.628636,298.323693,299.531131,300.947548,302.154986,303.939725,305.233988,306.394986,307.138024,307.997163,308.786641,309.131856,310.104011,310.963149,312.704646,313.540564,315.467820,316.953897,318.718614,319.693852,320.506550,321.830088,322.944646,324.059203,325.266641,325.777480,326.497299,328.447775,329.164509,330.534487,331.463285,332.087140,333.526777,334.084056,334.803875,335.820927,336.011312,337.121244,338.212582,338.418478,339.416936,339.855031,341.085689,342.432446,342.827185,343.709543,344.475802,344.868999,345.635258,347.074895,349.512990,350.023829,350.813308,352.229725,353.019203,353.739022,353.853580,354.991358,356.198795,356.754532,356.983648,357.657026,358.957344,359.955802,360.231358,360.695757,361.531675,362.409407,363.523965,364.267004,364.426460,366.191176,366.794895,367.654033,368.745371,369.604509,370.393988,371.787185,373.157163,374.387820,376.407956,377.150995,378.404872,379.055031,380.239249,381.655666,382.000881,383.440519,385.042695,385.994714,387.364691,388.038070,388.897208,390.545825,391.381743,393.471539,394.377117,395.816754,396.675893,397.279611,398.231630,400.182106,400.809045,402.155802,403.316800,404.593897,407.403512,407.867911,408.680609,409.261108,411.118704,413.394260,414.044419,414.764237,415.437616,416.018115,416.617208,417.313807,417.823104,419.169861,420.145099,420.888138,423.117253,423.535212,424.185371,425.299929,426.809226,427.691584,428.364963,429.200881,430.872718,432.567775,433.030632,433.564691,434.818568,436.374305,436.931584,437.604963,438.185462,438.671539,439.716437,440.783013,442.478070,443.476528,445.543104,446.262922,447.052401,447.656119,448.747457,450.396050,451.363602,452.571040,452.984373,454.122151,455.842930,456.809819,457.738617,458.551315,458.870227,460.216984,460.932177,461.466236,462.161293,462.997211,463.879569,465.388866,466.851723,467.407460,468.336259,469.357937,470.147415,470.840930,472.164467,473.279025,474.788322,476.762018,477.923016,479.478753,480.152132,481.057710,481.800748,482.543787,483.217166,483.681565,484.354943,485.028322,486.026780,486.375079,486.885918,487.418435,488.625873,489.437029,490.876667,491.898345,492.803923,493.732721,494.591859,495.808938,496.760956,497.801228,498.637146,498.937464,500.052022,501.863178,502.117056,502.906534,503.206852,504.460729,505.644947,506.504085,506.733201,507.171296,507.959233,509.259550,510.234788,510.558326,511.231704,512.253382,513.669800,514.784357,515.759595,516.338552,517.197691,518.196149,521.052203,521.702362,522.468620,523.838598,525.022815,525.603314,526.508892,527.089391,528.018190,528.366489,529.039868,529.481047,530.688484,532.567759,532.751976,533.586353,537.069346,538.810843,539.391341,540.087940,540.993518,541.574017,542.084856,543.617373,545.451750,545.846489,547.425446,548.5,549.631341,550.999777,552.439414,553.019913,554.529210,556.154607,558.476602,559.289301,560.380639,561.262997,562.377555,563.654652,564.374471,565.721228,566.789346,568.043224,569.459641,570.667078,571.201137,571.735196,572.292475,573.244493,573.419459,574.371478,575.131568,576.362226,577.453564,578.707441,579.613019,580.588258,582.074335,583.003133,584.8,584.326670,585.441228,586.555786,587.229165,588.274063,589.086761,590.085219,591.130117,592.546534,594.079051,595.170389,595.658008,596.563586,596.958326,597.585264,598.212203,600.139459,600.534199,601.509437,602.159595,602.925854,604.365491,604.853110,605.596149,606.106988,606.803586,607.430525,608.846942,609.868620,611.308258,611.586897,612.562135,615.464629,615.766489,617.043586,618.367124,619.295922,619.969301,620.176738,620.850117,621.802135,622.452294,623.288212,625.331568,625.865627,626.585446,627.537464,628.675242,630.161319,631.113337,632.552974,634.967849,635.734108,636.570026,639.551345,640.108624,641.571481,642.430619,642.730937,643.659735,644.356334,645.517331,646.887309,647.978647,649.000325,650.114882,651.833159,652.576198,653.156697,653.992615,655.153613,655.871889,658.611844,659.262003,660.515880,661.491118,662.234157,662.675336,663.464814,664.347173,664.765132,665.693930,666.251209,667.690846,668.549985,669.084043,670.036062,670.616560,671.545359,672.543817,673.565495,674.912252,676.630529,678.093386,678.229622,678.763681,680.040778,681.178556,681.385994,682.384452,682.684769,683.427808,684.217286,685.285404,686.562502,686.677059,687.350438,688.302456,688.999055,689.742093,692.064089,692.900007,694.525404,695.918601,698.530444,700.225500,700.922099,702.593936,703.801373,704.730172,705.796748,706.864866,707.793664,708.420602,709.953119,711.648176,712.182235,713.157473,713.923732,714.411351,715.293709,717.244185 diff --git a/data/torah/labels/Nasso-5.txt b/data/torah/labels/Nasso-5.txt deleted file mode 100644 index 9ceab1653..000000000 --- a/data/torah/labels/Nasso-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,6.155667,8.966916,9.914379,11.286467,12.334911,12.510792,14.530252,16.007886,17.569955,18.667626,19.828624,20.058020,20.436581,21.597578,22.270265,23.030190,23.473480,23.853443,25.246641,26.977583,28.096362,29.700650,31.159637,32.155011,33.316009,34.244807,34.662766,35.916644,36.799002,37.983220,39.399637,40.305215,41.512653,41.907392,44.131770,45.176668,45.333039,46.958436,47.583833,49.139570,50.695307,51.670545,53.458482,54.131860,54.712359,55.525058,57.242855,57.628522,58.232241,59.300359,59.927298,61.181175,62.551152,63.154871,63.596050,65.012468,66.150245,66.939724,67.450563,68.031062,69.284939,71.932014,73.139452,75.113148,76.947524,77.435143,78.317502,78.874781,79.664259,81.080676,81.846935,82.241164,83.443217,83.961843,84.385954,86.227807,87.613527,88.356566,89.192484,90.608902,91.282280,92.559378,93.488176,94.416974,95.043913,96.855069,98.317926,99.386044,101.057881,102.056339,102.958833,103.934072,104.536248,105.070307,105.646180,105.859786,107.246815,109.034752,109.745319,111.370716,112.601373,113.623051,114.667949,115.154026,115.641645,116.524004,117.731441,118.985319,119.403278,120.192756,120.421872,121.024049,122.208267,123.531804,124.251623,124.692802,125.319741,125.550398,126.293437,127.129355,128.081373,130.008629,132.722480,134.204559,135.690636,136.294355,137.037394,137.803652,138.453811,139.080750,139.707689,141.704605,142.586963,142.769639,143.512677,144.093176,144.929094,145.738709,146.388868,146.594763,147.500342,147.916759,147.998845,149.090183,150.413720,151.412178,151.876577,152.480296,153.409094,153.988051,155.102609,156.495806,157.656804,159.885920,160.977258,161.464877,161.994310,162.115035,163.364287,164.203627,164.445976,165.377594,166.074193,167.119091,169.510746,170.066483,170.693422,171.854419,172.922537,174.664034,176.034011,177.171789,177.821948,178.425667,179.168705,179.702764,180.236823,181.003082,182.164079,183.487617,184.509295,185.252333,186.157912,187.504669,188.410247,189.455145,190.058864,190.569703,190.961358,191.936596,192.633195,194.026392,194.280270,195.510927,196.973785,197.972243,198.715281,199.319000,199.479998,200.199816,201.221494,201.941313,202.309748,202.890247,203.888705,206.860859,207.184397,208.484714,209.436732,210.272651,211.015689,211.689068,212.780406,212.870202,213.427481,214.333059,215.215417,216.139590,216.975508,217.113286,218.158184,219.110202,220.062220,221.083898,221.896596,221.938410,223.378048,224.167526,225.792923,226.560048,226.717575,228.017413,228.518302,229.084642,230.387225,231.434955,233.022958,234.720099,235.881096,236.302091,237.010016,237.746259,238.312599,238.593889,239.698253,240.915995,242.246895,243.209673,243.974233,244.425425,245.671374,246.322665,247.653565,248.127432,248.750407,249.222394,250.326758,250.947852,252.561922,252.728063,254.285499,255.588082,256.579177,257.428688,257.823246,258.104535,258.925729,260.058410,260.649417,261.098728,261.750020,262.797749,263.588745,265.825790,266.276982,267.862735,269.561756,270.496217,271.026719,271.876229,272.363917,272.591491,272.983146,274.001741,275.000199,275.650357,276.532716,276.713849,278.037387,279.028712,280.166489,280.675786,280.928122,282.298099,283.203677,283.411115,284.757872,286.963768,287.380185,287.983904,289.284222,290.025718,291.651115,293.206852,294.623269,295.157328,295.734743,296.197600,296.824539,297.239414,298.144993,298.951523,300.205401,300.901999,301.668258,302.179097,303.293655,304.013473,305.290571,305.706988,306.171387,306.609482,307.515061,308.211659,309.535197,309.812294,311.112612,312.320049,313.364947,314.247306,314.781365,314.894380,315.498099,316.705537,316.912975,317.227260,317.854199,318.922317,320.361954,322.382090,322.798507,324.354244,325.538462,326.211841,326.628258,327.464176,327.998235,328.089573,328.646852,329.645310,331.042800,331.493655,332.181002,332.620639,333.619097,334.266172,335.264630,335.845129,336.122226,337.306444,338.119142,338.419460,340.857555,343.086671,343.527850,344.015469,345.222907,346.198145,347.777102,349.448938,350.656376,351.026353,351.815832,352.162589,352.812748,353.323587,354.229165,355.459823,357.038780,358.014018,358.640956,359.267895,360.544993,361.218371,362.263269,362.750888,363.026444,363.882498,365.345355,365.715333,367.178190,367.478507,368.848485,370.055922,371.054380,371.913519,372.424358,372.608575,373.258734,374.489392,375.255650,375.555968,376.066807,377.181365,378.133383,380.269619,380.709256,382.148893,383.425990,384.145809,384.726308,385.469346,386.026625,386.234063,386.814562,387.720140,389.230817,389.707804,390.659823,390.936920,392.306897,393.073156,393.792975,394.161410,394.763587,395.529845,398.710979,399.059278,401.265174,403.517510,404.026807,404.514426,406.023723,406.952521,409.111977,410.644494,411.712612,412.246671,412.943269,413.570208,414.057827,414.520684,415.449482,416.215741,417.585718,418.955696,419.489755,420.000594,421.022272,421.765310,422.926308,423.432333,423.913972,424.420185,425.348984,426.115242,427.438780,427.739097,429.039414,430.432612,431.547170,432.406308,432.753065,433.030163,433.703541,434.748439,435.259278,435.606036,436.163315,437.161773,438.578190,440.807306,441.293383,442.709800,443.777918,444.358417,444.867714,445.796512,446.377011,446.468349,447.304267,448.209845,449.603043,450.926580,453.712975,454.177374 diff --git a/data/torah/labels/Nasso-6.txt b/data/torah/labels/Nasso-6.txt deleted file mode 100644 index a121e7774..000000000 --- a/data/torah/labels/Nasso-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.572505,2.733503,3.430102,4.289240,5.345022,6.575680,7.040079,8.874455,11.382211,12.032369,12.633004,14.328061,15.465839,17.694954,19.157811,20.179489,20.759988,21.456587,22.292505,22.919444,23.569603,24.382301,26.030918,27.842074,28.933412,29.931870,30.651689,32.393186,33.647063,35.040260,35.690419,36.526338,37.425748,38.540306,39.286053,41.097209,41.793808,43.604964,45.044602,46.089499,47.087958,47.622016,47.806234,48.572493,49.756710,50.522969,50.891404,51.680883,52.911540,54.072538,56.766053,57.252130,58.784647,59.992085,61.292402,62.592719,64.171676,65.480978,65.916462,67.004511,68.467368,70.348184,71.275441,72.389998,72.783196,74.826552,75.904397,77.367254,78.179953,79.039091,80.223309,82.173785,82.684624,84.286801,86.330157,86.887436,87.444715,89.186211,90.254329,92.483445,94.014420,95.173876,95.754375,96.497413,97.170792,97.728071,98.401449,99.144488,100.421585,102.557821,103.811699,104.554737,105.320996,106.807073,107.525350,109.057867,109.588842,110.355100,111.119817,112.420134,113.662452,115.171749,115.379187,117.190343,118.629980,119.814198,120.417917,121.114515,121.693472,122.575831,123.597509,124.386987,124.990706,125.756964,126.492293,127.630071,130.207486,130.623903,131.993881,133.085218,133.851477,134.548076,135.221454,135.911885,136.142543,136.862361,137.837599,139.346896,139.950615,141.018733,141.272611,142.944447,143.687486,144.616284,145.196783,145.777282,146.517237,147.701454,148.560593,149.512611,150.905808,152.826689,153.382426,153.823606,155.356123,156.540340,158.467596,159.907234,160.812812,161.370091,161.997030,162.716848,163.274127,163.831406,164.783424,166.292721,167.894898,168.916576,169.497075,170.170454,171.586871,172.353129,173.932086,174.419705,175.162744,175.882562,176.927460,177.670499,178.994036,179.319116,180.967733,182.430590,183.475488,183.916667,184.520386,184.771179,185.630318,186.698435,187.509772,187.950951,188.485010,189.669228,190.853445,193.523740,194.033037,195.449454,196.768366,197.581064,198.276121,199.367459,199.947958,200.246733,200.804012,202.034670,203.497527,204.147686,204.960384,205.494443,206.070316,207.324194,208.933409,210.687093,211.403828,212.030767,213.145325,215.208340,216.016889,217.430223,219.264599,220.021108,220.415847,222.018024,223.016482,224.874078,226.360155,227.312174,227.776573,228.542831,229.262650,229.750269,230.400428,231.073806,232.420564,234.254940,235.137298,235.741017,236.367956,237.645053,238.318432,239.456210,239.943829,240.731765,241.405144,242.496482,242.996699,244.552436,244.899194,246.292391,247.778468,250.216563,251.098922,251.561779,252.047856,252.976654,254.044772,254.648491,255.041688,255.668627,256.736745,257.688763,260.033978,260.496835,261.797153,262.958151,263.794069,264.769307,265.907085,266.626903,266.927221,267.530940,268.738377,270.154795,270.804953,271.408672,271.801869,273.496926,274.168067,275.514824,276.072103,276.559722,277.279541,279.601536,280.158815,282.039631,284.152647,284.617046,285.081446,286.613963,287.682080,289.795096,291.304393,292.279631,292.836910,293.394189,294.114008,294.601627,295.135686,295.994824,297.434461,299.199178,300.035096,300.662035,301.265754,302.542851,303.193010,304.493328,305.120266,305.816865,306.467024,307.465482,308.184559,309.438437,309.644333,311.037530,312.500387,313.545285,313.870364,314.543743,314.696669,315.585557,316.670365,317.575943,317.874719,318.478438,319.592995,320.939753,323.493948,324.000161,325.370138,326.275716,326.832995,327.576034,328.551272,329.664288,329.956896,330.560614,331.675172,332.764968,333.949186,335.574583,335.874900 diff --git a/data/torah/labels/Nasso-7.txt b/data/torah/labels/Nasso-7.txt deleted file mode 100644 index 67f8b0bee..000000000 --- a/data/torah/labels/Nasso-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.193118,2.950609,3.655975,3.910098,4.486537,5.067036,5.693975,6.506673,6.850347,7.732705,9.450982,9.868941,10.426220,11.912297,13.050075,14.814791,16.161549,17.090347,17.577966,18.297784,18.924723,19.412342,19.920097,20.756016,21.819508,23.630664,24.582682,25.279281,26.231299,27.438737,28.020171,29.274049,29.806566,30.387065,30.990784,31.803482,32.427337,33.936634,34.212190,35.953686,37.323664,38.322122,38.995500,39.529559,39.783437,40.480035,41.873233,42.360852,42.778811,43.195228,44.097722,45.023437,47.391872,48,49.063709,50.015727,50.735546,51.455364,52.407382,52.939899,53.263437,53.890376,55.074593,56.596044,57.034140,57.777178,58.054276,59.099174,60.004752,60.910330,61.579083,62.136362,62.619355,63.130194,64.080670,65.288108,65.494004,66.608561,68.651917,69.185976,69.577632,71.295908,72.364026,74.407382,75.963119,76.845478,77.286657,78.029695,78.586974,79.025069,79.605568,80.673686,81.927564,83.599400,84.478675,85.104072,85.870330,87.054548,87.684110,88.845108,89.516945,90.143884,90.676401,91.581979,92.184156,93.484473,93.808011,95.456627,96.826605,97.894723,98.614541,99.032500,99.427240,100.193498,101.354496,101.865335,102.306514,102.933453,104.094451,105.209008,107.948963,108.831321,110.317398,111.037217,111.780256,112.616174,113.730732,114.774088,115.119303,115.769462,117.116219,118.416537,119.041934,119.808192,120.060528,121.291185,123.495804,124.784065,126.743514,127.602653,128.531451,129.344149,129.971088,130.783786,131.573265,132.780702,134.406099,134.892176,136.378253,137.399931,138.026870,138.746689,139.303968,139.930906,140.441745,141.184784,142.183242,143.088820,144.737437,145.689455,146.502154,147.036213,147.965011,148.754489,149.683287,151.122925,151.610544,152.513038,153.836575,155.229773,155.923287,156.571904,157.640022,158.615265,159.381523,159.935718,160.492997,161.375355,162.373813,164.951228,166.181886,167.133904,167.737623,168.712861,169.455900,171.058076,173.308870,173.959029,175.259346,175.955945,176.559664,177.929641,179.694358,180.808915,182.550412,183.548870,184.059709,184.616988,186.436642,186.719210,187.880208,188.832226,189.177442,190.686739,191.590775,192.867872,193.377169,193.744063,194.788961,197.068726,198.508363,199.181742,201.178658,202.293216,205.056391,206.519248,207.448046,208.283964,209.398522,210.373760,211.604418,212.253035,212.924871,214.085869,215.359883,216.520880,217.542558,218.256300,219.274894,220.528772,221.432808,222.733125,222.894123,223.637162,226.005597,227.213035,228.165053,228.954531,229.090767,230.530404,232.527320,234.083057,235.011856,236.010314,236.962332,237.169769,237.796708,239.375665,241.210041,242.045960,243.415937,245.227094 diff --git a/data/torah/labels/Nitzavim-1.txt b/data/torah/labels/Nitzavim-1.txt deleted file mode 100644 index ff9d59526..000000000 --- a/data/torah/labels/Nitzavim-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.706920,5.052136,6.445333,7.931410,9.138848,10.276626,11.971682,13.782839,16.592453,18.542929,21.700843,22.954721,24.022839,25.903655,27.714811,29.177669,31.546104,32.799982,33.844880,35.447056,37.281433,38.721070,39.765968,40.717986,42.204063,46.012136,48.566331,50.005968,51.329505,53.976580,55.834177,57.227374,58.458031,59.572589,61.105106 diff --git a/data/torah/labels/Nitzavim-2.txt b/data/torah/labels/Nitzavim-2.txt deleted file mode 100644 index 4f5df2c84..000000000 --- a/data/torah/labels/Nitzavim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.600819,3.244810,6.704584,7.981681,10.048257,12.532792,13.740230,14.669028,15.388847,16.410525,17.734062,18.709300,19.382679,20.938416,22.331613,23.422951,24.955468,26.046806,27.950842,29.158280,30.342497,31.921454,35.149028,36.449345,36.913745,37.935423,38.864221,39.723359,40.506670,41.969527,44.593382,45.220321,45.916919,47.495876,50.398370,51.977327,53.370525,54.368983,55.692520,56.923178,58.200275,59.779232,61.427849,62.844266,64.167804,65.139958 diff --git a/data/torah/labels/Nitzavim-3.txt b/data/torah/labels/Nitzavim-3.txt deleted file mode 100644 index fabfb8d7d..000000000 --- a/data/torah/labels/Nitzavim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.086712,3.340590,4.640907,5.569705,5.868481,6.774059,7.633197,8.840635,11.065125,11.921179,13.523356,14.498594,15.497052,16.495510,18.190567,20.257143,20.651882,22.509478,23.531156,25.295873,26.340771,27.176689,28.244807,29.289705,29.963084,31.449161,32.633379,33.048254,35.764989,36.484807,36.995646,38.876463,41.455054,42.620688,43.105223,44.660960,47.586674,48.678012,50.071210,51.069668,52.695064,53.879282,55.086720,56.479917,57.710575,58.267853,59.173432,60.334429,61.356107,62.238466,63.097604,64.792661,66.968806,67.990484,69.035382,71.473477,76.210348,79.368262,80.784679,81.434838,83.269214,85.498330,86.891527,88.586584,89.631482,91.651618,91.897785,92.157831,94.730620,96.123817,97.006175,97.981414,99.769350,101.092888,102.300325,102.691980,104.967536,105.757014,106.148670,109.979962,111.210620,112.812797,113.625495,116.110030,117.387128,118.199826,119.151844,120.823681,122.425858,123.517196,125.281912,126.280370,127.088443,128.713840,130.385677,131.871754,133.055971,134.449169,135.633386,136.144225,137.398103,138.559101,140.579237,142.761912,144.178330,145.664407,146.709305,147.754203,148.915200,150.331618,151.330076,152.537513,155.068488,157.042185,158.017423,160.525178,164.263590,165.494248,168.210983,169.557740,171.020597,172.483454,175.107309,177.220325,178.474203,179.356561,180.355019,181.748216,184.952570,185.695609,188.226584,189.619781,190.943318,192.359736,194.449531,195.401550,196.191028,197.444906,199.441822,201.624813,204.620187,205.688305,206.199144,207.615561,208.451479,209.775017,211.586173,212.840051,213.954609,214.651207,215.371026,216.067624,217.042863,222.151253,223.498010,224.960867,226.284404,228.072341,229.465538,231.114155,232.437692,234.179189,236.594064,238.871539,239.081301,240.456403,240.959416,241.516695,244.814777,247.422100,248.533574,249.462372,250.716250,251.293665,254.056839,255.052213,256.166771,257.954708,260.925421,262.597258,263.781476,265.012133,265.380569,266.402247,267.911544,268.512179,269.905376,271.902292,273.040070,274.247508,275.571045,276.987462,277.846601,279.820297,284.348188,286.229004,287.622201,290.176396,291.987553,293.078891,294.402428,295.377666,295.699662,297.046419,297.998437,298.950455,300.738392,301.989186,302.436991,303.449423,304.166158,305.327156,306.368970,307.191581,307.463494,307.741264,309.204122,310.388339,311.363577,313.337274,315.636049,316.704167,318.074144,319.420902,320.396140,321.696457,322.764575,324.018453,326.549428,327.153147,327.826525,328.662444,329.451922,331.216639,333.445754,334.606752,335.976729,338.647024,339.575822,340.955386,341.287279,342.199677,344.282653,345.466870,345.742426,346.973084,348.017981 diff --git a/data/torah/labels/Nitzavim-4.txt b/data/torah/labels/Nitzavim-4.txt deleted file mode 100644 index 237c0b658..000000000 --- a/data/torah/labels/Nitzavim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.726191,6.303606,7.000204,9.415080,9.995579,10.877937,12.387234,14.012631,15.243288,16.427506,17.425964,19.167461,20.675199,21.069938,22.532795,23.504949,24.689167,28.080434,30.577111,31.761328,32.852666,34.385183,37.682417,38.355795,39.470353,40.561691,42.419287,43.829537,46.639151,47.869809,48.682507,49.936385,51.538562,53.094299,54.232077,55.160875,56.298653,57.064911,58.481328,60.292485,63.078879,65.656294,66.260013,67.560331,69.928766,72.668721,75.455115,76.964412,78.427269,80.284866,83.860739,85.021736,86.043414,88.187156,89.437949,90.366747,92.038584,93.037042,94.267700,97.541713,99.167110,100.653187,102.069605,103.462802,105.157858,109.105251,110.591328,113.006203,113.702802,115.351419,116.349877,117.255455,118.277133,119.786430,121.736906,123.153323,125.916498,127.425795,130.467609,132.580625,133.184344,134.298902,134.945976,135.828335,137.523391,141.610103,142.004843,144.419718,146.184434,147.020353,148.042031,148.526566,149.996541,151.196861 diff --git a/data/torah/labels/Nitzavim-5.txt b/data/torah/labels/Nitzavim-5.txt deleted file mode 100644 index ddf9522ab..000000000 --- a/data/torah/labels/Nitzavim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.406457,3.892534,5.099972,5.750130,6.493169,7.630947,8.791944,10.928180,11.996298,12.387953,13.804371,14.547409,16.219246,18.703781,19.679019,21.025777,21.908135,23.278112,24.624870,24.825182,25.037599,26.330578,28.025634,29.299648,30.414206,32.248582,36.172755,37.356972,39.307448,41.892494,43.308911,45.212947,46.652585,48.626281,51.386648,54.218434,55.449092,57.120929,58.723105,60.905781,62.484738,65.178253,66.545146,67.659704,68.797482,69.865600,70.724738,71.116393,72.927550,75.240755,77.934270,79.536446,80.999304,82.322841,83.739258,85.016356,86.432773,89.265607,90.960664,92.005562,93.096900,94.165018,95.279576,96.324474,97.346152,98.507149,99.412728,100.643385,101.665063 diff --git a/data/torah/labels/Nitzavim-6.txt b/data/torah/labels/Nitzavim-6.txt deleted file mode 100644 index 60d609e16..000000000 --- a/data/torah/labels/Nitzavim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.788173,3.367130,4.435248,6.749883,7.841221,9.280858,10.697275,11.509973,12.624531,13.201946,14.339724,15.454282,16.290200,18.333556,19.866073,21.677230,22.327388,25.113783,25.654053,26.329159,27.082163,28.692033,30.658036,31.819034,34.350009,35.487787,37.647242,39.063660,39.946018,40.735496,41.989374,45.007968,45.794363,47.335363,48.975496,49.761891,50.644249,51.526607,53.407424,54.521982,55.938399,56.867197,59.073093,59.447352,60.443070,62.071206,63.928803,65.043361,66.222952,69.102227 diff --git a/data/torah/labels/Noach-2.txt b/data/torah/labels/Noach-2.txt deleted file mode 100644 index 291738a31..000000000 --- a/data/torah/labels/Noach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.930971,2.743205,3.417513,3.769992,4.352348,4.750803,5.210558,5.440435,5.777589,6.605148,7.003603,8.122340,8.658721,9.195102,9.654857,10.283189,11.524528,12.413388,13.869279,14.650863,15.876876,16.658460,17.194841,17.486019,18.083701,18.758008,22.788528,24.474297,25.010678,25.470433,26.558520,27.355429,27.830509,28.734694,29.454977,30.726966,32.305459,33.041067,33.592773,34.221105,35.002688,36.198052,36.872359,37.194188,37.577317,37.883820,38.450852,40.818562,41.967950,42.795509,44.4,45.400788,45.83145,46,46.688103,47.362410,47.776190,48.373871,49.002203,50.779923,51.668783,52.021262,52.496342,52.971422,53.584429,54.136135,54.611216,55.576701,56.741414,57.446372,57.967428,58.411858,58.902263,59.760473,60.572707,61.507542,62.043923,62.427052,62.917458,63.928919,64.511275,65.078307,65.492086,66.135743,67.867488,68.924924,70.411466,71.024473,72.357762,73.599101,74.334709,74.610562,75.054992,75.821251,76.250356,77.031939,78.334579,79.177463,80.005022,80.602704,81.414938,81.859368,82.487700,83.100707,83.683063,84.265420,84.709850,85.169605,85.522084,85.889888,86.502894,87.453055,89.000897,90.334187,90.656016,91.544875,92.111907,92.755564,93.154018,93.858976,95.590720,96.341654,96.893360,97.245839,97.659618,98.747705,99.314737,99.927743,100.724652,101.383635,101.843390,102.103918,102.563673,103.268631,103.605784,104.034889,104.418018,105.260903,105.690007,106.571901,107.142416,107.669044,108.020130,108.298073,108.751558,109.453730,111.253044,112.262416,112.496473,113.066987,113.491216,113.886187,114.632244,115.188130,116.358416,117.353158,118.113844,118.4,118.976930,120.015558,120.644587,121.229730,121.931901,122.590187,123.189958,123.687330,124.213958,124.711330,125.735330,126.364358,127.183558,127.651673,128.149044,128.763444,130.182416,131.893958,132.303558,133.386073,133.883444,134.176016,134.819673,136.487330,136.867673,137.496701,138.725501,139.237501,139.968930,140.568701,141.212358,142.250987,143.128701,143.494416,143.904016,144.767101,145.366873,145.849616,146.507901,146.976016,147.400244,147.707444,148.482758,149.360473,149.638416,150.018758,150.501501,151.115901,151.920473,152.681158,153.237044,154.070873,154.729158,155.036358,155.577616,156.396816,158.517958,159.307901,159.922301,160.419673,161.034073,161.619216,163.096701,163.798873,164.354758,165.056930,165.934644,166.622187 diff --git a/data/torah/labels/Noach-3.txt b/data/torah/labels/Noach-3.txt deleted file mode 100644 index 34e78b978..000000000 --- a/data/torah/labels/Noach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.893206,4.443138,5.001114,5.290434,5.621087,6.261725,7.171019,8.390298,9.340923,9.630244,10.353546,11.056181,11.696820,12.399456,13.722064,14.941344,15.375325,15.891969,16.243287,16.821928,17.586561,18.413192,18.702512,18.950502,19.529143,21.161738,22.773667,23.228314,23.724292,23.992947,24.530257,26.679496,27.237471,27.836778,28.994061,29.283381,29.882688,30.358001,31.267294,32.279917,32.796561,33.375202,34.201832,35.111126,35.772430,36.599060,37.487688,39.471601,40.091574,40.566886,41.476180,41.765500,43.005446,44.121397,45.196016,46.311967,46.890609,47.324590,48.006560,48.275215,48.605867,49.432497,50.259127,55.652891,57.554141,58.442768,58.918081,60.158026,61.728624,63.402551,64.146518,64.890485,65.758447,68.424330,68.6,68.8,69.250961,69.808936,70.325580,70.759561,72.082170,73.342781,73.735430,74.190077,74.686055,75.078705,75.554017,75.884669,76.566639,77.579262,77.971911,78.343895,80.286476,81.092441,82.043066,84.006313,84.626286,85.783568,87.085511,87.643487,87.912141,88.366788,89.214084,89.710063,90.371367,92.665266,93.326571,93.657223,93.987875,94.421856,94.752508,95.310483,95.579138,95.889125,96.323106,98.017698,98.513676,99.774288,101.055565,101.510211,101.840863,102.192181,102.378173,104.052100,104.940727,107.069301,107.875265,108.722561,109.301203,110.417154,111.161121,111.760428,112.091080,112.814382,114.984287,116.120903,116.596216,117.092194,117.629504,118.042819,119.530754,120.274721,121.039354,122.134639,122.568620,123.147262,124.573199,125.193172,125.771813,126.433117,127.549068,127.921052,128.272370,128.851011,129.264327,129.718973,130.648932,132.529517,133.397478,133.996785,134.782084,135.278063,135.753375,136.146024,137.179312,137.737288,138.605250,139.059897,139.597206,140.589163,141.746445,142.263089,142.862396,143.275712,144.247002,144.701649,145.073633,145.590277,145.982926,146.437573,146.912885,148.566146,149.041459,149.558102,150.591390,151.314692,151.893333,152.223985,152.637301,153.236608,153.629257,154.083904,155.675167,156.088483,156.336472,157.328428,158.113727,159.229678,159.704990,160.283632,160.655615,161.502912,162.288210,163.714148,164.850765,166.070044,166.628020,168.033292,169.417898,170.017205,170.265194,170.905832,171.567137,172.063115,172.517761,172.972408,173.365058,173.695710,174.584337,175.059650,176.010275,176.692245,177.828862,178.552163,178.841484,179.626783,181.052720,181.548698,182.230668,182.747312,183.263956,184.772557,185.599187,185.867842,186.322489,186.735804,187.335111,188.637054,189.339690,190.104323,190.682964,191.509595,192.150233,192.584214,193.183521,193.741497,194.196143,195.394757,195.911401,196.386714,196.820695,197.254676,197.688657,198.411958,199.672570,200.354540,200.995178,201.656483,202.379784,203.289078,203.661061,203.888385,204.549689,205.148996,205.644974,206.037624,206.636931,208.786170,209.654132,210.088112,210.976740,212.506006,213.229308,213.890612,214.448588,215.316550,216.019185,216.391169,216.845816,218.106427,218.519742,218.850395,219.243044,219.945680,220.627650,221.578275,222.115585,222.508234,223.396862,224.678139,225.546101,227.075367,228.315312,229.059280,229.555258,231.208519 diff --git a/data/torah/labels/Noach-4.txt b/data/torah/labels/Noach-4.txt deleted file mode 100644 index 807303d8b..000000000 --- a/data/torah/labels/Noach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.026721,2.632065,2.925566,3.164034,3.769379,4.741598,5.053442,5.530380,6.337506,7.933413,8.520414,8.942320,9.309195,10.153009,11.051853,11.510447,11.877322,12.941261,13.326480,14.702262,16.408232,18.114202,18.664515,19.838516,20.425517,20.719017,21.122580,22.645112,23.177081,27.469522,28.093210,28.551804,28.992054,29.395617,30.037649,30.881462,31.486806,33.192776,33.761433,34.220027,34.550215,35.394028,36.457966,37.797061,38.384062,39.319594,39.686469,40.255126,40.713720,41.245689,41.667595,42.181221,43.446941,44.125660,44.400816,45.061192,46.400287,47.354162,47.977850,48.821663,50.711071,51.206353,52.453729,53.811167,54.673324,55.462106,56.122482,56.801201,57.461576,58.397108,61.460517,64.230425,64.652332,65.147614,66.615115,67.495615,68.742991,69.036492,70.302211,70.815837,71.989838,72.686901,73.383964,73.732495,74.447902,74.924840,75.897059,76.392341,78.043280,79.492437,80.941595,81.491907,82.317377,83.069471,83.454690,84.371878,85.179004,85.545879,85.894411,86.132880,86.664849,87.416943,88.535913,89.288007,89.508132,90.058445,94.644386,96.533794,97.285888,98.386514,100.000766,101.449923,102.183673,103.009143,103.504424,104.128112,105.907458,106.659552,106.971396,107.301584,107.613428,107.888584,109.502835,110.750211,111.282180,111.630712,112.181025,112.474525,112.841400,114.363933,114.950933,115.831434,116.785310,117.170529,117.610779,118.106061,118.582999,118.894843,119.206687,119.885406,123.315690,123.847659,125.260129,126.782661,127.553099,127.846600,128.250162,128.892194,129.534226,130.910008,131.515352,132.102353,132.450884,132.671010,133.386416,133.808323,134.413667,135.367543,135.954543,136.614919,137.000138,137.348669,137.550451,138.284201,138.742795,141.384298,141.989642,142.484923,143.090268,144.502737,145.254832,145.750113,146.850739,147.566146,147.988053,148.409959,148.648428,149.455554,150.354398,151.711837,152.390556,152.885838,153.344432,153.931432,154.261620,154.665183,155.215496,156.095996,156.426184,156.994841,157.600185,158.150498,158.994311,159.874812,160.590219,161.177219,161.745876,162.222814,162.828158,163.690315,164.258971,164.717566,165.451316,166.221754,167.193974 \ No newline at end of file diff --git a/data/torah/labels/Noach-5.txt b/data/torah/labels/Noach-5.txt deleted file mode 100644 index 6fd871898..000000000 --- a/data/torah/labels/Noach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.889408,2.623158,2.971690,3.356909,3.778815,4.090659,4.659316,5.374723,6.567068,6.915599,7.924506,8.676600,9.116851,9.850601,10.327539,10.859508,11.868415,13.354260,13.739479,14.088011,14.528261,15.023543,15.720606,17.004669,18.527202,19.224265,19.591140,20.104766,20.710110,21.315454,21.994173,22.489455,22.948049,23.369956,24.048675,25.516176,25.717957,26.158208,26.873615,27.277177,28.451178,29.074866,30.267211,31.092680,31.532931,32.009868,32.651900,33.110494,34.247808,34.889839,35.330090,36.155559,37.494654,38.723686,39.402405,39.842656,40.319594,40.778188,41.383532,41.823782,43.217908,44.061722,45.107316,45.694317,46.079536,46.501442,46.886661,47.363599,48.372506,49.051225,49.473132,50.023445,51.252477,51.839478,52.775010,53.215260,53.710541,54.169136,54.536011,55.196386,56.920700,57.929607,58.314826,58.608327,58.938514,59.819015,60.607797,61.213141,63.762924,64.203175,65.248769,66.202645,66.606208,67.394990,68.440584,69.064272,69.504522,69.963117,70.311648,70.715211,71.467305,71.870868,72.201056,72.769712,73.393400,73.907026,74.365620,75.025995,75.998215,76.603559,77.190560,78.896530,79.777030,80.382375,80.914344,81.427969,81.904907,82.455220,82.730376,83.060564,83.684252,84.362971,84.821566,85.298503,85.610347,86.032254,87.499755,88.068412,88.398600,88.637068,89.187381,89.590944,90.012851,90.691570,91.553727,92.177415,93.186322,93.479822,94.250260,94.837261,95.149105 \ No newline at end of file diff --git a/data/torah/labels/Noach-6.txt b/data/torah/labels/Noach-6.txt deleted file mode 100644 index 550875dc1..000000000 --- a/data/torah/labels/Noach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.428343,2.794522,3.777422,4.432689,4.741050,5.511953,5.858859,6.263583,6.533399,7.285029,7.921023,8.325747,9.096649,9.906097,10.387911,10.734817,11.255176,11.929716,12.488620,12.816254,13.375158,14.300241,14.762783,15.225324,15.784229,16.362405,16.979127,18.058391,18.366752,18.655840,19.253290,19.889284,20.236190,21.142001,22.972894,23.820887,24.495427,24.996513,25.401237,25.825234,26.422683,27.058678,27.579037,27.964488,28.639028,29.718291,31.529912,32.763356,33.360805,34.555704,35.634968,36.020419,36.540778,37.273136,38.082583,39.026939,40.125475,40.877105,41.436009,42.206912,43.054904,44.076350,44.712345,45.136341,45.541065,46.215605,47.198505,47.622502,48.354859,49.376305,50.609749,50.995200,51.342106,51.669740,52.093736,53.076637,54.155900,54.907530,55.370072,55.986794,56.584243,57.104602,57.856232,58.993313,59.648580,60.168940,60.785662,61.171113,61.768562,62.231104,62.886371,63.445275,64.852172,65.314714,65.873618,66.663793,67.280515,67.723784,68.533232,69.072863,69.593223,70.152127,71.115755,71.674659,72.349199,73.004466,73.640461,74.083730,74.642634,75.413537,76.203712,76.916796,77.263702,77.649154,78.053878,78.824780,79.287322,79.634228,80.385858,80.790581,82.313114,84.568004,85.338906,85.724357,86.032718,86.379624,86.707258,87.034892,88.191245,89.309054,89.848686,90.330500,91.062857,91.775942,92.257756,93.067204,93.761016,94.474101,95.187185,96.170086,97.191532,98.328613,99.735510,100.313687,101.084590,101.662766,102.395124,103.898384,104.534378,105.286008,106.037638,107.598716,108.677979,110.756302,112.452287,113.203917,114.263908,115.227536,115.612987,116.229709,117.328245,118.330419,119.236229,119.563863,120.064949,120.816579,121.298393,122.146386,122.917289,123.572556,124.208550,124.979453,125.788900,126.656166,127.523431,128.275061,128.988146,129.662685,130.587768,131.493579,132.148846,132.669205,133.208837,133.825559,134.365191,135.001185,135.521544,136.446627,137.140440,137.545163,137.988432,138.393156,138.913515,139.433875,139.934961,140.301140,141.361131,142.980026,143.577475,144.040017,144.579649,145.234916,146.487632,147.277807,148.048710,148.703977,149.205064,149.744695,150.611961,151.402136,152.481399,152.982486,153.522118,153.946114,154.350838,154.813379,155.873370,156.451547,157.010451,157.530811,158.051170,158.417348,158.802800,159.477339,160.961327,161.655139,162.214043,162.811493,163.139126,163.755848,164.526751,165.008565,165.933648,170.539790,172.447774,172.910315,174.240122,174.625573,176.263741,176.803373,177.477913,177.901909,178.807719,180.792793,182.681504,183.086228,184.955667,185.688024,186.304746,187.210557,188.077822,188.463273,189.677445,192.857417,194.399222,194.784674,195.266488,195.825392,196.172298,196.692657,197.521377,198.369370,198.716276,199.390816,199.756995,200.508625,201.491525,202.069702,202.378063,202.859877,203.187511,204.035504,204.632953,205.558036,205.943487,206.598754,206.964933,207.735836,209.007825,210.009998,210.915808,212.033617,216.273581,216.851757,217.526297,218.316472,219.145192,219.800460,220.147366,220.686997,222.286620,223.789880,225.254595,226.179678,226.854217,227.181851,228.029844,228.935654,229.417468,229.841465,230.843638,231.903629,233.079255,234.274154,235.893049,236.606134,237.010858,237.357764,237.935941,238.244302,238.571935,238.957387,239.458473,240.094468,241.038823,241.520637,241.983179,242.696264,243.370803,244.565702,245.143879,245.914782,246.570049,247.032590,247.552949,248.034763,248.998392,249.827112,254.182711,254.606707,255.049976,255.454700,256.129240,256.649599,257.459046,257.728862,258.461220,258.923761,259.289940,259.675391,260.215023,261.294286,262.527730,263.182997,263.780447,264.532077,265.418615,266.305153,266.998965,268.116773,269.138219,269.870577,270.178938,271.026930,271.296746,271.836378,272.433827,273.281820,273.590181,274.206903,274.842898,275.401802,275.710163,276.076342,276.481065,277.232695,277.695237,278.061416,278.446867,279.371950,279.757401,280.316305,281.029390,281.357024,281.800293,282.089381,282.609740,283.014464,283.727549,284.190090,284.556269,285.038083,286.117347,287.042430,287.986785,288.854050,289.412955,289.894769,290.530763,291.320938,291.802753,292.246021,293.113287,293.980552,295.059816,295.888536,296.813619,297.565249,299.319052,300.205590,301.304126,302.441207,304.561189,306.623353,308.222976,309.282967,310.227322 \ No newline at end of file diff --git a/data/torah/labels/Noach-7.txt b/data/torah/labels/Noach-7.txt deleted file mode 100644 index 80995e2eb..000000000 --- a/data/torah/labels/Noach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,2.029424,2.470603,3.017665,3.458844,4.147084,4.958854,6.158861,6.864747,7.641223,8.258873,9.017702,10.341239,11.082420,11.717718,12.600076,13.253021,15.511859,16.023626,16.305981,17.664813,18.882467,19.694237,20.347182,21.211893,22.235429,23.364847,24.000145,24.882503,25.782509,27.106046,27.600167,28.129582,29.153117,31.394307,32.806081,33.353143,33.741380,35.170801,36.176689,36.847282,37.923759,38.700234,39.388473,39.776711,40.500245,41.170837,41.576722,42.035548,42.459080,43.129673,45.247332,46.094396,46.676753,47.082638,47.400287,47.735583,48.441469,49.182650,49.747360,50.294422,51.247369,53.047380,54.688566,55.253275,55.870926,56.453283,57.247405,57.759173,58.676825,59.329771,60.370953,61.165076,62.435672,63.000381,63.635679,64.200388,65.418043,66.194518,66.847463,67.835704,69.106300,70.059247,70.923958,71.400432,72.159260,73.076912,73.782799,74.629863,75.335750,75.865165,76.765170,77.735764,78.529887,79.976954,82.094614,82.553440,82.924031,83.241680,83.806389,85.076985,85.676989,86.506405,87.477000,88.324063,89.065244,89.665248,90.212310,90.777020,91.906438,92.506442,92.947621,93.424094,93.741743,94.218217,95.329988,96.088816,96.688820,97.006469,97.482942,97.818239,98.488831,99.653544,100.871198,101.330024,101.947675,103.024152,103.447684,103.906511,104.753575,105.141812,105.759463,106.730057,107.294766,108.071242,108.635951,110.294785,110.894788,111.671263,111.918324,112.606563,113.312450,113.771276,114.300691,115.165402,115.624229,116.700706,117.812477,118.253656,118.765424,119.400722,120.000726,120.494846,120.830142,121.500735,123.900749,125.577230,126.141939,126.741943,127.147828,127.553712,127.994892,128.312541,129.053722,129.583137,130.094904,131.771385,132.265506,133.130217,133.800809,134.259635,134.859639,135.583173,136.218471,136.589061,137.118476,137.877304,139.306725,140.118494,140.912617,141.194971,141.618503,142.059683,142.606745,143.312631,143.683222,144.177342,145.024406,145.536174,146.595004,148.447956,149.259726,149.930318,150.512675,151.042090,151.659741,151.977390,152.577393,153.406810,154.571523,155.330351,155.895060,156.124473,156.495064,157.218598,157.748013,158.277428,158.665665,159.071550,159.953908,160.377440,161.471565,162.071568,162.636278,163.236281,163.800990,164.612760,164.930409,165.530413,166.183358,167.648073,168.565725,169.359848,169.783380,170.189264,170.648091,171.053976,171.759862,172.183394,172.871634,173.330460,174.512820,175.342237,175.871652,176.595185,177.389308,177.954017,178.765787,179.048141,179.789322,180.777564,182.295220,183.212873,183.901112,184.218761,184.783470,185.259944,185.701123,186.195244,186.654070,187.465839,188.012902,188.912907,190.324680,190.977625,191.454099,191.948220,192.565870,192.918814,193.465876,194.224704,194.877649,197.577665,198.371788,198.742378,199.201205,199.712972,200.260034,200.895332,201.424747,202.501224,204.742415,205.289477,205.854186,206.524778,207.054193,207.513020,207.918904,208.554202,209.207147,210.442449,211.289513,211.924811,212.207166,212.630698,213.107171,213.495409,213.813058,214.307178,214.677769,215.330714,215.718951,216.389544,217.607198,218.330732,218.860147,219.301326,220.254273,220.571922,220.977807,221.277809,221.630752,221.913107,222.530757,223.607234,224.524887,225.124891,225.689600,226.324898,226.677841,227.171962,227.454317,227.842554,228.266086,228.954326,229.695507,230.260216,230.630806,231.142574,232.271993,232.871996,233.119057,233.542589,233.913179,234.354358,234.936715,235.783779,236.207311,237.213199,237.866144,239.154387,240.654396,241.077928,241.730873,242.454407,242.983822,243.619120,244.166182,244.677950,245.172071,245.630897,246.354431,246.866199,247.377966,247.766204,248.172089,248.807387,249.636804,250.519162,250.995635,251.913288,252.513292,252.813293,253.554474,254.225067,255.601546,255.866253,256.572140,257.613322,258.266268,258.654505,259.060390,259.730982,260.172161,260.701576,261.195697,261.654523,262.183938,262.731000,263.189827,263.701595,264.742777,266.013373,266.525141,267.901620,269.436923,270.566342,271.219287,271.872232,272.225176,272.666355,273.389888,274.060481,275.066369,275.736961,276.319318,276.795791,277.325206,277.925210,278.542861,279.284042,280.325224 \ No newline at end of file diff --git a/data/torah/labels/Noach-H.txt b/data/torah/labels/Noach-H.txt deleted file mode 100644 index f766af236..000000000 --- a/data/torah/labels/Noach-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.182676,3.274014,3.947392,5.340590,6.246168,6.849887,7.732245,8.173424,8.753923,9.427302,10.704399,11.192018,13.026395,13.955193,14.930431,15.487710,16.486168,17.786485,18.529524,20.526440,22.291156,24.334512,25.634830,26.052789,27.840726,29.373243,30.302041,31.393379,32.716916,33.761814,34.295873,35.015692,36.548209,37.662766,38.684444,39.520363,40.425941,41.076100,42.446077,43.839274,44.744853,45.116372,45.650431,46.486349,47.066848,47.809887,48.367166,48.901224,49.876463,50.410522,51.176780,51.943039,52.918277,53.916735,54.891973,55.449252,56.354830,56.981769,58.305306,59.443084,60.279002,60.905941,61.440000,62.693878,63.994195,64.806893,65.735692,66.687710,67.152109,67.616508,68.870385,69.613424,71.169161,72.910658,73.932336,74.837914,75.836372,77.183129,78.971066,80.666122,82.245079,83.057778,83.870476,84.985034,85.983492,86.563991,88.189388,89.582585,90.209524,91.324082,92.647619,94.180136,95.573333,96.316372,97.012971,97.802449,98.731247,99.311746,101.030023,101.958821,102.817959,103.862857,105.047075,105.372154,105.906213,106.463492,106.974331,107.578050,108.855147,109.969705,110.364444,110.782404,111.920181,112.384580,113.800998,114.520816,115.844354,116.726712,117.400091,118.444989,119.234467,120.650884,121.719002,123.042540,124.273197,125.921814,128.568889,130.333605,130.751565,132.214422,132.957460,133.537959,133.932698,134.629297,135.395556,136.370794,138.065850,141.664943,142.709841,143.220680,144.335238,145.403356,146.889433,147.748571,148.398730,149.211429,150.233107,151.579864,152.531882,153.251701,154.505578,155.341497,156.107755,157.059773,157.779592,158.267211,158.708390,159.567528,160.171247,160.937506,161.587664,162.632562,163.422041,163.979320,164.792018,165.511837,166.208435,168.414331,169.157370,169.528889,169.923628,170.527347,171.432925,172.129524,172.431383,172.942222,173.871020,175.449977,175.867937,177.028934,177.980952,179.652789,180.163628,180.535147,181.069206,181.603265,182.392744,183.367982,184.505760,185.550658,186.316916,187.361814,188.313832,189.126531,189.985669,190.566168,191.912925,193.724082,194.513560,195.024399,195.953197,196.626576,197.694694,198.762812,199.273651,199.784490,201.038367,201.827846,203.035283,204.173061,204.660680,205.287619,206.657596,209.374331,210.953288,211.765986,213.182404,214.854240,216.038458,216.572517,217.454875,218.244354,218.731973,219.219592,219.916190,220.566349,221.471927,221.866667,222.214966,223.236644,224.165442,224.792381,225.605079,226.232018,227.648435,228.345034,229.320272,230.156190,230.899229,231.549388,232.501406,233.430204,234.219683,234.684082,235.427120,236.030839,237.191837,237.749116,239.211973,239.955011,240.674830,241.301769,242.160907,242.764626,244.111383,245.040181,245.922540,247.617596,248.499955,249.126893,249.893152,250.659410,251.263129,252.656327,253.863764,254.583583,255.233741,255.837460,256.441179,256.975238,258.136236,260.226032,260.969070,261.874649,263.383946,264.243084,265.009342,266.309660,266.866939,267.284898,267.749297,268.051156,268.840635,269.421134,269.792653,270.349932,271.023311,272.323628,272.973787,273.716825,274.413424,275.365442,276.201361,277.315918 \ No newline at end of file diff --git a/data/torah/labels/Pinchas-1.txt b/data/torah/labels/Pinchas-1.txt deleted file mode 100644 index ae154c056..000000000 --- a/data/torah/labels/Pinchas-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.857596,3.416463,3.828209,4.803447,6.544943,7.754711,8.172670,10.726865,11.446684,12.584462,15.068997,16.617675,16.967305,18.476602,20.055559,20.728938,22.586534,23.956512,24.232067,25.393065,27.088122,28.063360,28.806398,29.314153,29.941092,31.032430,33.679505,34.817283,35.746081,37.208938,38.277056,40.111432,40.575831,41.690389,43.501546,45.616612,46.568630,48.867406,50.260603,51.073301,52.118199,52.814798,55.160013,56.924730,58.132168,59.873664,61.452621,61.917020,62.497519,64.355115,67.722009,68.441827,70.949583,74.014617,75.848993,77.102871,77.590490,79.169446,80.353664,80.818063,81.886181,83.000739,83.604458,84.161737,86.846486,88.341329,90.756204,93.101419,94.982236,96.236113,96.511669,97.510127,98.392485,99.178880,99.550399,101.129356,102.685093,103.962190,105.401827,106.516385,107.212984,107.793483,109.233120,110.417338,110.716113,112.109310,113.572168,115.151124,115.987043,117.031941,117.728539,119.052077,122.186771,123.278109,124.137247,124.996385,125.484004,126.110943,127.434480,128.665138,130.708494,132.148131,132.705410,134.075388,135.143505,136.885002,138.394299,139.090898,140.414435,140.902054,141.575433,143.200830,144.713874,145.805212,147.337729,149.056005,150.402763,150.820722,151.981720,154.489475,156.718590,157.322309,158.227888,159.226346,161.060722,163.707797,164.218636,165.588613,166.169112,166.935370,167.539089,170.046844,171.277502,172.392060,174.179996,175.526754,176.200132,177.500450,178.127389,178.893647,180.054645,182.864259,184.280677,186.254373,189.203307,191.548522,192.755960,194.056278,195.101175,195.658454,196.471153,197.516051,199.211107,201.625983,202.578001,203.506799,204.969656,208.243670,209.497547,211.239044,211.657003,212.883035,214.345892,215.971289,217.944985,219.477502 diff --git a/data/torah/labels/Pinchas-2.txt b/data/torah/labels/Pinchas-2.txt deleted file mode 100644 index 4797518dc..000000000 --- a/data/torah/labels/Pinchas-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.600635,3.599093,5.201270,6.200498,8.708253,10.171110,11.959047,13.863083,16.486938,17.810475,20.039591,22.895645,24.126303,25.798140,28.352335,29.629432,31.784262,33.572199,34.451473,35.914330,37.446847,39.954602,41.742539,43.414376,44.412834,45.573831,46.456190,48.197686,49.405124,50.450022,52.028979,53.863355,55.349432,56.858729,57.926847,59.296825,60.132743,60.852562,63.035237,64.358775,66.657550,67.911428,69.978004,70.465623,71.696280,72.160679,73.507437,74.923854,75.991972,78.267528,78.848026,80.844943,82.377460,84.722675,85.349614,87.253650,88.995147,91.015283,92.083401,93.105079,94.080317,95.612834,96.913151,98.910067,99.722766,101.255283,102.956598,104.047936,105.626893,107.136190,108.552607,109.434965,110.224444,111.617641,112.825079,116.075872,119.373106,122.368480,123.738457,126.826711,129.486361,130.624139,132.458515,135.128810,136.522007,139.145862,141.676837,142.861055,144.440012,147.226406,148.457064,151.522098,152.386309,153.570527,155.265584,157.355380,159.909575,160.977692,162.904949,164.274926,167.107760,170.497874,173.353928,174.677466,176.697602,179.321457,180.505674,182.014971,184.662046,185.939144,187.936060,190.676014,191.929892,193.532069,196.016604,197.363361,199.360277,202.262772,203.493429,205.142046,207.719461,209.089438,211.295334,213.460363,214.630648,215.274306,215.917963,217.410077,218.521848,219.721391,221.096477,223.115220,224.490306,225.543563,226.245734,227.474534,229.171448,230.663563,232.214191,233.091906,234.730306,236.339448,237.100134,240.347677,243.741506,246.667220,248.130077,251.048248,253.213277,254.559106,256.051220,258.479563,259.796134,261.814877,264.235956,264.951131,265.796337,268.527004,269.632274,271.420210,274.183385,275.418687,277.791766,279.872274,281.140083,282.440401,283.838242,286.243829,288.389353,289.462115,290.957480,292.550369,296.321290,297.914179,300.059702,302.370338,303.657290,305.445226,308.110877,309.313671,311.524210,314.333725,315.471503,317.324455,320.120137,321.355439,323.728518,325.874042,326.979312,328.312137,329.612455,332.083058,334.521153,335.463884,336.699185,337.966995,339.364836,342.940709,346.289026,349.247249,350.580074,352.335503,355.163693,356.333979,358.121915,360.657534,361.892836,364.786042,366.864110,368.066904,370.049888,371.610269,372.813063,373.593253,374.958586,376.518967,377.819285,378.827031,380.810015,382.305380,383.963285,385.003539,387.441634,389.099539,391.212555,393.032999,394.728110,395.472745,395.910840,397.081126,399.486713,400.722015,402.802523,404.094375,405.817296,407.150121,409.133105,410.270883,412.058819,414.334375,415.602184,417.682692,420.413359,421.551137,423.566629,426.752407,427.890184,429.970692,432.636343,433.839137,435.854629,438.130184,439.430502,441.348470,443.221908,443.594987,445.447940,446.228130,446.844257,448.274606,449.509908,450.290098,450.540892,451.451114,452.718924,454.311813,455.579622,457.335051,458.700384,459.838162,460.910924,462.958924,463.901654,465.039432,466.144701,468.907876,470.825844,473.393971,474.401717,475.474479,476.709781,477.945082,478.530225,481.168926,484.555114,487.350797,488.651114,491.604765,493.847813,494.985590,496.545971,498.951559,500.121844,502.592447,503.730225,505.160574,506.330860,508.801463,510.036765,512.279813,513.547622,515.188511,515.611114,516.553844,519.414543,521.430035,523.868130,524.810860,526.126670,527.101908,528.157654,528.677781,529.718035,532.481209,534.361407,537.872264,541.025534,543.886232,545.284073,547.072010,549.835185,551.037978,552.858423,555.816645,557.116962,559.685089,562.643312,563.813597,565.731565,568.397216,569.502486,571.908073,573.370931,573.776518,574.556708,575.360137,576.920518,578.253343,580.008772,582.284327,583.487121,585.697661,586.832866,587.222961,588.490770,590.376231,593.301945,595.967596,598.210643,599.088358,600.226135,601.884040,603.184358,603.639469,604.484675,606.435151,609.230834,610.336104,611.831469,613.749437,614.789691,615.667405,618.105500,618.820675,619.730897,621.063723,622.624104,624.932167,627.272739,628.020421,629.320739,630.848612,632.209944,635.340435,638.637245,641.400420,643.058325,644.716229,647.219340,648.552166,650.275086,652.875721,654.046007,656.224039,658.109499,659.312293,661.587848,662.693118,664.123467,666.691594,667.829372,670.462515,671.665309,672.038388,672.818579,674.476483,676.264420,677.337182,677.685499,678.391404,679.984293,683.004102,685.442198,686.449944,687.847785,689.375658,690.968547,692.236356,694.219340,696.754960,697.925245,700.103277,702.866452,704.036737,706.084737,708.652864,709.725626,711.253499,713.659086,715.056928,717.299975,719.282960,720.388229,721.623531,723.476483,726.272166,728.677753,730.953309,731.882107,733.089545,734.622062,736.874397,738.383694,740.032311,741.634488,742.306325,742.979703,743.722742,745.185599,746.063331,747.502969 diff --git a/data/torah/labels/Pinchas-3.txt b/data/torah/labels/Pinchas-3.txt deleted file mode 100644 index e2fc47988..000000000 --- a/data/torah/labels/Pinchas-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.025477,3.420067,4.084158,4.894101,6.653942,9.111077,10.605282,12.929599,14.822257,16.216848,18.043097,20.732665,22.094051,23.953505,27.107935,28.037662,29.930321,30.992866,32.762483,34.829136,36.157318,38.780476,39.702475,42.358838,44.052269,44.609018,45.804382,46.859199,47.781198,49.208993,51.201265,52.202262,53.131989,54.692602,56.220010,58.212283,59.075600,59.698759,61.757440,63.583689,64.945075,68.830006,72.548914,75.670140,77.263958,80.418389,83.008342,84.170501,86.029955,88.819136,90.180522,92.604453,94.961975,96.323361,98.680883,100.141883,102.831450,104.657699,106.649971,108.472334,110.165765,112.324060,114.083901,115.744127,117.404354,118.666126,119.761876,120.418239,121.945648,124.774571,125.637888,128.220114,129.847137,130.403886,131.864885,133.226271,134.410043,136.601542,138.527405,140.154427,141.947472,144.404608,145.002289,146.529698,147.326607,148.488766,149.850151,150.945901,153.137400,155.528127,157.354376,157.918854,159.014603,159.711898,161.106489,161.670966,162.866329,163.729647,165.489488,166.743532,167.905691,169.499508,170.993712,171.284825,172.513393,173.368983,175.195233,176.783961,179.639551,181.366187,182.727573,183.624096,184.421004,185.583163,186.413276,186.966162,188.327548,190.353024,190.942978,193.532932,194.927522,196.454931,198.247976,202.166111,202.730588,204.025565,205.154519,206.914359,208.209336,209.039450,210.832495,212.924380,214.717425,215.912788,218.129764,219.225514,220.752923,222.778399,223.376081,224.604649,225.999239,227.958307,229.386102,230.581465,231.544397,233.470260,235.202382,235.725927,237.153722,238.083449,240.175335,241.403903,243.030925,244.491924,245.886515,247.812378,248.310446,249.074150,250.302718,251.630899,253.423944,254.254058,255.416216,256.943625,258.371420,259.400761,260.529715,261.990714,263.418509,264.481055,265.875645,266.506531,267.901122,268.657098,269.852461,270.549757,272.043961,274.102642,274.700323,276.360550,279.382163,280.710344,283.233889,284.130411,285.052411,285.638500,286.734250,287.423817,288.785203,289.275543,290.603725,292.455451,293.576677,293.971268,295.133426,296.461608,297.888544,299.591284,301.483943,302.911738,304.239919,305.402078,307.892418,311.212871,312.308621,314.632938,316.392779,318.252233,319.713232,321.174232,322.602027,323.365731,325.059162,326.154912,326.608184,327.670729,329.895433,334.344840,335.108545,338.030544,339.225907,339.823589,342.181111,343.343270,345.833610,348.788813,349.652131,351.113131,352.397960,353.460505,354.257414,356.116868,356.980186,358.773231,359.370912,360.089820,361.550820,362.912206,364.506023,364.963159,366.324545,367.984772,369.811021,371.570861,372.234952,373.065065,373.895179,375.024133,376.252701,377.514473,378.743041,379.639563,380.967745,382.503697,384.628787,385.126855,386.953105,387.949241 diff --git a/data/torah/labels/Pinchas-4.txt b/data/torah/labels/Pinchas-4.txt deleted file mode 100644 index 660132577..000000000 --- a/data/torah/labels/Pinchas-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.025012,3.446073,3.943445,4.963200,6.739527,8.942171,10.007967,13.063249,15.656686,17.255380,18.392229,20.133029,22.086988,23.756735,25.319902,26.243592,27.558073,31.004147,31.452931,32.518727,33.975314,35.751641,36.659559,37.476669,38.826678,40.247739,41.171429,42.049078,42.535935,44.809633,46.088588,47.509649,48.433339,50.778090,51.193894,52.792588,54.924180,55.697313,56.088105,57.082847,57.534178,58.974994,59.177639,60.882913,62.978978,63.938194,64.247419,65.018488,65.926407,67.169835,67.397492,68.925133,70.204088,71.767256,72.467272,73.142276,75.973884,78.744954,80.264840,80.459468,83.458010,86.577284,87.924041,90.153157,91.987533,93.520050,94.495288,97.490663,99.023180,100.625357,102.575833,103.992250,106.430345,107.544903,108.822001,109.351434,110.976830,112.724040,114.145102,114.784579,116.028008,118.315810,118.985951,119.579387,121.249134,122.208351,123.878097,124.339942,125.512318,126.649167,127.608383,128.567599,130.297885,133.129493,134.443975,136.326881,136.778212,137.950587,138.620334,139.863763,141.071665,142.101934,143.203257,145.192742,148.379616,150.013836,152.180955,153.602016,155.911240,157.545461,159.321787,161.027061,162.448122,164.508661,166.541082,167.109506,168.352935,169.418731,170.555580,172.047694,174.463498,175.635874,176.275351,177.305621,179.010894,181.142486,182.776706,183.700396,185.317857,186.393882,187.637311,188.692592,189.179449,190.955776,192.488293,193.273145,195.943440,197.754597,199.101354,200.842851,202.282488,203.931105,205.463622,206.671059,208.250016,209.619994,211.175731,212.870787,215.517862,216.516320,216.977635,217.976093,219.903350,221.784166,223.990062,224.477681,227.055096,227.751694,228.634053,229.144892,231.095368,231.675867,232.883304,234.160402,235.228520,236.389517,237.434415,239.338452,239.753327,240.891105,243.677499,247.206083,249.728467,251.185055,253.494279,255.270606,256.975879,257.579830,259.107471,260.919324,261.985120,264.365398,266.756585,268.355279,269.705287,271.765826,273.648732,274.288210,275.282953,276.277695,278.125075,279.972455,281.784308,283.383002,285.230381,287.006708,288.685072,290.060716,291.588357,292.760732,294.075214,294.846283,295.485761,297.759459,298.576569,299.063426,301.514757,303.433189,304.356879,304.950316,306.335851,307.295067,308.396389,310.670087,312.801679,314.435900,317.206969,318.130659,319.480667,320.617516,322.322789,322.596487,325.509663,328.209679,329.488634,331.833385,333.645238,335.208406,335.847883,338.157108,340.928177,341.567655,343.521614,344.587410,346.825581,349.454544,350.520340,352.261140,353.646675 diff --git a/data/torah/labels/Pinchas-5.txt b/data/torah/labels/Pinchas-5.txt deleted file mode 100644 index 2654d3b13..000000000 --- a/data/torah/labels/Pinchas-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.272097,3.629303,4.094631,5.064064,6.615157,8.088695,8.631578,9.756120,11.539877,13.129747,14.719618,15.378832,16.619707,18.713682,21.389317,22.746524,24.375171,27.012029,28.097794,28.795786,31.859195,34.379721,35.969591,37.210466,38.761559,39.808546,41.088198,42.561736,43.996497,44.927153,46.969392,49.676682,50.956334,51.997386,53.069005,54.852762,55.589531,56.597742,57.630584,59.142899,60.344996,61.857312,63.796178,65.308494,66.859587,67.596356,69.767886,72.559853,75.002825,75.933481,77.717238,80.309669,81.821698,83.101350,84.358645,86.413843,87.399697,88.601794,90.463106,92.208086,93.604069,95.698045,97.132806,98.179794,100.312546,102.367745,104.229056,105.702594,107.214910,108.494562,111.557970,113.845833,114.854043,116.017363,118.344002,119.739986,121.795184,123.423832,124.819815,125.634139,127.030123,128.852657,130.248641,132.109952,133.971264,136.104017,137.422446,138.663320,141.222624,142.967603,144.712583,145.643238,146.612672,147.310663,148.141408,149.847610,151.104906,153.664209,155.952071,158.472597,160.160993,161.285535,163.728507,164.659162,165.977591,167.683794,168.304231,169.196109,170.204320,173.112619,175.012708,176.835242,178.425112,179.239436,181.023193,182.419177,183.117169,184.978480,186.452019,188.429662,190.097087,193.438847,194.485834,196.618587,198.169680,200.806538,202.551518,205.110821,206.661914,208.019121,210.113096,211.509080,212.982618,214.533711,215.890917,218.333889,219.574763,221.009524,223.142277,224.654593,226.205686,228.726212,230.665078,233.573377,235.046916,236.365345,238.614429,240.165522,241.794170,243.422818,245.167797,247.339327,248.774088,250.208849,252.186493,256.103003,257.368508,260.393140,261.711569,263.844321,266.752621,267.932361,270.336555,271.679616,273.928701,275.828789,276.798223,277.883988,278.670019,279.396303,281.384432,283.223387,286.054132,287.644002,288.807322,290.693265,292.105669,293.734317,294.603839,296.465150,298.830567,301.234761 diff --git a/data/torah/labels/Pinchas-6.txt b/data/torah/labels/Pinchas-6.txt deleted file mode 100644 index 1743dc171..000000000 --- a/data/torah/labels/Pinchas-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.092916,6.139374,7.857669,10.086785,10.904127,12.353052,13.616218,15.771029,18.185905,19.263311,20.972299,22.161161,23.164263,24.204517,26.396481,27.771102,29.220027,31.486295,32.860916,34.124082,35.090032,36.018830,36.724717,37.616363,38.730921,39.371810,41.266558,43.848363,45.483048,46.783365,48.715265,51.464508,52.356154,54.659574,55.959891,57.334512,58.597678,60.938249,62.498630,64.356227,65.582240,67.365533,68.480091,70.003320,73.272689,74.312943,75.799020,76.913578,78.436807,80.665923,83.452317,86.238712,89.025107,90.696943,92.898213,95.313088,97.096381,99.065433,100.746576,102.418413,104.350313,106.690884,108.095195,109.302633,110.486850,112.205127,114.341363,116.106079,117.986896,119.333653,120.610751,121.818188,123.211386,124.999322,125.273336,126.736193,130.370170,132.153463,133.528084,135.088465,136.648846,138.840810,140.141127,140.741762,141.930624,143.453853,144.393088,146.473596,149.037079,150.746067,153.346702,155.237739,157.281095,158.321348,158.962237,160.268759,161.457621,162.021104,163.024206,164.361675,165.148070,167.154274,168.528895,172.058328,175.179090,176.999534,178.337004,180.417512,183.758679,184.968732,185.860378,187.643670,188.683924,189.352659,190.095698,191.284559,192.033802,194.485829,196.900705,199.204124,201.321784,202.547797,204.405394,206.968877,207.563308,209.680968,211.092741,212.095843,213.284705,214.510718,215.699580,216.888441,218.746038,222.349775,223.315725,224.801802,225.885412,227.557249,229.117630,230.927280,232.746183,233.978401,235.687389,236.876251,239.291126,241.223027,242.969167,244.195181,245.829866,247.204487,249.656514,251.004525,252.054085,253.057187,254.766176,256.883836,259.781686,262.164468,264.595999,266.596071,268.044997,269.493922,270.348416,271.314366,274.323672,276.181269,278.707600,280.045069,282.311337,283.723110,284.512606,286.407355,287.633368,288.271155,289.014194,290.128752,291.020398,292.357867,293.107110,294.258820,295.373377,296.859455,298.679899,300.611799,302.172180,303.472498,305.441550,307.567877,308.135101,309.918393,311.255863,312.481876,313.559282,316.048461,316.865804,318.872008,320.209477,322.364289,325.485051,326.525305,327.937078,328.977332,330.426257,332.395309,333.769931,334.921641,335.708035,337.714239,340.166266,341.392280,342.655445,344.104371,345.664752,348.005323,349.921491,350.590226,351.667632,352.930797,354.206371,355.878208,359.110425,360.262135,362.119731,365.336511,367.045500,368.271514,369.906199,371.615187,373.695695,375.924811,377.150824,378.302534,380.494498,384.618362,385.547160,387.962035,390.674126,391.825836,392.680330,394.537926,395.801092,397.510081,397.955904,399.441981,400.370779,401.448185,402.414135,404.420339,406.815498,408.784550,410.382083,411.868160,413.057021,415.397593,416.103479,417.855824,419.081838,420.084940,421.050890,422.648423,423.397665,424.623679,425.923996,427.818745,428.784695,430.159316,433.317230,434.357484,435.769257,436.772359,438.444196,439.967425,441.453502,442.679516,444.091289,445.317303,447.397811,449.329711,451.001548,452.376169,453.750790,455.348323,457.503135,458.825167,459.648713,460.763271,461.989284,464.401798,466.233910,468.017203,470.172015,471.769548,474.333030 diff --git a/data/torah/labels/Pinchas-7.txt b/data/torah/labels/Pinchas-7.txt deleted file mode 100644 index fcaa1d263..000000000 --- a/data/torah/labels/Pinchas-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,6.408707,8.010884,9.682721,11.075918,14.384762,15.390204,16.469932,18.385578,19.639456,20.301224,21.276463,22.704490,23.401088,24.933605,27.088435,28.760272,30.362449,31.302857,33.218503,35.168980,37.467755,39.035102,40.184490,41.612517,43.458503,46.244898,46.941497,49.205442,50.285170,51.295238,52.634286,53.679184,56.395918,57.087891,59.317007,60.570884,61.615782,62.332517,64.352653,66.955195,67.965263,69.219141,70.264039,71.587576,73.572882,74.896420,77.439005,79.354651,80.399549,81.757916,83.325263,84.857780,86.668937,88.619413,89.803631,91.893427,94.018052,95.689889,97.048257,98.545944,99.939141,100.914379,103.282814,104.676012,105.546760,106.646624,107.761182,109.293699,110.861046,112.498052,114.096420,116.255876,117.802406,120.484311,122.852746,123.444855,125.639141,126.669345,127.644583,128.759141,129.769209,132.242134,133.008393,134.924039,136.247576,137.396964,139.556420,141.297916,147.915603,152.826624,155.647848,158.643223,160.524039,162.544175,163.909243,164.791601,165.929379,166.904617,168.646113,170.225070,171.827247,173.870603,176.378358,179.095093,181.742168,182.996045,183.808744,184.783982,186.014639,187.175637,189.451193,190.356771,192.400127,193.723664,194.884662,197.322757,199.157134,205.403302,210.279492,213.251646,216.432780,218.522576,220.565932,222.136078,223.250636,224.400023,225.932540,227.708867,229.241384,231.191860,233.525466,236.207370,238.819615,239.969003,241.397030,242.511588,243.800295,246.238391,246.865329,248.955125,250.174173,251.149411,253.517846,255.642472,261.598391,265.534173,268.216078,270.897983,272.778799,274.659615,275.600023,276.470772,277.446010,278.456078,279.744785,281.346962,282.809819,283.889547,286.280707,288.701520,291.278935,292.149683,293.264241,294.239479,295.354037,297.304513,297.931452,299.603289,300.787506,301.727914,303.364921,305.280568,310.853357,314.649819,317.087914,319.804649,321.580976,323.496622,324.715670,325.760568,326.596486,327.989683,329.487370,330.950227,332.656894,334.537710,336.906146,339.274581,340.528459,341.533901,342.334989,343.310227,345.643833,346.447864,348.431044,349.645466,350.620704,352.362200,354.068867,359.850636,364.274037,366.781792,369.394037,371.240023,373.051180,374.200568,375.175806,376.081384,377.439751,378.972268,380.365466,381.828323,384.197574,387.262608,389.700704,390.641112,391.546690,392.089275,393.238663,395.398119,396.094717,397.975534,398.950772,399.891180,401.737166,403.478663,408.668323,413.022064,415.599479,418.351044,420.197030,422.600295,423.819343,424.759751,425.665329,427.789955,429.078663,430.402200,431.934717,434.442472,436.230344,437.762861,438.912249,440.061637,440.932385,441.579460,442.310888,443.341092,443.858915,445.565582,447.351537,449.336844,450.695211,451.949088,453.133306,454.665823,455.452218,456.531946,457.388000,458.467728,460.836163,461.497932,463.622558,464.702286,466.304463,468.220109,471.145823,472.678340,474.837796,477.693850,479.679156,481.376987,482.668614,483.609022,484.723580,486.186437,487.788614,489.390791,490.958138,492.804124,495.010581,496.159969,497.413846,499.468812,500.687860,502.986636,506.643778,509.221193,512.669357,515.664731,518.137656,520.122962,520.854391,521.585819,522.421738,523.681057,525.975207,526.776295,527.652132,529.649048,530.667642 diff --git a/data/torah/labels/Pinchas-H.txt b/data/torah/labels/Pinchas-H.txt deleted file mode 100644 index aeb6a6cb4..000000000 --- a/data/torah/labels/Pinchas-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.169407,5.582740,7.370676,7.788636,11.039429,14.638522,18.284055,20.048772,22.254667,24.042604,24.715983,27.943556,32.146368,33.984869,35.384336,37.500603,39.753403,40.367803,41.425936,44.054203,47.194469,48.969403,49.655803,50.512869,53.209403,53.759269,54.251003,57.459536,61.555536,63.603536,65.040869,66.747536,67.5,70.447803,73.383269,74.155536,76.094736,77.699003,79.985936,81.897403,82.593936,83.870736,85.372603,87.591269,88.083003,89.755536,92.554469,93.953936,97.299003,101.224336,103.169936,105.286203,105.781669,107.522469,110.765136,112.301136,114.724603,115.864869,118.697936,120.135269,120.592869,123.255269,126.293136,127.491536,128.928869,130.779536,133.032336,133.851536,136.752869,139.278736,141.838736,142.999269,145.661669,147.504869,147.894203,149.054736,150.556603,152.365669,155.505936,157.041936,158.475536,160.250469,161.684069,163.715221,164.415803,164.692603,167.798736,171.689936,173.840336,175.342203,177.765669,178.926203,181.349669,182.524069,183.752869,185.186469,187.623803,188.511269,190.129403,192.416336,193.147003,196.492069,198.403536,202.206203,206.165669,207.374203,210.446203,212.494203,215.020069,217.272869,219.013669,222.529403,226.147536,230.704869,232.377403,233.776869,235.824869,237.023269,238.252069,241.051003,242.075003,244.805669,247.160869,247.980069,250.301136,254.636069,258.322469,260.043003,263.183269,266.767269,268.269136,270.112336,273.116069,274.749062,275.701080,278.232055,279.903892,282.179447,282.876046,285.708880,289.238313,291.046983,291.900316,292.405916,295.443783,296.881116,299.236316,300.892316,301.544583,303.217116,304.855516,307.726449,308.989383,309.744049,310.482183,312.816049,316.694449,321.200049,322.531249,325.261916,327.070983,328.333916,331.440049,332.225116,333.351516,334.546183,336.499976,338.250183,338.663516,341.223516,343.066716,344.041642,346.874708,348.547242,351.175508,353.299242,354.528042,356.268842,358.009642,358.218175,360.778175,364.362175,368.116842,369.359508,371.379644,374.839418,375.977195,378.856470,381.642864,382.919962,385.776016,387.145994,392.370483,395.087218,399.081050,400.822547,402.540823,403.887581,406.023817,407.858193,409.506810,412.014565,415.009939,416.774656,418.144633,419.537830,420.280869,423.136923,426.689576,428.709712,430.288669,431.380007,432.239145,434.468261,437.451428,439.597101,441.233828,443.418361,444.582628,447.825295,449.668495,450.901028,453.973028,455.543161,456.874361,459.366095,462.301561,465.817295,466.738895,469.947428,471.619961,472.917028,474.043428,476.910628,477.490895,478.514895,480.395961,484.150628,488.383161,489.649828,492.243961,493.575161,494.681295,497.582628,498.279161,499.234895,500.293028,502.204495,503.672228,504.525561,506.846628,508.553295,509.611428,512.342095,513.516495,516.008228,517.987961,518.875428,520.445561,522.099702,522.268409,524.955756,528.647729,531.178704,532.548682,534.174078,536.263874,537.308772,540.118387,541.762378,544.246913,547.056527,550.098341,550.585961,552.977616,556.065870,556.925008,559.920382,561.522559,563.589135,564.192854,565.795031,566.956029,569.649543,570.343058,573.129453,574.101607,575.584600,576.141879,577.418976,579.740972,581.552128,583.007752,585.887027,589.439680,592.992333,595.175009,596.521766,599.610111,600.655009,603.348523,606.506437,607.969294,610.639589,611.661267,615.330020,617.251108,620.594782,621.500360,624.983353,625.749612,629.046845,630.556142,631.043761,632.297639,634.155235,635.896732,637.266709,638.358047,638.961766,641.910700,644.859635,646.248968,649.798835,652.977435,653.639368,655.243635,655.598835,656.998301,659.046301,660.821235,661.756701,662.999368,664.706035,666.480968,669.348168,670.747635,673.444168,675.560435,677.164701,678.837235,680.304968,683.513501,686.687901,689.213768,689.623368,692.388168,694.163101,696.347635,697.986035,701.296968,702.355101,703.113501,705.028701,706.974301,710.046301,712.845235,715.063901,715.726301,717.515101,718.709768,719.235635,719.918301,722.307635,725.174835,727.137206,730.248680,731.711537,732.219292,734.378748,735.934485,739.696117,741.298294,742.807591,744.943827,746.662104,748.008861,750.725596,754.022829,757.482602,759.943918,761.429995,762.637432 diff --git a/data/torah/labels/Shemot-1.txt b/data/torah/labels/Shemot-1.txt deleted file mode 100644 index 9c69e3036..000000000 --- a/data/torah/labels/Shemot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.509119,3.799354,5.153328,6.219224,7.529987,8.696710,10.079494,10.972541,12.326517,12.911296,13.861959,14.798218,16.238618,17.174877,17.909480,19.162628,20.329351,21.150379,22.519188,23.121008,24.417367,24.877594,26.145847,28.118025,28.548578,30.033756,31.074557,31.542179,32.435226,33.384951,34.235725,35.591685,36.094724,37.754101,39.347673,40.145173,40.569817,41.595495,42.408337,43.071948,44.156423,45.265216,47.051312,48.707770,50.738733,51.712798,53.066773,54.060648,55.126544,56.149227,56.855023,58.353038,60.153537,60.717766,61.567601,61.808540,62.895844,63.578978,63.703105,64.325467,64.565458,65.702197,66.850345,67.185184,68.201020,69.915095,70.937779,71.830826,73.069569,73.705100,74.796107,76.036792,76.829011,77.931939,78.702831,79.092605,80.669258,82.651100,83.066863,83.769034,84.878142,86.131289,86.436305,86.865893,87.104245,88.718516,89.737037,90.389379,91.004435,91.210407,92.3,93.565912,94.372536,95.222371,96.259458,97.123698,98.002341,99.399529,102.078671,102.623853,103.588920,104.741239,105.223979,105.958583,106.333087,107.643850,109.098653,109.969443,111.006455,111.423308,112.287548,113.007518,114.049485,116.671012,117.751312,118.428299,119.767870,121.741217,123.152809,123.675877,124.252351,125.203014,126.830665,128.775204,129.048880,130.676531,131.886466,133.557329,134.651124,135.904272,136.676511,137.558463,138.956521,139.727413,139.956067,141.758928,142.432067,143.000437,143.647202,144.816606,146.423719,147.114639,148.187624,149.566079,150.773253,151.741082,152.317241,153.066249,154.088932,154.794728,155.702179,156.796883,158.784634,160.138609,160.371635,162.011127,163.048178,163.320134,164.501261,165.042717,165.521749,166.090747,167.286278,168.121710,168.759984,169.072373,169.550474,171.088931,172.695039,173.751181,174.045166,175.521620,176.700457,177.492677,179.387722,180.199235,181.025457,181.644829,182.739532,184.772322,185.046707 \ No newline at end of file diff --git a/data/torah/labels/Shemot-2.txt b/data/torah/labels/Shemot-2.txt deleted file mode 100644 index f70bc8654..000000000 --- a/data/torah/labels/Shemot-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.606277,2.529010,3.023992,3.882991,5.433408,6.571769,7.582671,8.445175,9.568687,10.461734,11.397994,12.766373,13.011241,14.278792,15.603960,16.612239,16.942735,17.966214,18.677771,19.645471,21.155258,22.447716,23.787288,24.184951,25.040435,25.861462,26.845758,28.019065,29.485666,30.619604,32.448910,34.108951,34.802527,36.113291,37.726538,39.109320,40.261640,41.226708,43.893276,44.340675,44.945643,45.881902,46.253805,47.466341,48.272964,48.906740,50.332353,51.694197,52.674974,52.874462,53.565860,54.620416,55.053412,55.772745,57.474164,58.511251,59.749994,60.284290,60.856962,63.000994,64.111420,64.739963,65.501191,66.466258,67.445730,67.701101,67.924583,68.895333,69.921948,70.814995,71.895295,72.615495,73.609370,74.228742,74.685786,75.309041,76.025358,77.595393,78.320422,79.386318,80.079909,81.131401,82.787860,84.919651,85.831516,86.633726,87.368330,88.463033,89.749402,90.700066,91.982021,92.990301,93.548199,93.834536,94.805286,95.722342,96.485754,96.802657,97.292377,98.920028,100.597010,101.705295,102.878576,105.479963,105.848441,106.789513,107.778576,108.786855,109.101155,109.882896,110.819156,111.265679,112.504422,113.728762,114.765849,115.077988,115.514857,116.619215,117.699514,118.047422,119.009871,119.787687,120.810370,121.703418,121.937407,122.737487,124.077058,125.863153,127.007657,127.196220,128.166970,129.060898,129.542782,130.683749,132.182663,133.218852,135.629155,136.695050,137.458462,138.610781,140.425684,142.672707,143.119318,143.433589,145.186526,146.973933,148.049452,148.625612,149.619488,150.541343,151.333562,152.575403,153.518218,153.970853,154.273336,155.634313,156.410386,156.814578,157.128850,157.817187,158.767850,159.862554,160.957257,162.123981,162.368848,162.747756,164.356599,166.927142,167.429977,167.765200,169.168494,170.900933,171.173302,171.736803,172.673062,174.190309,174.776950,175.924035,176.644234,176.962884,178.294160,179.878599,181.391018,182.212046,183.753273,185.164864,186.605263,187.887219,188.332534,189.533751,190.071939,190.518463,191.627570,192.662500,193.278380,194.301064,196.735338,197.201539,197.456883,198.652415 diff --git a/data/torah/labels/Shemot-3.txt b/data/torah/labels/Shemot-3.txt deleted file mode 100644 index 2ba7c73f8..000000000 --- a/data/torah/labels/Shemot-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.522471,3.533810,4.554312,5.994711,7.046669,7.975516,9.148797,9.518940,10.2,11.341701,12.983756,14.121672,14.827467,15.907767,16.728794,16.960189,17.578262,19.009944,20.141322,20.618803,21.627082,22.678574,23,23.570375,24.464669,25.680337,25.972807,27.125137,28.452062,29.619217,31.077976,31.853179,32.851865,34.681596,35.156524,35.809067,36.514862,37.724798,38.848309,40.058244,40.8,41.383412,42.982255,46.712889,47.5,49.492859,50.371503,51.048490,51.855114,52.877797,54.347004,55.138519,56.046675,56.932059,57.767930,58.012798,59.150714,60.130185,60.936808,62.074724,63.025388,63.630355,65.027542,66.276403,66.939425,67.156364,68.015803,68.980870,70.075574,71.004445,71.248879,72.337001,73.429130,74.250158,75.301649,76.425161,77.347016,77.756045,78.758607,79.678343,79.929761,81.738569,82.921878,83.872541,84.532095,85.579667,87.088171,88.737212,90.356596,90.681751,92.353514,93.534642,94.026586,95.345646,96.399334,97.326443,98.861543,99.927439,100.734062,102.505753,103.248719,103.674731,104.994672,107.950462,108.402774,109.304437,110.427948,112.568602,114.282677,115.204533,115.651974,117.055720,120.178336,121.028172,122.094067,123.476850,124.249050,125.579833,126.183566,126.777181,127.468572,128.289600,129.067415,129.340251,130.954338,132.425295,132.632238,133.519998,134.801953,135.570652,136.051697,137.270800,137.501264,138.322291,138.999299,139.522644,140.410890,141.582878,142.461524,143.262880,144.055100,144.264663,145.178611,147.186033,147.805404,148.511200,148.950803,150.585375,152.638257,153.585807,154.399043,154.653953,155.263282,156.382432,157.203460,158.240547,159.032766,159.983430,160.545186,161.999989,163.512408,164.189395,165.716218,167.214234,168.294533,169.129965,170.181456,171.984719,172.253605,173.852448,174.350497,175.329968,176.626327,178.138747,179.751993,180.343050,181.209043,181.485770,182.738917,184.202040,185.080683,185.354359,186.751546,187.759825,188.480025,188.724893,189.733172,190.2,190.928703,191.213789,191.804353,192.178857,193.417600,194.200242,194.992462,195.309350,195.957529,197.340312,198.954917 diff --git a/data/torah/labels/Shemot-4.txt b/data/torah/labels/Shemot-4.txt deleted file mode 100644 index cb4361845..000000000 --- a/data/torah/labels/Shemot-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.677293,4.020497,5.040404,6.552645,7.013518,8.424943,9.245873,10.153219,10.844528,11.910298,12.947263,13.185801,14.078743,15.130111,16.210283,18.183397,18.727639,19.061937,19.995040,21.262442,24.358935,25.367096,26.275924,27.842804,28.613624,29.204118,30.082658,31.335657,33.078335,33.991472,34.921256,35.770991,36.635129,37.844921,38.435416,40.009700,41.788236,42.868407,43.680762,44.415279,45.437842,45.907764,46.534481,47.485033,48.493193,49.544560,49.712966,50.393897,51.542249,52.698526,53.692284,54.093956,54.639701,55.670171,57.532778,58.195284,59.635513,60.672478,62.703202,64.373867,65.324419,66.390189,67.513568,68.694556,69.803532,70.093543,70.854900,71.891865,72.591958,73.750830,74.802675,75.710020,76.544649,76.679834,78.279594,79.158134,80.137490,81.246467,82.182616,83.622845,84.832638,87.021787,88.217177,89.191940,90.286514,91.841962,93.426214,94.261548,95.197697,96.177053,97.314834,98.470608,99.161918,100.069263,101.163837,102.085584,103.295377,103.666730,104.980445,106.380370,107.546956,108.493329,109.975355,110.374526,110.849802,111.569916,112.405249,113.715858,114.379088,115.430456,116.253798,117.449189,118.702188,119.187950,120.033236,120.274435,121.969831,124.879094,127.125852,128.270367,129.804679,132.734371,133.071721,133.670521,135.462502,135.835710,136.384249,137.022332,138.296221,138.674591,140.016426,140.781480,141.588009,142.855410,143.379972,144.007594,145.130973,146.873650,148.172558,149.555179,150.851385,152.939717,156.065016,157.750084,158.556613,158.928699,160.112060,161.060239,162.255629,162.794045,163.503537,163.708817,164.720200,165.442727,166.393278,167.128493,168.161112,169.737059,170.667111,172.349569,172.691097,173.667432,175.519137,175.910499,176.322601,176.956302,177.883196,179.385250,180.305020,180.996330,181.257810,182.917478,183.940041,185.049018,185.518260,186.195168,186.540031,187.561428,188.470731,190.011776,190.345233,190.880592,191.946361,193.645832,195.230084,195.407154,196.281452,197.238910,197.905814,198.765554,199.528875,200.078166,201.143936,202.670579,204.239229,204.479558,205.204435,206.385423,207.552010,207.854171,209.491409,210.341370,210.960669,212.055244,213.495473,214.993311,215.284329,217.052840,217.983019,218.839190,220.797436,221.222448,221.742106,223.787232,225.299473,226.379644,227.200576,228.410368,229.504943,230.829953,231.763023,232.486217,232.778246,233.681608,234,234.745937,236.423230,237.757889,238.535613,238.766050,239.774210,240.839980,241.617704,242.784290,244.843818,245.520726,246.413668,247.393024,248.588414,249.769402,250.527513,251.872138,253.773240,254.242592,255.731952,256.240323,257.993112,258.814043,260.974387,261.447442,262.148400,264.013271,266.074784,267.111749,269.185680,270.280254,271.806897,272.998234,274.420483,275.414241,276.523217,277.646597,278.971607,279.590906,280.354228,281.549618,282.384951,283.681158,285.207801 diff --git a/data/torah/labels/Shemot-5.txt b/data/torah/labels/Shemot-5.txt deleted file mode 100644 index f6c497684..000000000 --- a/data/torah/labels/Shemot-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.578511,2.295033,4.902306,5.332856,6.240055,7.939251,9.004849,10.080713,11.856043,12.864042,14.116839,15.225637,16.190435,17.542437,19.198433,19.904032,20.940830,22.179228,23.129626,24.054265,25.114628,25.670345,26.344778,27.064776,28.475974,30.405570,31.290091,33.493286,34.429284,36.042081,36.524426,36.941649,38.252046,40.311242,41.688249,43.081280,44.339157,45.831675,46.309983,47.677980,48.513179,49.247577,51.105173,52.804370,54.245563,57.959560,59.817157,60.709421,62.278177,62.808359,63.353066,65.088866,66.136066,67.122439,67.122439,69.145660,70.110458,71.392055,72.529653,73.609651,75.539247,76.578409,78.032807,79.012005,79.861603,80.602124,81.807743,83.313694,83.976092,85.606166,87.432086,88.468884,91.507278,91.926758,92.767249,94.357630,94.948029,95.927227,97.093625,98.112641,98.683261,100.137658,101.390455,101.613292,102.499349,103.887377,104.147996,105.240974,106.245282,107.613280,108.339932,109.376731,110.715928,112.199125,112.875924,114.416721,117.080716,117.526002,117.887114,118.346694,119.222832,120.285851,121.462419,122.846574,123.537772,124.790570,125.217266,126.014567,127.339365,128.612347,129.298938,130.647890,132.059087,132.995085,133.656595,135.039882,135.873563,136.708761,138.091158,140.251154,140.650634,141.719951,142.132237,143.935730,145.202927,145.429531,147.027338,148.545255,149.417647,150.656044,151.707242,151.966016,153.171634,153.824038,154.544905,155.524103,156.733700,157.770498,158.922496,159.328196,159.875395,160.652993,162.150590,163.864187,165.289784,166.571382,167.087674,167.675368,168.924563,169.953268,170.990066,172.343664,173.679035,174.629433,175.933128,176.817157,177.753155,178.933952,179.985150,180.719549,182.591545,184.031542,184.809141,185.026105,186.106247,186.927046,188.093444,189.216641,190.541439,191.765436,192.571835,193.414594,194.344228,194.983351,195.881779,197.422576,198.588974,199.928171,200.241589,200.908238,202.377035,203.572233,204.551431,205.804228,207.431425,209.260221,210.109820,211.045818,212.169016,213.594613,216.258608,217.338130,218.587325,220.261800,220.992660,221.427064,222.475857,223.823776,224.819759,225.626158,226.850155,229.154150,230.075748,230.896547,231.861345,233.229343,235.202138,236.119630,236.882220,237.129154,238.291196,239.293525,240.128723,240.470024,241.501336,242.945728,244.328125,245.010989,245.710522,247.173553,248.711781,249.011031,249.345118,250.550737,251.320589,252.467150,253.662348,254.655945,255.419144,256.643142,258.212739,259.263937,259.687290,261.035133,266.003124,266.390819,267.002378,270.343171,271.826369,272.462487,273.986365,275.781154,276.550398,277.515196,279.027193,280.395191,281.604788,282.583986,284.023983,285.319981,286.443302,287.380198,287.955176,288.833574,289.083307,290.273571,291.063906,291.755104,293.511901,294.824529,295.553297,295.841296,298.001292,298.588378,300.402774,301.842771,302.188969,303.772251,305.730764,306.467595,307.662793,308.584391,309.937988,311.478785,312.074447,313.048382,313.266795,314.617979,316.495238,316.961425,318.165635,318.831576,319.508375,320.876373,321.913171,323.554767,325.153164,326.089162,326.606372,328.632682,330.898753,331.877951,332.216594,333.224592,334.318990,335.154642,336.120589,336.687085,337.674184,338.136373,339.129971,339.761725,340.582523,341.864120,343.129154,343.710175,345.007176,345.957575,346.173575,347.051973,348.477570,349.096768,350.306367,351.587964,352.235962,353.359160,353.939137,354.583158,355.105534,356.833531,358.354393,358.777527,360.413589,362.386385,363.754383,364.474409,365.180259,366.101857,367.196255,369.586650,370.015249,370.585762,371.536160,372.184159,373.350556,373.666177,374.243355,375.250174,376.531772,377.813369,378.576567,379.786165,381.528562,382.565360,383.504456,383.706056,384.742854,385.909251,387.853248,388.702847,389.018901,389.652500,390.111956,390.876497,392.330344,393.439141,394.179103,394.770505,396.138503,397.100848,397.388847,398.152045,398.459612,399.424410,400.475608,401.080407,401.710943,402.646941,403.683740,405.015142,405.607424,405.938624,407.681020,408.524794,409.273593,410.051191,410.771190,412.052788,412.924289,413.555628,414.534826,415.038825 diff --git a/data/torah/labels/Shemot-6.txt b/data/torah/labels/Shemot-6.txt deleted file mode 100644 index f06411d5a..000000000 --- a/data/torah/labels/Shemot-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.358009,2.438499,4.225720,5.967830,6.378309,7.062489,8.589141,9.582906,10.418244,11.345017,12.670036,13.793422,14.229311,15.122259,15.544870,16.792935,17.934731,18.827678,19.907857,21.655911,23.022757,24.174948,24.736641,26.248891,27.213851,27.876360,28.184443,29.071758,30.151937,31.017506,31.660393,32.845039,33.155647,33.943004,34.5,35.791818,36.958411,37.208004,38.571478,40.545239,41.956038,42.336655,43.145682,43.463515,45.031004,46.230097,46.468470,47.568583,48.908005,49.545662,50.797511,51.920897,53.496890,53.829169,54.435939,55.396658,57.173627,59.137048,61.210992,61.637721,63.609724,65.068861,65.957345,67.101566,68.743438,69.193453,70.221821,70.754709,71.618852,72.742238,74.081659,75.061021,76.184407,77.552633,78.690422,78.952337,80.087453,80.570390,81.498887,81.791154,82.992306,84.446947,84.821408,85.901587,86.751328,87.673080,88.782064,89.487781,90.308716,92.051405,93.707679,95.320746,96.170487,96.433092,97.095334,98.953242,100.422285,101.862523,102.813081,103.706029,104.555769,104.978437,105.742075,107.110301,108.106191,108.949154,110.576623,112.418593,113.376774,114.370539,115.709960,116.962967,118.748863,120.088285,121.283683,121.592378,122.478636,123.429194,124.595787,125.848794,128.383613,129.795047,130.244382,131.569401,132.606373,133.571332,134.593902,135.717288,136.509419,137.632805,138.367326,139.029836,140.398062,141.492643,142.299177,142.439262,143.551673,145.002396,145.708113,146.586658,147.782057,150.576119,152.794086,153.470998,154.421555,155.2,156.106634,157.143605,157.878127,159.594962,160.898711,161.298094,161.874189,162.810344,163.536251,164.774856,165.480573,165.790636,166.726791,167.504520,168.800734,169.664877,170.543422,171.738820,174.086409,174.482498,174.9,175.613775,176.261882,177.745327,179.214371,180.337756,181.173094,181.489247,182.688340,183.281475,183.719290,184.425006,184.770664,185.649209,186.542157,187.435105,188.112017,189.336219,191.006896,192.000661,195.212392,195.624029,196.206156,197.747212,198.294502,199.086633,200.685297,201.424061,202.100973,202.386695,203.412425,205.168681 diff --git a/data/torah/labels/Shemot-7.txt b/data/torah/labels/Shemot-7.txt deleted file mode 100644 index ae618d278..000000000 --- a/data/torah/labels/Shemot-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.361433,4.459560,5.304068,6.297666,7.320064,8.457661,8.755467,9.918019,10.313999,10.947598,11.912396,12.992394,14.201992,15.234271,15.512799,17.686528,19.198783,19.642280,20.952173,22.190571,23.155369,23.729376,24.814302,25.309719,26.269782,27.392979,28.429777,28.761044,30.068915,30.675033,31.473665,31.667423,32.729101,33.607500,33.827531,34.773897,35.037129,36.491526,38.651522,39.400320,40.537918,41.171517,42.193914,43.051520,45.873914,47.256312,47.918711,49.358708,51.302704,52.901101,54.053099,55.262696,56.141095,57.278692,58.301090,58.623238,59.789636,61.460033,62.410431,63.332029,64.455227,65.348025,66.298424,67.392821,68.170420,68.445230,69.165771,70.481408,71.374318,73.476713,74.729511,75.636709,76.040903,76.616902,77.365700,77.703882,78.711880,79.888246,80.737844,82.451441,83.344239,84.179438,84.942636,85.821034,86.210473,87.560729,88.523467,88.983643,89.782705,91.309102,92.313870,94.145896,94.952295,96.046693,97.429090,98.206688,99.344287,100.510684,101.562745,102.354744,103.434742,104.351124,104.918622,106.272220,107.139161,107.945559,109.702356,110.566354,111.588752,112.308750,112.870350,113.763148,115.030345,116.139143,116.630576,117.584428,118.693225,119.258427,120.229473,121.064672,121.613805,122.903511,123.599067,124.491865,125.528663,126.724189,127.517388,129.037182,130.845879,132.530675,132.948684,133.947752,134.711803,135.619002,136.173493,136.979891,137.677724,138.858522,141.565716,142.588114,143.293713,145.136909,146.188107,146.420963,147.095305,148.218503,149.057129,150.029717,150.925851,152.685921,153.353888,154.159198,155.570002,157.682712,158.589910,159.118207,159.832692,160.695875,161.919873,163.187070,163.683645,164.252811,165.619488,167.073886,168.240283,169.273614,170.095844,170.661052,171.165051,172.173049,173.166647,173.670646,174.678644,176.305841,176.998494,178.062638,178.790762,179.886709,180.317077,180.878676,181.944274,183.110672,183.686671,184.925069,187.099464,188.323462,189.216260,190.339458,191.070213,191.070213,192.842418,193.735217,194.556015,195.578413,198.996152,200.373604,201.108002,202.126564,202.864799,203.996383,205.061980,205.577890,206.346869,206.734386,208.503574,210.649170,211.786767,212.650766,213.817163,214.850941,215.066941,215.865261,216.936989,218.508534,221.244528,222.367727,223.620524,225.521320,226.147704,226.758128,227.950955,229.819697,230.554096,231.216494,232.397292,234.068402,235.825199,236.804398,237.466796,238.618794,240.533990,241.354788,242.175587,243.241185,243.760447,244.269063,245.245082,246.339479,247.635477,248.269075,250.083472,251.813539,252.761867,253.611465,254.864263,255.028721,255.983389,257.120986,257.953265,258.896756,260.250353,262.586129,264.177761,264.650047,266.245302,267.210100,267.973299,269.038896,269.649774,270.211373,271.622570,272.186801,272.569931,273.932296,275.196395,275.464200,276.424262,276.697862,277.777194,278.987457,280.254655,281.493052,282.027773,283.230152,284.601130,285.775792,287.218944,288.572542,289.681340,290.948537,292.705334,293.843402,294.059402,295.672198,296.680197,297.630595,298.883392,299.934590,300.679759,301.399758,302.311878,303.933524,305.920720,307.375118,307.747057,308.812656,309.979053,311.908649,312.729448,313.755746,314.624673,315.488672,316.179870,316.608371,318.033969,319.862765,320.662125,320.935724,321.655723,322.721320,323.656690,324.607088,325.298287,326.410606,327.398653,327.613526,328.405524,328.566171,329.867986,330.758843,331.507641,331.738041,332.717239,333.898037,334.776435,335.525233,336.490032,337.714029,338.491627,339.182826,340.058478,341.328422,342.410017,343.576415,345.462811 diff --git a/data/torah/labels/Shemot-H.txt b/data/torah/labels/Shemot-H.txt deleted file mode 100644 index a158ff5ed..000000000 --- a/data/torah/labels/Shemot-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.048950,3.515677,5.042055,6.496435,7.466250,8.598804,10.600376,11.752359,12.142581,12.992168,14.576145,15.987325,17.124909,19.313677,19.941245,20.580859,21.646444,22.942426,24.894773,26.161955,28.048329,30.193898,31.216283,32.294248,32.860813,34.312239,37.091399,38.430579,40.312877,40.794398,42.162379,45.071137,45.690035,46.422566,47.156955,49.640473,52.752703,53.055389,53.846545,56.193712,57.964886,59.779260,60.257759,61.251189,62.151486,64.182883,65.219667,65.4,65.810059,66.803645,67.811630,70.648389,71.857972,73.156832,75.756825,76.480306,77.617889,79.345865,80.281851,81.174638,82.341022,84.140996,85.838591,87.088140,89.051325,91.837978,92.784842,93.592004,95.473633,96.153191,96.843936,97.332890,98.171097,99.144729,99.638463,100.473651,100.941836,102.664817,103.860038,105.403430,105.901227,108.240189,110.040164,111.192147,112.300931,114.115305,116.246474,117.643255,118.680040,119.207886,119.942276,121.799849,123.830220,125.990189,127.170972,128.063759,128.942147,130.698922,133.348484,134.428468,136.732435,140.073187,140.958452,142.996345,145.588308,147.057087,148.494553,149.807447,151.305026,152.111414,153.925788,156.460152,158.317725,159.412110,160.420095,163.380485,166.416054,167.582437,168.792021,171.153586,172.175972,173.136282,174.177543,174.867024,176.768511,178.918357,179.425718,179.972909,180.392980,181.293276,182.472975,183.970882,184.961759,185.624150,186.488137,188.028915,189.008101,189.843289,190.966473,193.400038,196.697591,197.847862,199.004277,200.781585,201.658598,202.527850,204.113484,205.812660,208.375823,209.412608,210.190197,211.230914,212.843691,216.187517,217.158013,218.180398,219.591578,221.045957,222.130487,222.375283,223.095273,223.863319,225.960832,227.472810,229.315984,230.323969,231.375154,232.123944,233.059930,234.456710,235.810291,237.495067,239.618503,240.881485,243.444648,244.841428,246.425405,247.706987,249.995193,251.177738,252.632117,254.861450,255.924731,257.795174,259.702415,261.652885,263.121664,263.9,264.806440,267.081607,268.296043,270.076764,272.153347,273.038120,273.894637,275.320217,276.414601,277.883380,279.697754,280.835338,283.104364,284.105555,286.350458,287.502442,287.792114,290.209603,291.289588,291.526071,292.908451,294.103634,295.370816,296.508399,298.553170,299.849152,300.272082,301.620326,302.829908,303.578698,305.335472,306.300259,307.970635,309.199098,310.015406,311.544251,312.710634,313.251360,313.819417,314.467408,316.281783,317.543832,318.839813,320.193394,322.036567,323.027846,323.546432,324.684016,326.023197,327.419976,328.251659,329.374842,330.181231,332.082004,333.466626,334.169974,335.116640,336.493483,337.727510,339.537377,340.775759,342.330937,344.231375,345.513291,345.751152,346.298344,347.810323,350.805480,351.842265,354.376629,355.427814,357.069390,358.628354,359.777007,360.988932,363.264099,364.171286,364.977675,366.374454,367.677883,369.556809,370.247568,372.853930,373.703518,376.079484,376.986671,378.153054,378.941302,380.194084,381.475666,382.598850,383.549236,384.643621,385.666006,387.350781,388.401966,390.633934,391.858877,392.708466,394.306843,395.761222,397.820392,400.786749,401.232325,401.975153,403.141536,403.697494,404.822864,406.258682,407.375075,408.239062,408.699856,410.975023,411.490352,412.152743,412.901532,414.269512,415.054783,416.091568,417.113954,419.115525,420.757101,423.968255,426.473819,427.971398,429.944169,431.542546,432.896127,434.724901,436.337678,436.755272,438.137652,439.390434,439.923928,440.499571,441.968350 diff --git a/data/torah/labels/Terumah-H.txt b/data/torah/labels/Terumah-H.txt deleted file mode 100644 index 33e967c28..000000000 --- a/data/torah/labels/Terumah-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.918828,6.377837,7.430449,8.730766,10.170403,10.739881,12.342057,13.712035,16.289450,17.148588,18.147046,19.400924,20.747681,22.117658,22.860697,24.648633,25.832851,27.435028,29.292624,30.174983,31.107959,32.942336,34.519330,35.610668,37.084301,37.979630,39.449738,41.382682,43.960097,45.074655,46.235653,47.326991,48.952388,50.229485,51.645902,53.224859,54.246537,55.361095,57.543771,59.053068,59.522790,60.748125,62.978189,65.021545,66.298642,67.273880,68.458098,70.524674,72.173291,72.893109,73.891567,75.772384,79.580456,80.889096,82.181091,83.295649,84.972732,85.227765,86.644182,87.735520,88.942958,90.011076,91.868672,93.865588,95.026586,96.210804,98.091620,99.647357,102.898151,105.359466,106.450804,108.447720,110.444636,112.395112,113.625770,114.763547,115.773762,117.178423,120.266677,122.170713,124.121189,125.235747,126.164545,128.834840,130.994296,132.294613,133.711030,134.616609,136.149126,138.401461,139.632119,140.677017,141.760406,142.534147,145.390668,146.309168,146.750347,148.073885,149.002683,151.069259,152.230257,154.134293,155.527490,157.570846,158.499644,159.939281,161.146719,162.354157,163.468715,163.756757,165.953250,167.067808,168.182365,170.132842,173.197876,174.205755,176.156231,177.247569,178.408567,179.546344,180.469563,181.181590,182.156828,183.317826,185.268302,186.638280,187.474198,189.633654,193.523679,193.965817,194.791718,196.184915,197.253033,198.530131,199.505369,200.503827,200.929486,201.850584,202.790035,204.717292,206.389128,208.200285,209.430943,209.705920,210.269645,211.672860,213.646556,214.853994,216.247191,217.199210,218.917486,221.267821,221.770869,222.351368,223.071186,224.162524,225.532501,226.184686,226.834845,227.810083,229.063961,230.457158,232.872033,234.033031,234.961829,236.494346,238.003643,240.209539,242.110594,243.385761,245.640027,247.683383,248.652919,249.697817,251.137454,253.505890,254.550788,255.595686,257.917681,261.307794,263.490470,264.535368,265.371287,266.369745,267.600402,268.784620,269.759858,270.804756,272.221173,274.264529,277.236683,278.142262,279.117500,279.884229,282.182534,283.784711,285.177908,285.775946,286.913724,288.237261,288.894053,289.653678,290.681989,293.096865,296.512874,297.859631,300.274506,300.885771,301.608929,302.328747,304.673963,307.855096,309.294734,309.894327,312.499087,313.116599,314.300816,314.746788,316.744895,318.091652,318.504959,319.415189,321.833931,323.296788,323.578489,324.409955,325.617393,327.010590,329.030726,330.366802,330.575782,331.783220,332.189353,332.444773,333.605770,334.673888,335.533026,337.646042,338.923140,339.329645,340.200237,341.314795,342.777652,344.979531,345.482347,346.318265,347.022842,348.086353,349.293791,350.454788,352.405264,353.092527,354.067765,356.273661,356.898250,357.664509,359.011266,359.579553,361.054622,362.610359,364.209383,364.532763,364.788182,365.972400,367.110178,369.153534,370.848591,371.030920,371.884493,373.184810,374.578008,375.692565,376.189770,376.863149,378.581426,381.716119,382.784237,383.689816,385.895711,386.785570,388.201987,388.639054,389.474896 diff --git a/data/torah/labels/Tzav-1.txt b/data/torah/labels/Tzav-1.txt deleted file mode 100644 index 8d26d3ac0..000000000 --- a/data/torah/labels/Tzav-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.934945,2.965805,3.256052,3.797847,4.997534,6.003724,6.216572,7.300161,7.648457,8.654647,9.757585,10.357430,11.054022,12.234360,12.969653,15.736674,17.071810,18.561745,18.917759,19.962649,20.178649,21.049390,21.289063,22.411352,23.243393,24.307632,24.907476,26.126513,27.092658,28.911539,29.879029,31.485063,32.631767,34.141052,34.992443,35.207275,37.080883,38.001058,38.271955,40.013437,41.232475,42.141915,43.728599,44.138892,45.157970,45.351468,46.435057,48.718333,49.337527,50.653314,52.104548,52.355679,53.574653,54.603409,55.532199,56.731887,57.871159,58.109826,58.930006,59.082608,60.105945,61.406781,61.768865,62.450416,63.688803,64.965890,65.153841,66.126879,66.697433,67.403966,68.365909,69.391448,70.629835,72.141990,73.922171,74.889662,75.876501,76.998790,78.004979,78.953120,79.998009,80.946150,81.623392,82.590883,83.945368,85.532052,87.215485,88.066876,88.296078,89.247214,89.564479,90.795198,91.874538,92.609831,93.519271,94.525461,95.512301,95.951749,96.899889,97.788790,98.970318,99.429166,99.990310,101.325446,102.623888,104.094346,106.281001,107.171092,108.235331,109.551117,110.499258,110.761079,111.965004,112.856165,113.030313,114.055853,115.062043,116.958323,118.196710,119.725345,120.992357,122.579041,124.301173,125.346062,126.216803,127.315046,128.151784,129.134954,130.199193,131.321481,132.347021,133.449960,133.836687,134.591329,136.081264,137.164853,138.248442,139.177232,141.286360,142.078173,142.989768,144.245237,145.234345,146.279234,147.104559,148.098115,150.031601,150.513171,152.198666,153.155393,154.117421,155.351444,155.915783,156.833804,158.710735,159.896260,160.949694,162.600045,163.161189,163.702983,164.438276 diff --git a/data/torah/labels/Tzav-2.txt b/data/torah/labels/Tzav-2.txt deleted file mode 100644 index 3d43885aa..000000000 --- a/data/torah/labels/Tzav-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.001197,3.099705,3.361193,3.953898,5.069581,8.259733,10.090149,10.996640,12.652731,13.177712,14.170756,15.984350,17.012869,18.268011,19.505721,20.795727,21.837111,23.236282,24.242799,25.149291,27.154032,28.374309,29.838641,31.233243,32.007629,33.745952,35.646098,36.744347,37.742903,39.067775,40.444945,41.508329,42.536849,43.384570,43.872681,44.569982,46.173775,47.742702,49.329063,51.054883,52.153132,53.233949,54.140440,54.865720,56.535957,57.672648,58.230489,59.607659,60.492596,61.468817,62.915717,63.857074,64.571808,64.876639,66.515363,67.814258,68.651019,68.786813,69.309789,70.303443,71.349395,71.590649,72.619168,72.967818,73.996338,75.077154,75.704725,76.349729,77.517709,80.184886,81.788678,83.081176,84.490720,85.554105,86.669787,87.629683,88.837716,89.508434,90.380061,91.269119,93.378329,94.494010,95.121581,96.551048,97.631866,98.520924,99.601741,100.856883,101.275264,102.234054,103.855278,104.269028,104.901230,106.034345,107.411514,108.899511,109.875732,110.817089,111.149566,112.336590,113.401327,114.360117,115.371203,116.626346,117.473357,118.578789,119.544961,120.887266,121.584567,122.610125,123.118630,124.416923,124.905710,125.777337,126.736126,127.973835,128.967489,129.978576,131.373178,132.125521,132.700795,133.833909,134.810131,135.594595,136.588249,137.442443,138.401232,139.299286,141.914165,143.639986,144.407017,146.080540,146.445147,147.562305,149.260389,150.267030,150.981763,151.696497,152.725017,153.640823,155.153491,156.168831,156.761537,157.790056,158.469925,159.341551,160.265476,162.339946,163.194140,164.284018,164.562939,166.306191,167.359880,167.548963,168.717168,169.240209,171.120539,171.755940,171.982564,172.801893,174.144197,175.164825,175.479061,176.385553,177.431505,178.616917,179.523408,180.743685,181.256612,182.006210,182.982432,183.158853,184.450924,185.428950,186.226207,187.623324,188.083724,188.885620,189.809544,190.803198,191.674825,191.814674,193.086122,193.684500,194.612001,194.840010,195.867143,196.268641,197.224304,198.618906,200.083239,200.658512,201.510454,202.792020,203.587891,204.703573,205.627497,206.464259,206.971964,207.547237,208.422506,209.551978,210.736844,211.451578,212.724153,213.438886,214.205917,215.147274,216.454714,217.692423,218.454434,219.174188,220.220141,222.477965,223.122968,224.029460,224.604734,225.056695,226.242107,227.967928,228.944149,229.345097,230.513077,231.332406,232.151735,233.389444,234.208773,235.167562,236.335542,236.661645,237.812192,239.102199,240.705992,241.595051,242.623570,243.861280,244.441553,245.278314,246.550889,247.258149,248.434668,250.661652,251.571458,252.408219,252.845714,254.048558,255.053911,255.803510,256.376175,257.210036,258.587206,259.136187,260.408761,261.925391,263.215399,263.718916 diff --git a/data/torah/labels/Tzav-3.txt b/data/torah/labels/Tzav-3.txt deleted file mode 100644 index abd9cb9cd..000000000 --- a/data/torah/labels/Tzav-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.008333,2.998008,3.814051,5.056663,5.742881,6.577471,7.931360,8.640347,8.942358,10.921558,13.054399,15.052907,15.407454,16.093466,17.762645,18.875431,19.728567,20.655889,21.768675,22.677451,23.400762,24.513548,25.737613,27.035864,28.185743,29.038879,29.613819,31.041894,31.553354,32.313759,33.166895,34.335321,35.262642,36.449615,36.964663,37.559802,38.194360,39.622435,40.846500,41.498509,42.500017,42.830336,43.906029,45.018815,46.057416,48.097524,50.193272,50.545375,50.850591,52.093202,52.408491,53.576917,55.542839,56.414522,57.434576,58.677188,59.381952,60.216542,61.366421,61.680805,62.555584,63.175520,63.423494,64.468089,65.120567,66.672531,67.150750,68.894116,69.673066,70.878584,72.696136,73.716189,73.978922,74.789334,76.050492,78.442982,79.370304,79.982336,81.354773,82.690117,83.691624,84.618946,85.546268,86.900157,87.716201,88.903173,89.795017,90.759432,93.263201,93.871453,94.409299,96.134118,97.061440,99.305558,99.754894,101.702271,102.629592,104.168947,105.570814,107.530280,108.179405,109.199459,110.386431,112.315261,113.224036,114.169905,114.985948,116.395477,118.695236,119.144450,119.923400,120.516886,121.314383,122.130426,123.335944,124.337452,125.413145,127.341975,127.775961,128.554912,129.074211,130.316823,132.468210,133.022730,133.579124,135.229756,136.286903,137.622247,138.512475,139.996191,141.345203,142.113923,144.518039,145.352629,145.927569,147.281458,149.080463,149.366647,149.941587,150.412787,151.999821,153.166438,154.371957,155.911311,156.894272,158.897288,159.657691,160.204302,161.067221,162.161461,164.228879,164.951093,165.544579,166.842829,167.751605,168.957123,171.034325,171.859082,172.415475,173.769365,174.972242,175.639913,175.973749,176.401449,177.747792,179.350333,179.475345,179.918444,180.678848,181.798035,182.161731,183.467727,184.388136,186.224233,187.133009,187.575830,188.989282,189.950906,190.915320,191.749910,192.973975,194.049669,194.486040,195.551930,196.683263,196.990577,198.478422,199.577774,199.875342,200.791401,201.811455,202.553313,203.925749,204.853071,205.817486,207.635037,208.506719,209.545320,211.889597,212.631852,213.633360,215.005796,215.721040,216.370166,217.130570,218.521552,219.319049,220.858404,221.804272,223.436358,223.934456,224.583581,225.129950,225.908900,226.168857,226.928955,229.037090,229.896384,230.452778,232.066318,233.535807,234.314757,234.467721,234.950341,236.007488,237.787946,238.063345,238.487898,239.229755,240.119984,242.122999,242.510346,243.112304,244.113812,245.312452,246.723064,247.038353,248.850215,249.894505,250.487990,252.131738,253.622339,254.660939,255.328611,256.107562,257.461451,257.856479,258.672522,259.198173,260.292413,261.572117,262.095233,263.801506,264.840106,266.305274,267.399514,267.753278,269.309797,270.977766,272.630991,272.928495,273.624994,274.923245,276.110217,277.167363,278.224510,279.596946,280.450083,281.119284,282.176431,282.881196,283.697240,284.847119,285.707423,287.517634,289.687739,290.212285,291.222884,293.077529,293.576466,294.380215,295.418815,296.624333,297.978223,299.665949,300.138067,300.879925,302.437826,304.115364,304.462527,305.225359,307.209828,309.120110,309.824875,311.716612,312.866491,313.849452,314.215140,315.346473,316.551992,317.627685,318.944482,321.336972,322.635223,323.581091,324.545506,325.069170,326.003205,326.896069,327.309202,328.608278,329.405775,330.500015,331.871924,333.170702,334.246396,335.306005,336.492978,337.475938,338.421807,339.386221,340.350636,341.889990,344.560678,345.209803,346.934622,347.699076,349.256976,350.110113,351.519642,352.484057,353.392832,354.208875,355.321662,356.082065,356.749738,358.270545,359.086589,360.514664,361.664544,362.777330,364.001395,365.262552,367.358300,368.415447,369.973347,370.974855,372.310198,374.109203,374.432535,375.203633,375.889851,377.039730,377.670309,379.506407,379.904496,380.502424,382.394161,384.100434,384.392826,386.511471,387.823134,388.674511 \ No newline at end of file diff --git a/data/torah/labels/Tzav-4.txt b/data/torah/labels/Tzav-4.txt deleted file mode 100644 index 58ecf3ebb..000000000 --- a/data/torah/labels/Tzav-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.142865,3.093970,3.335074,3.891467,5.078439,5.683577,6.138717,7.142354,7.494736,8.533337,9.590484,10.480713,11.871696,12.687740,13.391032,14.523836,16.309661,16.977357,18.757815,19.648044,20.593912,21.817977,22.634020,22.995541,24.275246,25.054196,25.320262,26.154851,27.119266,27.545127,28.120066,28.565181,29.752153,31.087497,32.070457,33.888009,34.558429,35.355925,36.153422,37.637137,38.787017,39.149977,39.796809,40.241924,41.465989,42.652904,43.302029,43.506040,44.674465,45.694520,46.918585,47.474977,47.884528,48.682025,50.091554,51.909105,53.040437,53.355727,54.301595,54.783803,55.562753,56.508621,57.176293,58.400358,59.383319,60.774302,61.143564,63.022763,64.215093,64.994043,66.199561,67.442173,68.291480,68.460406,69.670957,70.616826,71.284497,71.479158,72.711077,73.764044,75.453315,76.490371,77.715314,78.884593,79.336790,80.638512,82.041163,82.875753,83.018831,84.104590,85.324070,85.538349,86.749389,87.034749,87.957688,88.310070,89.749147,90.850933,91.070774,92.000812,92.217408,93.145625,94.105413,94.416808,96.030348,96.444460,96.815388,98.336197,98.804101,99.467529,100.605927,101.588889,102.548579,104.426494,105.019979,105.768358,105.935276,107.252073,108.401952,109.343543,109.510462,110.270866,111.476384,112.329520,112.570973,113.479399,113.865532,114.034215,114.505852,115.391553,116.503371,117.790970,118.879648,120.456096,120.679369,121.764396,122.580439,123.741767,124.563046,124.841446,126.443440,126.981287,127.249605,128.725124,129.281639,131.006458,131.488242,132.214050,133.901776,135.125840,136.053162,137.314320,138.130363,138.835128,139.910821,140.930876,141.709826,143.212087,144.436152,146.012599,146.402074,147.106839,148.720380,150.238472,151.564683,152.751656,153.586246,154.569207,155.811818,156.627861,157.814833,159.799302,160.633892,161.709586,162.265978 diff --git a/data/torah/labels/Tzav-5.txt b/data/torah/labels/Tzav-5.txt deleted file mode 100644 index 19d0927e5..000000000 --- a/data/torah/labels/Tzav-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.263753,4.047100,4.752698,5.867257,7.204726,8.263556,9.210930,9.435842,10.604127,10.967707,11.617866,11.875190,13.215399,15.680239,16.980557,17.946506,18.284023,19.370642,22.039109,22.459651,23.332722,24.298672,25.078862,26.546363,27.883833,28.064306,29.308895,30.040700,31.452473,32.567030,32.851090,33.885924,35.111938,36.638495,37.275462,38.408595,40.749166,41.122753,41.324313,43.107605,43.691618,43.914530,45.883582,47.053868,48.075546,49.301560,49.918748,50.383147,51.516282,51.962104,53.280998,54.628537,55.390151,56.801924,57.562914,58.343730,58.739400,59.522690,59.949734,60.989987,61.268627,62.513216,63.702078,64.630876,65.466794,66.674232,68.476101,68.996228,69.832146,70.147938,71.318223,74.123194,74.866232,75.479239,76.649525,78.878641,80.513326,82.278042,82.742441,83.522631,83.669522,84.115346,85.397087,87.217531,88.462121,89.781014,90.034074,91.571096,91.911015,92.846794,93.961352,94.964454,96.097588,97.026386,98.122368,99.404110,100.332907,100.574395,101.856137,102.361245,103.475802,103.903050,105.147639,105.891483,106.745978,107.024617,108.102022,108.975093,110.074488,112.165726,113.118975,113.409210,113.826208,115.275133,117.485673,118.693110,119.192030,119.823613,120.826715,121.535654,121.919910,123.250026,125.061086,125.731563,127.013304,127.552007 diff --git a/data/torah/labels/Tzav-6.txt b/data/torah/labels/Tzav-6.txt deleted file mode 100644 index 64934f152..000000000 --- a/data/torah/labels/Tzav-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.540083,2.789899,3.819654,5.212851,5.919545,7.252169,9.473208,11.128892,12.724002,13.149538,13.977380,14.219843,14.559363,16.006515,23.528180,24.849494,25.798483,27.151298,29.230998,29.582502,30.168048,30.713212,31.601628,32.836517,33.429416,33.893815,34.842804,36.135045,36.637788,37.155522,37.963172,39.538090,41.880277,42.269846,42.778361,44.494618,45.685903,46.614701,46.800435,47.789807,48.213823,48.940709,49.849316,51.080983,51.621619,52.252077,53.035008,54.165719,54.725077,55.242697,55.949391,57.059910,58.453108,60.028027,60.268903,61.820124,62.053370,63.103316,64.395557,66.455065,66.783269,67.631302,67.937620,69.837578,70.415431,70.652015,72.644164,73.227389,73.469683,75.307089,76.558947,77.447363,78.779986,79.297319,79.877493,80.907248,81.250499,82.441783,83.310008,83.748670,84.919764,86.355774,88.017451,90.108919,91.046139,92.883544,95.346878,96.396824,97.406388,98.214038,99.607236,100.576417,101.747510,102.979177,104.130079,105.180024,106.431883,106.691475,108.750983,109.570509,109.933952,111.347340,112.659772,112.935264,113.931823,114.868309,115.822388,117.134820,117.982853,118.669356,119.981788,121.536516,123.373921,124.444057,124.849460,126.242657,127.656046,128.504079,129.291538,130.179954,131.472195,132.415241,133.344039,133.586277,134.616031,135.519434,136.185745,137.119748,138.230268,139.153861,139.514756,141.183786,142.366303,143.436441,143.638353,145.394993,146.667043,147.555459,148.423683,149.493820,150.402427,152.239832,153.431117,154.319532,155.450243,157.428987,158.135682,159.407731,160.053852 diff --git a/data/torah/labels/Vaera-1.txt b/data/torah/labels/Vaera-1.txt deleted file mode 100644 index 1680f0351..000000000 --- a/data/torah/labels/Vaera-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.467699,3.557125,4.687163,4.996763,6.420920,7.365198,8.350695,8.725785,10.199824,12.498658,12.884681,14.752945,15.111157,15.786695,16.135463,17.293833,18.453506,19.645463,20.868381,22.246099,22.656708,23.554547,25.056103,26.572315,27.605329,27.857209,28.730601,29.756855,30.582301,31.349652,31.678679,32.159057,33.415939,34.903139,35.653319,36.894991,37.469546,37.930183,38.969907,41.227030,42.306237,44.148982,44.773813,45.810971,46.770729,48.272286,49.139164,50.129882,51.317371,52.385489,53.592927,53.802425,55.129879,57.482835,58.626965,59.428780,61.769399,62.496313,64.895708,66.733170,68.315698,69.538615,70.513853,71.597451,72.793839,73.698281,75.354637,76.530520,77.412878,78.465516,79.533634,80.973271,82.366469,83.974168,84.694703,85.408718,86.249723,87.326297,88.146736,89.524453,91.614249,92.635927,93.301565,94.199404,95.995081,97.434717,98.569781,99.679313,100.313992,101.954869,103.476292,104.312210,104.571226,105.689916,106.584869,107.412325,107.664076,108.611672,109.851260,110.996778,112.000646,113.009174,114.588131,115.962126,116.847679,118.426636,119.711473,120.170409,121.517167,122.755565,124.334521,125.306481,125.628927,126.379107,127.676483,128.589801,129.317359,129.595999,130.695077,132.433196,133.295246,134.611352,135.841911,136.917801,137.769199,138,138.558677,139.735155,140.818753,141.670151,142.026191,142.753749,143.326508,144.564905,145.648503,145.974555,146.455809,147.598979,149.520843,151.099800,152.229838,153.112196,154.025515,155.279392,156.006951,156.532798,157.662954,157.978819,158.904985,159.911183,160.948341,162.202218,163.254856,164.369414,165.004093,166.737849,168.582189,170.795825,171.251751,171.475489,171.903853,172.159865,174.272788,175.836265,176.141087,177.043501,178.328338,178.943831,179.922775,180.495534,181.714746,182.695425,183.469423,185.017421,186.286778 diff --git a/data/torah/labels/Vaera-2.txt b/data/torah/labels/Vaera-2.txt deleted file mode 100644 index b28e8fc0d..000000000 --- a/data/torah/labels/Vaera-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.911193,3.011435,3.955713,4.266185,5.689470,6.633573,8.351849,9.389007,11.215643,12.067042,13.320919,14.559317,15.875115,16.804142,17.572961,19.068989,20.147815,21.773212,22.812405,23.601883,24.700961,26.094159,27.270636,28.739485,28.997174,30.351150,31.441322,32.323680,33.670437,34.692115,35.295834,35.722346,36.689031,37.905022,39.050539,41.480895,42.440653,43.818370,45.174319,46.016526,47.146564,48.545751,50.247093,51.129451,52.445249,53.543744,55.277501,56.190819,57.166057,59.333253,61.159889,62.212527,63.543805,64.813162,66.190879,67.599557,68.776034,69.642913,70.525271,72.150668,73.856540,74.689383,75.834901,76.716027,77.536465,78.527183,79.858461,81.514818,82.505536,83.276273,84.886190,86.000748,87.796424,88.301442,89.251541,90.291025,92.133142,93.686841,94.429879,94.836722,95.878187,96.218221,97.348783,98.633621,99.495551,100.625589,102.053237,103.740554,104.721959,106.060511,107.212953,108.384545,109.112103,110.133781,111.790139,113.492935,114.607493,115.623637,116.079365,116.822404,118.293001,119.453999,121.156795,121.574755,123.060831,123.308511,125.026788,125.909146,127.023704,127.779251,129.218887,130.565645,131.835003,132.350903,133.341621,133.720240,134.803837,135.208004,136.204367,136.560406,137.953603,139.315841,140.244639,141.173437,142.380875,143.975311,145.074389,145.786468,147.334465,148.557383,148.779743,150.399499,151.263462,151.649995,152.326808,153.596165,154.577629,155.801652,156.698850,157.178729,157.565729,158.680287,160.429523,162.163279,162.828918,163.804157,165.445033,166.900150,168.324307,169.161327,169.826966,170.802204,171.731002,173.703882,174.025993,175.337309,177.458065,178.216584,179.129902,179.487569,180.894619,183.170174,184.563371,184.891881,185.843899,186.223274,187.354243,188.227522,188.478053,188.893219,189.986361,191.330674,191.817303,192.684181,194.108339,195.996895,196.910213,198.195051,199.866887,200.374697,201.827777,202.922955 diff --git a/data/torah/labels/Vaera-3.txt b/data/torah/labels/Vaera-3.txt deleted file mode 100644 index 8999c6009..000000000 --- a/data/torah/labels/Vaera-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.946349,3.860866,5.769957,6.266518,6.907722,7.954341,8.976855,10.307297,12.381613,12.928672,13.929609,14.688128,15.895566,17.371624,17.739975,18.331797,19.121276,19.724995,21.459868,23.178883,24.154121,24.928119,26.104597,27.002435,27.869314,28.813592,30.113909,32.466865,33.364703,34.154181,35.469979,36.491657,37.374015,37.575255,38.689813,40.516449,41.787397,42.862589,44.131947,45.231025,46.314623,46.889743,48.336961,49.884959,51.076916,51.897355,52.178539,52.988002,54.497989,55.643507,56.634225,58.073863,58.413224,59.431874,60.468757,60.716437,61.268667,62.166505,63.621623,64.760896,65.612294,65.907579,66.457832,67.631099,69.513247,69.791886,71.386323,71.919434,72.928666,73.516905,74.848182,75.2,76.225899,77.170177,78.284735,79.335285,79.521045,80.387923,82.183599,83.917356,84.195995,86.053592,86.444295,87.122429,87.586828,88.778785,89.862383,91.007901,92.278796,93.546616,94.927806,95.903044,96.044164,96.921517,98.190605,99.109209,99.332039,100.163917,100.377975,101.546694,102.592629,102.983719,103.374807,104.398005,106.344355,108.154595,109.160793,110.399191,111.529229,112.736667,114.439463,115.698656,115.996359,117.141877,118.704584,119.018365,120.076331,121.144449,123.194385,123.626359,124.307477,125.391075,126.366313,128.378709,128.791040 diff --git a/data/torah/labels/Vaera-4.txt b/data/torah/labels/Vaera-4.txt deleted file mode 100644 index 920d105b8..000000000 --- a/data/torah/labels/Vaera-4.txt +++ /dev/null @@ -1 +0,0 @@ -1.978185,3.304435,4.511873,4.768553,5.323409,5.532486,6.349705,7.619063,9.175241,9.907009,10.747750,11.547455,12.577573,13.212026,13.951254,15.112251,16.505449,16.726119,18.511311,19.850027,20.159627,21.785023,22.884101,23.408526,24.289474,24.970593,26.441190,27.341989,28.007627,28.967385,29.318957,30.316091,31.3,32.233659,33.487537,34.261535,35.577333,36.769290,38.503047,39.041015,40.778603,42.001520,43.564997,44.447355,45.376153,46.085897,47.649375,48.996132,49.358135,50.459033,51.987675,54.110605,55.421354,55.815383,57.102007,58.306420,60.024697,61.573027,62.749171,65.169774,65.928293,67.058330,68.424303,69.903921,70.981470,71.375499,72.234131,72.517378,74.048893,75.658811,76.448289,77.593807,78.429725,79.296603,80.519521,81.788879,82.287683,83.630995,84.892527,85.728445,85.938481,86.903449,88.131211,88.719449,89.834007,91.072405,91.769003,92.976441,93.936199,94.301540,96.087915,98.330283,99.508989,100.608066,101.908383,103.227498,104.247389,104.587949,105.300027,106.538425,108.891380,109.556083,110.193980,111.525258,112.330216,114.063973,116.238489,117.886977,120.070201,120.968039,122.221917,123.228115,124.271851,125.565590,126.563651,126.829018,127.792608,129.356085,130.749283,131.586321,131.895920,132.871158,133.165644,134.146695,135.058399,136.076632,137.256554,138.396797,139.511355,140.258162,141.028392,142.344190,143.202930,145.060527,147.243203,148.374759,148.916557,150.743194,151.250567,152.922403,153.789282,154.764520,155.644198,156.867115,158.970508,159.8,161.170547,162.247848,163.401321,164.486911,165.921381,166.958539,167.801185,168.559704,168.941849,170.815495,172.584604,174.192885,174.426086,176.207315,177.104325,177.265917,180.754671,181.739629,182.498147,183.665659,185.441032,185.776737,186.674575,188.594091,188.996313,191.290341,191.808995,193.047393,193.548543,195.474508,197.115385,197.512762,198.255800,199.261998,199.941459,201.049591,202.282563,203.021317,203.487719,204.224535,205.478412,206.747770,208.682465,209.823354,211.061751,211.711910,213.554027,215.473543,216.723869,218.460812,219.618774,220.945605,221.866771,222.076892,223.021170,223.949968,225.141926,226.550603,227.479401,228.810679,230.049077,232.587791,233.030436,233.586703,234.203081,234.945689,236.264479,238.355245,238.781439,239.625786,240.638841,242.078479,243.301396,244.1,245.004193,245.963951,246.830829,247.602859,247.964722,249.178974,250.049695,250.901093,251.414484,251.824606,253.279723,254.542590,255.802959,256.759046,257.827164,259.483521,260.762233,261.091113,262.143751,262.7,263.461927,264.607445,266.000643,266.427785,268.031678,269.610635,270.554913,271.746871,271.979071,273.109109,273.656613,274.151973,275.049811,275.5,276.319168,278.594724,278.787422,280.319535,281.248333,282.208091,282.820186,284.189527,285.148172,285.664038,286.607687,287.612862,289.007712,290.246109,291.825066,292.846744,293.945822,294.908676,295.388754,296.249330,296.530779,298.307929,300.110145,300.930583,301.162783,302.354741,303.299019,303.686018,304.800575,306.047780,307.567605,308.500289,309.475527,310.682964,311.534363,311.859442,312.602481,314.057597,314.7,315.480347,316.454175,317.692572,318.861757,320.267823,322.063500,322.621113,322.966893,324.075896,326.134732,327.626488,329.762724,332.131159,333.354077,334.422195,335.737993,337.614310,338.816500,339.8,340.677945,341.653183,342.685475,344.233472,346.122028,349.264462,350.962049,352.602926,353.578515,355.002672,356.024350,357.897426,359.213223,361.426859,361.951623,363.902099,364.970573,365.248593,366.821317,367.827515,368.063085,368.973033,370.273351,371.140229,372.425067,373.004527,374.096903,374.599147,376.007825,376.983063,377.282554,378.693244,378.927021,379.421567,380.620565,381.750603,382.690398,382.943702,383.964239,384.724873,385.666535,386.904933,388.065931,389.567488,390.728485,391.084525,391.517964,392.926641,394.037637,394.362495,395.568313,397.240149,398.383197,398.568149,399.873494,400.163167,400.558397,402.138533,403.228201,404.776199,405.968156,407.748353,409.172510,410.287068,410.561903,411.651513,413.228262,414.729819,415.813417,417.160175,418.893931,419.188051,420.085889,421.303027,423.086389,424.598173,425.414784,427.628420,428.731454,430.507695,432.705387,433.866385,435.414382,437.024299,438.510376,439.655894,441.265811,442.519688,444.191525,444.818282,445.614795,447.394992,448.927509,450.243307,451.667464,453.808571,455.018803,456.295975,456.840181,457.883771,458.982849 diff --git a/data/torah/labels/Vaera-5.txt b/data/torah/labels/Vaera-5.txt deleted file mode 100644 index 3fee39947..000000000 --- a/data/torah/labels/Vaera-5.txt +++ /dev/null @@ -1 +0,0 @@ -1.712970,3.008744,5.114020,6.259538,8.225494,9.926537,11.551933,12.124269,13.095694,14.709847,16.076707,17.678445,18.939073,19.736892,21.068169,22.244647,22.936003,23.165883,24.359771,24.794784,25.205133,26.434914,26.932204,27.281461,28.774321,29.842438,30.877956,31.248729,31.738149,32.938432,34.300669,36.049906,36.372809,37.367145,37.640851,38.744863,39.425202,40.833879,42.138983,43.160661,44.259739,45.327857,46.687707,48.005891,49.490749,51.199965,51.803684,52.732482,54.125679,55.333117,55.630747,56.705987,57.506857,58.329972,59.709247,60.992121,61.442257,63.083134,64.772624,66.815980,67.288865,69.199895,70.183619,70.385750,71.592296,72.847065,73.183129,74.286703,75.138101,75.637645,76.375767,77.599416,78.527483,79.564641,80.046141,81.888258,83.073043,84.234041,85.828477,86.456795,86.654983,87.398022,88.589980,89.720017,90.045875,90.945385,91.920623,93.112580,94.397418,95.651295,97.245732,97.764350,98.677668,100.241145,101.154463,102.010712,102.521365,102.954803,104.456361,105.694758,106.004357,107.985794,110.364223,111.235458,111.459585,112.815031,113.689600,114.989017,116.259275,117.479352,118.644983,120.688339,122.620494,123.781491,124.112477,125.081809,125.903309,126.923925,127.682444,128.954908,129.314419,130.252474,130.903744,131.735565,132.921868,134.230411,134.690624,136.093175,137.254173,138.956970,139.189169,140.799087,141.929124,142.935322,144.405919,145.535957,146.557635,147.672193,148.570031,149.792949,151.232586,152.827023,153.740341,154.731059,155.876577,156.681535,157.471014,159.328610,160.706327,161.124287,163.245043,164.375081,164.708387,166.410235,168.167673,169.003056,170.582013,172.857568,175.086684,176.572761,176.932765,178.127231,180.659032,181.504394,182.468785,182.747424,184.357341,185.146819,186.307817,187.018255,187.312375,188.674613,190.803375,191.417381,192.934418,193.432154,194.032806,195.844653,196.850851,197.624849,198.584607,199.621765,200.720843,201.215145,201.881841,202.934479,204.320006,205.527444,207.199281,207.799599,209.372625,210.657463 diff --git a/data/torah/labels/Vaera-6.txt b/data/torah/labels/Vaera-6.txt deleted file mode 100644 index c9ce8bed5..000000000 --- a/data/torah/labels/Vaera-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.855311,3.440473,4.353791,5.171649,5.883728,6.533887,8.019964,9.072602,9.877560,10.450319,11.766117,12.865195,13.824953,14.784711,15.868309,16.843547,18.004545,18.867342,19.734221,20.508219,21.839496,22.649158,23.732756,25.203353,26.286951,27.169309,27.918292,29.203129,30.904033,31.801871,32.232403,32.990922,34.492479,36.458435,38.114792,38.919457,40.297175,41.504612,43.114529,44.631566,45.406284,46.307845,47.437883,48.366681,49.278399,50.422415,51.583413,52.837290,53.858969,55.097366,56.103564,58.208840,58.761515,59.803277,61.304834,62.713511,63.313411,65.572735,66.950453,67.956651,68.978329,70.024827,71.424163,73.318795,74.510753,75.872991,77.111388,77.777027,79.030905,80.253822,81.739899,83.783255,84.789453,85.960217,88.303406,89.267837,90.366914,91.636272,93.168789,94.159507,94.6,95.382425,96.512462,97.644167,98.989257,100.315605,101.941001,102.875842,104.655222,105.574582,106.899818,109.011135,109.196373,110.326411,111.502889,113.205685,115.357401,116.487439,117.571037,118.824915,120.527711,121.120327,122.044748,122.877141,123.991699,125.293551,126.313694,126.570486,127.501897,128.728569,130.353967,132.309310,133.281903,134.244306,135.405304,136.597261,136.812251,138.160739,139.321736,140.389854,141.396052,142.479650,144.600406,145.714963,147.108161,148.330950,149.538516,150.140441,151.053759,152.354077,153.731794,154.521273,154.830872,155.914470,156.796828,157.756586,158.793744,159.676397,160.450396,160.775475,162.137713,163.221311,164.010789,164.242989,165.373026,166.253099,166.618577,167.748615,169.073622,170.720769,171.258682,171.908841,173.007919,174.206963,175.407314,176.296759,176.603779,177.411317,179.098634,180.971710,181.506162,182.318467,183.119900,184.393079,185.778633,186.521672,188.069669,189.927265,190.278865,191.857821,193.405819,194.891895,195.990973,197.368691,198.630897,199.727559,201.083883,202.569961,203.730958,204.876476,205.511155,206.703113,208.302875,209.463873,210.299791,211.414349,212.699186,213.922104,214.498685,215.840837,216.862515,218.441472,219.317561,220.290219,221.249977,222.271655,224.632057,225.638255,226.458693,227.526811,229.477287,231.222769,232.944801,233.904559,234.755957,236.520673,238.393750,240.112027,240.576425,241.381384,242.155383,243.502140,245.870575,246.907733,247.666252,248.994691,250.312938,251.022763,251.923243,252.1,252.774642,254.353599,256.195715,257.279313,258.811830,259.4,260.638467,262.023177,262.999657,263.320066,264.444715,266.013581,266.803059,267.747337,268.598735,269.310814,269.602158,270.796891,272.997301,275.130533,275.521125,276.207207,276.437513,278.443051,279.090663,280.127821,281.304298,282.620095,283.471494,285.019491,286.408182,287.940699,289.055257,290.100711,291.733292,293.4,294.581606,295.561809,295.835648,296.395246,297.852845,298.843563,299.223901,300.802857,301.497007,303.234356,304.577521,306.264837,307.921195,308.524913,308.973832,310.459909,312.905745,313.478503,314.113182,316.326818,317.720015,318.710733,319.763371,321.063689,322.642645,323.788163,325.351640,327.240197,328.261875,329.871791,332.255707,333.525065,335.692260,336.7,337.869323,339.778972,341.747089,342.507599,343.386431,344.276529,345.679001,346.109469,347.010279,348.202236,349.731782,350.221785,351.795419,353.098382,354.120060,354.371822,355.100426,356.271775,357.107694,357.943612,359.212970,361.504005,362.216084,363.129402,363.340408,364.630959,365.946757,366.746819,366.987183,368.160392,369.476190,370.652667,372.262584,373.144943,374.290460,375.696626,377.307098,377.789721,378.470839,379.568742,380.591595,381.765820,382.602391,382.896511,383.593109,385.264947,387.834621,388.964659,390.605536,391.518854,393.376451,393.980169,394.5,395.512687,395.930645,397.153563,398.812894,400.280517,401.797554,403.144311,404.645869,405.311507,406.162905,406.613461,407.825,408.623179,409.610501,411.355231,411.525510,412.732948,413.684379,415.371695,415.928974,416.904212,418.127130,419.566833,419.885315,421.139193,423.213509,424.329047,424.931785,426.913222,428.027779,429.343577,429.564478,430.736774,432.718211,433.832768,435.102126,436.091866 diff --git a/data/torah/labels/Vaera-7.txt b/data/torah/labels/Vaera-7.txt deleted file mode 100644 index c5c4e1cf8..000000000 --- a/data/torah/labels/Vaera-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.572735,4.103941,5.444409,6.665572,7.873009,9.374566,10.225964,11.309562,12.331240,13.476758,14.854476,15.597514,16.712072,17.996910,18.254243,18.801868,19.678400,20.978718,21.646714,22.250433,23.395951,23.760604,24.789148,26.856022,27.707420,28.558819,28.930338,30.215176,31.856052,32.089520,32.605242,33.301840,34.648598,35.088352,36.041795,38.058847,38.709737,39.746895,41.635451,42.659612,43.592111,44.826613,46.479680,47.999941,49.191899,50.770856,52.636296,52.848227,53.796622,54.755612,56.127870,57.199534,59.088091,59.614410,60.558688,60.986404,61.781606,61.993079,63.190283,64.583944,64.976018,66.233662,67.200823,67.679520,68.283238,69.382316,71.503072,71.981733,72.771211,73.173690,73.978649,75.402806,76.656684,78.297560,78.529760,80.201597,81.161355,81.379530,82.232554,82.400345,83.716142,84.598500,85.480859,86.015535,86.608944,88.081869,88.523096,89.513814,89.886832,91.713468,93.540104,93.953845,94.588524,95.641162,96.275840,97.932198,99.421396,100.303754,100.535954,102.687670,103.224388,105.427624,107.656740,108.709378,109.492267,110.969454,112.006818,112.703210,113.941815,116.031610,117.579608,118.725126,119.106401,119.586280,121.072358,122.496515,123.595592,125.902108,127.558465,128.363423,129.555381,130.907963,131.819269,135.097210,135.702216,136.289168,137.265693,137.666733,138.456212,139.710089,140.778207,141.605214,142.852523,144.063622,145.824677,146.559118,147.216106,149.090951,149.833989,150.119570,151.289106,153.239582,154.570860,155.116083,156.474896,157.279670,157.527349,158.131068,159.276586,160.545943,161.892701,162.457441,162.736080,163.020911,164.064674,165.708235,167.596791,168.479150,169.500828,170.243866,170.878545,171.698983,173.076700,173.633390,174.290091,175.497529,176.968126,178.701883,179.955760,181.178678,182.540915,183.454234,184.568791,185.698829,187.092026,188.345904,189.544160,190.548380,191.244978,192.777495,194.155212,194.402694,195.679582,197.978765,200.022121,200.845417,201.824995,203.412234,205.110542,206.223184,206.874874,207.865654,209.247557,210.346634,211.074193,212.126831,213.375878,213.693775,214.642170,215.374196,215.813092,216.666884,216.978716,218.202688,219.410125,221.329642,222.645439,223.636157,224.180373,224.936474,226.192769,227.384726,227.848226,228.792504,230.351605,232.391609,233.908646,236.726000,237.747678,238.660997,239.760074,240.828192,241.540271,243.026348,244.404066,245.580543,247.205940,247.719406,248.698474,249.627272,251.237189,252.537506,253.611107,254.947172,255.884074,257.126973,257.490926,258.435204,259.487842,260.668432,262.220420,263.133738,263.863302,264.128440,266.202756,267.177994,268.091313,268.398640,269.659634,271.063681,272.001478,273.251876,274.682414,274.873153,275.478531,276.866750,279.141887,280.705364,281.186866,281.837025,283.292142,285.134258,286.666776,287.765853,289.190010,290.174620,291.117716,291.68,293.276722,294.994999,295.830918,296.883556,297.750434,298.555392,298.880472,299.716390,301.156027,303.261303,304.190101,305.722618,306.775256 diff --git a/data/torah/labels/Vaera-H.txt b/data/torah/labels/Vaera-H.txt deleted file mode 100644 index d02e11eb3..000000000 --- a/data/torah/labels/Vaera-H.txt +++ /dev/null @@ -1 +0,0 @@ -1.883449,2.517873,5.266011,5.977470,8.345692,11.364286,12.029925,12.726523,15.853477,16.361219,17.757513,18.599199,20.445327,21.624961,23.600362,24.343401,25.396039,27.872833,29.420831,29.668443,31.371240,32.640597,33.940915,35.117393,37.331028,39.012163,41.789259,44.436139,45.752925,46.927603,48.863410,50.380447,51.928444,54.560039,56.262835,59.560069,61.077106,62.376835,63.447427,66.665375,69.776849,71.557045,72.501323,73.600401,75.808796,77.485874,79.111271,82.863553,84.056317,85.131437,87.733998,88.831150,89.260582,90.332707,91.456287,93.026592,93.7,96.664385,98.320960,99.609635,100.110236,101.205610,101.978815,104.203130,106.290920,107.495336,108.119848,109.274699,110.704717,112.563375,115.303329,115.772596,117.923692,119.232193,122.291874,123.421912,124.706749,126.488425,126.934505,128.500821,130.373898,131.658735,132.974533,133.764011,135.884767,137.333123,139.290361,140.188199,141.395637,142.349043,144.366507,146.907687,148.858163,151.545411,154.303984,154.829367,156.013457,159.513794,161.417830,163.043227,164.730543,166.294021,166.630657,167.899507,169.401309,171.473103,173.507687,175.854598,178.894716,180.829712,181.928790,182.174063,183.551954,185.083495,185.720148,186.649731,187.527021,189.001902,189.760420,190.813058,191.896656,193.940012,195.582360,197.423005,198.554537,199.700054,201.232571,203.167567,205.465975,205.816296,207.385491,208.764056,209.630934,210.381648,212.208285,214.003961,216.155677,217.394074,218.322873,218.926591,220.753228,222.517944,223.539622,225.257899,226.635616,228.264026,229.250359,229.632005,231.406411,233.210557,234.315843,235.817645,238.363465,239.152944,239.684607,241.242740,245.102597,245.725972,246.995329,248.496886,249.952003,252.335919,253.357597,254.379275,256.561951,257.939668,258.791066,259.797264,261.592941,263.295737,263.622934,264.890174,266.749888,268.235965,269.818845,269.947712,270.605881,272.525397,274.336553,276.070310,277.446810,278.091148,279.390601,281.139837,283.848832,284.885990,286.155281,286.764923,289.049496,291.851370,292.430137,293.133953,296.078079,298.107297,299.748174,301.033011,302.947709,304.423945,305.177071,305.894542,307.163900,308.404753,309.106991,309.911949,311.284344,312.662061,313.723017,314.848138,315.636204,316.379853,318.036209,319.135287,320.156965,321.063509,322.912262,324.644940,324.845275,326.889535,328.314785,330.654226,332.943296,334.460333,337.215767,339.011444,340.002077,340.993366,343.536021,345.146691,346.379909,347.933086,350.053842,351.886050,352.110668,353.178389,354.525147,356.367263,358.395139,361.320853,362.094851,363.132009,364.153687,366.026764,368.673839,370.020596,371.258994,373.147550,373.418416,374.806220,375.495166,376.553143,377.224965,378.312297,379.705495,381.522201,381.879065,383.177653,384.659629,386.231075,387.314673,388.785271,390.116548,390.860139,391.626271,393.979226,395.514239,396.317183,397.693180,399.659136,400.521254,401.914451,403.710128,405.025925,406,407.424572,408.113517,408.738029,410.877354,414.128147,415.937593,416.549383,418.417963,419.916973,420.355931,422.123,423.030619,424.335955,425.507414,427.411451,428.618888,430.074005,432.380521,435.275275,436.173113,437.287671,438.293869,439.903786,443.123620,444.501337,445.600415,446.714973,448.247490,449.485887,451.761443,452.814081,453.440189,454.485917,455.313724,457.148473,457.8,460.461186,462.705781,463.204381,466.663979,467.891571,468.359082,470.399327,471.622244,472.566522,472.958661,474.217598,474.836186,476.167463,477.334353,478.219462,478.962501,481.174621,484.735228,485,485.973625,486.469925,487.981640,489.227445,489.904740,491.079417,491.743580,492.376967,494.188123,497.919308,498.578515,499.695230,501.190561,502.519284,503.819601,505.770078,508.014673,508.479073,509.500751,509.988247,510.701079,512.862984,514.404946,516.733966,517.925923,519.102401,521.145757,522.446075,523.792832,524.737110,526.579227,528.405863,529.100291,530.750787,531.703097,533.362832,534.026639,534.562291,535.171506,537.369662,538.917659,540.500110,541.357575,542.3,543.375,545.134384,546.886888,549.351247,550.671382,551.646620,553.395857,554.897413,557.234889,558.297048,559.086526,559.829565,562.259920,564.194916,564.556099,564.947231 diff --git a/data/torah/labels/Vayechi-1.txt b/data/torah/labels/Vayechi-1.txt deleted file mode 100644 index cf16a6f12..000000000 --- a/data/torah/labels/Vayechi-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.274014,4.318912,5.479909,6.524807,7.360726,8.010884,9.287982,10.750839,11.168798,12.167256,13.119274,14.233832,15.627029,16.277188,17.670385,18.343764,19.667302,21.130159,22.105397,24.404172,26.261769,28.653424,30.116281,31.648798,32.879456,33.483175,33.980136,34.514195,35.347029,35.973968,37.181406,37.994104,38.365624,39.108662,40.269660,41.662857,42.870295,43.799093,44.983311,46.167528,46.724807,47.328526,48.419864,49.627302,51.345578,51.553016,52.737234,54.176871,55.384308,56.916825,58.704762,61.259997,62.622766,63.502041,64.941678,68.192472,69.701769,70.280726,71.766803,72.322540,73.573333,74.618231,74.964989,75.242086,76.542404,78.307120,79.653878,80.721995,81.766893,82.997551,84.065669,84.901587,85.621406,86.759184,88.895420,89.429478,90.242177,90.961995,91.821134,92.285533,93.144671,93.655510,94.770068,96.349025,97.463583,99.971338,101.643175,102.734512,103.732971,104.428027,105.635465,107.191202,108.305760,109.489977,109.791837,110.906395,113.414150,114.133968,114.386304,115.407982,116.239274,117.702132,118.582948,119.024127,119.813605,120.695964,121.671202,122.600000,123.737778,125.038095,126.199093,127.383311,128.335329,129.798186,131.144943,132.143401,133.118639,135.556735,136.067574,137.600091,138.946848,140.200726,141.129524,142.058322,143.288980,147.050612,147.816871,149.419048,150.254966,151.671383,152.832381,154.527438,155.038277,155.897415,157.476372,158.823129,159.310748,160.169887,161.586304,162.886621,164.024399,164.953197,165.487256,166.299955,169.666848,170.549206,171.244263,172.405261,173.426939,174.866576,175.888254,177.049252,178.535329,179.974966,181.600363,183.875918,185.338776,186.987392,189.170068,189.843447,191.213424,192.188662,192.978141,194.115918,195.184036,195.693333,196.413152,197.411610,198.781587,200.499864,201.057143,202.078821,203.123719,203.959637,204.376054,205.722812,206.953469,207.789388,208.041723,208.806440,209.804898,210.896236,211.289433,212.334331,213.448889,214.191927,214.445805,215.374603,216.512381,217.185760,218.068118,218.507755,218.806531,219.758549,220.965986,223.520181,224.332880,224.774059,225.818957 diff --git a/data/torah/labels/Vayechi-2.txt b/data/torah/labels/Vayechi-2.txt deleted file mode 100644 index 303d5c8a3..000000000 --- a/data/torah/labels/Vayechi-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.622313,4.945850,5.897868,7.082086,7.848345,8.637823,9.705941,11.075918,11.749297,12.654875,13.583673,14.187392,15.255510,16.300408,17.322086,18.366984,18.596100,19.617778,20.382494,21.264853,22.077551,23.470748,24.817506,25.723084,27.069841,28.161179,28.602358,28.925896,30.249433,31.828390,33.128707,33.964626,34.846984,35.891882,37.006440,37.842358,38.887256,40.280454,42.300590,42.484807,44.365624,44.876463,45.735601,46.780499,48.057596,49.125714,49.659773,50.518912,51.587029,52.771247,53.955465,55.093243,56.347120,58.639304,59.545306,59.822404,61.354921,62.585578,62.791474,63.302313,64.231111,65.438549,66.622766,67.133605,68.085624,68.480363,69.084082,70.036100,71.359637,71.638277,72.427755,73.263673,74.053152,75.567285,76.681843,76.819621,77.701979,79.071956,82.787149,84.714405,85.736083,86.804201,87.825879,89.242296,90.519394,91.819711,92.934269,93.746967,94.954405,95.349144,95.929643,96.835221,99.760936,100.527194,101.827512,102.593770,104.126287,106.680482,107.121661,109.302795,110.649553,111.485471,112.483929,113.366287,114.504065,116.129462,117.220800,118.544337,119.891094,121.098532 diff --git a/data/torah/labels/Vayechi-3.txt b/data/torah/labels/Vayechi-3.txt deleted file mode 100644 index 7735d26d0..000000000 --- a/data/torah/labels/Vayechi-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.993832,5.851429,6.501587,7.267846,8.846803,9.054240,10.772517,11.260136,11.701315,12.792653,14.023311,15.579048,17.018685,17.390204,18.667302,20.199819,21.639456,22.637914,22.961451,23.867029,24.238549,24.456137,26.111655,27.946032,29.246349,29.826848,30.685986,31.103946,31.754104,32.799002,33.333061,34.145760,35.237098,36.003356,36.908934,37.138050,38.554467,40.110204,41.573061,42.943039,44.011156,44.754195,45.799093,46.356372,46.820771,47.470930,48.144308,48.678367,49.235646,50.512744,52.277460,53.368798,54.367256,55.458594,56.503492,57.618050,58.407528,58.895147,60.218685,63.074739,64.305397,66.348753,68.577868,70.365805,71.642902,72.757460,73.802358,75.311655,76.310113,77.494331,79.444807,81.511383,81.694059,82.599637,83.319456,84.547029,85.568707,86.474286,86.635283,87.564082,88.655420,89.468118,90.071837,91.627574,92.277732,93.322630,94.506848,95.551746,95.946485,96.384580,97.963537,99.774694,101.585850,102.862948,103.745306,104.488345,104.835102,105.903220,106.924898,107.714376,108.619955,109.943492,111.777868 diff --git a/data/torah/labels/Vayechi-4.txt b/data/torah/labels/Vayechi-4.txt deleted file mode 100644 index 0198b0fdf..000000000 --- a/data/torah/labels/Vayechi-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.274014,4.318912,4.620771,5.665669,7.755465,9.264762,10.634739,11.192018,12.817415,13.490794,14.094512,14.930431,15.812789,17.066667,18.645624,19.620862,20.247800,21.524898,22.801995,23.103855,23.846893,25.077551,26.470748,27.538866,28.676644,29.812880,30.811338,31.786576,32.576054,33.365533,34.108571,34.990930,35.989388,36.918186,37.125624,38.054422,38.656599,39.399637,40.351655,41.466213,42.186032,43.091610,43.950748,45.088526,47.062222,47.805261,48.780499,49.593197,50.220136,52.356372,53.424490,53.817687,54.583946,55.814603,57.022041,57.370340,58.206259,59.367256,60.272834,61.108753,62.525170,63.105669,64.568526,65.172245,66.286803,67.401361,68.144399,68.655238,69.607256,71.116553,71.557732,72.765170,74.320907,75.435465,76.805442,78.755918,80.590295,81.751293,82.819410,83.724989,84.885986,85.861224,87.207982,88.392200,89.042358,89.924717,91.387574,92.177052,92.966531,94.127528,95.265306,96.078005,97.262222,98.446440,99.584218,101.047075,102.533152,103.252971,104.762268,105.827302,106.384580,107.104399,108.149297,109.472834,110.424853,111.446531,112.305669,112.746848,113.629206,114.627664,115.556463,116.392381,117.483719,118.830476,119.619955,120.479093,122.243810,123.265488,124.333605,125.448163,126.400181,127.445079,128.373878,129.093696,130.533333,131.996190,132.808889,133.923447,134.805805,135.664943,137.313560,140.069887,140.860045,141.672744,142.880181,144.087619,145.062857,146.154195,147.918912,148.267211,149.103129,151.634104,152.493243,153.561361,154.490159,154.977778,156.719274,157.531973,158.367891,159.227029,159.900408,160.620227,161.502585,162.059864,163.429841,164.335420,165.194558,166.146576,167.145034,167.748753,168.863311,170.047528,171.021224,171.973243,173.018141,173.737959,175.131156,175.733333,176.406712,177.521270,177.939229,178.888163,180.233379,180.883537,181.673016,183.205533,184.041451,184.688526,185.847982,186.939320,188.123537,190.352653,191.467211 diff --git a/data/torah/labels/Vayechi-5.txt b/data/torah/labels/Vayechi-5.txt deleted file mode 100644 index e99533fd3..000000000 --- a/data/torah/labels/Vayechi-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.111474,4.086712,5.340590,6.362268,7.035646,8.173424,9.427302,10.472200,11.493878,12.306576,13.026395,13.769433,14.930431,16.300408,17.066667,18.274104,19.435102,19.922721,20.897959,21.873197,22.709116,23.661134,24.404172,25.007891,25.565170,26.284989,28.633277,29.644172,29.898050,31.035828,32.684444,33.938322,35.401179,36.283537,37.630295,38.744853,39.580771,40.532789,42.088526,43.035918,44.104036,45.334694,46.286712,47.401270,48.260408,49.049887,49.816145,51.279002,52.184580,53.717098,55.876553,56.991111,57.803810,59.777506,60.799184,61.588662,62.378141,63.237279,64.026757,65.257415,66.209433,67.022132,67.718730,69.158367,70.969524,72.432381,73.477279,73.963356,74.938594,75.890612,76.447891,77.562449,78.560907,79.582585,80.785397,81.690975,82.782313,84.663129,85.940227 diff --git a/data/torah/labels/Vayechi-6.txt b/data/torah/labels/Vayechi-6.txt deleted file mode 100644 index 2b8bb6cfe..000000000 --- a/data/torah/labels/Vayechi-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.413333,4.342132,5.433469,6.803447,7.801905,8.521723,9.798821,10.704399,12.027937,12.421134,13.767891,14.696689,15.927347,16.647166,17.529524,20.537350,21.257649,21.954248,22.743727,23.714339,25.037876,26.036334,27.499191,28.567309,29.751527,30.308806,31.446584,33.071981,34.534838,35.579736,36.392434,37.530212,38.621550,39.037967,39.757786,40.756244,41.336742,41.777922,42.892479,43.472978,44.819736,46.003953,46.839872,47.559690,48.627808,51.065903,52.134021,53.434339,55.199055,56.081414,56.406493,56.821368,57.819826,58.725405,59.932842,62.092298,62.669713,64.225450,64.643409,66.570665,68.055200,68.878679,69.881867,70.694566,71.878783,74.104815,75.962411,76.380371,78.261187,78.934566,80.303001,81.417559,82.392797,83.530575,83.761232,84.736470,85.595609,86.570847,87.499645,88.544543,89.450121,89.680779,91.166856,92.606493,93.999690,95.300008,95.577105,96.250484,96.993522,97.433160,98.338738,100.358874,101.218012,102.516788,102.865087,103.747445,105.024543,105.790801,106.021459,107.205677,108.552434,109.574112,110.105087,111.312525,112.450303,113.239781,113.611300,114.261459,115.097377,116.140733,116.837332,117.673250,118.578829,119.995246,120.715064,120.945722,121.874520,122.292479,124.219736,125.380733,125.729033,126.727491,127.911708,128.817287,129.119146,130.698103,132.043318,132.739917,133.877695,134.574293,136.130030,136.803409,137.616108,138.475246,139.914883,141.122321,142.538738,143.630076,144.442774,145.464452,147.786448,148.645586,149.783364,151.385541,152.221459,152.732298,153.150257,153.846856,155.054293,155.588352,156.238511,156.958330,157.376289,159.210665,159.953704,161.788080,162.809758,163.483137,164.528035,166.408851,167.778829,169.241686,170.588443,172.724679,174.441217,176.388806,177.387264,178.269622,178.662820,179.498738,180.450756,181.518874,182.912071,185.001867,186.040597,187.317695,188.474067,188.658284,189.401323,191.049940,193.000416,194.068534,195.833250,196.715609,196.923046,197.921504,198.641323,200.057740,201.056198,201.938557,202.865813,203.073250,204.025269,205.186266,206.602683,207.183182,207.856561,208.646039,209.598058,210.735835,211.618194,212.314792,212.825631,214.033069,215.612026,216.215745,217.098103,218.421640,219.095019,220.186357,221.660287,223.059464,224.174021,225.358239,226.403137,227.146176,228.376833,229.886130,230.791708,231.418647,232.022366,232.626085,233.903182,234.785541,235.714339,236.434157,237.618375,239.963591,240.520869,241.287128,242.889305,244.119962,245.118420,246.232978,247.719055,248.369214,250.319690,251.132389,252.177287,253.059645,256.078239,257.471436,258.191255,259.073613,260.281051,264.065903,266.039600,266.596878,268.408035,268.825994,270.428171,271.542729,272.494747,274.189804,275.443681,276.070620,276.600053,277.877151,278.411210,279.850847,280.733205,281.429804,282.590801,283.798239,284.796697,285.679055,287.095473,288.279690,288.906629,289.603228,290.671346,291.553704,292.691482,294.154339,294.711618,295.338557,296.917513,297.683772,299.285949,300.168307,301.561504,302.420643,303.720960,304.835518,306.437695,307.575473,307.900552,309.293749,310.454747,311.824724,313.403681,314.355699,315.330937,315.677695,316.211754,317.349532,318.882049,319.625087,320.577105,321.575563,322.597241,323.293840,324.036878,324.617377,325.499736,325.800053,326.728851,327.820189,328.563228,328.793885,329.745903,331.998239,332.414656,333.227355,333.831074,334.574112,335.735110,337.964225,338.519962,339.611300,340.586538,341.863636,342.583454,343.233613,343.837332,344.533931,345.973568,346.670166,347.598965,348.713522,351.323348,351.866810,352.679509,353.701187,355.117604,355.953522,356.975200,357.764679,358.856017,359.713613,360.712071,362.244588,366.006221,367.143999,369.489214,370.743092,371.671890,372.809668,373.366947,374.272525,375.456742,376.803500,377.546538,378.336017,379.404135,380.193613,381.029532,382.329849,383.326765,384.093024,385.184361,386.206039,387.901096,387.992434,388.851572,390.082230,391.359327,393.542003,394.470801,394.981640,396.328398,398.394974,399.764951,401.065269,401.483228,402.412026,403.828443,404.687581,405.825359,406.754157,410.074611,411.189169,411.862547,412.907445,414.022003,415.345541,416.506538,418.201595,419.501913,420.268171,421.611844,423.144361,423.607219 diff --git a/data/torah/labels/Vayechi-7.txt b/data/torah/labels/Vayechi-7.txt deleted file mode 100644 index 254c8389b..000000000 --- a/data/torah/labels/Vayechi-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.457546,3.731559,4.869337,6.796593,7.702172,8.514870,9.002489,10.395686,11.928203,13.178997,14.293555,14.547432,15.894190,16.892648,17.542807,18.657364,19.446843,20.166662,21.095460,22.326117,23.487115,24.346253,25.019632,26.273510,27.248748,27.945346,29.083124,30.035142,31.497999,33.146616,34.028974,34.748793,35.002671,36.047569,37.092466,37.440766,38.067705,39.159042,40.227160,40.946979,41.200857,42.013555,43.058453,43.801491,46.216367,47.911423,48.933101,50.256639,51.324757,52.160675,52.787614,53.553872,54.505891,55.016730,57.013646,58.104983,59.730380,60.844938,61.773736,63.306253,66.139088,66.998226,67.532285,68.136004,69.088022,70.179360,71.363578,72.036956,72.779995,73.871333,75.241310,75.402308,76.191786,77.213464,78.908521,79.744439,80.371378,80.848203,81.684122,82.868340,84.586616,85.468974,86.767750,87.998408 diff --git a/data/torah/labels/Vayechi-H.txt b/data/torah/labels/Vayechi-H.txt deleted file mode 100644 index 0b8fb2012..000000000 --- a/data/torah/labels/Vayechi-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.086712,4.687347,5.825125,8.356100,10.863855,11.374694,12.373152,13.092971,14.904127,16.795378,18.079093,19.518730,19.888707,21.862404,24.207619,24.973878,26.274195,29.362449,29.850068,32.009524,33.542041,36.328435,37.837732,39.184490,40.624127,41.878005,42.969342,45.221678,46.916735,48.333152,49.145850,50.887347,52.257324,54.672200,55.898052,56.405986,57.868844,58.960181,61.258957,61.793016,62.536054,63.488073,65.159909,68.364263,69.618141,71.522177,72.009796,74.610431,75.794649,76.816327,79.416961,81.669297,82.435556,83.550113,85.639909,86.057868,89.030023,90.307120,91.491338,92.698776,93.372154,94.324172,95.183311,97.296327,100.640000,101.197279,102.311837,103.031655,103.867574,105.257687,105.861406,107.997642,109.460499,110.296417,114.197370,116.263946,116.937324,117.980680,119.559637,120.720635,121.092154,124.017868,126.177324,127.129342,128.151020,129.242358,130.542676,133.723810,134.954467,135.511746,137.021043,138.692880,139.203719,139.900317,142.895692,144.590748,145.031927,146.192925,148.607800,151.254875,152.369433,155.713107,157.779683,159.428299,160.775057,162.400454,163.097052,164.374150,166.022766,169.111020,169.923719,171.502676,173.360272,174.776689,175.937687,178.515102,179.467120,180.720998,181.649796,182.508934,184.273651,185.248889,187.245805,187.872744,188.569342,190.357279,191.355737,194.536871,195.581769,196.696327,197.973424,200.197914,203.262948,204.493605,204.888345,205.910023,206.374422,209.323356,211.854331,212.992109,214.153107,215.615964,216.939501,218.007619,219.168617,220.956553,221.629932,222.303311,223.208889,224.602086,227.551020,227.968980,228.781678,229.803356,230.360635,231.382313,233.936508,236.026304,236.444263,237.698141,239.538831,240.247710,241.130068,243.103764,244.724535,245.583673,246.977925,247.577046,248.412965,250.406797,250.595641,252.473373,253.495051,254.865028,256.327885,257.047704,257.372783,259.137500,260.832557,261.320176,262.597273,265.871287,266.846525,267.566343,268.262942,268.704121,269.679359,271.188656,273.092693,274.416230,275.252148,276.784665,277.806343,280.592738,281.684076,282.891514,283.773872,285.677908,289.578860,292.759994,293.363713,294.199631,295.198089,296.939586,298.077364,299.377681 diff --git a/data/torah/labels/Vayera-2.txt b/data/torah/labels/Vayera-2.txt deleted file mode 100644 index 6ae064059..000000000 --- a/data/torah/labels/Vayera-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.321995,4.040272,5.387029,6.315828,7.221406,7.685805,8.405624,9.613061,10.031020,10.565079,11.331338,13.235374,13.699773,14.512472,15.836009,16.207528,16.509388,16.927347,18.227664,19.156463,19.713741,21.060499,22.662676,23.127075,24.566712,24.915011,25.820590,26.633288,27.144127,27.515646,29.466122,31.114739,32.554376,33.250975,33.738594,34.551293,35.874830,36.083810,36.826848,37.268027,38.034286,40.054422,42.074558,43.978594,44.512653,46.045170,46.648889,47.113288,47.531247,47.995646,48.785125,49.830023,50.480181,51.130340,51.873379,52.639637,53.452336,54.659773,56.378050,56.935329,57.213968,57.957007,58.514286,58.932245,59.419864,60.093243,62.415238,63.320816,65.108753,65.898231,66.455510,66.780590,67.314649,69.032925,69.474104,70.054603,70.704762,73.026757,73.467937,74.094875,75.534512,77.067029,77.461769,78.065488,78.460227,79.133605,79.481905,80.875102,82.291519,82.709478,83.545397,84.172336,84.822494,85.960272,86.656871,86.981950,87.608889,88.259048,89.257506,89.884444,90.743583,91.742041,92.531519,93.065578,93.390658,94.087256,95.132154,96.316372,97.268390,97.918549,98.452608,98.986667,99.915465,100.565624,100.937143,101.749841,102.353560,103.584218,104.652336,105.465034,105.952653,106.951111,109.760726,111.153923,112.477460,113.475918,114.636916,115.821134,116.610612,117.075011,117.609070,118.305669,119.164807,120.093605,121.533243,121.974422,122.671020,122.996100,123.506939,124.017778,124.621497,125.480635,127.013152,127.779410,128.197370,128.731429,129.335147,131.123084,131.773243,132.237642,132.632381,133.561179,134.118458,134.629297,135.581315,137.462132,138.089070,138.785669,139.668027,140.039546,140.805805,141.479184,141.711383,142.338322,142.988481,143.638639,144.404898,146.146395,147.771791,148.886349,149.675828,150.674286,152.021043,152.647982,152.973061,153.367800,153.623220,154.877098,155.364717,155.921995,156.339955,156.990113,157.617052,158.661950,159.613968,161.773424,162.841542,163.909660,164.536599,165.581497,166.835374,168.089252,168.623311,169.853968,171.247166,171.711565,172.431383,173.151202,174.103220,176.053696,176.866395,177.864853,179.025850,179.884989,181.022766,182.206984,183.414422,183.878821,184.691519,185.898957,186.386576,187.013515,187.408254,188.151293,188.453152,189.289070,191.657506,192.655964,193.073923,193.677642,194.234921,194.513560,195.094059,196.533696,197.555374,197.950113,198.600272,199.761270,200.364989,200.852608,201.758186,202.756644,204.660680,205.380499,206.564717,207.586395,208.445533,209.443991,209.745850,210.326349,211.487347,212.555465,212.996644,213.693243,214.831020,215.457959,215.945578,216.595737,217.478095,218.824853,219.567891,220.403810,221.216508,221.889887,222.214966,222.725805,224.165442,225.256780 diff --git a/data/torah/labels/Vayera-3.txt b/data/torah/labels/Vayera-3.txt deleted file mode 100644 index b37e180d0..000000000 --- a/data/torah/labels/Vayera-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.965986,6.823583,8.007800,8.588299,9.540317,10.515556,10.910295,11.490794,11.862313,12.860771,13.557370,14.416508,15.229206,16.459864,16.877823,17.644082,19.873197,20.588384,20.836373,22.572297,23.502256,24.597541,25.155517,25.486169,26.932772,27.924728,28.606699,29.474660,30.983261,31.727228,32.595190,34.331114,34.744429,35.591725,36.418356,37.203655,38.815584,39.166902,39.972866,40.923491,41.543464,42.225434,42.514755,43.052065,44.312676,45.180638,45.945271,46.937227,47.433206,48.404496,52.151523,54.259431,55.458045,55.995355,56.697990,57.255966,58.123928,58.371917,58.847229,60.004512,60.355830,60.851808,61.492447,62.112420,63.125042,64.654308,64.984960,65.501604,66.266237,66.803547,68.374145,69.862079,70.523384,71.060693,71.660000,72.527962,73.809239,74.449878,75.235177,75.979144,79.864307,81.310910,82.096209,83.088166,84.245448,84.886087,85.816046,86.890665,87.593301,87.944619,88.626589,89.742540,91.519795,91.788450,93.069727,93.689700,95.012309,96.024931,96.458912,97.078885,97.636860,98.690814,99.042132,99.765434,100.757390,101.914673,102.555311,103.319944,104.063912,105.779170,106.853789,107.301550,107.632202,108.355504,108.934145,109.822773,109.988099,110.339417,110.711400,111.104050,111.992677,114.038587,114.534566,116.229158,117.303778,118.109742,118.585055,119.143030,119.845666,120.589633,122.077568,123.028193,123.524171,124.061481,125.280761,126.148723,126.851358,127.615992,128.897269,129.641236,130.509198,133.381739,134.311698,134.642350,135.406983,137.163573,137.556222,138.610176,139.726127,140.635420,141.338056,141.854700,142.825991,143.735284,145.078558,145.615868,146.256507,147.703110,148.901724,150.306996,151.112960,151.402281,151.960256,153.076207,153.737512,154.419482,155.948748,157.168028,157.849998,159.151941,159.813245,160.350555,160.949862,161.590500,162.458462,163.161098,164.070392,164.752362,165.186343,165.661655,166.322959,167.438910,167.728231,168.451533,169.546818,170.125459,171.055418,171.406736,171.902714,172.336695,173.142660,173.907293,174.733924,175.023244,175.415894,176.056532,177.172483,177.689127,179.342388,181.367632,182.338923,183.144888,183.392877,184.384833,185.438787,187.443366,188.786640,189.385947,189.943923,190.191912,190.584561,191.039208,191.803841,192.299819,192.692469,193.043787,193.539765,194.511056,195.585675,196.143651,197.052944,198.272224,199.140186,199.698161,200.772781,201.413419,201.826734,202.384710,203.066680,205.195253,205.567237,206.435199,206.869180,207.323826,208.150457,209.101082,209.803718,210.692345,211.456978,211.952957,218.421339,219.495959,220.694573,221.603866,222.037847,223.381122,224.517739,225.220374,225.923010,226.770306,227.328282,227.968920,229.105537,229.808173,230.428146,231.254776,233.837996,235.077942,236.255890,238.012480,239.169762,239.851732,240.203050,241.009015,241.773648,242.434952,243.199585,243.612900,244.253539,244.625523,245.390156,246.733430,247.580726,247.911378,248.944666,250.411935,250.866582,251.341895,251.899870,252.292519,253.222479,255.103063,256.549666,257.231636,257.892940,260.021514,261.736772,263.038714,264.526649,265.601269,266.386568,267.192532,268.163823,268.742464,269.011119,271.015698,271.780331,272.503632,273.164937,273.805575,274.404882,275.252178,276.161472,276.843442,278.021390,279.054678,279.777980,281.265914,282.712518,283.518482,284.035126,284.469107,285.068414,286.101702,287.072993,288.684922,289.532218,290.710167,291.516131,292.880071 diff --git a/data/torah/labels/Vayera-4.txt b/data/torah/labels/Vayera-4.txt deleted file mode 100644 index 05d3ef043..000000000 --- a/data/torah/labels/Vayera-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.656858,3.817856,4.444795,5.118174,5.884432,6.859670,7.556269,8.252868,9.367425,10.992822,11.364341,11.875180,12.293140,12.943298,14.638355,15.660033,16.170872,16.937131,17.308650,17.819489,18.399988,18.957267,19.677085,20.118264,20.861303,21.534682,22.068741,23.647697,24.158536,24.576496,25.389194,26.828831,27.362890,27.827289,28.245248,28.941847,29.475906,30.311824,32.819580,34.839716,35.466654,36.511552,37.138491,37.811870,38.554908,38.996087,39.855226,40.366065,40.760804,41.550283,42.989920,43.407879,44.127697,44.661756,45.335135,46.031734,46.658673,47.633911,48.121530,48.748468,49.491507,50.513185,51.465203,53.113820,53.740759,54.507017,55.621575,56.294954,57.014772,59.058128,59.917267,60.567425,61.356904,62.192822,62.703661,63.330600,63.748559,64.236178,64.770237,65.443616,66.883253,68.717629,69.135589,69.762527,70.668106,71.364704,71.759444,72.200623,72.665022,73.222301,74.220759,76.217675,76.821394,77.448332,78.307471,79.491688,80.536586,82.719262,83.996360,84.646518,85.064478,85.528877,86.179035,87.223933,87.757992,88.106292,88.733230,90.219307,90.614047,91.008786,91.496405,92.193004,93.168242,93.586201,94.306019,94.840078,95.234818,95.699217,96.465475,99.089330,100.180668,101.597085,102.595543,104.197720,105.219398,105.823117,106.589375,107.216314,107.703933,108.261212,108.725611,110.188468,111.279806,112.046065,112.789103,113.392822,115.529058,117.340214,117.920713,118.547652,119.406790,119.731870,120.776768,121.450146,122.193185,122.959444,123.609602,124.468741,124.979580,125.536858,126.837176,128.555453,129.321711,130.018310,130.691688,132.270645,132.688605,134.058582,134.708741,135.451779,140.351190,140.769149,141.814047,142.858945,143.601983,144.136042,145.761439,147.317176,148.153094,148.571053,149.058673,149.778491,150.242890,150.800169,151.728967,153.493684,154.376042,155.420940,156.303298,156.860577,157.510736,158.369874,159.136133,159.670192,160.088151,160.506110,162.642346,164.058763,164.499942,165.916360,167.054137,167.959716,168.633094,169.631552,170.212051,170.955090,173.486065,174.368423,175.715180,177.410237,178.060396,178.756995,179.383933,180.823570,181.636269,182.727607,183.354546,184.004704,184.515543,185.188922,186.117720,189.113094,190.065112,190.506292,190.901031,191.853049,193.780305,194.593004,195.219942,196.288060,196.775679,197.472278,198.284976,198.749375,199.236995,199.678174,200.281892,201.744750,202.162709,202.534228,203.137947,203.509466,204.624024,205.204523,205.552822,206.063661,206.829920,207.874818,208.385657,208.803616,209.360895,210.359353,214.562165,215.862482,216.768060,217.789738,218.323797,219.229375,219.647335,220.111734,220.552913,220.994092,221.853230,222.735589,224.686065,226.056042,226.566881,226.938400,227.402800,227.936858,228.470917,230.885793,232.023570,232.673729,233.184568,234.833185,235.344024,236.040623,238.014319,239.430736,239.918355,240.452414,241.125793,241.892051,243.006609,244.446246,245.491144,245.955543,246.234183,246.861122,247.232641,247.952459,248.672278,249.461756,250.019035,251.992731,252.758990,253.432369,254.221847,255.313185,257.194001,258.076360,258.494319,259.074818,260.050056,261.629013,262.232731,262.697131,263.045430,263.695589,264.299307,264.949466,265.344205,265.715725,266.342663,266.783843,267.155362,268.037720,268.618219,270.406156,271.149194,271.683253,272.286972,274.353548,275.584205,277.070283,278.742119,279.670917,280.274636,280.924795,281.691053,282.155453,282.805611,283.502210,284.013049,285.243707,286.427924,287.449602,288.703480,289.330419,289.701938,290.421756,290.700396,291.629194,292.186473,292.674092,293.626110,296.946564,298.130781,298.548741,299.152459,299.686518,300.359897,301.195815,301.962074,302.542573,303.123072,304.214409,304.771688,305.328967,305.955906,306.652505,307.024024,307.604523,308.254682,308.695861,309.137040,309.554999,310.855317,312.364614,314.268650,315.406428,315.963707,316.474546,317.287244,318.564341,318.912641,319.284160,319.818219,320.421938,322.070555,322.581394,323.208332,324.531870,325.971507,327.852323,328.920441,329.965339,330.801258,331.683616,332.264115,332.774954,333.657312,334.052051,334.864750,335.979307,337.442165,338.185203,338.579942,339.671280,341.064478,341.598536,342.202255,342.596995,343.641892,344.361711,346.312187,346.869466,347.380305,347.891144,348.936042,349.655861,350.213140,350.793639,351.234818,351.606337,352.047516,353.696133,354.485611,355.251870,355.855589,356.784387,357.364886,357.898945,358.409784,359.013502,359.477902,360.754999,361.126518,361.567697,362.055317,363.959353,364.3,366.513548,367.883525,368.301484,368.626564,369.230283,370.089421,370.646700,370.925339,371.366518,372.550736,372.945475,373.781394,376.149829,378.216405,379.609602,381.072459,383.580214,384.671552,386.064750,387.388287,387.899126,388.572505,389.338763,389.872822,390.615861,391.242800,392.264478,392.798536,393.355815,393.750555,394.377493,394.888332,395.677811,396.026110,396.560169,397.163888,398.394546,399.834183,400.693321,402.597357,403.688695,404.687153,405.499852,406.335770,407.403888,407.937947,408.425566,408.936405,409.609784,412.442618,413.232097,413.928695,414.416314,414.973593,416.111371,416.575770,417.318809,419.780124,421.219761,421.986019,423.263117,423.959716,424.540214,425.492233,426.397811,427.117629,427.489149,428.023208,428.464387,429.509285,430.205883,430.693502,431.552641,431.877720,433.410237,435.035634,435.500033,436.057312,436.452051,437.543389,439.122346,439.795725,441.003162,441.490781,442.535679,443.859217,445.298854,446.390192,447.040351,447.527970,448.085248,449.083707,449.432006,449.826745,450.384024,450.941303,451.684341,452.032641,452.543480,453.031099,454.238536,457.930509,458.952187,459.323707,459.648786,460.020305,460.368605,462.249421,463.503298,464.362437,465.082255,465.848514,468.100849,469.122527,470.538945,471.885702,472.698400,473.464659,474.625657,476.042074,476.552913,477.017312,477.783570,479.687607,480.709285,481.127244,481.405883,482.288242,483.008060,483.658219,484.308378,484.772777,485.167516,485.631915,486.421394,487.559171,488.232550,488.743389,489.231008,489.788287,490.554546,491.088605,491.599444,493.039081,493.735679,494.571598 diff --git a/data/torah/labels/Vayera-5.txt b/data/torah/labels/Vayera-5.txt deleted file mode 100644 index b906b0fef..000000000 --- a/data/torah/labels/Vayera-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.021678,1.346757,1.648617,2.321995,2.948934,3.738413,4.295692,4.852971,5.619229,6.826667,7.476825,8.196644,9.055782,9.404082,10.007800,10.727619,11.517098,12.144036,12.770975,15.000091,15.696689,16.741587,17.623946,18.761723,19.156463,19.713741,20.456780,21.130159,21.478458,22.593016,23.614694,24.473832,25.216871,26.540408,27.469206,28.281905,28.746304,29.489342,30.162721,30.394921,31.114739,32.415057,33.692154,34.388753,34.713832,35.735510,37.407347,38.127166,38.591565,39.218503,40.054422,41.633379,42.422857,43.955374,44.768073,45.232472,45.650431,46.021950,46.695329,47.043628,47.670567,48.065306,48.785125,49.342404,49.922902,50.271202,50.689161,51.385760,53.429116,54.891973,55.727891,56.192290,56.679909,57.446168,58.003447,58.514286,60.046803,61.231020,61.625760,63.042177,63.738776,64.296054,64.992653,65.689252,66.223311,66.594830,67.198549,67.964807,69.799184,70.356463,71.633560,72.423039,73.119637,73.793016,74.884354,75.580952,76.532971,76.950930,77.670748,79.737324,80.132063,80.433923,80.875102,81.269841,82.012880,82.639819,83.313197,83.963356,86.889070,88.491247,94.481995,95.248254,96.873651,98.336508,99.288526,100.078005,100.449524,101.749841,103.584218,104.025397,105.325714,106.022313,106.556372,107.322630,108.715828,109.714286,110.526984,110.921723,111.711202,112.732880,113.220499,113.499138,114.218957,115.403175,115.821134,116.471293,117.121451,117.725170,118.561088,121.045624,122.624580,123.785578,125.573515,126.595193,127.895510,128.684989,129.288707,130.078186,130.472925,131.030204,131.796463,132.376961,133.537959,134.257778,135.047256,135.325896,135.743855,136.394014,137.856871,140.811650,141.067069,141.508249,142.437047,144.735822,145.455641,146.361219,146.546979,147.011378,147.382897,148.056276,148.590335,149.054734,149.356593,149.751332,150.122852,150.935550,151.794688,152.444847,153.048566,155.184802,155.672421,155.997500,156.415459,156.903078,157.367478,157.785437,158.946435,159.712693,159.944893,160.455732,161.407750,161.918589,162.174008,162.591967,163.474326,163.776185,164.240584,165.239042,166.516140,167.305618,167.630698,168.327296,169.209654,169.720493,170.208113,172.019269,173.528566,173.853645,174.480584,175.200403,176.477500,176.825800,177.383078,179.588974,180.842852,181.469791,181.957410,182.700448,183.815006,184.650924,185.393963,185.928022,186.740720,188.180357,188.830516,189.318135,190.339813,190.688113,191.756230,193.102988,193.846026 diff --git a/data/torah/labels/Vayera-6.txt b/data/torah/labels/Vayera-6.txt deleted file mode 100644 index abd712b7a..000000000 --- a/data/torah/labels/Vayera-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.990748,4.640907,5.267846,6.730703,8.123900,9.354558,9.679637,10.561995,11.188934,11.653333,12.280272,13.510930,14.161088,14.834467,15.298866,15.740045,16.413424,18.596100,19.896417,20.384036,21.034195,21.707574,22.357732,23.007891,23.449070,24.470748,25.376327,27.396463,28.162721,28.975420,29.857778,30.763356,31.552834,32.319093,32.783492,33.178231,33.874830,34.432109,35.639546,36.475465,37.334603,38.495601,39.819138,40.353197,40.678277,41.467755,42.117914,42.628753,43.023492,43.580771,44.207710,44.741769,45.159728,46.158186,48.433741,49.269660,49.896599,50.593197,51.173696,51.707755,51.986395,52.381134,52.799093,53.658231,54.842449,55.631927,56.212426,57.814603,58.580862,60.809977,61.669116,62.342494,63.015873,63.828571,65.453968,66.220227,66.893605,67.636644,68.751202,69.656780,70.771338,71.235737,72.118095,74.347211,75.833288,76.576327,77.644444,78.759002,79.339501,80.546939,81.824036,82.590295,82.961814,83.519093,84.424671,85.910748,86.909206,88.093424,88.929342,89.695601,90.624399,91.692517,93.085714,94.641451,95.082630,95.639909,96.499048,97.195646,98.008345,98.867483,99.633741,100.051701,100.678639,101.491338,102.234376,102.582676,103.070295,103.906213,104.695692,105.879909,107.319546,108.039365,108.619864,109.037823,109.525442,110.361361,111.592018,112.427937,113.356735,114.378413,114.982132,115.818050,116.421769,118.441905,120.090522,121.065760,121.506939,122.389297,123.201995,123.527075,123.991474,124.804172,126.290249,126.940408,127.428027,127.869206,128.705125,129.633923,130.260862,130.655601,131.143220,131.932698,133.999274,135.601451,136.367710,137.435828,138.178866 diff --git a/data/torah/labels/Vayera-7.txt b/data/torah/labels/Vayera-7.txt deleted file mode 100644 index 5c31dd186..000000000 --- a/data/torah/labels/Vayera-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.482993,4.667211,5.479909,6.222948,7.848345,8.405624,8.637823,9.264762,10.681179,11.377778,11.888617,12.306576,13.514014,18.738503,20.085261,20.921179,21.710658,22.267937,22.593016,23.475374,23.846893,24.636372,25.077551,25.681270,27.585306,28.281905,28.653424,29.280363,30.093061,31.486259,31.997098,32.879456,33.645714,34.551293,35.201451,35.944490,36.594649,37.360907,38.707664,40.449161,42.446077,43.699955,44.048254,45.023492,46.764989,47.368707,47.972426,48.738685,49.342404,49.876463,50.456961,50.851701,52.152018,52.871837,53.452336,54.288254,54.961633,55.449252,55.960091,56.424490,57.121088,57.469388,58.119546,59.675283,61.811519,62.809977,64.179955,64.597914,65.549932,66.432290,66.757370,67.175329,68.080907,69.288345,70.797642,71.145941,72.632018,74.025215,74.675374,75.000454,75.395193,75.998912,76.509751,77.508209,78.320907,78.645986,79.203265,80.410703,81.293061,82.337959,84.218776,86.192472,87.655329,88.212608,89.768345,90.790023,91.370522,91.951020,92.531519,93.390658,94.040816,94.690975,95.108934,95.480454,96.177052,97.221950,98.011429,98.940227,102.005261,103.421678,104.025397,104.791655,105.139955,105.882993,106.626032,107.508390,108.181769,108.692608,110.364444,111.432562,111.989841,112.988299,113.708118,114.218957,115.124535,117.028571,117.771610,119.675646,120.465125,120.813424,122.020862,122.856780,123.506939,124.296417,124.993016,125.945034,128.568889,129.195828,131.448163,131.982222,132.284082,132.887800,134.606077,135.743855,136.277914,137.020952,137.462132,138.158730,139.319728,139.737687,140.480726,141.711383,142.222222,142.686621,143.151020,144.451338,144.892517,145.310476,146.007075,146.796553,147.702132,150.024127,150.929705,151.417324,151.974603,152.764082,153.112381,153.832200,154.784218,155.155737,155.736236,156.920454,158.429751,159.172789,159.846168,160.287347,161.030385,162.098503,162.841542,163.491701,164.374059,165.511837,167.949932,168.785850,169.644989,170.504127,170.852426,171.525805,172.222404,172.733243,173.104762,173.778141,174.474739,175.380317,176.866395,177.609433,178.143492,178.747211,179.443810,180.210068,181.580045,182.137324,182.648163,183.042902,183.600181,184.598639,186.711655,188.290612,188.708571,190.055329,191.030567,191.843265,192.516644,193.468662,194.467120,195.303039,196.278277,197.462494,198.553832,199.296871,199.645170,200.225669,201.200907,201.897506,202.431565,203.197823,205.543039,206.959456,207.748934,208.120454,208.584853,208.979592,209.583311,210.442449,211.255147,211.789206,212.416145,212.973424,213.902222,216.595737,217.315556,217.803175,218.314014,218.917732,219.614331,220.101950,221.007528,222.214966,222.981224,223.840363,224.188662,224.653061,225.396100,227.578776,228.228934,228.855873,229.436372,229.923991,230.318730,231.108209,231.781587,232.106667,232.524626,232.872925,233.406984,235.752200,236.239819,238.050975,238.910113,239.629932,239.931791,240.558730,241.301769,242.044807,243.368345,244.134603,244.529342,245.040181,245.597460,246.944218,247.919456,248.639274,249.428753,250.148571,251.448889,252.725986,253.515465,253.956644,254.467483,255.303401,256.232200,256.859138,257.880816,259.134694,259.877732,260.318912,261.317370,263.918005,264.823583,265.357642,265.752381,266.216780,266.727619,267.377778,267.981497,268.538776,269.351474,272.671927,273.856145,274.575964,275.179683,276.201361,276.921179,277.501678,279.127075,280.009433,280.729252,281.170431,281.495510,282.586848,283.306667,284.235465,284.676644,285.024943,285.489342,285.860862,286.209161,286.696780,287.207619,287.648798,288.229297,288.902676,289.738594,290.156553,290.597732,291.015692,291.851610,292.269569,292.687528,293.407347,294.080726,295.032744,297.610159,298.283537,298.655057,299.096236,300.048254,300.512653,301.162812,301.882630,302.718549,303.484807,304.297506,305.969342,306.619501,307.478639,308.778957,309.173696,309.521995,309.893515,310.265034,310.682993,311.100952,311.913651,312.447710,313.399728 diff --git a/data/torah/labels/Vayera-h.txt b/data/torah/labels/Vayera-h.txt deleted file mode 100644 index d995d2d9d..000000000 --- a/data/torah/labels/Vayera-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.370590,1.023536,1.482362,1.747069,3.547080,4.800029,5.082384,6.688276,8.276521,9.723588,10.217709,10.747124,11.753012,12.529488,13.482434,14.258910,15.229504,16.005979,16.288334,17.735401,19.588354,20.206005,23.382494,23.894262,24.282500,25.376624,25.976628,27.053105,28.076640,28.906057,29.188412,30.211947,30.970776,31.394307,32.629609,32.964905,33.741380,34.464914,34.747269,36.017865,37.729640,38.647293,39.476709,39.900241,40.659069,41.453192,42.035548,42.512022,43.164967,45.953219,46.853224,47.312051,47.753230,48.335586,48.600294,49.129709,49.884209,50.237152,50.854803,52.672461,53.166582,53.413642,54.525413,56.696015,57.825433,58.372495,59.519561,60.225448,60.737216,61.690162,62.801934,63.172524,63.701939,64.760769,65.890188,67.072548,68.413733,69.278444,70.196096,70.954924,71.837283,72.843171,74.007884,76.072602,76.884372,77.572611,78.066732,78.860855,80.572630,81.419694,83.237352,84.349123,84.596183,85.002068,85.990309,86.413841,86.907962,87.596201,88.584443,89.272682,89.696214,90.260923,91.602108,92.890351,93.666826,94.743304,96.913905,97.460967,98.096265,99.313919,101.325696,101.996289,102.225702,102.808058,104.590422,104.943365,106.337491,107.166908,107.996325,108.843389,109.531628,110.572811,111.896348,113.555182,114.543423,115.072838,115.866961,117.102262,117.878738,118.708154,119.837573,120.172869,120.984639,122.237587,123.155240,123.914068,124.796426,126.719967,127.214088,128.061152,129.067040,131.255289,131.537644,132.331766,133.390596,133.920011,134.837664,137.608269,139.214161,140.078872,140.696523,141.825941,142.814182,143.449480,144.296544,145.937731,146.396557,147.067149,147.367151,147.931860,149.025985,149.325986,150.596582,151.320116,152.008356,152.502476,153.914250,155.467200,156.437794,157.108386,157.655449,158.378982,159.420165,159.949580,160.584878,161.908416,162.879010,163.267247,163.831957,164.467255,165.208435,167.396684,167.855510,169.302578,170.061406,170.996706,171.949653,173.220249,174.384962,175.055554,175.937912,176.820270,178.214396,179.608523,180.490881,180.879118,182.661482,183.808548,186.049738,186.543859,186.773272,187.355628,188.414458,189.261522,190.090939,190.390941,191.361535,192.173304,192.455659,192.808602,193.408606,194.008610,194.255670,194.767438,196.214505,197.626279,198.967463,199.390995,199.867469,200.732180,202.161600,203.485138,204.102788,204.579262,206.291037,208.408697,210.279296,210.949889,211.267538,211.620481,212.238132,212.996960,215.273444,215.785212,216.755806,217.814636,218.308757,219.138173,220.338181,225.208798,226.108804,226.532336,227.344105,228.102933,228.861762,229.373529,229.902944,232.991198,233.538260,234.226500,234.844151,235.850039,236.308865,236.891222,238.355937,240.138300,240.650068,241.214777,242.344196,243.367732,243.897147,244.620680,245.255978,245.997159,246.350103,246.738340,247.726582,249.350121,250.903071,251.997196,252.456022,253.056025,253.356027,253.850148,254.414857,255.350157,256.744283,257.026638,257.697230,258.244292,259.479594,260.626660,260.997250,261.597254,262.867850,263.273734,263.979621,266.097281,266.944345,267.191405,268.391412,269.909069,270.667897,272.026728,272.732615,273.720856,274.514979,276.067929,277.285584,277.762057,278.203236,278.573827,279.967953,281.132666,281.644434,282.932677,284.238567,286.303285,287.732706,289.479775,290.538605,290.997431,291.809201,292.479793,292.779795,293.397446,294.685689,296.468053,298.444535,299.009245,299.344541,299.979839,301.162199,303.279859,304.532807,305.079869,305.873992,306.615173,307.303412,307.832827,308.326948,308.768127,309.915193,310.956376,311.979911,323.079978,324.138808,325.285874,325.532934,326.274115,327.138826,328.374128,329.274133,329.803548,330.491788,331.250616,332.027091,332.697684,333.456512,334.127104,336.191822,338.291835,338.856544,339.227135,339.862433,340.127140,340.638908,341.821268,343.109511,344.380107,344.838933,345.721292,346.250707,347.327184,348.597780,348.897782,349.974259,350.750734,351.933094,352.691922,353.644869,356.944889,357.633128,357.986072,359.468434,360.915501,361.197856,363.103750,364.127285,365.380234,366.068474,366.739066,368.274369,369.809673,371.097916,372.386159,373.674402,374.292053,375.139117,375.527354,376.003828,377.415601,379.109729,380.150912,382.021511,384.703880,386.803893,387.509780,388.268608,388.833317,389.221555,389.750970,390.368621,390.827447,391.198037,392.592163,393.598052,394.180408,395.098061,395.680417,396.774542,399.068673,400.621624,400.939273,401.415746,402.633401,403.833408,404.786355,405.686360,406.409894,407.045192,408.192258,410.151093,411.139334,412.692285,413.804056,414.915828,417.068782,418.851146,419.609974,420.580568,420.880570,421.868811,422.945288,423.933529,424.674710,425.186478,425.751187,427.057078,428.362968,429.104149,429.368856,429.739447,430.692394,432.810764,432.905185,433.996523,434.507362,434.902102,435.412941,435.877340,436.434619,437.015117,439.313893,439.847952,440.799970,442.425367,443.702464,445.536841,446.628179,447.046138,447.742736,448.300015,448.926954,449.484233,450.273712,450.854210,451.550809,453.060106,454.592623,455.289222,455.916161,456.310900,457.077158,457.913077,458.540015,459.399154,460.560151,461.163870,462.696387,463.857385,464.646863,465.250582,465.970401,466.318700,467.317158,468.362056,469.824913,470.405412,470.962691,472.889947,474.306365,474.654664,475.328043,477.185639,478.416297,478.671716,479.763054,481.620650,482.386909,482.851308,483.872986,484.732124,485.010764,485.451943,485.846682,486.311081,487.030900,488.215117,489.585095,490.746092,491.442691,492.255390,494.321966,495.111444,496.295662,497.363780,497.758519,498.455117,498.919517,499.523235,500.126954,501.311172,502.402510,503.447408,503.749267,504.329766,505.003145,506.187362,506.907181,507.209040,508.114619,510.111535,510.436614,511.922691,512.874709,513.571308,513.803507,514.825185,515.336024,516.288043,517.077521,517.402600,519.306637,519.956795,520.606954,521.791172,522.627090,522.998609,523.555888,524.507907,526.086863,527.549721,527.898020,528.315979 diff --git a/data/torah/labels/Vayeshev-1.txt b/data/torah/labels/Vayeshev-1.txt deleted file mode 100644 index 0b8418514..000000000 --- a/data/torah/labels/Vayeshev-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.820463,4.879293,6.216762,7.275592,8.139374,9.337524,10.591401,12.569741,13.628571,15.523320,16.777197,18.783401,19.396408,20.232327,21.012517,22.071347,23.241633,23.631728,24.328327,25.275701,26.613170,28.201415,29.037333,29.566748,31.154993,31.963048,32.492463,33.467701,34.860898,36.086912,37.452245,39.319129,40.294367,41.381061,42.579211,43.470857,44.780463,47.427537,48.904327,49.378014,50.046748,51.161306,51.830041,52.888871,53.223238,54.031293,54.950803,55.814585,57.068463,57.848653,59.018939,60.244952,62.028245,64.090177,65.065415,66.625796,67.963265,69.245007,70.554612,71.279075,73.229551,74.344109,75.597986,76.740408,78.077878,79.610395,81.867374,82.870476,83.873578,85.211048,87.245116,89.418503,90.365878,91.452571,92.678585,94.183238,95.632163,97.499048,99.003701,100.369034,101.483592,102.542422,103.935619,107.864435,109.396952,111.208109,112.239075,113.409361,114.579646,116.195755,118.341279,120.068844,121.852136,123.050286,124.471347,126.143184,128.873850,131.660245,133.777905,135.756245,136.452844,137.260898,138.904871,140.186612,141.356898,142.415728,143.084463,144.282612,145.369306,148.072109,148.629388,149.994721,150.858503,152.000925,153.338395,154.230041,155.511782,157.350803,158.186721,158.939048,159.970014,161.558259,162.477769,163.648054,166.072218,167.158912,168.412789,169.220844,169.945306,171.199184,173.400435,175.434503,177.301388,178.193034,179.319894,180.963867,182.162017,183.694534,184.084629,184.753364,186.118697,187.149663,188.710044,189.434507,190.214697,191.970126,192.750316,193.502643,195.285935,196.539813,197.877282,198.824656,200.580085,202.363377,203.756575,205.094044,206.542969,208.214806,209.134316,210.165282,211.669935,212.171486,212.979541,214.400602,215.515160,215.849527 diff --git a/data/torah/labels/Vayeshev-2.txt b/data/torah/labels/Vayeshev-2.txt deleted file mode 100644 index ab9e1be1f..000000000 --- a/data/torah/labels/Vayeshev-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.940974,4.912033,6.597105,7.568163,8.053693,9.224675,10.995429,12.394895,14.222770,14.879663,16.650416,18.164125,19.135184,20.420408,21.477148,22.962297,24.533127,25.618427,26.932212,27.703347,28.760087,30.159554,31.958868,32.787124,33.244093,34.443635,35.043407,35.871663,36.557116,37.642416,38.499233,39.298928,40.669834,42.154982,44.182781,45.667929,46.867472,48.466863,49.809208,51.551401,52.208294,53.579200,54.892985,56.349573,58.920022,60.547973,61.976000,62.889937,64.003799,67.116898,68.173638,68.973333,70.058634,71.172495,72.771886,73.371657,74.314155,75.513698,76.427635,77.541497,79.140887,80.111946,81.597094,82.539592,84.024740,85.081480,86.281023,87.937535,89.165638,90.450863,91.307679,92.650024,93.649644,95.620321,97.505317,98.819102,99.990084,101.303869,102.874699,104.131363,105.016740,107.101660,107.815673,109.557867,111.242939,111.956952,112.328239,112.928011,115.155733,116.840805,118.240272,119.582618,120.753600,123.209807,124.352229,127.094041,128.807673,130.435624,131.635167,134.634024,135.747886,136.833186,138.432577,140.945905,141.745600,142.688098,144.515973,146.315287,147.429148,149.285584,150.970656,153.541105,155.226177,156.140114,157.625263,159.053290,160.624120,162.223510,162.823282,163.651537,164.251309,165.450852,167.392969,168.249785,169.078041,169.677812,170.934476,172.276822,173.733410,174.475984,175.332800,175.904011,178.017491,179.502639,180.388016,181.701801,183.729600,184.672098 diff --git a/data/torah/labels/Vayeshev-3.txt b/data/torah/labels/Vayeshev-3.txt deleted file mode 100644 index 37323c0c2..000000000 --- a/data/torah/labels/Vayeshev-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.090315,6.451701,6.916564,7.779882,8.510382,9.406904,11.399176,11.963654,12.461722,13.125812,14.387585,15.084880,15.881789,16.944334,17.840856,18.770583,20.563628,22.489491,23.386014,24.880218,26.573649,27.237740,28.001444,28.765148,29.694875,32.782897,34.077874,34.974396,36.202964,37.165896,38.759713,40.021486,41.283258,42.677849,44.736530,46.463166,48.090188,50.115664,51.543459,52.705618,54.332640,55.494799,56.656958,57.785912,59.014480,60.243048,60.774320,61.438411,62.368138,63.762728,64.725660,65.987432,66.651523,67.348818,69.407499,69.905567,70.503249,73.059998,74.919452,77.409792,78.970405,79.534883,80.099360,80.597428,81.427541,81.958814,82.855336,84.050699,85.179654,86.541039,88.699334,90.791220,92.418242,94.875378,96.900854,98.262240,98.693899,98.926331,99.822854,100.453740,101.881535,103.110102,104.371875,105.965693,107.725533,108.356419,109.584987,110.149464,110.581123,111.942509,113.469917,114.200417,115.229758,115.993462,116.889985,117.620484,118.417393,119.679166,121.173370,121.638233,122.202710,124.095369,124.726255,125.489959,126.950959,128.544776,129.507708,130.769480,131.832025,132.894571,133.857502,135.584138,136.082206,137.011933,137.642819,139.303046,140.764045,141.760181,143.221181,143.719249,144.516158,145.844339,147.869816,149.729270,150.492974,152.452042,154.012655,154.444314,155.374041,156.934654,157.797972,158.926926,160.155494,160.487539,162.944675,164.970151,166.198719,167.028833,167.593310,170.282877,171.279013,172.540785,173.536922,174.865103,175.695216,177.587875,179.048874,180.111420,181.672033,183.431873,184.195577,185.988622,187.848076,188.711394,190.105985,191.832620,192.629529,193.326824,194.123733,195.153074,198.008664,198.838777,199.735300,200.432595,201.495140,204.184707,205.878139,207.637979,210.460365,211.556114,213.083523,213.648000,214.876568,216.370772,218.163817,219.491998,220.620952,222.115156,224.207042,225.601633,226.431746,227.195450,228.191586,230.117449,231.179995,232.142926,233.537517 diff --git a/data/torah/labels/Vayeshev-4.txt b/data/torah/labels/Vayeshev-4.txt deleted file mode 100644 index 832558145..000000000 --- a/data/torah/labels/Vayeshev-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.569687,4.935020,6.077442,7.470639,8.919565,9.978395,11.176544,13.489252,14.325170,14.798857,16.414966,17.640980,18.922721,20.538830,21.012517,23.520272,24.579102,25.080653,26.334531,27.281905,28.786558,30.486259,31.628680,32.603918,34.164299,35.055946,35.641088,36.950694,37.563701,38.343891,39.346993,40.768054,41.576109,42.802122,43.387265,44.669007,45.142694,45.978612,47.232490,48.820735,49.517333,50.687619,51.634993,52.944599,53.669061,54.365660,55.508082,57.040599,58.600980,60.412136,61.582422,63.198531,65.678422,67.155211,68.632000,69.830150,71.251211,72.616544,75.068571,76.461769,77.715646,78.969524,80.502041,82.341061,82.954068,85.127456,86.910748,88.889088,89.808599,91.201796,92.232762,93.625959,94.238966,95.130612,96.802449,97.749823,98.975837,99.978939,101.316408,103.573388,104.158531,105.746776,106.749878,107.557932,108.672490,109.452680,111.988299,112.768490,113.270041,114.217415,114.830422,115.638476,116.975946,118.034776,119.511565,120.598259,121.183401,122.715918,124.415619,125.836680,126.839782,128.149388,128.957442,130.573551,131.353741,132.189660,133.582857,135.672653,136.731483,138.264000,139.545741,141.746993,142.360000,143.753197,144.728435,145.313578,146.149497,147.208327,148.601524,149.521034,150.440544,150.969959,151.555102,152.084517,152.948299,154.425088,155.428190,156.542748,157.544346,158.658903,160.052101,161.027339,162.281216,162.699176,163.618686,164.315284,165.179067,166.432944,168.494876,169.553706,170.306033,171.002631,171.950006,172.897380,175.683774,177.188427,178.971720,180.838604,182.398985,183.485679,184.488781,185.854114,187.581679,188.696237,190.312346,191.315448,192.318550,194.826305,195.940863,198.086386,200.510550,202.321706,203.714903,205.498196,206.863529,208.312455,209.231965,211.182441,211.823312,212.464182,213.216509,214.637570,215.612808,216.448727,217.173189,218.120563,220.990550,221.937924,222.634523,223.358985,224.696455,226.563339,227.984400,229.879148,231.049434,232.136128,233.083502,234.253788,235.786305,237.346686,238.099012,239.659393,241.275502,242.417924,242.835883,243.643938,244.535584,245.761597,246.736835,247.600618,248.575856,249.857597,250.888563,252.086713,252.978359,253.396318,253.786414,254.510876,255.458250,256.795720,259.359203,261.393271,262.730740,263.455203,263.984618,264.597625,265.210631,268.052754,268.888672,269.445951,270.560509,271.145652,272.678169,274.990876,276.384074,278.195230,279.031148,279.672019,280.145706,282.430550,283.656563,285.105489,287.195284,287.808291,289.006441,289.842359,290.817597,292.656618,293.492536,294.830006,296.000291,297.226305,298.201543,299.483284,300.932210,302.408999,303.997244,304.805298,306.170631,307.535965,308.817706,309.960128,310.489543,312.300699,313.693897,315.031366,316.452427,318.235720,319.712509,320.604155,321.607257,322.805407,324.198604,326.204808,327.040727,327.737325,328.545380,329.520618,330.941679,333.616618,334.898359,336.180101,336.960291,337.851938,339.105815,340.777652,341.418523,342.310169,343.703366,345.403067,346.043938,346.684808,347.938686,348.802468,349.917026,351.003720,351.895366,353.065652,354.040890,354.960400,355.461951,356.381461,357.941842,359.446495,360.282414,361.592019,362.065706,362.734441,363.876863,364.601325,366.273162,367.527040,368.808781,369.728291,370.954305,372.040999,373.211284,375.356808,376.582822,378.338250,380.037951,381.236101,381.904835,383.548808,384.524046,385.666468,387.700536,388.787230,389.846060,391.099938,392.716046,393.802740,395.307393,397.034958,398.929706,400.629407,402.022604,403.304346,403.589435,404.592537,405.567775,406.487285,407.769026,408.382033,409.134360,410.304645,411.586387,412.979584,414.066278,414.456373,415.626659,418.078686,420.725761,422.091094,423.289244,425.434768,427.719611,429.029217,430.673190,431.787747,432.456482,432.846577,433.236673,433.821816,434.824918,435.911611,436.942577,437.889952,438.419367,439.255285,441.122169,443.267693,444.326523,445.301761,446.221271,447.307965,448.896210,450.289407,451.821924,452.964346,453.465897,455.082006,457.951992,459.428781,460.320428,461.100618,462.075856,462.967503,464.332836,465.530986,466.366904,468.958251,470.184264,472.357652,473.667258,475.199775,476.258605,479.156455,480.661108,481.441298,482.918088,483.670414,485.063611,486.122441,487.041952,488.574469,489.605435,490.524945,491.778822,492.698333,493.450659,494.788128,496.655013,498.048210 diff --git a/data/torah/labels/Vayeshev-5.txt b/data/torah/labels/Vayeshev-5.txt deleted file mode 100644 index eb7b5f50f..000000000 --- a/data/torah/labels/Vayeshev-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.482482,5.396038,6.424218,9.423075,11.565116,13.078824,13.907080,15.734955,16.734574,17.848435,18.819494,19.961916,21.561306,22.560925,23.646226,24.874329,26.559401,27.387657,27.787505,28.472958,30.386514,31.186210,32.014465,33.071205,35.470291,36.384229,37.755135,39.211722,40.297023,41.268082,42.039216,43.210199,44.409741,45.409361,45.952011,46.694585,47.808446,49.122231,50.378895,51.749801,52.720860,53.634797,55.091385,56.662215,57.233426,58.804256,59.346906,60.118041,60.860615,61.346144,62.088718,62.659929,63.545306,66.401361,68.086433,69.400218,70.714003,71.799303,73.655739,74.312631,75.140887,76.140506,76.483233,77.882699,80.110422,80.967238,81.452767,82.309584,83.109279,84.365943,86.650786,88.307298,89.049872,89.821007,90.734944,91.191913,91.763124,93.134030,94.504936,96.418493,96.875461,97.446672,97.903641,99.160305,100.245605,101.245224,101.844996,102.616131,104.158400,105.129459,106.043396,106.785970,107.557105,108.185437,108.756648,110.213235,111.527020,113.097850,113.783303,115.154210 diff --git a/data/torah/labels/Vayeshev-6.txt b/data/torah/labels/Vayeshev-6.txt deleted file mode 100644 index e936c7bd7..000000000 --- a/data/torah/labels/Vayeshev-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.712490,5.997714,7.340060,8.054073,9.624903,11.395657,12.766563,13.509137,14.565878,15.337012,16.165268,17.593295,18.935641,20.249426,29.503042,30.674024,31.416599,32.387657,33.558639,35.158030,36.271891,37.043026,37.642797,38.585295,39.442112,40.213246,41.355668,42.155363,42.469529,42.840816,44.068920,45.582629,47.067777,48.295880,49.552544,51.237616,52.579962,53.465339,54.350716,55.236093,56.521317,57.463815,58.206389,59.006084,60.519793,61.176686,61.947820,63.318727,64.918117,66.717431,67.916974,68.888033,70.887271,72.886509,75.685442,77.656120,78.141649,78.998465,79.712479,80.397932,81.626035,82.225807,82.968381,85.453148,86.538449,87.623750,88.851853,90.051396,91.450863,92.336239,93.678585,94.821007,96.363276,97.677061,98.848044,100.047586,101.504174,102.989322,104.274547,105.302727,107.730373,109.615369,111.129078,112.385741,113.328239,114.813388,115.727325,117.012550,118.583380,119.725801,120.982465,122.153448,123.381551,124.124125,124.866699,125.837758,127.094422,128.522449,129.721992,131.864033,133.320620,135.519782,137.090612,138.004550,138.718563,141.289012,142.574237,143.630977,144.630596,145.915820,147.372408,147.857937,149.028920,150.028539,151.199521,152.056337,153.884212,154.826710,155.997693,157.882688,159.596321,160.881546,161.824044,162.766541,164.680098,166.507973,167.479031,168.650014,169.963799,171.106220,172.191521,173.733790,174.847652,175.990073,176.875450,177.360980,178.360599,178.931810,179.874307,181.787864,182.758922,184.244071,185.158008,186.214748,187.442852,187.871260,190.303962,192.674488,193.674107,194.273878,195.444860,196.615843,197.644022,199.928866,201.356893,202.442194,203.955903,205.640975,207.354607,208.754074,209.953617,211.238841,213.780730,215.151636,216.094134,216.922390,217.636403,219.378596,220.578139,221.806243,222.577377,223.348512,225.090705,226.118885,227.289867,227.918199,229.032060,230.574330,231.745312,234.401443,235.600986,236.800528,239.113932,240.570520,241.113171,241.627260,242.598319,244.997405,246.082705,246.996643,248.139064,249.452849,250.795195,251.423527,252.023298,252.965796,254.907913,255.850411,256.278820,257.249878,258.363739,259.277677,260.762825,262.076610,262.933426,264.618498,265.446754,266.017965,266.703418,269.045383,269.930760,270.359168,271.073181,271.758635,272.758254,273.615070,274.414765,275.614308,276.928093,278.184757,279.184376,280.469601,281.069372,281.669143,282.725884,283.354215,284.325274,285.239211,286.324512,287.381252,289.323369,289.951701,291.436849,292.750635,293.264724,293.636011,294.321464,294.978357,296.891913,297.720169,298.891152,300.633345,301.118874,302.032811,303.218 diff --git a/data/torah/labels/Vayeshev-7.txt b/data/torah/labels/Vayeshev-7.txt deleted file mode 100644 index d4247025c..000000000 --- a/data/torah/labels/Vayeshev-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.103151,6.357029,7.332267,8.140321,10.313709,11.316811,11.929818,12.905056,14.744076,16.443777,17.279695,18.477845,20.205410,21.124920,22.239478,23.103260,24.329274,25.248784,26.084702,27.338580,28.453138,29.149736,30.208566,31.350988,32.465546,34.945437,36.617274,37.481056,38.818525,39.403668,39.877355,40.991913,43.527532,44.642090,45.728784,46.648294,47.539940,51.588174,52.272473,53.470623,54.585180,56.340609,57.761670,59.544963,60.157970,61.439711,62.359221,64.198242,66.538813,67.597643,68.795793,70.161126,71.108500,72.223058,72.947521,74.424310,75.733915,76.514106,78.130214,80.387194,81.501752,82.839221,83.870187,85.096201,86.600854,87.715412,88.913561,91.142677,92.786650,94.291303,95.545180,97.049833,97.997208,99.501861,101.006514,103.486405,104.461643,105.687657,107.638133,108.780555,110.619575,112.681507,113.684609,114.687711,115.774405,117.585561,118.923031,120.149044,121.375058,123.409126,124.022133,125.498922,126.641344,128.313180,129.232691,129.929289,131.043847,132.576364,134.805480,136.421589,137.480418,138.845752,140.350405,140.768364,141.437099,142.830296,144.669316,146.341153,147.288527,148.347357,149.434051,150.994432,151.607439,154.143058,155.564119,156.149262,157.486731,159.660119,160.969725,162.307194,163.505344,164.759221,166.040963,166.876881,169.301044,170.833561,172.171031,173.508500,174.734514,175.849072,177.047221,177.688092,179.443521,181.561180,182.369235,182.954378,183.623112,184.737670,185.796500,186.660282,187.301153,187.942024,188.415711,189.363085,190.951330,191.536473,192.651031,194.629371,195.883248,197.248582,199.254786,200.341480,201.456038,202.514867,204.493208,205.579901,207.391058,209.090759,209.731629,210.679004,211.152691,213.022786,213.830840,214.304527,215.809180,217.202378,217.731793,218.846350,220.323140,221.270514,222.385072,223.527493,225.366514,227.010487,228.069316,229.378922,231.524446,232.750459,233.669970,234.282976,236.094133,236.512092,237.487330,238.406840,239.800038,240.385180,241.221099,242.502840,243.394487,244.146813,244.899140,245.902242,246.598840,247.518350,248.577180,250.026106,251.447167,251.920854,252.868228,253.564827,254.512201,255.180935,255.682487,256.546269,257.744418,259.137616,259.889942,260.809452,261.394595,261.840418,262.759929,263.679439,264.320310,264.682541,265.323412,265.824963,266.995248,269.670187,271.676391,272.763085,273.682595,274.239874,274.880745,276.246078,278.224418,279.951983,281.512364,282.431874,283.936527,284.688854,287.085153,288.283303,289.787956,290.484555,291.153289,292.156391,293.410269,294.998514,295.778704,296.809670,298.230731,299.428881,300.627031,301.741589,302.828282,303.831384,304.667303,306.562051,307.314378,308.874759,309.989316,311.215330,311.772609,312.246296,313.611629,314.893371,315.896473,316.927439,317.373262,318.655004,319.992473,320.828391,321.942949,323.280418,325.119439,326.150405,327.850106,328.853208,329.689126,330.218541,330.831548,331.834650,332.698432,333.478623,334.481725,335.874922,337.323847,338.243357,339.302187,341.391983,342.478677,343.342459,344.345561,345.404391,346.106375,347.290593,349.148189,349.496489,349.891228,351.214765,351.864924,352.677622,353.908280,354.837078,355.603337,355.974856,356.833994,358.529051,359.481069,360.549187,361.477985,362.638983,364.055400,365.053858,366.191636,367.329414,368.467191,369.070910,370.556987,371.230366,372.182384 diff --git a/data/torah/labels/Vayeshev-H.txt b/data/torah/labels/Vayeshev-H.txt deleted file mode 100644 index 293121d1e..000000000 --- a/data/torah/labels/Vayeshev-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.021678,2.298776,3.397079,4.572009,5.363810,6.794159,8.250050,9.169560,10.037986,10.778703,13.154104,14.073615,14.916499,15.887093,17.138649,18.671166,19.743927,21.506322,23.141007,23.600762,24.239311,24.852317,25.925079,27.048925,28.198313,29.219991,31.339973,32.438277,34.839220,35.860898,36.652698,37.802086,38.670512,39.487855,40.075320,40.535075,41.735546,43.140354,44.162032,45.183710,46.384181,47.584653,48.376454,49.960054,51.364862,52.360998,53.714721,54.557605,56.498794,59.078531,60.815383,61.326222,62.041397,63.599456,64.799927,66.409070,67.073161,68.503510,69.882776,70.649034,72.513596,74.582494,75.757424,76.906812,78.745832,80.687020,83.445551,84.875900,85.744327,86.791546,88.656109,90.009832,91.031510,92.359692,94.147628,95.169306,96.523029,97.340372,97.723501,99.307102,101.095039,102.218884,104.006821,105.845841,107.352816,109.600508,110.647728,111.873741,112.716626,113.687220,114.504562,116.088163,117.518512,118.029351,118.770068,120.583546,121.937270,122.575819,124.440381,124.951220,126.330485,127.965170,130.085152,131.311166,132.358385,134.708245,136.240762,137.211356,138.948209,140.301932,141.068190,142.549624,144.260934,144.976109,146.202122,147.658014,148.398730,149.139447,150.952925,152.383274,153.302785,154.043501,155.499392,157.389497,158.462259,159.611646,160.939828,161.987048,163.136435,163.902694,165.869424,167.325315,168.934458,169.751800,170.952272,172.152744,173.787429,174.553687,177.261134,178.538231,180.428336,181.245678,181.858685,182.650485,184.285170,185.409016,186.864907,187.605624,189.904399,190.926077,192.560762,194.450866,195.549170,196.545306,198.358785,199.431546,200.351057,201.551528,203.186213,205.255111,206.608834,207.502803,208.677732,209.827120,211.155302,212.304689,213.122032,214.296961,216.391401,217.183202,217.591873,218.434757,219.992816,221.116662,221.704127,223.236644,224.820245,225.944091,228.140698,229.315628,230.337306,231.869823,233.632218,234.628354,235.982077,237.514594,238.050975,239.532408,240.835048,242.393107,243.031655,245.560308,247.118367,247.986794,249.008472,250.540989,251.281705,252.175673,253.222893,254.065778,255.419501,256.287927,257.820444,259.480671,259.863800,260.349098,261.753905,263.107628,264.078222,265.431946,266.862295,267.756263,268.496980,269.544200,270.770213,271.587556,273.784163,274.678132,275.316680,275.980771,276.874739,278.075211,278.841469,280.195193,281.446748,282.034213,284.256363,285.405751,286.504054,288.624036,290.054385,290.871728,291.561361,292.812916,293.732426,294.524227,296.158912,297.640345,298.789732,299.453823,300.015746,301.522721,302.927528,303.770413,305.124136,306.503401,307.116408 diff --git a/data/torah/labels/Vayetzei-1.txt b/data/torah/labels/Vayetzei-1.txt deleted file mode 100644 index bd6e10b86..000000000 --- a/data/torah/labels/Vayetzei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.063492,5.433469,6.292608,7.221406,8.823583,10.147120,11.702857,13.281814,14.767891,15.325170,15.603810,16.393288,17.275646,18.645624,20.224580,21.246259,22.941315,24.450612,26.052789,27.028027,28.165805,30.952200,32.600816,33.529615,34.620952,35.433651,37.059048,38.080726,39.241723,40.774240,41.865578,42.910476,43.839274,44.837732,46.021950,47.740227,49.226304,50.503401,52.662857,54.241814,56.029751,58.049887,59.419864,60.604082,61.532880,62.926077,63.994195,65.875011,67.268209,68.011247,69.241905,70.240363,71.238821,72.585578,74.048435,75.673832,76.672290,77.995828,78.901406,81.269841,82.337959,83.475737,85.031474,86.053152,87.237370,88.653787,89.280726,90.070204,91.347302,93.158458,94.876735,96.687891,99.265306,101.076463,102.539320,103.166259,104.187937,106.997551,107.833469,109.017687,110.085805,111.014603,112.013061,113.313379,114.311837,115.379955,115.728254,116.517732,117.433395,118.037114,118.919472,120.103690,121.705867,122.216706,124.956661,127.348316,128.509314,129.438112,130.436570,132.224506,133.548044,135.080561,135.800379,137.100697,138.401014,139.399472,140.351491,141.187409,142.185867,143.184325,144.298883,145.088361,147.131717,147.712216,148.362375,149.476933,150.800470,151.729268,152.913486,154.701423,156.164280,158.184416,159.809813,160.274212,160.692171,161.226230,161.853169,163.594665,165.196842,166.357840,167.751037,169.492534,170.723191,171.210810,171.512670,173.765005,174.415164,174.833123,175.576162,176.713940,177.364098,177.758837,179.987953,180.847091,181.404370,181.938429,183.796026,185.374983,186.535980,187.487998,188.440017,189.066955,189.508135,191.133531,193.153667,194.848724,196.195481,196.938520,197.936978,199.144416,200.119654,201.721831,202.046910,203.463327,204.763645,206.087182,207.248180,208.664597,209.941695,210.406094,210.893713,211.776071,213.703327,215.932443,217.093441,219.206457,220.901513,223.107409,224.152307,224.732806,226.009903,227.658520,228.355119,229.353577,230.421695,231.466593,232.418611,232.836570,234.020788,235.367545 diff --git a/data/torah/labels/Vayetzei-2.txt b/data/torah/labels/Vayetzei-2.txt deleted file mode 100644 index eccd61ab3..000000000 --- a/data/torah/labels/Vayetzei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.975238,1.794244,2.660956,3.717735,4.356364,4.713651,5.534788,7.895095,9.125752,11.145888,13.189244,14.536002,15.534460,16.997317,17.949335,18.227975,19.272872,20.178451,21.432328,21.919947,22.825526,23.452464,24.520582,26.378179,27.515956,28.537634,29.071693,29.373553,30.209471,31.811648,32.229607,32.833326,34.807022,36.594959,36.896818,37.639857,38.638315,39.427793,40.844210,42.957226,43.398405,44.095004,46.765299,47.322578,48.715775,49.319494,49.807113,51.084210,52.593507,54.451104,55.403122,56.726659,58.259176,59.164755,59.907793,61.742170,63.739086,64.969743,66.641580,67.542935,69.211688,69.885067,70.372686,70.976405,71.603343,73.298400,74.552278,75.806155,76.340214,77.594092,78.840313,80.496586,81.676131,82.865021,84.095679,85.187017,86.812414,87.392913,88.321711,91.038445,92.129783,92.617402,93.592640,94.498219,95.427017,95.961076,97.540033,98.538491,100.256767,101.278445,102.184024,103.298581,106.410055,107.385294,108.290872,109.173230,110.194908,111.286246,112.098944,113.654681,115.187198,115.814137,116.441076,117.718173,118.345112,119.297130,121.015407,122.060305,123.708922,124.893139,125.636178,127.261575,129.072731,129.885430,130.535588,131.835906,132.927244,134.018581,134.993820,135.899398,139.034092,141.379307,142.470645,143.770962,144.676541,146.255498,147.277176,147.834455,149.018672,149.854591,151.224568,151.572867,152.594545,153.476903,154.266382,155.984659,158.283434,160.489330,161.046609,161.580668,162.532686,163.624024,164.738581,168.105475,168.593094,169.057493,169.893411,171.333049,172.354727,174.142663,175.698400,177.509557,179.065294,179.761892,180.435271,182.037448,184.336223,185.427561,188.074636,189.189194,190.141212,191.395089,192.184568,193.392006,193.972504,194.970962,195.783661,197.618037,199.104114,200.822391,203.423026,204.909103,206.441620,207.416858,209.274455,211.155271,211.805430,213.988105,215.892142,217.726518,219.537674,219.909194,221.488151,221.952550,224.042346,224.901484,225.528423,227.478899,228.918536,230.056314,230.776133,231.751371,233.539307,235.327244,235.901575,237.317992,238.432550,240.661665,242.565702,243.657040,245.328876,246.489874,247.581212,248.649330,250.878445,251.760804,253.386201,254.663298,255.824296,256.660214,258.750010,260.212867,261.652504,262.581303,263.881620,265.785656,267.968332,269.222210,269.942028,271.033366,272.287244,273.448241,274.632459,276.025656,277.325974,279.113910,280.251688,281.552006,283.130962,284.129420,285.197538,285.870917,287.426654 diff --git a/data/torah/labels/Vayetzei-3.txt b/data/torah/labels/Vayetzei-3.txt deleted file mode 100644 index fd76d403b..000000000 --- a/data/torah/labels/Vayetzei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.688889,5.942766,6.662585,7.289524,10.029478,11.770975,13.001633,14.232290,15.764807,16.972245,18.411882,20.292698,22.266395,23.729252,24.750930,25.540408,26.724626,28.233923,29.673560,31.089977,31.925896,33.388753,35.014150,38.125624,40.029660,41.933696,43.001814,43.768073,45.741769,46.786667,48.412063,49.619501,51.569977,53.195374,54.774331,56.492608,56.910567,57.560726,59.093243,59.511202,60.834739,61.879637,63.412154,64.666032,66.941587,68.241905,70.308481,72.142857,73.048435,73.443175,74.186213,75.556190,77.042268,78.296145,80.478821,81.500499,82.940136,83.752834,84.635193,85.680091,87.328707,88.675465,90.161542,92.042358,93.574875,95.339592,96.221950,97.243628,98.218866,99.078005,100.656961,102.119819,103.350476,104.882993,107.228209,108.273107,109.944943,110.548662,111.570340,113.195737,113.869116,115.657052,116.701950,117.027029,118.420227,119.047166,120.765442,121.926440,124.109116,125.200454,126.686531,128.451247,130.471383,131.562721,132.514739,133.327438,134.209796,135.788753,136.880091,138.830567,139.736145,141.384762,143.335238,144.798095,145.703673,147.352290,148.397188,149.674286,150.231565,152.135601,153.668118,154.898776,156.640272,157.870930,159.542766,160.703764,161.493243,162.840000,164.535057,165.672834,166.740952,168.761088,170.061406,170.641905,172.290522,173.126440,174.032018,174.612517,175.819955,176.771973,178.211610,180.162086,181.114104,182.762721,183.807619,184.736417,185.525896,186.872653,188.265850,189.868027,191.563084,192.886621,193.397460,194.535238,196.230295,196.950113,197.275193,197.902132,199.550748,201.849524,202.871202,204.032200,205.146757,205.495057,207.375873,208.838730,209.651429,210.371247,211.369705,212.553923,214.457959,215.177778,215.944036,217.499773,219.171610,221.168526,221.911565,223.490522,224.163900,225.858957,227.089615,228.575692,230.224308,232.453424,233.289342,234.380680,235.239819,236.958095,237.817234,238.792472,240.441088,241.811066,244.016961,245.572698,246.617596,247.569615,250.123810,251.331247,252.492245,253.421043,254.210522,255.278639,256.578957,258.111474,258.738413,259.736871,260.108390,260.596009,262.128526,263.521723,265.100680,267.144036,268.792653,270.000091,270.952109,272.809705,274.713741,275.619320,277.546576,278.196735,279.032653,280.704490,281.702948,282.515646,283.723084,285.139501,286.021859,286.439819,287.554376,288.274195,289.899592,291.780408,293.173605,294.868662,296.888798,298.398095,299.489433,301.207710,301.672109,302.182948,303.831565,305.271202,306.455420,307.639637,309.241814,311.424490,312.840907,314.582404,316.881179,317.879637,318.576236,319.365714,321.223311,323.057687,324.241905,326.145941,328.491156,329.025215,329.861134,331.091791,331.579410,332.577868,333.808526,334.481905,335.805442,336.920000,338.591837,338.986576,340.031474,342.005170,345.209524,347.067120,347.972698,349.296236,350.225034,350.944853,352.198730,353.545488,354.265306,357.864399,359.675556,361.800689,363.193887,364.169125,365.330122,367.025179,367.466358,368.441596,369.974113,370.601052,371.460190,373.526766,374.989624,376.382821,377.172299,377.799238,379.494295,380.887492,382.303909,383.743546,385.276063,387.249760,388.132118,389.478875,391.661551,392.706449,394.819465,395.794703,397.512980,398.859737,400.043955,401.669351,402.807129,404.061007,404.664726,405.477424,406.336562,407.660100,408.890757,410.237515,411.491392,413.534748,414.231347,417.412481,419.037878,420.547175,421.406313,422.660190,423.914068,425.887764,427.931120,430.137016,432.203592,434.595247,436.870803,437.962141,439.053478,439.866177,441.027175,442.257832,443.511710,445.531846,447.776072,448.937070,449.865868,451.282285,452.512943,454.463419,454.951038,455.949496,457.551673,458.991310,460.941786,462.915482,465.121378,467.838113,469.904689,471.228226,472.203464,473.550222,475.059519,476.731355,477.869133,478.6,479.355210,480.864507,481.607546,482.327365,483.395482,486.297977,487.528634,488.828952,489.780970,490.756208,492.033306,493.774802,495.911038,496.863056,499.788770,501.158748,502.296526,503.480743,504.920380,505.524099,506.197478 diff --git a/data/torah/labels/Vayetzei-4.txt b/data/torah/labels/Vayetzei-4.txt deleted file mode 100644 index ade16d9e8..000000000 --- a/data/torah/labels/Vayetzei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.436553,4.597551,6.501587,7.407166,9.125442,10.866939,12.051156,13.351474,15.116190,16.114649,17.020227,17.902585,18.831383,20.433560,21.269478,22.035737,22.569796,23.545034,24.264853,24.798912,26.633288,27.980045,29.466122,31.463039,32.902676,34.458413,34.899592,35.712290,38.475465,39.427483,40.007982,40.890340,42.144218,43.560635,45.464671,46.625669,48.065306,48.854785,49.969342,51.339320,52.639637,54.032834,55.449252,56.610249,57.190748,59.071565,60.255782,61.509660,63.135057,65.642812,66.873469,68.197007,69.334785,70.495782,71.610340,73.305397,75.070113,76.231111,77.717188,78.808526,79.946304,81.060862,82.454059,83.707937,84.497415,85.008254,87.051610,88.166168,89.327166,90.418503,91.672381,92.903039,94.946395,96.432472,97.384490,98.684807,99.706485,100.472744,101.935601,103.212698,104.559456,105.743673,107.554830,109.110567,109.714286,110.387664,111.548662,112.268481,112.872200,114.126077,115.705034,117.864490,119.164807,120.260632,122.025349,122.930927,123.604306,124.742083,126.251380,126.947979,127.969657,128.666256,129.409294,130.314873,131.243671,132.543988,133.263807,133.681766,135.028523,136.653920,137.675598,138.116777,139.277775,139.672514,140.345893,141.460451,143.039408,144.061086,144.525485,145.082764,146.731380,147.753058,148.774737,150.167934,150.585893,151.839771,153.163308,154.301086,154.719045,157.226800,158.364578,159.386256,160.175734,161.290292,162.683489,163.890927,164.889385,166.421902,167.582900,168.906437,171.135553,172.319771,173.155689,174.038047,176.731562,178.426619,179.959136,181.027254,181.468433,182.165031,183.418909,184.301267,184.974646,185.578365,186.901902,188.364759,189.456097,190.129476,192.033512,193.542809,194.332288,195.353966,196.189884,197.559861,198.604759,200.555235,201.971653,203.086210,204.758047,205.663625,206.638863,207.544442,208.287480,209.773557,210.539816,211.770473,213.140451,213.790610,214.603308,215.299907,216.414464,217.436142,218.248841,219.200859,221.987254,223.960950,225.098727 diff --git a/data/torah/labels/Vayetzei-5.txt b/data/torah/labels/Vayetzei-5.txt deleted file mode 100644 index b99e235a4..000000000 --- a/data/torah/labels/Vayetzei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.435011,7.523265,10.100680,11.865397,14.117732,16.068209,17.345306,18.993923,20.271020,21.524898,22.941315,24.543492,26.586848,27.747846,28.537324,30.093061,31.602358,35.158622,37.294858,38.386196,39.245334,40.777851,42.008509,44.005425,45.491502,48.393996,50.344473,52.387829,54.593724,57.287239,59.539575,61.002432,61.931230,63.069008,65.483883,67.504019,68.595357,69.547375,70.267194,71.822931,73.216128,74.191366,74.562885,75.398804,76.559801,77.627919,78.301298,78.928237,80.483974,81.575312,84.292046,85.778123,87.217761,88.819937,90.770414,91.467012,93.185289,96.134223,97.620300,99.013498,100.267375,101.915992,103.587829,106.095584,107.349461,107.906740,108.394359,109.903656,112.155992,113.734949,115.406786,117.194722,118.889779,120.724155,121.304654,122.744291,124.183928,125.461026,126.482704,127.179303,128.061661,129.106559,130.755176,131.869733,132.612772,134.307829,135.608146,137.860482,140.205697,141.947194,143.595811,145.151547,146.196445,147.798622,149.331139,150.770776,151.722795,153.301752,154.369869,156.390006,158.177942,161.080436,162.775493,163.216672,164.981389,167.419484,170.229098,171.018577,172.365334,174.037171,176.150187,178.007783,179.656400,180.724518,181.397897,182.605334,184.137851,184.741570,186.854586,188.712182,190.035720,191.753996,194.377851,195.724609,197.605425,198.743203,200.415040,201.692137,203.178214,206.289688,208.681343,209.540482,210.051321,211.607058,213.998713,215.351031,216.111716,218.803373,220.383259,222.460516,223.601545,225.737316,226.995373,229.482231,230.681773,232.466459,233.987831,235.801773,237.264631,239.166345,240.365888,242.121316,245.368859,246.188059,247.153545,248.587145,249.815945,252.127259,254.935945,256.106231,258.710116,260.290002,262.308745,263.274231,265.410002,266.434002,268.716059,270.617773,271.934345,274.157888,275.503716,276.703259,277.932059,280.067831,281.238116,283.081316,284.631945,286.985251,290.613137,291.929708,293.187765,296.865842,298.123899,300.376699,301.283671,303.126871,304.355671,305.028585,306.901042,307.895785,309.475671,310.762985,311.904014,313.571671,314.829728,316.585156,317.375099,317.813956,319.072014,321.953487,323.504115,325.405829,326.751658,329.209258,330.613601,332.690858,333.510058,335.587315,337.050172,338.600801,340.853601,343.194172,345.885829,348.109372,349.513715,351.620229,352.585715,354.194858,355.979544,357.588687,359.782972,361.830972,363.674172,364.873715,366.102515,367.506858,369.262287,369.788915,371.515087,372.422058,374.148229,375.757372,377.629829,379.765601,383.013144,383.920115,384.944115,385.909601,386.611772,387.723544,390.356687,391.585487,392.931315,394.423429,395.330401,397.115087,399.133829,400.655201,402.527658,405.014515,405.892229,406.974744,408.554629,410.163772,411.597372,412.504344,413.235772,414.289029,415.810401,417.799887,419.555315,421.018172,422.598058,425.172687,426.167429,427.074401,428.332458,430.409715,431.345944,432.048115,433.657258,436.085601,438.016572,439.596458,441.790744,443.136572,444.979772,446.442629,448.022515,450.333829,451.299315,452.732915,454.576115,456.975201,458.467315,459.871658,460.954172,461.831887,463.294744,464.611315,465.284229,466.864115,468.414744,469.585029,471.750058,473.066629,474.675772,476.197144,478.660514,480.298914,481.264400,482.610228,483.253886,485.067828,485.945543,487.145086,489.573428,490.948514,491.796971,494.137543,495.249314,496.507371,498.116514,498.994228,500.018228,501.130000,502.505086,504.406800,506.220743,507.508057,508.298000,510.667828,512.072171,513.564286,515.407486,517.455486,518.508743,519.386457,520.995600,522.195143,523.072857,525.530457,526.847028,528.543943,530.123828,531.732971,532.610686,533.693200,535.858228,537.672171,540.919714,541.768171,542.499600,543.991714,545.805657,546.917428,550.047943,551.364514,552.798114,554.056171,556.162686,558.327714,560.229428,561.780057,563.301428,565.115371,566.900057,567.572971,568.509200,569.942800,571.142343,573.980286,575.443143,577.023028,579.071028,581.031257,582.640400,584.220286,586.004971,587.409314,590.100971,591.154228,591.651600,593.377771,594.869886,596.040171,597.151943,598.527028,599.287714,600.077657,601.364971,602.681543,605.109886,606.602000,607.626000,609.352171,610.288400,611.019828,612.365657,613.711486,614.852514,616.812743,617.807486,618.802228,619.650686,621.289086,623.424857,624.302571,625.882457,627.140514,628.720400,630.329543,631.499828,632.699371,634.367028,636.941657,637.351257,637.936400,638.814114,639.779600,641.447257,642.383486,642.880857,644.841086,646.538000,647.444971,648.556743,650.575486,651.628743,652.828286,654.905543,655.988057,657.567943,659.060057,660.054800,661.605428,664.970000,666.666914,667.866457,669.066000,670.411828,672.372057,673.366800,674.273771,675.063714,676.292514,677.433543,678.428286,680.300743,681.617314,683.197200,684.426000,686.386228,687.527257,688.609771,690.248171,692.910571,694.256400,696.655486,698.557200,700.634457,702.594686 diff --git a/data/torah/labels/Vayetzei-6.txt b/data/torah/labels/Vayetzei-6.txt deleted file mode 100644 index c1bbd66b9..000000000 --- a/data/torah/labels/Vayetzei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.012408,5.154830,7.300354,7.996952,8.554231,9.585197,10.058884,10.671891,11.786449,13.430422,13.931973,14.210612,15.603810,16.411864,16.774095,17.721469,18.780299,20.034177,21.176599,22.374748,23.600762,24.771048,26.052789,26.944435,29.006367,29.563646,30.204517,31.374803,32.266449,33.269551,35.164299,35.888762,37.254095,37.783510,38.675156,40.124082,41.071456,41.823782,43.189116,44.303673,45.028136,47.182966,48.353252,48.938395,49.356354,50.359456,51.808381,52.560707,53.062259,54.037497,54.901279,55.737197,56.823891,57.771265,59.470966,60.390476,61.059211,61.644354,61.978721,63.399782,65.015891,65.517442,66.632000,68.136653,68.582476,69.390531,70.003537,71.006639,72.734204,73.904490,75.186231,76.356517,77.303891,78.418449,79.672327,81.483483,82.012898,82.598041,83.545415,85.161524,86.471129,87.808599,88.895293,89.842667,91.291592,92.294694,93.186340,94.523810,95.805551,98.201850,99.288544,99.901551,101.155429,102.687946,103.523864,104.917061,106.700354,108.818014,110.489850,111.465088,112.245279,112.830422,113.582748,114.808762,115.338177,116.062639,117.623020,118.765442,119.434177,120.047184,123.112218,124.477551,124.951238,125.842884,127.208218,129.214422,130.468299,130.969850,131.666449,132.558095,133.867701,135.455946,136.347592,137.545741,138.548844,139.886313,141.558150,142.199020,142.979211,144.483864,144.873959,145.598422,147.604626,148.858503,150.140245,151.449850,152.843048,154.598476,155.434395,156.883320,157.691374,158.443701,160.087673,162.539701,163.905034,164.796680,165.911238,167.722395,169.059864,170.397333,171.567619,173.183728,174.549061,175.914395,176.973224,178.199238,179.174476,179.871075,181.403592,182.852517,183.827755,185.360272,187.032109,188.258122,189.762776,191.183837,193.050721,195.447020,197.174585,198.484190,199.041469,199.738068,200.713306,201.326313,202.022912,203.471837,205.255129,206.286095,207.233469,207.985796,209.156082,210.326367,211.385197,212.360435,213.363537,214.199456,214.951782,216.205660,217.069442,218.379048,219.410014,220.524571,221.471946,222.335728,223.645333,224.843483,225.679401,226.125224,227.016871,228.632980,231.224327,232.115973,233.230531,233.704218,234.902367,235.682558,236.602068,238.190313,239.778558,241.283211,242.258449,243.150095,244.236789,245.267755,245.992218,246.939592,247.496871,248.360653,249.447347,250.255401,252.038694,253.348299,255.020136,256.106830,257.945850,259.478367,261.289524,263.128544,264.298830,265.775619,266.806585,267.837551,268.952109,270.205986,270.735401,272.156463,273.020245,273.884027,276.029551,277.896435,278.425850,280.125551,282.354667,283.385633,284.388735,285.419701,286.534259,288.038912,289.599293,290.490939,291.215401,291.884136,292.329959,293.583837,295.116354,295.785088,297.429061,298.209252,298.766531,300.104000,301.190694,302.165932,302.918259,303.586993,304.701551,305.816109,306.958531,307.460082,308.463184,309.299102,312.475592,313.590150,314.871891,315.596354,317.017415,318.494204,319.748082,321.336327,322.283701,323.760490,324.624272,325.850286,327.020571,328.218721,329.054639,330.587156,331.228027,332.231129,333.234231,334.599565,336.048490,337.023728,338.054694,338.416925,339.392163,340.339537,341.008272,341.872054,342.819429,343.348844,344.797769,345.410776,346.413878,347.389116,348.559401,350.593469,351.512980,352.376762,353.909279,355.553252,356.890721,357.670912,358.924789,360.540898,362.268463,363.215837,364.191075,365.640000,366.782422,367.479020,368.705034,370.014639,370.599782,371.435701,372.438803,373.915592,375.169469,376.869170,378.736054,380.268571,380.965170,382.414095,383.472925,385.674177,387.624653,389.435810,390.411048,392.082884,393.058122,395.017960,396.188246,397.832218,398.779593,399.866287,401.677443,403.405008,404.993253,406.497906,407.779647,408.504110,409.256436,410.844681,412.126423,413.380300,414.494858,415.915919,417.169797,417.922123,419.176001,420.374150,421.237933,424.386559,426.002667,427.563048,428.872654,430.182259,431.937688,432.968654,434.138940,434.863402,435.727184,436.674559,437.984164,439.070858,439.851048,441.690069,442.498123,443.417633,445.200926,446.399076,447.541497,449.742749 diff --git a/data/torah/labels/Vayetzei-7.txt b/data/torah/labels/Vayetzei-7.txt deleted file mode 100644 index f93da3e5c..000000000 --- a/data/torah/labels/Vayetzei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.705143,5.226514,6.396800,7.011200,8.737371,10.170971,11.546057,13.652571,14.208457,16.373486,17.485257,19.416229,20.352457,21.083886,22.107886,23.073371,23.629257,25.648000,27.257143,28.515200,29.392914,30.212114,31.177600,32.464914,33.430400,34.629943,37.029029,38.813714,40.305829,41.534629,42.558629,43.728914,45.279543,46.391314,47.181257,48.176000,49.843657,50.984686,52.184229,53.968914,55.314743,56.689829,58.181943,59.352229,60.493257,61.634286,63.009371,64.296686,65.730286,66.315429,67.924571,68.714514,69.299657,70.265143,71.523200,72.049829,72.869029,74.244114,76.145829,78.340114,79.451886,80.329600,81.353600,83.079771,84.103771,85.508114,86.883200,87.760914,88.872686,90.189257,91.388800,92.178743,92.617600,93.378286,94.080457,95.777371,97.708343,99.141943,100.136686,101.628800,102.565029,103.676800,105.110400,106.192914,107.392457,108.387200,109.762286,110.698514,111.400686,112.161371,113.682743,114.618971,115.584457,116.462171,116.988800,117.837257,118.656457,119.680457,120.645943,123.279086,125.239314,125.912229,127.024000,128.077257,129.598629,130.739657,131.997714,133.431314,135.508571,137.439543,138.785371,140.482286,141.652571,142.998400,144.051657,145.251200,146.801829,148.615771,149.230171,150.663771,152.097371,153.413943,154.730514,155.608229,156.690743,157.480686,158.299886,159.002057,160.026057,161.020800,164.122057,164.970514,165.848229,166.725943,167.984000,168.627657,170.178286,171.114514,172.080000,173.338057,174.800914,176.351543,177.872914,179.511314,180.506057,181.881143,182.846629,183.841371,185.743086,187.586286,188.756571,190.424229,191.783184,192.807184,194.504099,195.440327,196.083984,196.961699,198.307527,199.536327,200.589584,201.233241,203.164213,203.837127,205.680327,206.792099,208.342727,209.717813,211.882841,213.404213,216.037356,217.734270,219.431184,220.308899,221.888784,223.761241,225.077813,226.774727,228.676441,230.139299,231.104784,232.889470,233.679413,234.937470,236.195527,237.307299,238.389813,239.677127,240.671870,242.251756,243.480556,244.299756,246.523299,247.371756,248.103184,249.185699 diff --git a/data/torah/labels/Vayetzei-H.txt b/data/torah/labels/Vayetzei-H.txt deleted file mode 100644 index 84240b644..000000000 --- a/data/torah/labels/Vayetzei-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.170286,2.229116,2.897850,4.820463,6.408707,7.188898,8.693551,9.919565,11.284898,13.987701,16.021769,17.442830,18.139429,18.836027,21.065143,22.681252,24.213769,25.802014,26.442884,28.644136,29.870150,31.291211,32.405769,34.411973,35.665850,36.167401,37.588463,39.260299,40.319129,41.238639,42.325333,43.328435,44.972408,46.393469,47.563755,49.319184,51.854803,53.108680,55.532844,57.399728,58.932245,60.241850,62.025143,63.139701,64.365714,65.703184,66.817741,68.712490,70.077823,71.498884,72.808490,74.396735,75.455565,76.904490,78.687782,81.167673,82.839510,84.065524,84.539211,85.848816,86.824054,88.440163,89.582585,91.393741,92.313252,93.706449,95.851973,97.997497,99.279238,100.282340,101.591946,103.124463,104.852027,105.966585,107.248327,108.335020,109.561034,110.229769,111.400054,112.375293,113.461986,115.718966,117.056435,118.561088,120.511565,121.904762,123.715918,124.746884,125.972898,126.697361,127.171048,128.954340,130.709769,131.406367,132.214422,133.496163,135.223728,135.864599,136.644789,138.037986,139.709823,141.214476,142.579810,144.112327,145.310476,147.316680,148.626286,149.322884,150.576762,151.719184,152.443646,154.310531,156.093823,156.985469,157.542748,158.155755,159.465361,161.109333,161.973116,162.809034,164.257959,165.093878,167.295129,170.332299,171.502585,173.062966,174.149660,174.539755,175.375673,176.991782,177.994884,178.384980,179.388082,180.753415,181.895837,183.790585,185.044463,186.159020,187.607946,189.084735,190.645116,192.010449,193.208599,194.378884,195.799946,196.635864,196.998095,198.084789,199.004299,199.673034,200.090993,200.926912,201.707102,203.044571,204.465633,205.580190,206.304653,207.642122,209.063184,211.459483,212.462585,214.858884,217.199456,218.509061,219.735075,220.933224,222.103510,223.245932,224.862041,225.753687,227.091156,227.843483,228.623673,230.741333,232.190259,233.889959,234.976653,236.564898,238.264599,240.465850,241.970503,243.085061,244.701170,245.955048,247.348245,248.295619,249.660952,250.775510,251.054150,252.029388,253.366857,254.314231,255.400925,256.710531,258.995374,261.447401,262.171864,264.205932,265.543401,267.410286,269.500082,271.478422,272.788027,273.763265,274.459864,276.661116,277.580626,278.862367,280.729252,281.955265,282.846912,284.267973,285.605442,286.023401,286.775728,288.921252,291.401143,292.515701,293.184435,293.964626,294.800544,295.887238,297.447619,298.422857,300.317605,302.518857,303.549823,306.475537,307.088544,307.562231,308.871837,309.930667,310.933769,311.407456,313.357932,314.639673,316.088599,318.066939,319.070041,319.460136,320.518966,321.995755,323.333224,325.813116,327.289905,329.379701,331.051537,331.943184,332.890558,334.618122,335.872000,336.485007,337.488109,339.076354,341.138286,342.141388,343.311673,344.899918,346.961850,348.522231,349.608925,350.667755,352.896871,354.067156,354.596571,356.352000,357.773061,359.305578,360.392272,361.478966,362.119837,364.014585,365.797878,367.135347,368.277769,369.754558,371.732898,372.429497,372.875320,373.627646,375.940354,377.807238,379.284027,382.209741,383.519347,385.219048,386.361469,387.531755,388.757769,390.234558,391.488435,392.073578,393.438912,394.274830,395.277932,397.339864,398.203646,399.736163,401.101497,403.497796,404.974585,406.674286,407.175837,409.154177,410.965333 diff --git a/data/torah/labels/Vayigash-1.txt b/data/torah/labels/Vayigash-1.txt deleted file mode 100644 index 57b5d6d93..000000000 --- a/data/torah/labels/Vayigash-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.200811,5.313827,7.659042,11.374235,11.742670,13.948566,15.063124,15.547659,16.522897,17.335596,18.705573,19.727251,20.632829,21.306208,22.026026,23.372784,24.324802,25.230380,26.762897,28.341854,29.061673,29.711831,30.896049,32.126707,32.823305,33.659224,34.379042,34.584938,35.629836,36.976593,37.252149,38.436367,39.016865,39.643804,40.619042,41.663940,42.592738,43.498317,44.845074,46.540131,47.283169,48.722806,49.930244,51.834280,53.018498,54.016956,55.177954,57.476729,57.636185,58.657863,60.074280,61.258498,62.628475,63.371514,64.462852,65.693509,66.085165,67.153283,67.684258,68.264757,69.054235,70.192013,70.325165,71.462943,72.458317,72.640992,73.453691,74.614689,75.984666,76.167342,77.281899,77.953736,78.557455,80.020312,81.134870,82.086888,83.247886,83.929437,85.023999,85.647854,86.948171,88.016289,89.107627,89.873886,90.407945,91.359963,92.474520,93.844498,94.378557,95.284135,95.980734,96.955972,99.022548,99.881686,101.386357,101.940552,102.544271,102.911164,104.072162,106.487037,107.157332,108.132570,109.061369,109.781187,111.197604,111.987083,112.915881,113.705359,115.098557,115.795155,116.514974,118.186811,119.347808,120.323047,121.275065,122.343183,123.318421,124.270439,125.315337,127.428353,128.542910,129.262729,130.307627,131.631164,132.792162,133.558421,134.185359,134.782910,135.224090,136.408307,137.638965,138.405223,139.543001,142.041869,142.761688,143.549624,144.664182,145.380917,146.356155,146.654930,147.676608,149.905724,150.206042,150.342277,151.665815,152.569851,153.266450,154.822187,155.843865,158.670531,158.866434,160.631150,161.745708,162.999586,166.330995,167.491992,167.745870,168.883648,169.626686,170.973444,171.948682,172.854260,174.363557,175.779974 diff --git a/data/torah/labels/Vayigash-2.txt b/data/torah/labels/Vayigash-2.txt deleted file mode 100644 index a86926865..000000000 --- a/data/torah/labels/Vayigash-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.876190,6.757007,7.291066,7.667735,8.596533,9.734311,11.243608,12.892225,13.426284,14.143019,15.091953,16.717350,17.762248,19.109005,19.782384,20.896942,21.872180,22.076533,23.144651,24.047146,24.720524,25.881522,26.531681,26.876896,27.663291,28.703563,29.975366,30.761761,31.108518,32.339176,34.196772,35.172010,35.493041,36.645097,37.477932,38.476390,39.381968,40.705505,41.982603,42.795301,43.001197,44.231854,44.869421,45.403480,46.556768,46.739444,47.668242,48.898899,49.827698,50.847834,51.745306,52.729219,53.597181,54.552385,55.317018,55.548920,56.706202,58.281931,59.001750,60.603927,62.415083,63.367101,64.342339,65.155038,67.941432,68.986330,69.169006,69.814539,71.018893,71.710866,72.241841,72.842476,73.887373,75.138167,75.715582,76.012816,77.266693,78.285287,78.559301,79.557759,80.853451,82.502067,83.454086,84.661523,85.192498,86.516036,87.653813,88.324108,88.644562,89.364380,90.611805,91.587043,92.446181,93.046816,93.972530,94.666045,95.501963,96.169174,97.130535,98.175433,98.610444,99.512938,101.115115,102.856612,104.145465,104.453895,105.800653,106.395120,106.786775,107.645913,108.992671,111.198566,112.429224,113.497342,114.681560,115.331718,116.283737,117.000471,118.300789,120.785324,121.319383,123.687818,124.384417,125.057795,126.938612,127.565551,128.262149,128.981968,129.794666,131.179116,132.409774,133.434173,134.246871,135.640069,136.314885,137.615203,138.657017,139.585815,140.514613,141.675611,142.790169,143.881507,144.926405,145.762323,146.107538,146.850577,148.034795,150.310350,151.053389,152.144727,153.468264,155.000781,156.045679,157.345996,159.041053,160.085951,162.105923 diff --git a/data/torah/labels/Vayigash-3.txt b/data/torah/labels/Vayigash-3.txt deleted file mode 100644 index 6b035f06f..000000000 --- a/data/torah/labels/Vayigash-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.574331,4.941224,6.659501,7.955193,8.582132,9.418050,10.114649,11.716825,12.993923,14.526440,16.384036,17.730794,18.167347,19.072925,20.350023,20.800080,21.214375,22.657676,25.420851,26.459581,26.558628,28.340397,29.629921,31.255318,32.207336,32.973594,33.809513,35.063390,36.967427,38.499944,39.568062,40.125340,41.170238,42.075817,42.633096,42.978311,44.673368,46.809603,47.388113,48.825963,50.109494,51.429947,52.405186,54.402102,55.725639,56.700877,57.652895,58.860333,59.789131,60.225684,60.640560,61.824777,63.217975,64.004369,64.883644,65.626682,66.810900,67.600378,68.320197,69.295435,70.038474,71.640650,72.453349,73.335707,73.823326,74.331081,75.306319,76.366728,77.295526,78.177884,79.315662,80.012260,81.263054,81.749131,82.445730,83.255344,84.973621,86.976738,88.578915,89.134652,89.434969,90.383904,91.521681,92.613019,92.862271,93.442770,94.766307,97.065083,98.144085,98.318960,99.014108,100.128665,102.079142,102.890298,104.532581,105.269452,105.891765,106.911901,108.645688,109.508518,109.833598,111.366115,112.476047,112.889380,113.678858,114.712963,116.082940,117.986976,118.703711,119.648019,120.202214,121.705445,123.404610,124.612048,125.842706,126.608964,127.305563,128.211141,129.116719,130.254497,131.694134,132.739032,133.807150,134.921708,136.152365,137.545563,138.242161,138.424837,139.469735,140.444973,140.604429,141.463567,142.110642,143.132320,144.153998,144.429554,146.171050,146.914089,147.587468,148.539486,149.440438,151.254475,151.425067,152.995971,153.619826,154.708080,155.443409,156.604407,157.855200,159.294838,159.825813,160.681867,161.514702,162.629259,164.152525,164.497740,165.143273 diff --git a/data/torah/labels/Vayigash-4.txt b/data/torah/labels/Vayigash-4.txt deleted file mode 100644 index 36e904905..000000000 --- a/data/torah/labels/Vayigash-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.995374,4.040272,5.015510,6.037188,6.568163,8.170340,8.797279,10.167256,12.117732,13.743129,15.020227,16.051247,16.111565,17.189025,18.582222,20.738594,21.249433,22.155011,22.407347,23.707664,24.238639,25.446077,25.907392,26.418231,27.323810,28.017324,29.108662,30.057596,30.730975,31.842449,32.957007,33.975601,35.066939,36.460136,37.505034,37.944671,38.475646,39.636644,40.936961,42.446259,43.491156,44.489615,47.026463,48.442881,49.580658,50.602336,51.809774,53.063652,53.690590,54.407325,55.243243,56.195262,57.588459,58.189094,59.582291,61.509547,62.600885,63.367144,64.528141,65.596259,66.687597,67.569955,68.661293,69.822291,72.980205,76.091679,77.113357,78.692314,80.248051,81.223289,82.570046,84.566962,84.772858,85.678436,87.231089,88.577847,89.506645,89.994264,90.899842,92.176940,93.500477,94.777574,96.077892,96.913810,97.865828,98.423107,99.305466,100.745103,102.324060,103.368958,105.040794,105.923153,107.060930,107.757529,108.384468,108.642651,109.602679,110.158416,110.762135,111.807033,113.243586,114.427804,114.983541,115.189436,116.090389,117.297826,119.085763,120.478960,121.285552,121.677001,122.327160,123.348838,124.062489,125.060947,126.245165,127.382942,127.635278,129.469655,130.096593,130.932512,131.675550,132.975868,134.090425,136.574961,137.550199,138.639995 diff --git a/data/torah/labels/Vayigash-5.txt b/data/torah/labels/Vayigash-5.txt deleted file mode 100644 index 2f2a47055..000000000 --- a/data/torah/labels/Vayigash-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.178050,4.524807,6.126984,6.448980,7.052698,7.772517,8.329796,9.514014,10.675011,11.275646,12.390204,13.675748,14.581326,15.019421,15.457517,16.339875,17.338333,18.429671,19.451349,21.030306,22.144863,23.305861,23.909580,25.163458,26.185136,27.137154,28.878650,29.691349,30.922006,31.966904,32.918922,34.637199,35.635657,36.959195,39.466950,40.256428,40.976247,41.858605,42.949943,43.460782,44.366360,45.643458,46.781235,47.245634,47.733254,48.406632,49.405090,50.473208,52.533470,53.415828,54.109343,55.270341,56.405035,57.491747,57.722404,58.860182,61.135738,61.945352,62.641951,62.990250,64.615647,66.165216,66.977915,67.720953,68.881951,70.066169,70.203946,72.131203,72.592518,73.567756,75.286033,75.979547,76.978005,77.276781,78.484218,80.899094,81.526033,82.245851,82.942450,83.731928,84.869706,86.170023,86.445579,88.419275,88.902268,90.202586,90.827983,91.776917,93.030794,94.075692,95.167030,96.606667,97.674785,98.115965,98.882223,99.811021,101.970477,102.852835,103.642314,104.690731,106.699830,107.579105,108.391803,108.805137,110.128674,110.778833,111.309808,112.563685,114.315626,115.778483,116.102020,117.889957,118.911635,119.770773,120.696487,121.811045,122.739843,123.390002,124.806419,125.549458,126.153177,127.499934,128.428732,129.241431,130.704288,131.679526,133.421022,135.371499,136.880796,137.948914,139.133131,140.340569,141.385467,141.707462,143.239979,144.377757,145.260115,147.698211,148.580569,150.043426,151.924242,153.712179,155.221476,156.753993,157.938211,158.843789,160.213766,161.514084,161.928959,162.949095,164.086873,165.201431,166.292768,166.521884,167.264923,167.981657,169.212315,170.210773,171.603970,172.486329,173.461567,174.251045,175.806782,177.176759,178.268097,179.150456,180.032814,181.681431,183.422927,184.467825,185.930682,186.836261,187.695399,188.647417,190.156714,191.062292,191.851771,192.943109,193.639707,194.475626,195.774401,197.074719,198.189276,199.141295,200.557712,202.879707,203.735762,204.571680,205.245059,206.173857,207.613494,208.449412,209.540750,211.003607,212.118165,213.743562,215.415399,217.296215,218.364333,219.107372,220.384469,221.870546,222.985104,224.030002,224.889140,226.932496,227.617654,228.616112,229.614570,230.328221,230.885500,231.605318,232.580556,233.486134,234.531032,234.715250,235.388629,236.665726,237.292665,238.058924,238.987722,240.705998,241.565137,242.424275,243.445953,244.305091,246.023368,247.114706,249.715341,250.551259,252.385636,253.360874,253.822189,254.359392,255.401384,256.025239,256.590523,257.206514,258.126061,259.078079,259.446514,260.352092,260.790188,262.090505,263.311737,264.960353,265.865932,266.678630,267.793188,268.675546,269.650784,270.895803,271.917481,272.790588,273.789046,275.019704,276.084738,276.858864,277.859877,278.602916,279.322734,280.414072,281.087451,281.714390,282.736068,284.129265,285.099877,285.773256,287.166453,288.072031,289.418789,290.672666,291.531805,292.437383,293.877020,294.643279,295.653298,296.674976,297.255475,297.789534,298.435067,299.384001,300.498559,302.216836,302.469172,303.792709,305.046586,305.438242,306.111620,307.481598,308.012573,311.007947,312.040509,313.015747,313.921326,315.310479,316.530860,317.645418,318.481336,318.919431,320.126869,320.493763,321.283241,321.999976,323.160973,324.391631,325.993808,326.504647,327.267821,327.647233,328.644149,329.848503,331.009501,331.424376,332.840793,333.184467,334.879523,335.803696,337.104013 diff --git a/data/torah/labels/Vayigash-6.txt b/data/torah/labels/Vayigash-6.txt deleted file mode 100644 index 9cf0e10a4..000000000 --- a/data/torah/labels/Vayigash-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.089796,3.993832,5.085170,5.897868,6.339048,7.311202,8.216780,9.145578,9.958277,11.096054,12.094512,13.114649,14.438186,15.181224,16.435102,17.944399,18.873197,19.685896,20.336054,21.334512,22.750930,24.260227,25.444444,25.812880,26.973878,27.829932,27.944490,28.893424,29.961542,32.051338,33.699955,34.141134,35.046712,36.045170,37.159728,38.204626,39.342404,39.665941,40.757279,41.218594,41.915193,43.006531,44.678367,45.418322,45.639728,46.429206,47.076281,47.772880,48.701678,49.788390,50.853424,52.130522,53.311790,54.820952,56.768480,57.205033,58.876870,59.596688,60.246847,60.989885,61.663264,62.801042,64.403219,65.835146,66.740724,67.202040,67.640135,68.499273,69.567391,71.657187,73.421904,73.955963,74.559681,75.186620,76.324398,79.064353,80.454466,80.904113,81.623932,82.831369,83.825201,84.334498,85.727696,88.537310,89.326789,90.719986,91.532684,92.507922,94.040439,94.340757,95.455315,95.963070,96.798988,97.213863,98.398081,100.511097,101.532775,102.786653,103.622571,104.223206,104.879888,105.808686,106.037802,106.618300,107.779298,109.222019,111.172495,112.054854,113.866010,115.816486,116.838164,118.347461,119.670999,120.692677,121.342836,122.109094,123.177212,123.943471,124.872269,125.940387,127.008505,127.681883,128.633901,130.955897,131.698935,132.743833,133.742291,134.787189,135.878527,136.784105,138.223743,139.849139,141.311997,141.799616,142.380114,143.030273,144.330591,145.654128,145.929684,147.508641,148.390999,149.157257,150.248595,150.852314,151.592269,151.914264,153.377121,154.511815,154.835353,156.367870,157.525783,160.056758,161.519616,162.120251,162.677529,164.203879,165.245693,166.244151,167.381929,168.008867,168.443879,169.419117,170.185375,171.323153,173.203969,173.897484,174.338663,175.313901,175.940840,177.426917,179.237080,180.212318,180.534314,181.370232,182.577670,183.599348,184.432182,185.052953,186.306831,187.000346,187.905924,189.435357,190.178396,191.430731,192.498849,193.334767,193.635085,194.540663,194.862659,196.046876,197.277534,198.490874,199.396452,200.043527,201.831463,202.574502,203.131781,203.828380,204.432098,206.498674,207.264933,208.007971,208.376407,208.905840,210.368697,211.994094,212.644253,212.873368,213.941486,214.916724,216.532730,217.252549,218.529646,219.620984,220.477038,220.659714,221.936812,222.879578,223.576177,223.991052,224.943070,227.288286,227.868784,228.635043,229.633501,230.771279,231.583977,231.814635,232.975633,233.904431,234.740349,235.947787,237.039125,237.782163,238.803841,239.848739,241.567016,242.449374,243.494272,244.399850,245.328648,246.443206,248.161483,248.599578,249.365837,250.175451,251.076404,252.051642,253.003660,254.721936,256.208013,257.136812,257.365927,258.457265,260.082662,261.243660 diff --git a/data/torah/labels/Vayigash-7.txt b/data/torah/labels/Vayigash-7.txt deleted file mode 100644 index 71ae035ca..000000000 --- a/data/torah/labels/Vayigash-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.413333,5.549569,5.897868,6.548027,6.893243,8.588299,9.540317,10.144036,11.026395,12.117732,13.209070,14.230748,15.020227,16.158005,17.574422,18.503220,19.269478,20.546576,21.754014,22.543492,22.842268,23.863946,24.093061,25.021859,25.834558,26.202993,26.737052,27.596190,28.475465,29.009524,30.216961,31.285079,31.746395,32.138050,32.997188,33.435283,34.085442,35.135057,36.040053,38.431709,39.151527,40.033886,41.078783,42.123681,43.075700,44.352797,45.694929,47.297105,47.663999,47.939554,49.030892,49.975201,50.506176,51.481414,52.712071,53.733749,54.964407,55.495382,56.049577,57.210575,58.394793,59.811210,60.202865,61.178103,61.894838,63.218375,65.075972,66.678149,67.746266,69.882502,70.788081,72.715337,74.707627,74.828353,75.794339,76.093115,76.905813,77.881051,78.528126,79.271164,80.153523,81.175201,81.871799,83.172117,83.752616,84.518874,85.494112,86.678330,87.374929,88.164407,89.650484,90.648942,91.229441,92.970938,93.432253,94.221731,95.429169,96.744004,96.952984,99.066000,99.600059,101.364775,102.595433,104.035070,105.347480,106.722921,108.948952,110.179610,111.758567,112.803465,113.639383,115.357660,117.563556,118.436440,118.904927,120.015397,120.990635,122.221293,125.100567,126.075805,127.840522,129.024739,130.417937,131.602154,133.482971,134.713628,135.289501,135.654853,136.793491,137.977708,138.949863,139.341518,140.038116,141.106234,142.081472,143.056711,143.307504,144.352402,145.045917,146.044375,146.880293,147.901971,148.758026,149.126461,150.032039,151.863332,153.953128,154.785962,156.295259,156.968638,157.824692,158.077028,159.299976,159.797170,160.447328,160.794086,161.955084,162.999982,165.410231,166.339029,167.546467,168.568145,169.914902,170.472181,172.004698,173.142476,174.048054,175.069732,176.532589,177.038802,178.501660,179.732317,181.311274,181.843791,182.072907,182.839165,183.698304,184.882521,185.483156,186.342294,187.062113,187.874811,188.919709,189.382567,189.916626,190.636444,191.959982,192.865560,193.446059,194.978576,195.512635,196.464653,197.625650,198.299029,199.576127,200.504925,200.933217,201.792355,202.115893,203.392990,204.786187,205.645326,206.759883,207.293942,208.431720,209.987457,210.286233,212.046323,213.068001,214.530859,215.436437,215.781652,216.733670,217.592809,218.405507,219.032446,219.961244,221.331221,223.188818,223.699657,224.489135,224.671811,226.250768,227.081784,227.871262,228.077158,229.029176,230.422373,231.281512,232.024550,233.417747,233.905366,234.973484,236.343462,237.411580,238.386818,239.199516,240.314074,240.705729,242.145366,243.120605,244.211942,245.465820,246.348178,247.625276,248.623734,251.642328,252.594346,254.219743,255.032441,256.588178,258.956614,259.885412,260.814210,261.812668,263.438065,265.527861,266.944278,267.849856,268.383915,269.312713,270.496931,271.512252,272.310593,273.968800,275.163902,275.883721,278.879095,280.713471,280.894605,281.544764,283.007621,283.399276,284.281634,285.790932,286.905489,288.066487,289.761544,290.783222,291.804900,292.989117,293.453517,294.266215,295.612972,297.656328,299.235285,300.071204,301.023222,302.068120,302.927258,305.040274,305.690433,306.804990,308.298061 diff --git a/data/torah/labels/Vayigash-H.txt b/data/torah/labels/Vayigash-H.txt deleted file mode 100644 index 216f8aaa6..000000000 --- a/data/torah/labels/Vayigash-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.967528,3.289524,4.287982,5.263220,6.609977,7.817415,8.232290,10.763265,11.226122,12.015601,13.223039,14.337596,15.521814,16.334512,17.565170,18.888707,20.258685,22.603900,23.811338,24.972336,26.156553,27.410431,29.825306,31.288163,32.890340,34.051338,34.608617,35.398095,36.489433,38.347029,39.786667,41.551383,43.432200,43.734059,44.987937,46.172154,47.054512,48.827224,50.048345,50.953923,52.765079,55.226395,56.712472,57.618050,58.709388,59.591746,61.658322,62.305397,63.512834,64.042268,64.689342,65.293061,66.477279,67.777596,70.331791,70.912290,73.118186,74.348844,76.508299,78.598095,79.550113,81.477370,81.941769,82.661587,83.474286,85.402301,85.773821,87.050918,88.374456,89.535453,91.764569,95.108242,96.106701,98.173276,98.684115,99.403934,102.074229,104.024705,105.348242,106.346701,107.461258,108.459716,110.038673,111.919490,113.753866,114.427245,116.354501,118.003118,119.233775,121.300351,122.716769,124.945884,125.735363,127.941258,129.032596,131.006292,132.167290,133.583707,134.233866,134.860805,136.184342,137.507880,138.575998,139.597676,140.596134,141.315952,142.825249,144.357766,145.031145,146.354682,147.631780,148.490918,148.932097,150.534274,152.531190,155.665884,156.734002,157.616360,158.452279,160.356315,161.583889,163.557585,165.206202,166.111780,167.156678,169.617993,170.709331,171.285204,172.121122,173.491100,174.582437,175.836315,177.090193,178.390510,179.551508,180.573186,182.198583,185.101077,186.378174,188.073231,189.930828,192.763662,194.156859,196.293095,197.825612,200.194047,201.169286,202.980442,203.886020,205.093458,206.324115,208.019172,208.692551,209.598129,210.765142,211.958151,215.185724,216.323502,217.136201,219.411756,221.276048,222.088747,223.760583,225.153781,226.361218,227.290017,228.242035,230.703350,233.466524,234.790062,236.206479,237.274597,238.296275,239.480493,241.918588,242.290107,244.728202,246.121400,247.119858,249.116774,250.556411,251.438769,252.251468,253.017726,255.571921,257.243758,260.262352,263.234506,266.090561,267.158679,268.203577,268.528656,269.666434,271.779450,272.777908,273.822806,274.728384,276.446661,278.652556,279.418815,280.603032,281.787250,282.739268,283.412647,284.132466,285.990062,287.290379,289.154701,290.269259,292.451935,292.702728,294.490665,295.744542,297.486039,299.157876,300.225994,301.456651,302.780189,303.360687,305.729123,306.959780,307.609939,308.236878,309.513975,310.930393,312.021731,313.043409,314.831345,315.899463,317.130121,317.478420,319.428896,321.356152,323.027989,324.984171 diff --git a/data/torah/labels/Vayikra-H.txt b/data/torah/labels/Vayikra-H.txt deleted file mode 100644 index b49a2f35a..000000000 --- a/data/torah/labels/Vayikra-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.846863,2.566681,4.074436,4.887135,6.349992,8.161148,8.857747,9.411942,10.410400,12.376245,12.823742,13.4,14.189093,16.093129,16.627188,17.625646,18.088504,19.151996,20.568413,22.100930,22.563787,24.560703,25.277438,26.577755,27.715533,28.734127,30.104105,31.915261,32.517438,33.605692,34.205293,35.158345,36.365783,37.271322,38.362660,38.943159,40.429236,42.379712,43.726469,45.189326,46.536084,48.788419,50.263786,51.540883,53.073400,53.697255,54.835033,56.576529,58.201926,59.037845,60.222062,62.451178,63.890815,65.562652,66.468230,67.280929,67.951223,69.669500,70.946597,71.875396,73.595368,75.104665,75.703758,76.702216,78.443712,79.135685,80.273463,81.945300,83.059858,84.197635,85.614053,87.564529,88.768883,89.860220,90.600175,92.109472,93.462299,94.225473,95.223931,95.966970,96.756448,97.894226,99.960802,101.121800,102.143478,104.349374,104.813773,105.742571,107.321528,108.366426,109.597083,110.489821,111.590915,112.530093,113.291725,114.011544,114.474401,115.612179,117.191136,117.632315,119.118392,120.418710,121.254628,121.835127,122.787145,124.064242,124.760841,126.548778,128.801113,129.448188,131.027145,132.466782,132.954401,133.459724,134.533358,135.855354,136.760932,138.363109,139.291907,140.592224,141.240841,141.516397,143.072134,144.883290,145.951408,146.624787,147.623245,148.575263,149.295081,150.850818,151.661975,152.451453,154.100070,154.445286,156.581521,157.835399,158.620252,160.361748,161.220886,162.126465,163.458113,164.657440,166.558793,166.880789,168.436526,168.990721,169.803419,171.382376,172.983011,174.492308,175.444326,176.953623,177.510902,179.089859,181.436774,182.272692,183.271150,184.103985,185.316841,186.026148,187.280026,187.580343,188.625241,189.855899,191.643835,192.944153,193.942611,194.894629,196.380706,197.541704,198.540162,200.072679,201.210457,201.790956,202.160933,203.786330,204.619164,205.501523,206.407101,207.312679,208.868416,209.306511,210.908688,212.038756,213.664153,214.127010,215.891727,216.517123,217.608461,218.161114,219.623972,220.295808,220.942883,221.848461,222.495536,223.842294,225.258711,226.837668,227.702540,227.934740,228.956418,230.117415,231.173198,232.055556,233.732776,235.708880,236.614459,237.636137,238.890014,239.888472,241.119130,242.698087,243.510785,244.625343,245.693461,247.133098,248.990694,250.917951,252.543348,253.982985,255.004663,255.515502,256.258540,257.465978,258.557316,259.091375,259.615936,260.312535,261.958068,262.999882,266.157796,266.756889,268.451945,270.123782,271.377660,272.561877,274.256934,275.905551,277.972127,279.365324,281.129212,282.070929,283.231926,283.998185,284.973423,286.087981,286.790986,287.975204,289.298741,290.575839,291.527857,292.642415,293.634462,294.632920,295.440993,297.066390,298.038544,299.176322,299.894598,301.612875,303.119088,304.349746,305.417863,306.903941,307.786299,309.016956,309.783215,310.874553,311.616049,313.125346,313.588204,314.047977,314.744576,316.137773,317.272467,318.317365,319.171877,320.588294,322.048068,323.441265,323.972240,324.808158,325.130154,326.128612,327.425845,328.749383,329.466117,330.441356,332.484712,332.995551,333.901129,335.387206,336.176684,337.540443,338.459468,339.574026,342.128221,343.146815,344.098833,345.817110,346.673164,347.485863,348.623640,350.527677,351.595795,352.872892,354.173210,354.704185,355.609763,357.081531,357.848344,358.846802,359.331337,360.724534,361.185850,361.793810,362.885147,363.883605,365.509002,366.971859,368.039977,368.710272,368.875896,370.451769,371.427007,372.352721,372.674717,375.646871,377.109728,379.269184,380.148458,380.699569,381.959615,384.646961,386.179478,386.431814,387.732132,388.660930,389.470544,390.399342,392.164059,393.394717,394.741474,396.366871,397.058844,397.825102,399.334399,401.328231,402.373129,402.975306,403.880884,405.413401,406.083696,407.082154,407.241610,408.031088,409.470726,410.492404,411.441338,412.370136,413.949093,414.937222,416.167880,417.375317,418.791735,419.231372,419.596723,421.152460,422.801077,423.099853,424.005431,424.883163,426.137041,426.739218,428.736134,430.056587,430.915726,432.072098,433.604615,435.299671,436.228469,436.991644,437.336859,438.892596,439.864751,441.443707,441.836905,442.417404,443.996361,444.948379,446.408152,447.499490,448.425204,449.052143,449.864841,450.677540,451.347834,451.768603,453.063027,453.598354,454.248512,454.997632,456.056585,457.612708 diff --git a/data/torah/labels/Vayishlach-1.txt b/data/torah/labels/Vayishlach-1.txt deleted file mode 100644 index a9e784766..000000000 --- a/data/torah/labels/Vayishlach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.733769,5.405605,6.770939,7.662585,8.554231,9.390150,10.337524,11.591401,12.510912,13.374694,14.712163,16.411864,17.219918,18.195156,19.616218,20.730776,22.792707,24.269497,25.411918,26.164245,27.752490,28.811320,29.786558,30.761796,31.541986,33.102367,33.576054,34.690612,36.055946,36.501769,37.532735,38.424381,39.650395,40.681361,41.628735,43.189116,44.749497,46.532789,47.563755,48.037442,49.597823,51.604027,53.025088,53.777415,54.808381,55.922939,57.371864,57.817687,58.625741,59.238748,60.102531,61.105633,62.638150,63.947755,65.062313,65.981823,66.789878,67.932299,69.520544,72.139755,73.588680,75.678476,76.235755,77.545361,78.632054,79.440109,80.108844,81.808544,82.560871,83.257469,84.817850,86.266776,87.938612,89.136762,90.307048,93.232762,94.235864,95.127510,96.882939,97.579537,98.554776,100.003701,101.564082,103.681741,105.130667,106.774639,108.557932,111.511510,113.016163,114.242177,115.356735,116.331973,117.892354,118.979048,119.870694,122.099810,123.994558,125.889306,127.087456,130.152490,132.604517,134.471401,135.948190,137.480707,138.873905,140.099918,141.520980,142.802721,144.056599,145.366204,145.895619,146.870857,148.180463,149.712980,152.332190,152.805878,154.282667,155.285769,156.929741,158.378667,159.548952,161.137197,163.282721,164.703782,166.096980,167.406585,168.688327,169.552109,170.861714,171.781224,172.533551,173.620245,174.623347,175.570721,176.880327,178.384980,179.248762,180.419048,182.313796,183.205442,184.626503,186.075429,187.189986,189.307646,189.920653,190.951619,192.344816,193.515102,194.852571,195.744218,196.858776 diff --git a/data/torah/labels/Vayishlach-2.txt b/data/torah/labels/Vayishlach-2.txt deleted file mode 100644 index e8b7bd966..000000000 --- a/data/torah/labels/Vayishlach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.055216,5.197638,6.197257,7.196876,9.767325,10.567020,12.223532,13.365954,16.250569,17.392990,18.506852,19.906318,21.876996,23.476386,25.332822,26.932212,27.846150,28.988571,30.245235,32.330155,34.500756,36.385752,37.785219,39.298928,40.498471,42.126422,43.354525,45.410884,46.553306,48.866710,50.608903,52.551020,53.522079,54.464577,55.921165,56.920784,58.177448,59.833959,60.290928,61.147744,62.718574,63.889556,65.774552,67.431064,68.573486,69.458863,70.629845,71.658024,73.314536,73.942868,75.256653,76.370514,77.627178,79.369371,81.140125,83.253605,85.024359,86.252463,87.252082,87.880414,89.137078,90.308060,91.850329,93.278356,94.792065,96.962667,98.876223,100.361371,101.646596,102.617654,104.074242,106.359086,107.929916,109.272261,110.043396,111.100136,112.870890,116.069671,117.754743,118.268833,120.496555,121.524735,121.896022,123.181246,124.437910,125.094803,125.494650,127.151162,128.750552,130.578427,132.149257,134.205616,135.233796,136.947429,137.318716,138.461137,140.688860,142.259690,145.858318,147.743314,149.742552,151.941714,153.084136,154.455042,155.768827,157.253976,158.996169,161.538057,163.023205,164.822520,166.136305,167.707135,168.221224,169.820615,170.763113,172.333943,173.590607,174.932952,176.618024,178.160294,179.388397,180.359456,182.558618,183.615358,184.700659,185.586035,187.813758,190.755494,192.040718,194.268441,196.667527,197.467222,198.495401,199.466460,200.209034,201.322895,202.550999,203.464936,204.578797,206.320990,208.063184,208.977121,210.747875,212.604310,213.832414,215.517486,218.344980,218.944751,220.058612,221.800805,222.600501,223.228833,224.114210,225.770721,227.312990,228.598215,230.340408,231.368588,232.282525,233.339265,234.424566,235.681230,238.280239,239.422661,240.250917,241.650384,242.650003,244.335075,245.420376,246.277192,248.105067,249.190367,250.132865,251.446650,253.902857,255.245203,257.073078,258.386863,259.443603,260.700267,262.299657,264.013290,265.041469,266.412376,268.068887,269.011385,270.553654,271.953121,273.238346,274.066601,275.066220,276.408566,277.893714,280.549845,282.063554,283.205976,285.119532,286.404756,287.233012,288.632479,289.574977,290.460354,291.545654,292.459592,293.773377,295.572691,296.715113,297.971777,299.885333,301.313361,303.741007,305.883048,307.368196,308.053649,309.138950,312.309170,313.622955,314.793937,315.964920,316.764615,318.478248,319.592109 diff --git a/data/torah/labels/Vayishlach-3.txt b/data/torah/labels/Vayishlach-3.txt deleted file mode 100644 index 00def3bc6..000000000 --- a/data/torah/labels/Vayishlach-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.325116,7.359184,8.306558,9.337524,10.507810,11.176544,12.179646,13.015565,15.049633,15.384000,16.359238,18.226122,19.758639,21.402612,22.099211,23.185905,24.634830,25.916571,26.418122,27.281905,28.452190,29.873252,30.541986,31.572952,32.548190,35.000218,36.031184,37.006422,37.981660,39.402721,40.350095,41.018830,43.944544,45.086966,45.839293,46.647347,48.040544,49.489469,50.631891,51.272762,53.111782,53.808381,54.950803,56.065361,57.179918,58.740299,60.607184,63.087075,64.229497,66.653660,67.991129,69.077823,70.303837,71.167619,74.316245,75.542259,76.824000,77.520599,79.164571,80.195537,82.341061,83.399891,84.040762,84.960272,85.684735,87.077932,88.081034,89.502095,92.316354,92.985088,94.935565,95.660027,96.997497,98.446422,99.756027,100.369034,102.013007,103.768435,104.855129,105.273088,106.025415,106.944925,109.006857,110.957333,112.099755,113.325769,115.276245,116.084299,117.366041,118.564190,119.818068,120.876898,121.824272,122.855238,124.777850,126.310367,127.341333,129.152490,130.657143,131.548789,132.663347,134.669551,136.731483,138.598367,139.462150,141.301170,142.973007,143.474558,144.449796,145.202122,146.316680,147.960653,149.242395,149.911129,150.496272,153.394122,156.180517,157.852354,158.604680,159.663510,160.610884 diff --git a/data/torah/labels/Vayishlach-4.txt b/data/torah/labels/Vayishlach-4.txt deleted file mode 100644 index 6e9030b6e..000000000 --- a/data/torah/labels/Vayishlach-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.554213,8.301134,9.629315,11.289542,13.674231,16.119293,16.783383,18.232308,19.681234,21.432018,24.028009,25.235447,26.744744,28.344599,30.427429,33.536580,34.683646,36.253315,37.340009,38.517261,39.513397,40.660463,41.928272,45.097796,46.607093,47.120254,48.206948,49.535129,50.863311,52.131120,52.825397,53.308372,54.183764,56.930685,58.168308,58.892771,59.798349,61.005787,62.394340,64.658286,65.322376,65.865723,66.439256,66.922231,68.491900,69.035247,70.212499,71.933098,73.804626,75.495039,76.732662,77.306195,78.815492,80.354975,82.890594,85.365841,86.905324,88.414621,90.648381,91.342658,91.976562,92.519909,93.395302,94.451810,96.504454,96.987429,98.074122,98.708027,100.006023,101.515320,102.088853,102.481270,103.024617,105.107447,105.560236,107.703438,109.303293,110.842776,112.412444,114.163229,116.095129,117.694984,119.777814,121.438041,122.645478,123.158639,124.275519,125.301841,126.780952,128.260063,129.075084,129.980662,131.942748,132.999256,134.025578,135.806549,136.561197,137.587519,138.794957,139.247746,140.455184,141.360762,142.477642,145.858467,148.031855,150.054313,151.473052,153.404952,153.918113,154.763320,156.332989,157.600798,159.774186,160.709950,161.374041,161.887202,162.792780,164.845424,166.535837,167.743274,169.282757,169.977034,170.731683,171.667447,172.542839,173.297488,174.504925,175.893478,177.221660,178.006494,179.213932,179.757279,181.025088,182.202340,184.013497,186.307628,187.605624,189.145107,190.714776,192.435374,194.337088,195.816200,197.144381,198.442376,199.408327,200.676136,202.336363,203.815474,204.811610,205.717188,206.894440,207.981134,208.584853,209.188571,210.667683,213.565533,214.682413,216.523755,217.942494,219.964952,221.202576,222.530757,223.768381,225.307864,226.847347,227.481252,229.050921,229.715011,230.318730,231.465796,233.216580,234.182531,234.605134,237.291683,238.861351,239.827302,240.280091,241.608272,242.634594,243.540172,244.325007,245.592816,246.317279,247.434159,249.758476,251.297959,251.901678,253.380789,255.433433,256.037152,257.335147,258.602957 diff --git a/data/torah/labels/Vayishlach-5.txt b/data/torah/labels/Vayishlach-5.txt deleted file mode 100644 index 7d5fb7da5..000000000 --- a/data/torah/labels/Vayishlach-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.517674,5.528207,5.944308,6.865676,8.084259,9.302843,11.026692,12.453326,13.434137,14.860771,16.317127,17.714039,18.813736,20.151205,21.785890,23.301689,24.490551,25.619969,27.373540,29.127111,30.553745,31.861493,34.150052,35.933344,37.092484,38.697448,39.381043,40.480740,42.115425,42.472083,43.304287,45.414516,46.038668,46.662821,47.762518,49.367481,50.496900,51.121052,51.834369,52.726015,53.706826,54.598473,55.727891,56.619537,57.481462,58.402830,59.740299,61.434427,63.633821,64.852405,65.744051,66.279039,67.140963,68.032610,70.380611,71.510030,72.163904,73.144715,74.274133,75.997983,77.632668,78.286541,79.356517,82.061177,83.309482,84.349736,84.825281,85.657484,86.459966,88.540473,89.759057,91.423463,93.682300,95.049491,95.495314,96.327517,98.051367,99.775216,101.082964,102.450155,103.312080,104.233448,105.481752,107.175880,108.394463,110.623579,112.109656,112.763530,113.120189,114.101000,115.527634,116.300394,117.489255,119.331991,120.639739,122.333867,122.958019,123.819944,125.870730,127.891795,128.813163,130.626177,131.815039,132.528356,134.133319,135.262737,136.897422,138.829322,140.345121,142.009527,142.841731,143.317275,144.208922,145.278897,146.438037,147.329683,148.964368,150.212673,151.847358,152.947055,154.225081,155.562551,157.018906,158.980528,160.080225,161.952682,162.814607,163.498202,164.568178,165.073444,166.173141,167.362003,168.105041,169.412789,170.988031,173.276590,175.267933,176.783732,178.150922,179.458670,180.380038,181.955280,183.322471,185.105763,186.740448,188.167082,189.088450,190.544805,190.960907,191.495895,192.536149,193.962783,195.805518,197.024102,197.826583,198.777673,199.312660,200.085420,200.947345,202.344258,204.097829,205.970286,207.099704,208.645224,209.566592,210.101580,211.498493,213.370950,215.867559,217.234750,218.304726,219.553030,221.187715,222.227969,223.624882,224.457085,225.408174,226.686200,227.904784,228.350607,229.182810,230.312229,230.995824,231.917192,233.016889,234.057143,235.127118,236.434866,237.504842,238.872033,240.387831,241.695579,243.478872,244.608290,245.499937,246.748241,249.244851,249.750117,250.730928,251.830625,253.019487,254.059741,255.664704,256.169970,258.934073,260.360707,262.262886,263.273419,264.700053,266.334737,267.048054,269.752715,271.536007,273.051806,274.805377,275.488972,276.529226,278.461127,280.452470,282.027712,283.335459,284.256827,286.099563,287.139817,287.555918,288.685337,289.785034,290.914453,292.073593,293.529948,294.897139,295.907672,297.245141,298.582610,299.741751,301.643929,303.011120,304.556640,305.804945,306.904642,308.569049,310.560392,311.838418,312.997558,313.918926,315.286117,315.880548,318.020499,319.506576,320.279336,321.170982,322.597616,324.648403,326.253366,328.423039,329.611900,331.484357,333.297371,334.486233,336.299247,337.428666,339.984718,341.203302,342.392163,342.986594,344.383507,345.215710,345.988470,347.207053,347.742041,348.930902,349.881992,350.922246,351.724727,352.764981,353.983565,356.628782,358.025694,359.155113,360.106202,361.562558,362.721698,364.534712,365.574966,366.377448,368.160740,368.963222,369.617096,370.241248,371.727325,372.618971,374.045605,375.918063,377.552747,378.533558,379.722420,381.149054,382.219029,383.080954,384.358980,386.053108,387.004198,388.876655,390.154681,392.383797,392.918785,393.572659,394.315697,395.118179,396.188154,397.020357,397.882282,399.071144,400.111398,401.835247,402.281070,403.113273,404.302135,405.134338,406.471808,407.541783,410.335608,411.405584,412.861939,414.437181,416.606854,418.538754,419.370957,419.905945,420.440932,423.353644,423.977796,425.642202,426.712178,427.960483,428.941293,430.516535,431.110966,432.032334,432.923980,434.410057,435.004488,436.015020,436.758059,437.382211,437.857756,438.630516,439.522162,440.978518,441.810721,442.405152,444.069558,445.436749,446.655332,447.784751,448.706119,450.192196,452.094375,453.907389,455.007086,455.690681,457.652303,459.138380,460.148912,461.397217,462.734687,464.607144,465.736562,466.360715,466.955146,467.727906,468.560109,469.630084,470.581174,472.245580,473.612771,474.742190,475.425785,476.347153,477.654901,478.695155,479.051813,479.913738,480.270396,480.775663,481.310650,481.964524,482.915614,484.253083,485.471666,486.868579,487.344123,487.819668,488.919365,490.316278,491.505139,492.456229,493.288432,493.853141,495.517547,496.944181,497.835828,499.529956,501.372691,502.442667,504.493453,506.811733,508.327532,510.021660,510.645812,512.696599,513.588245,515.133765,517.243995,518.403135,519.502832,521.553618,523.158581,526.517116,527.349319,528.151800,529.905371,530.856461,531.510335,532.253373,533.353070,535.255249,535.849680,536.414389,537.365478,538.078795,539.772923,540.486240,541.377887,542.953128,544.647256,545.836118,548.094955,549.432424,550.680729,551.631819,553.266503,554.247314,554.752580,555.584784,556.803367,557.516684,558.319166,559.091926,560.191623,560.726610,562.420738,564.412082,565.571222,566.700640,569.732238,571.753302,574.101304,576.003483,577.251788,577.905662,578.410928,580.134777,580.669765,582.631387,583.939135,586.316858,587.149061,588.456809,589.675392,591.488406,592.885319,594.371396,595.203599,596.511347,598.651298,599.067400,600.761527,601.742338,602.307048,603.109529,604.417277,605.695303,607.032773,608.102748,609.469939,610.539915,611.877384,613.749841,614.849538,616.068122,617.316426,618.743060,619.634707,620.199416,621.239670,623.587672,625.519572,627.421751,629.829195,630.928893,631.761096,632.771628,635.327681,636.902922,637.972898,639.132038,640.261457,641.628648,643.352497,645.254676,647.751285,648.791539,650.039844,651.169263,652.417567,653.160606,653.606429,654.646683,655.478886,656.132760,656.697469,657.648559,659.580459,660.323498,661.363751,662.820107,664.098133,665.346438,666.119198,666.594743,667.724161,669.715505,671.320468,672.449887,674.084571,676.075915,677.235055,678.513081,680.415260,681.396071,683.803516,684.665440,687.459265,688.796735,690.074761,690.461141,691.412230,692.511927,693.849397,694.770765,695.929905,697.267374,699.169553,700.417858,700.952845,701.576998,702.349758,703.657506,704.846367,705.440798,707.610471,708.650725,710.196245,710.642068,711.830930,712.811741,714.030324,715.516401,716.913313,718.399390,719.409923,721.906532,723.035951,723.808711,724.492307,725.918941,727.048359,728.534436,729.009981,729.723298,730.971603,734.151808,735.459556,736.588974,737.748114,738.461431,739.650293,740.868876,742.503561,744.167967,745.713488,746.842906,748.180376,749.131465,750.825593,752.787215 diff --git a/data/torah/labels/Vayishlach-6.txt b/data/torah/labels/Vayishlach-6.txt deleted file mode 100644 index efb4822f8..000000000 --- a/data/torah/labels/Vayishlach-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.314286,4.806400,6.122971,8.024686,9.224229,10.511543,11.798857,12.442514,13.934629,15.017143,15.807086,16.245943,17.211429,18.791314,19.932343,21.102629,22.711771,23.267657,23.823543,24.906057,26.339657,28.007314,30.260114,33.042713,33.949685,34.359285,35.734371,37.314256,38.250485,39.947399,41.059171,42.258713,43.692313,44.774828,46.032885,47.759056,48.373456,49.602256,50.333685,52.176885,53.698256,55.892542,56.945799,58.145342,59.461913,60.456656,61.246599,62.826485,63.908999,64.552656,66.103285,66.571399,67.478371,68.034256,69.409342,70.462599,71.779171,72.744656,74.412313,76.811399,77.630599,78.917913,80.673342,82.048428,83.130942,84.271971,85.295971,86.583285,87.314713,87.665799,88.104656,88.660542,89.947856,92.668771,94.073113,95.155628,96.179628,97.028085,98.315399,99.368656,100.334142,101.065571,102.733228,103.698713,104.225342,105.190828,106.741456,107.794713,109.550142,110.720428,112.124771,113.207285,114.084999,114.845685,116.542599,119.087971,120.580085,121.633342,122.832885,124.412771,125.904885,127.221456,127.631056,128.450256,129.503513,131.229685,132.634028,133.921342,135.150142,137.051856,138.339171,139.421685,141.908542,143.780999,144.834256,146.384885,147.584428,149.222828,150.422371,154.138028,155.074256,155.513113,156.478599,157.619628,159.228771,160.662371,162.622599,163.617342,164.436542,165.372771,166.308999,167.596313,168.942142,170.112428,171.311971,172.716313,174.296199,175.788313,177.455971,179.503971,181.522713,182.868542,183.834028,185.472428,186.759742,188.134828,189.422142,190.855742,191.908999,193.313342,194.922485,196.473113,198.257799,199.545113,200.715399,201.797913,202.646371,204.079971,205.367285,206.683856,207.912656,209.199971,209.726599,210.779856,211.833113,213.822599,214.700313,215.665799,216.602028,217.626028,219.556999,220.698028,222.073113,223.301913,224.325913,225.554713,226.169113,226.666485,227.690485,229.358142,231.289113,232.634942,233.571171,235.151056,236.116542,237.754942,238.749685,241.119513,242.582371,243.694142,245.566599,246.005456,247.117228,248.550828,250.072199,251.008428,252.559056,253.729342,254.987399,256.830599,258.088656,260.370713,261.482485,262.506485,263.384199,264.144885,265.754028,266.836542,267.304656,268.065342,268.972313,269.615971,270.435171,271.078828,273.243856,274.209342,275.379628,276.052542,277.369113,278.042028,278.744199,279.475628,280.236313,281.640656,282.606142,283.279056,283.805685,284.595628,285.414828,286.380313,287.726142,290.154485,291.529571,292.407285,293.372771,295.332999,296.444771,297.117685,297.966142,299.458256,300.306713,301.038142,301.828085,302.471742,303.261685,303.876085,304.519742,305.894828,307.123628,308.293913,309.464199,310.692999,311.102599,312.009571,313.209113,314.467171,317.392885,318.095056,319.616428,320.552656,321.137799,321.693685,322.454371,323.946485,324.531628,325.555628,326.111513,326.989228,327.749913,328.715399,329.212771,330.646371,331.494828,332.109228,332.869913,334.566828,335.766371,337.258485,338.077685,339.511285,340.154942,340.944885,341.998142,343.139171,344.221685,345.391971,346.094142,348.639513,349.604999,351.301913,352.238142,353.349913,355.076085,356.246371,357.504428,359.025799,360.049799,361.337113,363.121799,364.613913,365.550142,366.749685,367.861456,369.353571,370.289799,371.021228,374.063971,375.146485,376.316771,377.574828,378.276999,379.476542,380.939399,382.314485,383.396999,383.923628,384.772085,387.141913,388.048885,388.809571,389.862828,391.003856,393.871056,394.748771,395.860542,396.767513,397.703742,399.722485,400.717228,401.858256,403.701456,404.666942,406.334599,408.265571,410.050256,412.244542,413.678142,415.930942,417.715628,418.593342,419.119971,420.758371,422.191971,423.215971,424.239971,426.873113,427.926371,429.184428,430.471742,431.495742,432.812313,433.894828,435.035856,436.381685,437.815285,439.073342,440.331399,442.145342,443.140085,444.515171,445.919513,446.855742,447.762713,449.225571,451.419856,452.619399,454.579628,456.627628,458.031971,458.675628,459.465571,460.314028,461.513571,463.210485,464.468542,465.434028,466.194713,466.633571,467.482028,468.125685,468.915628,469.764085,470.934371,472.075399,473.450485,475.001113,476.054371,477.517228,478.570485,480.091856,481.291399,482.666485,483.866028,485.299628,486.352885,487.640199,489.190828,490.741456,492.116542,493.228313,495.071513,496.271056,497.470599,498.640885,499.869685,501.156999,502.473571,503.848656,505.370028,506.394028,507.564313,509.904885,511.338485,512.420999,513.035399,513.913113,515.083399,516.312199,517.482485,518.594256,519.764542,521.256656,522.426942,523.187628,524.943056,526.054828,527.371399,528.980542,530.326371,533.398371,534.480885,535.972999,537.026256,538.108771,540.654142,542.263285,543.462828,544.837913,546.008199,547.383285,549.080199,550.338256,551.801113,552.678828,553.673571,555.399742,557.213685,559.700542,560.695285,561.660771,562.538485,563.445456,565.610485,566.429685,567.775513,568.916542,570.818256,571.988542 diff --git a/data/torah/labels/Vayishlach-7.txt b/data/torah/labels/Vayishlach-7.txt deleted file mode 100644 index 560ccb9b1..000000000 --- a/data/torah/labels/Vayishlach-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.396615,3.973399,4.806531,6.216446,7.914754,9.068321,10.253932,11.631804,13.105807,14.451635,15.925638,17.303510,18.649339,20.507864,21.437127,22.814999,23.872435,24.929872,25.763004,26.724310,28.358531,28.999401,29.960707,31.274493,32.171712,33.773888,34.895412,36.241241,38.003635,39.125159,40.246683,42.041121,44.059864,45.469780,47.360348,49.026612,50.500615,51.493965,52.455271,53.929273,55.146928,56.364582,58.639673,59.953459,61.491548,62.420811,63.414161,64.759989,66.842819,67.868212,69.470389,70.944392,72.194090,73.443788,74.373050,74.949834,76.391793,78.282362,79.019363,79.884539,81.166280,81.903282,82.928675,84.306547,85.844637,87.254552,88.824686,90.490950,91.452256,92.509693,93.695303,95.521785,97.156005,98.373660,99.046574,99.911750,100.616707,101.834362,103.276321,104.493976,105.583456,106.961328,107.890590,109.044158,110.293856,111.896033,113.081644,114.139080,115.100386,116.350084,118.464958,119.554438,120.708005,121.829529,122.983097,124.393012,126.315624,128.238237,130.224936,131.698939,133.204985,134.646944,136.024816,137.018166,137.947429,138.876691,139.549605,140.478868,141.183826,141.696522,142.433524,143.394830,144.548397,145.605834,146.535097,147.432316,148.009099,149.066536,149.995799,151.181410,152.527238,153.360370,154.834373,155.731592,156.949246,157.558073,158.166901,159.480686,160.730384,161.755777,163.037518,163.934737,165.120348,165.889393,166.850699,168.292659,169.446226,170.375488,171.176577,172.778754,173.259407,173.772103,176.303543,177.072588,177.745502,179.155418,180.212854,181.494596,182.359771,183.160860,185.660256,186.653605,188.127608,189.281176,190.979483,192.838008,194.215880,195.369448,196.875494,197.932931,199.599195,201.265459,202.386982,204.021203,205.206814,206.616729,207.898471,209.308386,210.109475,211.134868,212.416610,213.890612,215.781181,216.582269,217.319271,218.857361,220.459537,221.613105,222.926890,224.400893,225.394242,226.643940,227.925682,229.111293,230.937774,232.059298,233.180822,234.078041,235.135478,236.128827,239.525442,240.903314,243.370667,244.267886,246.158454,248.049023,250.227984,251.445638,253.079859,254.233426,255.386993,256.604648,257.822302,260.225567,262.692920,264.198966,265.256403,266.345883,267.659668,269.197758,271.024239,272.145763,273.395461,274.420854,275.734639,277.304773,278.971037,280.124604,280.893649,283.168740,284.995222,287.078052,288.648185,289.865839,291.532103,292.685671,293.871282,295.345284 diff --git a/data/torah/labels/Vayishlach-H.txt b/data/torah/labels/Vayishlach-H.txt deleted file mode 100644 index 360f7c96c..000000000 --- a/data/torah/labels/Vayishlach-H.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.007746,2.210540,3.705905,4.811175,6.078984,7.574349,10.240000,11.800381,13.165714,14.140952,15.343746,16.286476,18.041905,19.082159,20.935111,22.332952,23.340698,24.836063,25.876317,27.371683,28.704508,30.687492,32.150349,32.995556,34.035810,35.433651,36.376381,38.066794,39.399619,40.634921,41.155048,42.032762,43.658159,44.600889,46.323810,47.819175,49.021968,50.419810,51.330032,52.402794,53.670603,54.450794,54.938413,55.978667,57.148952,58.839365,60.074667,61.374984,62.252698,63.975619,64.853333,65.731048,66.543746,67.063873,67.779048,68.494222,69.339429,70.444698,72.200127,73.337905,74.345651,76.101079,77.043810,77.758984,78.994286,79.774476,80.977270,82.277587,84.033016,85.105778,86.471111,87.771429,88.941714,90.859683,91.672381,92.452571,94.598095,95.573333,96.451048,97.751365,99.506794,100.872127,101.749841,102.757587,104.838095,106.398476,109.096635,109.779302,111.242159,112.282413,113.160127,114.330413,116.345905,117.256127,118.003810,118.621460,120.636952,122.684952,123.562667,125.350603,126.780952,127.691175,128.828952,130.356825,131.949714,134.127746,136.305778,137.248508,138.158730,139.589079,140.531810,141.864635,144.010159,145.375492,146.253206,147.878603,149.406476,150.771810,152.364698,153.567492,155.127873,156.428190,158.346159,159.613968,160.459175,162.377143,163.547429,165.497905,166.668190,168.553651,169.593905,170.471619,171.999492,172.909714,173.494857,174.632635,175.802921,176.843175,177.590857,178.176000,178.956190,180.614095,181.686857,182.662095,183.247238,184.124952,184.840127,185.847873,187.960889,188.903619,189.586286,190.333968,191.179175,192.739556,193.682286,194.462476,195.632762,196.217905,197.355683,198.428444,199.306159,200.671492,201.256635,202.556952,204.019810,204.962540,206.652952,207.888254,208.733460,209.708698,210.553905,211.886730,212.861968,213.772190,214.454857,215.267556,216.405333,217.218032,217.673143,219.396063,220.111238,221.379048,222.451810,224.012190,224.759873,225.475048,226.125206,226.742857,227.328000,227.685587,228.953397,230.611302,231.554032,232.756825,233.439492,234.999873,236.072635,237.730540,238.835810,241.631492,242.866794,243.581968,244.362159,245.369905,246.702730,247.385397,248.035556,249.758476,251.416381,252.749206,254.049524,254.992254,255.967492,256.910222,257.690413,259.478349,260.681143,262.013968,263.541841,264.939683,266.207492,267.150222,268.060444,269.425778,270.726095,272.253968,273.294222,274.171937,275.407238,277.162667,279.860825,281.811302,282.526476,283.534222,284.899556,285.679746,288.215365,288.963048,289.678222,290.393397,292.051302,292.961524,294.359365,295.172063,296.537397,298.715429,299.918222,300.893460,301.771175,303.494095,305.021968,305.639619,306.582349,307.915175,308.532825,309.378032,310.158222,311.068444,311.946159,314.091683,315.522032,316.334730,317.667556,319.292952,320.398222,322.023619,323.193905,324.624254,325.664508,326.834794,327.452444,328.232635,330.605714,331.841016,333.173841,334.994286,336.359619,337.529905,338.375111,339.545397,341.008254,342.211048,343.478857,344.454095,345.461841,346.112000,346.664635,347.899937,349.297778,350.760635 diff --git "a/data/torah/labels/Va\342\200\231ethanan-1.txt" "b/data/torah/labels/Va\342\200\231ethanan-1.txt" deleted file mode 100644 index ac8ee8d42..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.436553,4.110399,5.364276,6.432394,7.639832,9.265229,10.973063,13.886846,15.304110,16.855529,18.686172,19.101856,20.590208,21.953593,23.834409,25.250827,26.783344,28.966019,30.521756,31,31.798854,33.958310,35.862346,37.365051,38.479609,40.522965,44.122058,45.265904,47.442511,49.236633,49.584932,51.117449,52.696406,54.228923,55.575680,57.084977,58.385295,61.148469,62.541667,65.351281,67.557177,68.880714,70.064932,72.758447,74.274221,75.712517,77.296258,78.818855,80.281712,82.023209,82.499978,83.485776,84.665501,86.976470,88.391546,90.852861,92.060298,93.569595,95.427192,98.422566,99.630004,102.764697,104.349140,106.921069,108.917985,111.402521,113.236897,115.164153,116.510911,118.368507,119.136109,120.110004,121.576363,122.141985,123.547959,125.131700,126.909369,127.345705,128.800162,130.981846,132.969602,133.502903,134.407898,137.413773,139.251242,140.714099,142.316276,143.941672,145.776049,147.355006,147.998981,149.178707,150.187840,152.091877,154.274552,156.108929,157.362806,157.921603,160.135609,164.491332,168.160085,169.331003,169.767340,171.286438,171.690454,173.710531,176.231589,178.801128,180.207102,181.677718,183.424173,185.165670,187.766305,189.507802,191.458278,192.036677,193.297206,196.189957,198.935103,200.235421,202.185897,203.555874,205.576010,206.829888,209.685942,210.427466,211.497099,212.948523,214.580746,216.261451,218.695285,220.912968,222.515145,224.094102,226.973376,227.509244,229.012182,230.789850,232.842249,234,235.796959,237.329476,239.326392,241.485848,243.366664,245.386800,246.013157,247.306006,249.326084,251.306198,252.745835,253.953273,254.675250,257.050862,258.731567,260.153701,261.979852,262.917168,264.129215,267.135090,268.670349,270.334894,272.786349,274.806485,276.780181,278.498458,280.309614,282.167210,284.373106 diff --git "a/data/torah/labels/Va\342\200\231ethanan-2.txt" "b/data/torah/labels/Va\342\200\231ethanan-2.txt" deleted file mode 100644 index 532d1f1fa..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0.335804,3.096153,5.232568,8.042182,9.435380,11.292976,12.848713,14.265130,15.751207,17.306944,19.327080,20.627398,22.624314,24.226491,25.503588,28.266763,29.659960,30.937058,33.096513,37.183225,40.410799,41.687897,42.756015,44.961910,47.678645,49.396922,50.813339,52.485176,55.550210,57.036287,57.493522,59.208077,60.833474,63.875288,65.361365,65.953326,67.451161,69.215293,70.538830,72.071347,73.952163,75.600780,76.168812,77.504816,79.223093,80.085644,80.941370,82.596321,84.128838,85.545256,87.588612,89.353328,90.955505,92.232603,94.392058,96.365754,97.782172,99.152149,100.136321,102.040357,103.410335,105.337591,106.846888,108.356185,110.097682,111.490879,114.091514,116.738589,117.992466,120.035822,122.195278,126.607069,128.371786,131.181400,132.969337,135.407432,138.008067,138.498219,139.610244,140.214903,142.165380,143.188044,144.279381,147.228316,148.048210,149.394967,152.204582,153.690659,154.851657,156.337734,158.613289,160.378006,161.956963,164.046759,166.624174,168.465361,171.291385,172.847122,174.542178,177.955512,180.672246,182.367303,184.782178,187.684673,188.2,189.495829,189.957633,191.283765,193.334989,193.671510,195.035022,196.848839,199.170835,200.735360,203.614634,204.138162,205.531359,206.854897,208.178434,209.664511,210.162786,212.159702,213.069547,214.551358,217.035893,219.032809,220.983285,222.167503,223.467820,226.718614,228.227911,229.621108,230.162419,231.478705,233.192096,234.678173,235.834933,238.323706,241.530046,244.253073,245.785590,246.946588,248.154026,249.477563,250.824320,252.403277,253.703595,256.652529,258.068946,259.601463,261.157200,262.805817,265.336792,267.542688,268.308946,271.165001,272.720738,274.021055,275.553572,277.086089,278.734706,280.545862,283.030397,283.746201,284.887994,285.892900,287.796936,291.187049,292.649907,294.205643,295.738160,297.247458,299.058614,300.892990,302.425507,304.445643,306.790859,308.532356,310.668591,312.038569,314.546324,316.032401,317.332718,319.422514,321.767730,323.323467,325.738342,327.294079,328.594396,330.266233,330.877558,332.340415,335.567989,337.193385,340.444179,343.253794,345.111390,346.272388,348.176424,349.523181,351.520097,353.470574,356.071209,357.441186,358.834383,359.461159,360.598937,362.015354,363.454991,364.708869,367.123744,369.445739,369.943587,371.349776,372.799642,374.308939,375.702136,376.254122,377.629392,379.128786,380.638083,382.031280,384.306836,387.000350,387.574509,388.950827,390.848523,393.727797,394.318780,395.313165,396.220693,397.335251,399.007088,401.630943,402.459439,403.697519,405.803112,408.868146,411.700981,412.112242,413.372818,414.116078,416.066332,416.832819,419.642205,421.212369,422.941811,424.683308,428.003761,430.163217,431.695734,433.948070,435.759226,438.011562,439.892378,441.564215,443.328932,445.279408,446.997684,448.576641,449.160609,451.164445,453.620275,455.292649,457.164401,458.836238,461.413653,462.899730,464.525127,466.452383,467.938460,470.190796,471.769753,473.464810,474.881227,477.017463,478.898279,479.896140,480.920658,481.704112,483.481952,486.856834,488.664806,490.141317,490.571102,492.235552,493.787395,494.947510,495.444703,496.492,498.643205,500.315042,502.288738,504.146334,505.771731,507.188148,509.603023,511.274860,512.807377,514.386334,516.151051,517.799667,519.355404,520.980801,521.509638,523.166946,524.944786,526.677426,529.069770,529.599949,530.624832,532.061264,534.240777,536.226349,539.244943,540.026289,541.563065,541.984925,542.949177,544.485954,547.047248,548.267630,549.698941,551.145319,553.135473,554.233938,555.544718,557.458156,558.723737,559.718121,561.059034,562.565678,564.509248,566.092208,567.973024,569.737741,571.432797,572.942094,574.103092,575.449850,577.748625,578.988094,579.937279,581.097395,582.890301,584.321612,586.665088,587.942185,591.610938,593.514974,594.768852,596.417469,597.764226,599.668262,602.106358,602.898529,604.149714,605.943706,608.776541,613.443752,615.115588,617.298264,617.889633,619.179080,620.177538,622.824613,623.449148,624.790061,628.390940,631.012500,632.855634,634.411371,635.781348,637.894364,640.286019,640.805683,643.397493,644.512051,646.160668,646.937723,648.482663,650.116741,651.653518,652.477030,654.032767,657.097801,661.300613,663.761928,665.085466,666.571543,668.754218,670.449275,672.213992,674.559207,675.975624,678.715579,681.246554,682.593311,684.613447,687.480436,688.839479,690.382930,692.333406,693.378304,694.678622,696.304019,697.581116,699.090413,699.625052,700.950899,701.674088,703.376595,704.792840,706.646012,707.979101,710.005827,712.367673,715.154067,715.535209,716.733024,718.265541,720.169577,721.848046,723.675791,724.559116,725.905873,727.322290,729.528186,731.339342,732.593220,735.611814,736.935351,738.328549,739.953946,742.624240,744.388957,746.223333,746.692600,748.104150,749.751087,751.845322,754.078138,755.749975,756.725213,758.443489,760.115326,761.903263,763.598319,765.455916,766.918773,769.310428,770.912605,772.491562,772.998599,774.354578,776.300092,777.716509,779.156146,781.315602,783.428618,784.3,786.479503,788.151339,790.550997,791.409784,792.509634,795.402390,796,797.692488,799.946567,801.293324,803.058041,805.565796,806.039294,807.307293,809.158047,810.815355,811.553610,812.638393,814.084771,817.291873,818.731510,820.240807,821.726884,822.887882,824.490059,826.579855,828.507111,830.968426,832.315184,834.567519,837.214594,837.919874,839.884889,840.990401,842.244279,843.800016,846.238111,848.536886,850.371263,853.366637,856.083372,857.801648,859.055526,861.725821,863.049358,865.487453,868.482827,870.085004,872.639199,876.029313,877.515390,879.024687,880.859063,882.530900,884.411716,885.712034,888.150129,888.829364,890.004546,892.155848,895.081562,897.821517,899.516573,901.977889,904.067685,905.832401,907.481018,908.107310,909.570167,910.404501,911.729623,913.101393,914.382040,916.943334,917.500792,919.903047,922.062503,922.548049,923.768430,925.772266,927.067980,929.569008,932.813342,933.410950,934.992925,936.785831,938.383756,939.823393,941.170150,942.725887,946.185661,947.602078,948.972055,949.532037,951.309876,952.826568,954.568064,956.309561,959.630014,962.230649,963.832826,965.411783,967.640899,971.054232,973.515547,976.394822,979.041896,980.667293,982.617769,986.356182,987.286397,989.492293,989.910087,992.109787,993.671885,994.925762,997.503177,999.941273,1002.750887,1007.209118,1007.613150,1009.868498,1011.168815,1012.863872,1014.187409,1016.045005,1018.250901,1019.760198,1020.690817,1021.790667,1023.508241,1024.969685,1026.958384,1030.209178,1030.634665,1031.927454,1032.743966,1035.470991,1037.248831,1038.665076,1040.380871,1041.983048,1043.747765,1045.512481,1047.068218,1048.670395,1050.876291,1052.896427,1054.173524,1055.798921,1056.338006,1058.492507,1060.149815,1062.764908,1065.574522,1066.874840,1068.778876,1069.641670 diff --git "a/data/torah/labels/Va\342\200\231ethanan-3.txt" "b/data/torah/labels/Va\342\200\231ethanan-3.txt" deleted file mode 100644 index 4530b75ae..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.876608,2.538749,4.178121,5.965491,7.456864,8.885005,10.580061,12.530538,14.225594,16.106411,18.149767,21.121921,22.584778,24.349494,24.784111,26.253531,27.2,28.366547,30.827862,31.648980,32.871218,34.008996,35.495073,37.143689,40.266956,41.009995,43.123011,43.944267,45.048566,46.710706,48.611922,49.579607,51.923374,54.825868,56.451265,58.169541,59.911038,61.112130,62.479067,64.311182,66.098552,66.884085,68.022537,69.696062,72.301107,74.125209,75.773825,76.641863,77.872521,79.544358,81.448394,82.702271,84.792067,86.278145,88.089301,89.993337,92.176013,93.865409,95.482011,97.155537,97.621288,99.037706,100.941742,102.752898,105.074894,106.700291,109.115166,112.031517,113.285394,114.608932,116.141449,118.904623,120.831879,122.341177,124.082673,125.522310,127.240587,129.191063,130.677140,132.047118,133.626074,135.646211,137.550247,139.291743,141.567299,143.378455,143.877627,145.960995,146.541606,148.158209,149.500908,150.275730,152.837249,154.480905,156.268842,158.103218,159.728615,161.145032,162.584670,164.349386,166.137323,169.179137,170.874193,171.444411,172.117789,174.323685,176.970760,177.814896,178.572937,180.296723,181.389637,183.848695,184.798007,187.189663,188.675740,190.277917,192.158733,193.714470,194.782588,196.268665,197.940502,199.287259 diff --git "a/data/torah/labels/Va\342\200\231ethanan-4.txt" "b/data/torah/labels/Va\342\200\231ethanan-4.txt" deleted file mode 100644 index 5854b14a6..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-4.txt" +++ /dev/null @@ -1 +0,0 @@ -2.630160,3.949728,6.229799,6.597842,6.867141,9.504747,10.990824,13.034180,14.171958,15.356175,15.556544,16.831229,17.235178,18.839169,21.068284,23.181300,24.226198,25.484725,26.508063,28.285441,29.335710,30.564811,32.166988,33.629845,35.673201,36.373408,38.240552,39.165148,40.772279,42.181304,42.360837,43.514778,44.211376,45.349154,45.484713,46.122055,47.100511,48.275389,49.320287,50.736056,51.651675,53.267473,54.335695,55.4,56.534976,58.393143,60.870700,61.963595,63.890851,65.725227,66.979105,67.612169,68.883141,71.599876,72.784094,73.007138,73.979990,75.280307,76.418085,77.416543,78.484661,79.367019,79.658840,80.133539,81.131736,82.107235,83.245013,84.425444,85.265149,85.870686,86.766457,87.555935,88.902693,90.203010,91.038929,92.130266,93.895816,95.859108,96.741466,97.716704,98.500840,100.038700,100.762957,101.113047,103.142886,104.187783,106.045380,106.463133,108.528282,110.026865,110.592395,111.418247,113.191602,113.806037,116.837135,117.835593,119.832510,122.781444,125.312419,126.403757,128.122033,129.399131,131.233507,132.487385,134.600401,135.089687,136.242902,138.495237,139.326669,141.382323,142.118408,143.918201,145.102419,146.193757,147.238655,148.283553,150.187589,151.255707,153.206183,153.644434,155.143535,155.929901,156.719379,157.136353,158.247927,160.059084,161.283568,162.012363,163.173361,164.729098,165.610316,167.118394,168.330242,170.289695,170.684434,170.924496,171.499002,172.429123,173.823955,174.775481,175.796016,176.794474,177.955472,179.255789,180.107614,180.628260,180.825747,181.543879,183.215508,184.887344,185.314074,187.360752,188.419997,190.320814,191.412152,193.246528,194.477186,196.497322,197.867299,198.994497,201.466392,202.340403,202.639019,204.595930,205.547585,207.196202,208.751939,209.827893,212.033789,212.962587,214.146805,214.362531,217.606578,219.069435,219.865221,221.265579,222.620950,225.012605,226.157856,228.055199,228.850853,231.036408,232.429606,233.393041,234.681941,236.719462,238.460958,239.649769,240.874797,241.942915,244.032711,244.452280,244.910090,245.816732,246.413757,248.526773,251.382258,252.513317,253.494185,254.562302,255.653640,256.652098,257.944193,258.931625,259.613851,261.121929,262.402374,263.493711,264.585049,265.978247,266.301459,266.599972,267.877069,269.084507,269.308639,270.197328,270.556394,271.499382,272.504328,273.244254,273.985476,274.974127,276.901384,278.105761,280.036078,281.220295,282.258009,283.054672,283.836966,285.114064,285.735918,286.303134,287.092612,287.665899,288.572541,289.623900,290.738457,291.956741,293.199773,294.361420,295.592078,296.184745,296.765011,297.740249,298.132679,299.156018,300.113224,301.134902,301.612041,302.504311,303.469638,305.143447,305.646140,307.603051,309.694612,310.992903,312.270000,313.314898,314.661656,316.031633,316.651520 diff --git "a/data/torah/labels/Va\342\200\231ethanan-5.txt" "b/data/torah/labels/Va\342\200\231ethanan-5.txt" deleted file mode 100644 index 8f86b58b1..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.158643,2.533737,6.480763,9.358273,10.988014,11.866545,12.566824,14.540338,17.572364,18.988781,20.498078,22.193135,24.515130,25.560623,27.093140,28.300578,29.531235,33.223208,33.957163,35.179469,36.529097,38.273428,40.096315,41.961611,44.887325,46.861022,47.326125,48.459304,50.056219,51.495856,53.330232,54.491230,55.861208,58.229643,59.924700,60.542299,61.650013,63.521668,66.054768,69.769960,70.581422,72.833757,74.598474,76.130991,76.623251,78.127907,78.876876,80.481151,80.939515,82.026066,83.279944,84.440942,85.694819,87.041577,88.295454,89.801227,90.603365,92.544706,94.611282,95.250671,96.600300,98.230040,100.114427,101.514985,102.826416,103.959595,105.449279,106.855172,108.109050,109.432587,110.300302,111.638483,115.334616,117.540512,118.067033,118.980149,121.250119,123.600920,124.599378,126.782054,128.732530,130.032848,130.735716,134.630399,136.534435,137.904412,140.737247,142.223324,144.220240,146.611514,147.020385,148.904772,150.432653,152.317040,153.387366,154.571584,156.700903,158.604939,159.001521,159.816391,161.137057,162.437375,163.784132,165.897148,167.499325,170.146400,172.468395,172.930706,174.178476,176.555107,179.318282,181.895697,183.242454,185.053611,187.073747,188.743025,190.252323,190.768721,191.863703,193.735316,196.359171,198.007787,199.566771,201.703007,204.187542,206.718517,207.333502,207.982851,209.536197,210.745770,212.082666,213.368633,215.151161,216.488058,218.054136,218.512500,219.340103,221.186293,221.7,225.232855,227.972810,230.155486,231.641563,234.404737,235.751495,238.282470,239.582787,240.004698,240.513992,241.710832,242.283788,243.315108,244.870072,246.240050,248.538825,250.582181,252.579097,253.995514,255.295832,256.340730,257.524948,258.848485,261.263360,264.398054,267.393428,268.624086,271.108621,273.059097,276.124131,278.353247,278.647365,280.710004,282.319171,284.316087,285.732505,287.404341,289.459589,290.899226,293.244442,295.636097,296.889975,298.097412,300.233648,302.625304,304.436460,305.899317,308.337412,309.800269,311.472106,312.865304,314.165621,315.721358,317.044895,319.111471,320.625905,323.299698,324.980367,327.055739,329.445150,331.813585,333.462202,334.994719,336.550456,338.291953,339.940569,341.426646,343.702202,345.188279,346.883336,347.881794,349.971590,351.689866,354.453041,356.174612,358.164021,359.603658,361.879214,363.295631,365.013908,366.592864,368.171821,370.284837,371.770914,373.071232,375.230688,376.623885,377.738443,379.851459,382.583186,384.580102,385.089767,386.298379,388.899014,391.569308,392.270809,392.576385,393.989676,397.567203,398.508995,399.577113,402.200968,403.806313,405.449668,406.352782,407.600552,408.822857,409.663228,410.847446,412.426403,413.889260,415.677197,417.674113,419.462049,421.389306,423.037922,424.918739,426.590575,427.937333,429.632389,431.002367,432.209804,435.112299,436.482276,438.386312,440.081369,441.567446,442.798104,445.050439,446.164997,448.208353 diff --git "a/data/torah/labels/Va\342\200\231ethanan-6.txt" "b/data/torah/labels/Va\342\200\231ethanan-6.txt" deleted file mode 100644 index 37f2b6d8f..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-6.txt" +++ /dev/null @@ -1 +0,0 @@ -1.000446,2.431829,3.956046,5.612963,6.843620,8.469017,10.883893,13.461308,14.924165,16.317362,17.664119,18.395483,19.639825,20.448422,21.766928,22.761592,24.623693,27.119349,28.651866,31.391820,32.738578,35.176673,37.637988,39.216945,39.763390,41.671755,44.000256,45.764972,47.367149,48.435267,50.339303,51.964700,53.915176,55.378033,57.212410,59.627285,61.206242,62.785199,63.299894,64.491176,65.941497,67.520453,68.539223,70.585487,73.396880,74.194924,75.090159,76.669116,79.432290,82.265125,83,84.935419,86.560816,89.370431,90.190493,91.936937,93.342582,95.711018,98.273341,100.781096,102.243953,103.869350,104.914248,106.098466,108.327581,109.697559,111.299735,112.600053,113.2,114.991708,117.917422,119.496379,120.4,122.840053,124.165306,124.797544,127.003440,128.791377,130.439993,132.111830,132.650668,134.229625,135.924682,137.480419,138.780736,139.313480,140.753117,143.167992,145.164908,147.138604,148.601462,149.167142,150.281700,150.853373,152.148748,154.288430,156.527868,157.781745,159.151723,160.382380,162.495396,163.332925,165.542002,167.693250,169.066643,170.390181,171.876258,173.571314,175.568231,177.123968,178.563605,180.281881,181.442879,182.998616,184.740113,186.365509,187.851587,190.405782,191.822199,192.727777,194.803601,196.257210,197.534308,199.172046,200.057674,202.295266,202.876564,204.160373,205.699774,206.744672,209.654151,210.995790,211.909492,214.094815,216.397042,217.923734,218.432631,219.641569,221.406286,222.892363,224.517760,226.491456,228.395492,230.044109,230.680866,231.999372,233.364143,234.897079,236.688572,238.290749,239.753606,241.843402,244.560137,246.069434,247.625171,249.018368,250.388345,252.222722,253.848118,255.148436,257.841951,259.885307,260.231611,261.457591,262.903322,263.678234,264.490226,265.953083,268.298299,270.132675,270.478953,270.664007,271.711632,273.429909,275.566144,276.611042,278.422199,280.784,281.879607,283.946182,285.246500,286.407498,287.568495,290.424550,292.073167,294.000423,295.300740,297.553076,298.783734,300.107271,301.732668,304.008223,305.540740,308.048495,309.395253,310.718790,312.251307,314.898382,317.150718,318.660015,319.658473,321.260650,323.048586,327.042418,328.156976,330.641511,332.174028,335.146182,338.187997,339.697294,340.269759,341.299470,344.124272,346.399827,347.630485,348.861143,350.440100,351.786857,353.435474,355.200190,356.616607,357.211258,358.358104,359.593822,360.808237,363.350394,365.718830,368.760644,370.386041,370.662340,370.893657,372.466613,373.912344,375.584794,375.959499,377.127650,378.423025,379.926586,381.320123,381.824974,383.224159,385.052547,386.329645,388.140801,389.951958,390.674790,391.693454,392.350956,393.504893,395.783365,396.211302,396.454184,397.633901,400.363441,402.823155,404.239572,406.259708,408.047645 diff --git "a/data/torah/labels/Va\342\200\231ethanan-7.txt" "b/data/torah/labels/Va\342\200\231ethanan-7.txt" deleted file mode 100644 index ef5d0e9f4..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0.751890,1.785825,3.225462,4.850859,6.383376,6.941615,8.636671,9.163654,9.805893,10.111349,10.940440,12.519396,14.818172,15.602073,16.693411,20.942663,23.473638,25.308014,27.722889,29.580486,32.506200,34.108377,35.896313,37.335951,38.822028,40.075905,41.654862,43.582118,46.693592,49.062028,51.012504,52.730781,54.449057,55.842255,57.397991,58.976948,59.595082,60.602345,62.692141,64.038899,65.315996,67.429012,69.193728,70.842345,72.119443,73.814499,74.327419,75.658890,77.319313,78.995575,79.504492,80.435212,82.825338,83.624220,84.603243,85.112335,86.271498,88.157178,89.991554,91.129332,92.476089,94.078266,94.503123,95.732776,97.352280,99.279536,100.812053,102.692869,103.251672,104.191534,105.595364,106.942121,109.380216,110.796634,113.443708,114.953005,117.042801,118.784298,120.711554,122.336951,124.148107,125.378765,126.748742,128.095500,129.442257,130.974774,132.553731,135.015046,137.267382,139.310738,142.073912,143.513550,144.790647,146.090965,147.321622,148.807699,150.131237,151.640534,152.147991,153.087853,155.471826,156.573175,159.339116,160.927869,163.442000,166.096122,168.394898,170.415034,171.831451,173.062109,173.678663,174.641066,176.034263,177.092753,178.834249,181.458104,183.013841,184.964317,187.797152,189.701188,189.977436,191.269747,192.766222,193.996880,196.345001,198.725985,200.846766,202.030984,202.890122,204.190440,206.117696,207.394794,208.787991,210.274068,211.435066,212.001536,214.181446,216.735641,217.189848,218.234746,219.651163,220.487081,221.857059,223.296696,224.782773,227.104768,228.219326,231.098601,233.676016,235.115653,236.764269,237.902047,239.806084,242.429938,244.891254,245.625098,246.658947,248.374247,249.713498,251.099794,253.379499,254.078878,255.100556,256.200657,257.686734,259.521110,260.004987,261.767126,262.377949,263.538947,264.218701,266.967406,268.174843,270.705818,273.097474,274.815750 diff --git "a/data/torah/labels/Va\342\200\231ethanan-h.txt" "b/data/torah/labels/Va\342\200\231ethanan-h.txt" deleted file mode 100644 index 809816ae3..000000000 --- "a/data/torah/labels/Va\342\200\231ethanan-h.txt" +++ /dev/null @@ -1 +0,0 @@ -2.389395,4.065058,5.388595,7.339071,9.034128,11.657983,14.235398,14.703738,15.442836,17.486192,19.105881,20.615179,21.535815,22.743252,24.113230,25.111688,26.412005,28.548241,29.837116,31.218536,32.936813,34.585429,36.326926,37.213305,38.978022,40.556978,42.182375,44.829450,46.222647,47.072296,48.903762,50.759485,52.422375,53.862012,56.044688,56.775424,57.721478,59.455912,60.587076,61.260455,62.421453,64.673788,66.183085,67.831702,69.549979,71.454015,73.799230,75.865806,76.591334,78.518591,79.842128,80.269121,81.421367,83.185802,85.136278,85.884805,87.156414,89.036167,90.638344,92.240520,93.633718,95.189455,95.684964,97.557890,98.292679,100.160531,101.579614,102.850546,103.988323,105.048482,106.625240,108.165612,109.398573,111.391901,112.471374,114.363484,115.134219,116.388097,117.549095,118.919072,120.242610,121.333947,122.611045,124.422201,125.652859,126.837077,128.625013,129.718683,131.004347,132.089071,133.784128,135.261594,135.589075,136.571517,137.3,138.147685,139.819522,141.305599,142.582697,143.859794,145.438751,146.948048,149.316484,150.849001,151.587106,152.921286,154.405938,156.100995,157.424533,158.701630,160.837866,162.440043,163.926120,165.342537,167.130474,168.616551,170.102628,171.223810,172.812697,174.171135,175.462763,176.879180,178.597456,180.664032,183.543307,185.281216,186.700298,188.699290,190.556886,192.019743,193.714800,195.595616,196.779834,198.846410,199.3,200.541467,203.304641,205.603417,207.530673,209.063190,210.549267,211.617290,213.010488,214.078606,216.168401,217.886678,219.163776,220.533753,222.112710,224.736565,225.245971,226.147723,226.472803,227.285501,229.328857,230.279469,231.395328,233.341107,234.888454,235.755982,237.056300,239.029996,240.934032,241.777674,243.645526,245.990355,246.919153,247.964051,249.264368,250.982645,251.917442,253.118204,254.573673,256.089787,257.497514,258.821052,261.003728,262.071846,263.070304,263.906222,265.392299,268.155474,269.273911,270.013775,271.853789,274.477644,275.708301,276.235905,277.705218,278.266684,279.404462,280.542239,282.585595,283.653713,284.698611,285.793222,287.070319,288.134365,288.765376,289.577705,291.050088,292.052003,292.767608,294.029015,295.351066,296.988469,298.771418,300.372434,301.961321,302.713314,304.975764,306.805031,307.524849,309.498545,312.981539,314.606935,315.582173,315.958083,316.975371,318.841306,320.118403,321.325841,322.386404,323.684198,325.624823,326.449589,327.208195,328.578173,329.785610,331.039488,332.502345,333.918762,336.171098,337.215996,337.912594,339.839851,341.163388,343.965668,345.431332,346.947445,348.706137,349.082133,350.097910,351.495786,353.232603,355.392059,356.808476,357.783715,359.339452,361.336368,362.404486,364.447842,365.722997,366.753954,368.706708,369.724560,370.397939,371.544873,372.766374,374.043472,374.674132,377.108506,378.246284,378.810090,380.289816,381.915036,382.509407,383.079466,384.262645,386.166682,387.652759,388.953076,390.067634,391.971670,393.573847,394.572305,396.476342,397.464352,398.2,399.378836,401.569420,402.753638,404.425474,405.165558,405.981211,407.507089,408.622948,409.217265,410.459708,411.481386,413.013613,414.590371,416.644819,418.394803,419.857660,421.250857,422.597614,423.828272,425.523329,426.777206,427.938204,428.453715 diff --git a/data/torah/labels/Vezot Haberakhah-1.txt b/data/torah/labels/Vezot Haberakhah-1.txt deleted file mode 100644 index acec19af4..000000000 --- a/data/torah/labels/Vezot Haberakhah-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.213043,4.103927,5.568642,6.647906,8.575162,9.712243,11.003505,11.388956,12.102041,13.393303,14.646019,16.573275,19.541250,22.779040,24.320845,25.438654,26.672098,28.059723,28.888443,30.237522,31.297513,32.511684,33.937854,35.132753,36.038563,39.018291,39.962647,40.810640,42.371717,43.952067,45.108421,46.438228,47.209130,48.326939,50.042197,51.545457,52.836718,53.993072,55.457787,57.886130,59.254482,59.909749,60.642106,61.856278,63.359538,64.419528,65.961333,68.187565,69.324646,70.249729,71.984259,72.774434,73.853698,74.875144,76.012225,77.785301,78.941654,80.078736,80.522005,81.389270,82.641986,83.374344,84.704151,86.323046,89.984833,92.258995,93.530984,94.764428,95.805146,96.942228,97.982946,98.676758,99.929475,101.837458,102.935995,104.073076,105.152339,106.327966 diff --git a/data/torah/labels/Vezot Haberakhah-2.txt b/data/torah/labels/Vezot Haberakhah-2.txt deleted file mode 100644 index 23069db9f..000000000 --- a/data/torah/labels/Vezot Haberakhah-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.274162,3.237790,4.490507,5.434863,6.090130,7.554844,9.019559,10.060278,11.100996,12.392258,12.951162,13.432976,14.724238,18.347479,19.580923,20.930003,22.105629,23.512526,24.283429,25.247057,26.326320,27.347766,28.253576,29.043751,29.833927,30.759010,31.934636,32.801901,34.073890,35.326607,37.485134,39.007666,40.164020,41.127648,42.399637,43.922170,45.309794,46.485420,47.526139,48.933036,49.472668,50.918110,52.254251,53.256424,54.374233,56.012401,57.072392,58.363654,59.635643,61.639989,63.104704,65.359594,65.787937,67.753738,69.777357,70.586805,71.878066,73.265691,74.267864,75.058039,76.079485,77.197293,77.968196,78.225259,79.169615,80.171788,81.636502 diff --git a/data/torah/labels/Vezot Haberakhah-3.txt b/data/torah/labels/Vezot Haberakhah-3.txt deleted file mode 100644 index e5643548c..000000000 --- a/data/torah/labels/Vezot Haberakhah-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.586471,3.778815,5.613192,6.475349,7.741068,9.153538,10.162445,11.263071,12.730572,13.721136,14.895137,16.344294,17.481607,18.563889,19.627828,20.416610,22.012517,23.901925,24.598988,25.589551,26.965333,27.882522,29.386710,31.973181,33.165526,34.412902,35.862059,36.834278,37.898217,41.823782,43.181221,44.245159,46.978380,47.712131,49.434966,50.759533,52.300410,53.144223,54.666755,55.694006,56.537819,57.785195,60.188228,62.352792,63.636856,64.719138,65.434545,66.443452,67.727515,68.773110,70.203923,71.818175,72.478550 diff --git a/data/torah/labels/Vezot Haberakhah-4.txt b/data/torah/labels/Vezot Haberakhah-4.txt deleted file mode 100644 index c12246d46..000000000 --- a/data/torah/labels/Vezot Haberakhah-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.735311,3.723552,4.888265,5.929448,7.500045,8.894171,10.800065,12.229486,12.688312,13.694200,14.611853,15.723624,16.288334,17.294222,18.370699,19.005997,19.817767,20.664831,23.488377,24.900151,26.664867,28.553114,29.717827,30.653127,31.729604,32.611962,34.147265,35.188448,36.194337,37.217872,37.747287,39.141413,40.588481,41.453192,42.212020,42.917907,44.806153,46.006161,47.135579,48.529705,50.382658,50.982661,52.059138,53.400323,54.370917,55.429747,57.335641,57.829761 diff --git a/data/torah/labels/Vezot Haberakhah-5.txt b/data/torah/labels/Vezot Haberakhah-5.txt deleted file mode 100644 index 43e4070a8..000000000 --- a/data/torah/labels/Vezot Haberakhah-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.103509,3.125187,3.868226,4.611264,5.447182,7.374439,7.838838,9.232035,11.507591,12.436389,13.945686,15.013804,16.244461,17.567999,18.380697,19.611355,20.633033,21.910130,23.628407,25.578883,26.577341,27.924099,29.038656,30.083554,31.105232,32.335890,33.380788,34.843645,35.911763,37.142421,39.325096,40.323554,42.041831,43.597568,45.199745,46.546502,47.359201,48.845278,49.983055,51.051173,52.119291,54.394847 diff --git a/data/torah/labels/Vezot Haberakhah-6.txt b/data/torah/labels/Vezot Haberakhah-6.txt deleted file mode 100644 index 3c2425e65..000000000 --- a/data/torah/labels/Vezot Haberakhah-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.957506,4.304264,5.349162,6.626259,8.507076,9.644853,12.315148,14.056645,15.426622,16.982359,18.607756,21.672790,22.671248,23.878686,25.086123,25.991701,27.431339,27.922979,28.618327,29.521345,30.775223,31.448601,32.609599,33.724157,34.954815,36.231912,37.973409,38.553908,40.341844,41.665381,42.663840,44.010597,45.264474,46.402252,47.679350,48.445608,49.931685,52.300121,53.391459,54.204157,55.179395,56.131413,58.290869 diff --git a/data/torah/labels/Vezot Haberakhah-7.txt b/data/torah/labels/Vezot Haberakhah-7.txt deleted file mode 100644 index 2604ab135..000000000 --- a/data/torah/labels/Vezot Haberakhah-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.156062,4.152978,5.430075,6.544633,7.450211,8.355790,9.586447,11.049304,12.396062,13.626719,14.207218,14.694837,16.157694,17.620552,20.615926,21.173205,21.684044,22.914701,23.680960,24.888397,25.584996,27.280053,28.324951,28.859010,29.857468,30.786266,31.320325,32.411663,33.665540,35.058737,35.685676,36.405495,37.496833,38.611391,39.470529,40.956606,43.023182,44.393159,46.343635,48.410211,51.114868,53.204664,54.156682,55.294460,55.898179,57.700219,59.090439,60.622956,62.596652,63.641550,64.686448,66.172525,68.889260,70.375337,72.093614,73.649351,75.088988,77.178784,78.920281,80.986857,82.472934,84.075110,84.771709,88.045723,90.411074,92.199011,95.078285,95.960643,98.073659,99.211437,100.442095,100.860054,101.394113,103.530349,104.900326,106.247083,107.524181,108.592299,109.730076,110.937514,111.425133,112.493251,113.747129,114.466947,115.627945,116.231664,117.903501,119.708867,121.031391,123.036404,126.078218,126.867696,129.305792,130.768649,132.277946,133.740803,135.134000,136.178898,137.572095,138.408014,139.174272,141.078309,145.350780,146.302798,149.704255,150.191874,152.165570,153.535547,154.835865,156.136182,157.529379,159.851375,160.756953,161.523211,163.032509,165.609924,167.676499,167.998495,169.809651,171.388608,172.317407,173.826704,174.476862,175.684300,177.425797,178.006295,179.260173,180.583710,182.301987,183.323665,183.811284,184.647202,186.295819,188.455275,189.500173,191.218450,191.682849,193.795865,194.701443,195.607021,196.791239,199.020354,200.576091,202.178268,203.710785,204.918223,206.404300,208.067792,208.320127,210.131284,211.152962,213.033778,215.913052,217.027610,218.049288,219.070966,220.324844,221.207202,222.437860,223.761397,224.713415,225.688653,226.663891,228.893007,230.541624,231.702622,233.235139,234.651556,235.437950,236.715048,238.247565,239.153143,240.430241,244.230630,244.8 diff --git a/data/torah/labels/Vezot Haberakhah-h.txt b/data/torah/labels/Vezot Haberakhah-h.txt deleted file mode 100644 index f45232aea..000000000 --- a/data/torah/labels/Vezot Haberakhah-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.713208,5.617244,5.892800,7.100238,7.657516,9.120374,10.327811,11.581689,12.440827,13.741145,14.182324,15.041462,16.132800,17.084818,19.035294,20.776791,22.077108,23.686806,25.939141,27.239459,29.398914,29.790570,30.626488,33.227123,34.364901,34.898960,35.967078,37.128075,37.940774,39.705490,42.052869,44.050851,45.095749,45.908448,46.512167,48.044684,48.787722,51.156158,52.270715,54.732031,55.196430,57.030806,57.843505,58.586543,59.724321,61.024638,61.920141,62.195680,63.578833,66.906477,68.346115,70.180491,71.086069,73.199085,74.383303,74.940582,77.216137,78.330695,79.143393,80.443711,81.163530,81.720808,82.765706,83.415865,84.716183,86.527339,88.013416,89.197634,90.126432,90.894770,92.148647,92.894464,93.451743,95.100360,96.354237,97.396051,97.764487,98.739725,100.179362,101.618999,102.403852,103.634509,104.049384,107.811017,108.876051,111.824985,112.823443,115.586618,117.142355,117.490654,118.558772,120.068069,120.950428,122.831244,123.760042,124.619180,125.942718,126.592877,128.195053,130.981448,131.979906,133.837502,137.181176,138.295734,139.270972,140.733829,143.357684,144.704441,146.515598,148.628614,149.650292,150.254010,150.973829,151.856187,152.436686,154.015643,155.548160,156.871697,158.427434,158.984713,160.679770,161.4,165.138001,167.274237,168.528115,169.967752,173.195326,174.774282,175.656641,177.746437,179.023534,180.277412,181.670609,182.924487,183.946165,185.153602,186.929087,187.463146,188.740243,189.622602,189.689178,190.803735,192.707772,194.751128,196.306865,197.351763,199.070039,200.440017,201.113395,202.251173,202.738792,204.248089,205.269767,206.314665,208.172261,209.240379,210.772896,211.141332,213.068588,216.243283,217.288181,217.822240,218.518838,219.377976,220.771174,222.326911,223.139609,225.786684,227.156661,227.528181,228.410539,229.269677,230.500335,231.313033,233.193849,235.910584,237.001922,238.093260,240.577795,241.854893,242.876571,243.549949,244.989586,246.197024,247.288362,248.402920,248.668703,249.935437,251.537614,253.070131,254.672308,255.508226,256.390584,259.176979,261.754394,262.938611,264.842648,265.632126,267.257523,268.302421,269.231219,270.972716,272.343643,272.648586,273.969040,275.199697,276.639335,278.311171,279.681149,280.215208,281.074346,282.653303,284.139380,285.790383,287.041874,288.597611,289.805049,290.548087,290.759577,291.329656,293.489112,294.975189,297.552604,301.021009,304.558501,306.369657,307.623535,308.923852,310.479589,312.244306,312.914600,314.493557,316.792333,318.069430,320.670065,321.572559,324.730473,325.868251,327.467344,328.953421,330.834237,333.202673,335.803308,336.125303,336.961222,338.633058,341.071154,342.859090,344.860127,345.254866,346.508744,346.761079,348.479356,349.222394,350.035093,351.103211,351.660490,352.821487,355.387596,356.362834,358.452630,360.263786,361.401564,362.864421,363.653900,365.720476,367.136893,368.321111,369.737528,370.828866,371.896984,372.756122,373.940340,376.726734,377.794852,378.793310,380.674127,381.602925,382.183424,383.089002,384.412539,384.804195,385.109138,385.663333,387.140158,388.649455,390.316666,390.522562,391.637120,391.843015,393.050453,394.095351,394.603106,395.880204,398.457619,400.849274,401.917392,402.706870,403.798208,405.168186,405.888004,406.305963,407.908140,408.784850,410.433466,411.292605,411.682952,412.058863,414.264759,414.938138,416.888614,417.445893,419.417032,420.671207,421.065122,422.249339,423.874736,426.730791,427.422763 diff --git a/data/torah/labels/balak-4.txt b/data/torah/labels/balak-4.txt deleted file mode 100644 index d98fbf95f..000000000 --- a/data/torah/labels/balak-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.787937,2.763175,3.343673,4.783311,6.478367,7.569705,9.148662,11.261678,12.260136,13.328254,14.373152,16.393288,17.856145,19.574422,20.201361,21.849977,24.589932,25.565170,27.051247,28.026485,28.444444,29.535782,30.627120,31.811338,32.716916,34.202993,35.108571,35.944490,37.105488,39.450703,40.286621,40.634921,41.517279,42.237098,42.817596,44.048254,44.930612,46.138050,47.624127,47.922902,49.014240,50.314558,51.057596,51.707755,53.193832,54.749569,55.794467,56.769705,57.373424,58.418322,60.252698,62.992653,64.757370,65.709388,66.498866,68.031383,69.610340,71.676916,73.859592,77.226485,77.760544,80.059320,82.543855,85.516009,86.468027,87.420045,88.720363,89.881361,90.624399,91.599637,93.016054,93.805533,95.082630,96.545488,98.472744,99.494422,99.889161,101.026939,102.327256,104.091973,104.533152,105.531610,106.599728,107.807166,110.338141,111.383039,112.218957,113.867574,117.211247,119.324263,120.485261,121.205079,122.412517,125.175692,125.918730,126.754649,127.544127,128.287166,129.796463,131.863039,132.745397,134.208254,135.090612,135.344490,136.528707,137.596825,137.850703,138.500862,140.219138,141.914195,142.982313,144.212971,144.909569,147.765624,149.158821,150.737778,151.411156,152.757914,153.988571,155.033469,156.380227,157.076825,157.773424,159.027302,160.281179,162.672834,164.623311,165.993288,167.084626,167.711565,168.593923,169.592381,170.939138,171.751837,172.425215,173.307574,174.840091,175.652789,176.326168,177.324626,178.137324,179.994921,181.527438,182.107937,183.338594,184.755011,186.217868,187.773605,188.772063,190.374240,191.929977,192.928435,194.437732,195.598730,197.131247,197.525986,198.338685,199.290703,200.521361,201.566259,202.564717,203.702494,204.933152,206.233469,207.928526,209.577143,210.273741,210.645261,211.620499,212.549297,213.408435,214.081814,215.591111,216.473469,217.889887,219.027664,220.142222,221.465760,223.346576,224.855873,227.015329,229.012245,229.848163,231.125261,231.891519,232.959637,233.911655,234.724354 diff --git a/data/torah/labels/chayei sara-1.txt b/data/torah/labels/chayei sara-1.txt deleted file mode 100644 index f565d982e..000000000 --- a/data/torah/labels/chayei sara-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.639913,4.557101,5.437602,6.116321,7.143572,8.152479,8.867886,9.491574,10.041887,10.885700,11.509388,12.499951,13.747327,15.196484,16.150360,17.177611,17.801299,18.351612,18.791862,19.452238,20.571207,21.341645,22.093740,22.790803,24.093210,25.597399,26.386180,26.936493,27.431775,27.816994,28.789214,29.101058,29.376214,29.706402,30.531871,31.283966,31.925997,32.586373,33.246748,34.072218,34.347374,35.172844,35.649781,36.420220,37.484158,37.979439,39.336878,41.868317,42.675443,43.500912,43.904475,44.491476,45.133507,45.885602,48.692198,50.214730,50.985168,51.462106,51.939044,52.782857,53.589983,54.433796,55.020796,55.277609,55.974672,56.781798,57.405486,57.827392,59.074768,59.661769,60.230425,60.854113,61.532833,62.339958,64.247710,65.696867,67.054306,67.402837,67.733025,68.356713,69.072120,70.301152,70.833121,71.273371,72.025466,72.300622,72.722529,74.153342,75.088874,75.437406,76.024406,77.125032,78.464127,79.564753,79.949972,80.720410,81.050598,81.876067,84.242413,85.599851,86.040102,86.682133,87.617665,88.057916,88.516510,89.305292,89.855605,90.607699,91.506543,92.992388,94.624983,95.505484,96.477703,97.321517,98.018580,99.247612,99.706206,100.219831,100.494988,100.861863,103.118146,103.815209,104.530616,104.805772,105.557867,106.144867,106.530086,106.841930,108.309431,109.006494,109.648526,110.198839,111.244434,111.996528,113.042122,113.775873,114.674717,115.426812,116.013812,116.839282,117.187813,117.426282,117.848189,118.361814,120.012753,121.131722,122.158973,123.094505,123.516412,124.176787,125.093976,126.653195,127.460321,127.973946,128.285790,129.001197,129.698260,130.028448,131.220793,131.789449,132.082950,132.468169,133.238607,133.825607,134.632733,135.091327,135.604952,136.430422,138.356517,138.998549,139.750643,140.392675,141.034707,142.116989,142.447176,142.814052,143.511115,145.400522,146.739617,147.216555,147.895274,148.500619,149.142650,150.573464,151.197152,152.884778,153.600185,155.067686,155.709718,156.645250,157.525751,158.112751,158.497970,159.011595,159.671971,160.424065,161.176160,162.680348,165.192419,165.852794,166.935077,168.145765,168.983821,169.845978,170.102791,170.964948,171.845448,172.469136,173.056137,173.239574,173.624793,174.963888,175.514201,176.027826,176.596483,177.642078 diff --git a/data/torah/labels/devarim-1.txt b/data/torah/labels/devarim-1.txt deleted file mode 100644 index baec52db3..000000000 --- a/data/torah/labels/devarim-1.txt +++ /dev/null @@ -1 +0,0 @@ -3.026048,3.869366,6.399611,7.746368,8.952650,10.300563,10.889844,11.160465,12.779651,14.381828,16.169765,20.047497,22.415933,23.595544,25.205037,26.122012,27.766255,28.614864,30.193821,31.563799,33.467835,34.652052,36.045250,37.995726,39.179944,40.457041,42.221758,43.545295,44.183520,45.367738,46.482296,47.498361,49.118184,51.404926,53.181018,54.516400,55.908270,57.039003,58.183826,59.478896,60.988193,62.535779,63.913907,64.375624,65.697541,67.276498,69.528834,71.014911,73.174367,75.473142,76.866339,78.747156,80.790512,83.832326,85.295183,87.013460,88.313777,90.078494,91.285931,92.725568,94.443845,97.392779,98.878856,100.434593,102.129650,103.118597,104.355276,106.508345,108.946440,110.525397,112.220454,113.567211,114.821089,116.794785,118.605942,120.974377,121.524638,122.650333,123.927431,125.901127,128.617862,131.241717,132.309835,133.586932,135.189109,137.000265,137.612854,138.853327,139.902760,141.144599,142.866846,145.592451,147.194627,149.934582,151.722519,152.738993,156.036227,156.844473,157.156945,160.002387,161.511684,163.972999,166.016355,167.757852,169.114043,170.312047,171.728464,173.562841,175.582977,176.283507,177.421285,178.884142,179.929040,181.809856,184.805231,186.019520,187.575257,188.125883,189.472641,191.121257,193.002074,193.456906,195.068650,196.142701,197.460305,199.875180,203.242074,205.076450,206.446427,208.373684,209.975861,211.531597,213.456216,215.876466,218.217053,220.056722,221.062026,222.269463,223.930058,224.529430,225.354643,226.724620,228.064968,229.718933,231.323189,233.148253,234.699793,236.129719,238.382055,239.844912,241.493529,243.002826 \ No newline at end of file diff --git a/data/torah/labels/devarim-2.txt b/data/torah/labels/devarim-2.txt deleted file mode 100644 index f706b2c96..000000000 --- a/data/torah/labels/devarim-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577157,4.122664,7.499787,9.659243,12.468858,13.862055,14.653408,16.13761,17.925547,19.295524,21.153121,22.384553,27.26476,28.51571,29.908907,31.325325,33.020381,35.063737,37.199973,38.960122,41.286685,42.795982,45.512717,47.974032,49.529769,51.526685,53.580799,56.426096,58.369822,59.755808,62.509724,63.085059,64.199617,65.016657,66.335696,68.611251,71.490526,72.011462,73.238207,76.486973,78.08915,79.621667,81.177404,82.756361,85.380216,86.912733,88.593211,90.271089,92.726363,94.2821,96.673756,98.415252,100.040649,101.828585,103.546862,105.799198,108.841012,111.093347,111.549982,114.127397,115.404495,116.542272,117.86581,119.189347,119.712969,121.186263,123.304736,124.460708,125.268708,125.769237,126.380381,127.402059,128.377297,129.816935,130.692796,131.827075,133.991572,137.194383,139.05198,140.584497,142.349213,143.67578,144.926628,145.810788,147.000818,147.68625,149.195547,150.871111,152.051601,154.187837,155.464935,156.993041,158.538268,160.178585,161.571783,164.242078,166.169334,167.632191,168.499673,169.582667,170.711352,171.077017,172.622771,173.618974,175.571706,178.26522,181.260595,185.045447,186.786944,187.208233,187.811952,190.435807,191.921884,193.87236,195.451317,198.423471,199.723789,200.914049,202.417303,203.99626,206.271816,207.665013,209.03499,210.544288,213.446782,214.249003,215.062901,216.813675,218.648052,220.227009,221.736306,222.216948,223.268823,225.056759,225.696657,227.294964,228.728532,230.075289,231.329167,233.813702,235.179417,237.733612,240.380687,242.075743,242.660514,243.93334,245.400164,247.694973,250.312641,251.621735,253.983503,255.468043,257.331254,258.701231,259.624754,261.136643,261.934487 \ No newline at end of file diff --git a/data/torah/labels/devarim-3.txt b/data/torah/labels/devarim-3.txt deleted file mode 100644 index 0bbff0fee..000000000 --- a/data/torah/labels/devarim-3.txt +++ /dev/null @@ -1 +0,0 @@ -2.769909,4.662668,8.168881,10.606976,13.718450,15.343847,16.899584,18.833200,19.989597,21.080935,21.581299,22.889917,24.419615,25.794585,27.438209,27.944456,29.247621,30.457849,31.159293,32.180971,33.759928,35.431765,36.685642,37.916300,40.075756,41.794032,43.558749,45.160926,46.809543,48.318840,49.688817,51.430314,53.032490,54.193488,55.493806,57.722921,59.928817,62.065053,63.736890,65.478386,65.959821,66.918023,68.680656,70.745265,73.020820,75.249936,76.875333,78.431070,80.010026,81.728303,83.307260,85.420276,86.813473,88.253110,90.760865,92.572022,94.011659,95.000244,96.194358,97.737438,99.131486,100.733663,102.823459,104.518516,106.167133,109.569794,110.283817,110.986211,112.658048,115.885621,118.532696,121.063671,123.803626,125.614782,127.216959,128.912016,130.490973,131.535871,133.184487,134.461585,137.088948,138.296386,139.858593,142.704838,144.821193,146.439853,149.133426,151.722969,153.491337,153.975314,156.556371,159.505305,160.852062,162.152380,163.475917,165.101314,167.818049,169.327346,171.231382,173.019318,174.159050,174.993015,176.434605,177.618823,179.267440,181.844855,183.864991,184.970658,186.781814,187.699501,189.280748,191.739860,193.506495,195.726028,197.490744,199.650200,200.973738,202.599134,203.806572,206.709066,208.450563,210.726119,213.233874,214.882490,217.668885,220.292740,222.011017,223.543534,225.122490,227.072967,228.628704,229.975461,231.577638,232.253621,233.319134,233.925458,235.248995,236.178360,237.383380,238.785378,240.898394,241.466694,243.150729,243.670201,244.763928,247.070211,249.740506,251.156923,252.898419,255.243635,257.170891,259.910846,261.412885,264.043998,266.807172,268.015956,270.327848,271.621118,273.827013,275.963249,278.517444,281.164519,282.906016,284.670732,285.845882,287.001828,289.274378,291.387394,293.036011,294.568528,295.049831,295.954959,297.633562,299.607258,301.279095,303.113471,304.148478,305.007617,306.377594,308.397730,309.930247,311.114465,312.507662,313.738320,315.015417,316.687254,318.359091,320.123807,321.772424,323.142401,326.160995,329.411789,330.828206,331.373380,332.732243,333.732243,335.343992,336.489414,338.643182,339.106651,341.074229,342.657845,343.348462,344.283242,345.925877,348.317532,349.340364,350.663902,351.917779,354.193335,355.232632,356.329571,357.995807,359.899843,362.175399,363.498936,364.360618,365.451955,366.055674,367.127443,368.894078,370.397806,370.945363,371.909353,373.499558,375.264274,376.380465,377.352698,378.329308,380.139093,381.555510,382.716360,383.691746,385.201043,385.671656 diff --git a/data/torah/labels/devarim-4.txt b/data/torah/labels/devarim-4.txt deleted file mode 100644 index d808f3301..000000000 --- a/data/torah/labels/devarim-4.txt +++ /dev/null @@ -1 +0,0 @@ -5.329133,8.094383,9.464360,11.739916,13.202773,15.617648,18.613022,20.308079,20.809777,22.040434,23.433631,24.710729,25.964607,27.009504,28.054402,29.052860,31.072997,32.605514,34.230910,36.669006,38.642702,39.425409,40.900352,42.442525,44.115694,45.038617,45.5,46.995114,49.446423,51.396899,53.672455,57.434088,60.311495,61.895349,63.298085,65.271782,66.572099,67.403671,68.564668,70.050746,71.443943,74.996596,76.598773,77.149131,78.333348,80.260605,82.350401,83.511398,85.601194,87.435571,89.595026,92.567181,93.960378,95.376795,96.561013,98.023870,99.881466,102.017702,102.861199,104.028249,105.988314,108.124550,110.469766,112.071943,114.858337,116.855253,118.596750,119.850627,121.476024,123.635480,124.022918,125.353757,126.839834,128.650990,130.066572,132.112875,134.312015,136.610390,138.277605,139.539924,140.903468,142.820765,144.938882,146.564279,148.096796,149.582873,151.301150,153.344506,155.968361,157.616977,158.093604,160.240832,162.738027,164.441232,165.880869,167.157966,168.076043,169.097721,170.676678,173.486292,174.693730,176.295907,178.617902,180.289739,182.100895,183.354773,184.469331,186.141168,186.912603,189.095278,191.835233,193.390970,194.853827,196.177365,196.596149,197.672132,200.102363,201.402680,202.911977,204.374834,205.793850,206.121319,206.645320,208.396874,209.878526 diff --git a/data/torah/labels/devarim-5.txt b/data/torah/labels/devarim-5.txt deleted file mode 100644 index 1bf0aa6d2..000000000 --- a/data/torah/labels/devarim-5.txt +++ /dev/null @@ -1 +0,0 @@ -5.748134,6.959174,8.514911,9.838448,11.556725,12.376898,14.810266,16.065297,16.578850,17.229009,18.441371,19.783204,21.246061,23.312637,24.682614,27.236809,28.444247,30.719802,32.345199,34.852954,36.945271,38.824359,39.455334,40.798055,42.748531,44.606127,46.965205,48.404842,50.471418,52.329015,53.208790,54.903847,56.018405,57.922441,58.475451,59.659669,61.076086,63.026563,64.605520,65.766517,66.1,67.345474,68.303195,69.907124,71.486081,73.297238,73.743154,74.574335,76.083632,77.918009,80.541864,83.212158,84.814335,86.695152,87.883474,89.326090,91.897262,94.312137,95.728554,98.398849,100.511865,102.160482,104.389598,107.570731,109.103248,110.960845,112.702341,114.467058,116.347874,116.918919,118.089371,119.526976,120.641533,122.940309,124.426386,127.096681,128.559538,130.068835,131.694232,132.519721,134.100793,136.115096,138.902070,141.331542,142.644833,143.344146,145.975533,148.081016,150.054712,151.703329,153.537706,155.929361,157.508318,158.738976,160.759112,162.593488,163.754486,164.994221,167.144599,169.813364,171.997570,174.807184,175.342649,176.623252,176.946052,178.295088,178.781703,179.804487,180.755810,182.288921,184.030417,184.637028,185.722026,187.022344,188.624521,190.296358,191.643115,192.43,193.477491,194.777809,195,196.171006,198.028602,199.909419,201.441936,202.742253,203.508512,205.389328,206.712865,208.849101,210.497718,212.448194,215.342872,217.379507,217.982458,219.065881,220.732137,224.028535,225.785092,227.209843,229.020825,231.969760,233.534130,236.799510,239.167946,241.489941,243.347537,246.412571,248.531981,250.354233,252.462329,253.891546,256.373932,257.884422,260.390984,261.714522,263.618558,264.501516,265.546413,266.846731,268.472128,271.119203,273.255438,274.570536,275.693534,276.469507,277.037568,278.373543,280.241922,280.778699,281.689825,283.351291,285.628951,286.679455,288.444172,289.930249,292.414784,293.436462,294.186545,295.472286,295.973067,297.286161,298.404345,299.751102,301.306839,302.514277,303.378079,304.446197,305.144983,306.631060,308.093917,309.812194,311.484031,313.155867,315.547523,316.847840,318.310697,320.145074,321.468611,321.909665,323.140323,324.584214,326.022364,327.505674,328.852432,330.431388,331.406627,333.008803,334.912840,336.024868,337.583134,338.117116,339.998010,342.351173,343.490752,344.539662,346.323586,347.782199,349.220349,350.327993,351.758625,353.105382,354.312820,356.425836,356.787974,357.483013,358.626387,359.207006,360.457572,363.298141,364.280583,365.379439,366.612139,367.442872,368.669155,369.325779,370.231357,371.206595,372.184214,372.614708,374.401374,376.005376,376.598796,377.475727,378.567065,380.146022,381.260580,382.102939,382.793097,384.332055,386.119992,387.215970,388.302667,390.234564,390.837375,391.534881,393.229938,394.297679,395.133598,396.898314,399.498949,400.958021,401.986830,404.169506,405.469824,406.955901,409.370776,410.763973,412.250050,414.177307,415.825923,417.590640,419.889415,421.445152,423.534948,425.555084,426.878622,428.282872,429.522293,431.217350,432.773087,434.282384,435.513041,436.089972,437.509957,439.205014,441.294810,443.361386,444.754583,445.845921,446.751499,448.121477,451.372270,452.835127,454.669504,455.223621,456.456321,457.920298,459.940434,461.914130,463.864606,465.582883,467.370819,469.855354,472.270230,475.545306,476.018734,476.983456,479.143336,482.468078,484.344606,486.713041,487.309552,488.361658,489.096074,490.703944,492.889549,493.476534,494.544652,495,496.402248,497.724974,498.561704,500.503996,502.477692,504.869347,506.216105,507.005583,508.654200,511.556694,512.838949,513.669710,514.970028,516.141368,516.581712,517.896220,519.010778,520.427195,522.424111,523.838254,525.185012,527.344468,530.502381,531.988459,533.683515,535.053493,535.483113,536.656476,537.306635,538.653392,539.791170,540.976667,542.786544,544.481601,545.990898,547.291215,548.614753,549.961510,551.401147,552.794344,554.025002,556.161238,558.065274,559.412032,561.246408,563.150444,566.261918,567.631895,568.578260,569.530278,571.109235,572.428383,573.795073,575.965697,577.694852,578.547221,579.922842,580.964283,583.193399,585.004555,586.792492,589.439567,591.134623,592.295621,593.479839,594.027432,595.072547,595.528110,597.189576,597.850589,599.656221,600.235595,601.490598,602.744475,603.719714,605.159351,606.943985,609.078878,610.436080,611.620297,613.152814,614.754991,615.776669,617,618.423744,619.646155,621.548800,622.209814,624.719877,626.149094,626.604657,627.908818,630.237438,631.187086,632.955742,634.322431 diff --git a/data/torah/labels/devarim-6.txt b/data/torah/labels/devarim-6.txt deleted file mode 100644 index 93c838a61..000000000 --- a/data/torah/labels/devarim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0.887928,2.345884,3.992133,5.663969,8.659343,10.377620,11.729419,13.177235,13.662672,14.895512,15.825274,17.241691,18.843868,20.144186,21.583823,22.210762,23.650399,27.342372,28.803429,31.311184,33.888599,34.561670,36.640108,38.565719,39.910591,42.840055,44.326132,45.626450,47.298287,48.575384,51.152799,51.892174,53.099502,53.642035,53.924764,55.888582,57.837117,58.287955,58.555401,59.625185,61.313916,62.757215,65.032770,65.449698,65.906346,67.049156,68.512013,70.392830,72.041447,73.666843,75.338680,77.033737,79.179311,80.967379,82.885165,84.208703,86.019859,87.598816,89.340313,92.103487,97.838816,100.439451,100.773669,101.391782,102.592302,105.223075,106.941352,108.404209,110.029606,110.738591,112.363988,113.679851,115.057503,116.613240,118.168977,119.956913,121.396551,122.054733,124.125529,126.731218,128.358818,129.986418,132.333149,135.049884,135.702122,136.519743,137.253309,138.574238,139.944215,141.848251,143,145.099045,146.678002,147.978319,149.766256,151.368433,152.924170,153.653403,154.744741,156.501783,158.877893,161.408868,163.173585,164.450682,166.238619,167.933676,170.139571,170.897780,172.337418,175.030932,177.376148,178.103782,180.166937,181.997444,184.389099,186.200256,187.941752,189.358170,189.917256,191.162790,192.820956,194.295730,197.335505,199.843260,202.420675,203.322250,203.587569,204.747142,205.559840,207.069137,209.275033,210.877210,212.688366,215.846280,217.819976,219.236394,220.977890,222.371088,223.810725,226.155940,229.453174,231.217890,233.702425,237.069319,239.437754,239.949740,240.900611,241.740658,243.061214,244.155313,244.415118,245.847608,248.634003,249.351408,250.665714,251.507794,252.438499,254.479948,256.523304,256.946876,257.160832,258.446459,259.909316,261.465053,263.438750,264.808727,266.573443,268.245280,268.752708,270.097580,272.313561,273.512173,274.951811,275.675740,276.951840,278.846886,280.704516,281.935173,284.466148,285.380211,287.267616,289.790577,292.669851,294.898967,296.501144,298.242640,300.100237,303.397470,304.767448,306.578604,308.018241,309.782958,312.337153,314.055430,316.400645,317.840282,319.697879,320.603457,322.066314,323.861744,324.366202,325.604096,327.025380,328.759959,331.128767,331.801202,334.475663,335.889306,337.468351,339.000868,342.089122,345.757875,347.058193,348.404950,348.945705,350.169667,353.311057,354.913234,356.515411,358.256907,359.975184,361.089742,362.459719,364.294095,365.965932,366.431644,367.359129,369.365910,372.513959,373.883937,375.602213,377.157950,380.339084,381.637862,382.432559,384.450623,386.401099,387.840736,390.952210,391.748562,393.367086,394.215468,395.875037,396.622482,398.150592,399.892089,402.353404,403.978801,405.116579,407.740434,409.481930,410.5,412.454084,413.265267,416.076397,419.118211,420.282418,422.906273,424.462010,425.924867,427.434164,429.059561,430.801057,431.938835,433.587452,434.469918,435.761300,438.138563,439.229901,441.784096,443.293393,446.033348,447.774844,449.191261,450.700558,452.151922,454.462191,456.691307,458.316704,459.291942,460.499379,463.634073,464.400951,464.630190,465.557267,468.435565,470.032600,470.498720,472.035635,473.761596,476.199691,478.219827,481.075881,483.699736,485.278693,485.888330,487.113069,488.905203,489.996541,492.225656,493.781393,494.895951,497.032187,498.332504,499.702482,501.467198,502.243760,503.707878,505.188331,506.976267,508.114045,510.203841,512.177537,512.793402,515.521210,517.402027,517.836670,518.241660,519.583495,521.208892,521.910434,522.880728,524.603949,527.042044,530.223178,531.755695,532.286398,533.509008,533.860509,535.205380,536.787133,538.284830,540.095822,541.417770 diff --git a/data/torah/labels/devarim-7.txt b/data/torah/labels/devarim-7.txt deleted file mode 100644 index b883e6ed8..000000000 --- a/data/torah/labels/devarim-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.215167,4.174165,5.869222,6.476105,8.547937,10.768632,13.462147,15.203644,15.766774,17.317391,17.942850,19.519527,21.369843,22.711973,24.106225,25.852298,27.585340,29.021422,30.879018,32.341875,33.688633,35.685549,38.309404,40.237851,42.047816,45.716569,47.458066,48.642284,50.383780,51.939517,53.611354,55.979789,57.489086,59.393123,61.738338,64.362193,65.964370,67.334347,68.820424,70.469041,72.605277,76.088270,78.038746,80.360742,80.957826,82.169652,83.785421,85.935435,87.675027,91.158021,93.828315,95.314392,96.190354,97.639993,98.236125,98.7,100.894325,103.119903,104.954279,108.367613,111.432647,114.022343,114.602298,115.740620,117.061759,118.594276,120.567972,123.075727,124.677904,126.233641,128.160897,130.413233,131.255139,132.610300,134.643041,139.008222,141.601270,144.003608,144.467956,145.744935,146.253120,148.351013,149.849508,152.351343,155.009867,156.356624,157.773041,159.073359,160.721976,164.019209,165.528506,168.129141,169.661658,171.078075,173.469731,174.959074,177.056967,178.829100,180.171230,181.643665,183.324585,185.010048,188.191182,190.397078,191.025547,192.224343,194.270115,196.042248,197.905594,199.522520,201.728415,203.377032,204.082000,205.281069,207.092020,207.691418,209.685068,210.949016,212.499633,213.893885,215.900565,217.411870,219.037267,220.523344,222.543480,224.749375,226.537312,228.511008 diff --git a/data/torah/labels/devarim-H.txt b/data/torah/labels/devarim-H.txt deleted file mode 100644 index 3b6feb477..000000000 --- a/data/torah/labels/devarim-H.txt +++ /dev/null @@ -1 +0,0 @@ -1.686165,3.472997,5.612161,5.989661,7.499659,9.222110,10.535914,11.022989,12.155488,14.622626,16.062263,18.732558,21.147433,22.331651,23.980268,25.078559,26.273974,27.798222,29.251197,31.257996,32.502718,33.056385,34.050809,36.047725,37.626682,39.368179,40.923915,42.990491,44.041624,45.413206,46.476667,47.335806,48.821883,50.321806,51.151200,53.089032,54.649346,55.972883,57.412521,58.991478,59.544275,61.545023,63.935855,64.992853,67.652521,68.929618,69.996701,71.482778,73.038515,74.594252,76.312529,78.657744,80.167041,80.633922,82.906996,85.205771,85.667250,86.246083,87.265332,88.485914,90.121746,90.952245,92.021827,93.745742,94.903408,96.186906,97.934971,98.523371,99.661148,101.263325,102.161616,103.090415,104.878351,105.908596,106.744515,107.3,108.114492,108.780724,109.664126,111.040206,111.978974,113.100679,114.071901,115.794194,116.609637,117.477886,118.975301,120.456161,121.501059,122.453077,124.566093,127.141876,128.651875,130.278201,131.415979,132.739517,135.850991,137.801467,139.171444,140.782196,142.279612,144.292943,145.677108,147.275190,148.850534,149.059514,150.127632,151.238936,152.874768,154.007267,155.114599,155.907348,157.442514,158.813456,160.438852,161.692730,162.589092,164.200485,165.291823,166.940440,168.603919,169.988085,171.282571,173.093728,174.002164,174.341914,175.902246,177.185744,178.884493,181.146886,182.294573,183.238322,183.603238,185.377486,186.473901,187.518799,188.057734,189.555149,191.020093,192.459730,194.595966,195.710524,196.546442,197.608475,199.458223,201.097553,202.880886,205.070384,206.686188,207.243467,208.845643,210.215621,211.446278,212.839476,214.650632,215,215.950950,217.808546,219.201743,219.968002,222.120784,223.920199,226.298447,227.972028,228.549677,229.524915,231.870131,234.006367,234.772625,236.165822,237.257160,238.418158,239.811355,241.181333,241.614015,242.496373,243.216191,245.259547,247.186804,248.603221,250.269673,251.716755,252.504427,253.270686,255.499801,256.800119,258.239756,260.770731,263.696445,265.218659,266.063407,267.247625,269.290981,269.5,270.126154,271.183153,272,273.712401,275.781063,276.779522,278.312039,279.798116,281.168093,283.513308,284.694229,286.087426,286.994267,288.666104,289.757442,291.684698,293.040382,295.141796,296.129819,297.058618,298.073710,299.734709,301.433457,302.704372,303.786538,305.120370,306,307.632124,309.335984,310.027865,311.927947,312.594863,313.677370,315.140227,316.603085,318.298141,319.830658,320.597855,321.486194,322.647191,323.808189,324.992407,325.947433,326.760131,328.849927,329.369956,330.136214,331.924151,332.973863,334.134860,336.038897,337.432094,339.034271,340.752547,341.171585,342.190834,343.510197,345.103903,345.890330,347.271830,349.004856,351.373291,352.773407,354.505652,355.875630,356.789012,357.903570,358.806237,361.267552,363.427008,363.917775,365.845031,366.936369,367.528145,368.828462,370.105560,372.381115,374.076172,375.399709,376.769687,377.285716,378.325423,379.537631,381.673867,382.974184,384.282043,385.527792,386.421208,387.591456,388.182873,388.5,389.969704,392.559843,393.568534,394.625533,396.019616,397.203834,398.643471,400.268868,401.522745,403.473221,404.796759,406.956215,408.558391,410.060673,410.803229,411.871347,413.034932,414.205181,415.627096,417.121100,417.515839,418.769717,420.464773,421.625771,424.435386,425.751312,427.748228,428.565179,430.329896,431.932072,432.791211,433.797412,435.298966,436.250984,437.946041,439.292798,440.430576,442.311392,443.820689 \ No newline at end of file diff --git a/data/torah/labels/eikev-1.txt b/data/torah/labels/eikev-1.txt deleted file mode 100644 index ff43b990a..000000000 --- a/data/torah/labels/eikev-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.033179,3.727252,5.072673,7.626868,8.648546,10.320383,11.713580,13.292537,14.848274,16.102152,19.143966,20.769363,22.789499,25.250814,25.631948,26.922651,27.485592,28.549158,29.931794,31.116911,33.238478,35.978433,37.743150,39.182787,40.715304,41.460717,42.575274,43.387973,45.663528,48.124844,49.936000,53.163574,53.953199,54.997950,57.159091,58.450565,59.772425,61.592264,62.208285,63.055121,64.553501,65.668059,67.061256,68.524113,69.685111,70.544833,71.714756,72.398477,73.218942,75.452431,76.607160,77.944215,80.420805,83.186078,85.033501,86.403478,86.984529,87.819895,88.595331,91.451386,92.844583,94.887939,95.979277,98.742451,99.973109,101.505626,102.875603,104.384900,105.545898,107.519594,109.655830,110,110.231049,113.057097,114.500508,115.731206,117.129036,118.785161,119.919050,120.365316,121.307332,122.507643,124.042217,125.288109,126.716327,127.172141,129.268886,129.724700,130.621134,131.623925,133.384268,134.429166,135.868803,138.005039,140.443134,141.720232,142.672250,143.786808,144.924586,146.062363,148.152159,149.429257,150.543815,151.728032,153.469529,156.131531,157.100460,157.514168,158.653703,160.325021,161.834318,163.413275,164.179915,165.758871,167.361048,169.520504,170.285248,170.958627,173.559262,175.277539,176.995815,178.528332,180.037629,181.988105,183.520622,184.890600,186.399897,187.746654,189.209511,189.785808,192.004103,193.401933,194.982089,195.908911,197.610617,198.172787,199.266741,200.512633,202.243147,204.216844,204.478216,206.286279,208.489380,209.887210,211.285040,212.075118,212.865196,214.627677,217.266458,219.333034,221.608590,222.583828,223.791265,225.091583,225.627991,226.647320,227.907062,229.593574,230.414040,231.538381,233.133731,236.144281,237.746458,239.743374,240.183656,241.338385,243.541487,245.182417,246.109239,247.294356,248.479473,249.883531,251.648248,253.111105,253.782111,254.690062,256.091569,257.261492,258.902423,261.748928,263.118905,264.303123,265.765980,267.437817,268.877454,270.131331,271.640628,273.614325,275.170062,276.749018,278.374415,280.553593,280.796694,282.159268,283.552465,284.945662,285.385223,286.408520,287.475578,289.077755,290.122653,291.631950,293.791406,295.602562,297.158299,298.481836,299.735714,300.503058,302.731088,303.984966,305.238843,306.492721,308.312674,309.178720,310.181512,311.609729,312.369419,314.086319,315.955157,317.170661,318.340584,319.367729,320.133453,321.060275,322.177343,322.686012,323.764772,325.538973,326.467771,327.535889,329.788225,332.272760,333.619517,335.268134,335.828653,336.497180,337.864623,338.805181,341.127176,342.218514,344.215430,346.235566,347.721643,349.091621,350.508038,351.808355,353.921371,356.498786,357.984863,359.749580,360.032383,361.156724,361.718895,362.433004,363.689757,365.872432,367.637149,367.993936,368.2,370.771843,371.979280,374.556695,376.855471,378.922047,380.593884,381.708441,382.590800,383.635698,384.982455,387.072251,390.090845,391.948441,392.349604,394.233636,396.178443,397.590890,399.239507,399.597049,401.025266,405.183816,407.877330,409.827807,410.111161,411.250697,412.365254,412.667114,413.735232,414.486977,415.622738,416.853396,418.246593,420.661468,422.774484,423.726502,423.983105,425.183415,426.322950,427.743960,428.997837,430.832214,431.276131,431.504038,432.309309,432.537216,433.852128,434.966686,436.568863,439.587457,440.446595,441.677253,443.047230,444.765507,445.193655,446.387316,447.432214,448.430672,449.823870,451.913665,452.270752,453.330083,455.359006,456.612884,457.531024,458.609784,459.050404,460.281103,461.513777,462.767654,464.811010,467.063346,467.513353,468.572643,469.803301,470.987518,472.311056,473.657813,475.004571,476.862167,478.092825,479.277042,480.345160,481.831237,482.175374,482.752739,483.664367,484.773515,486.099628,486.958766,488.421623,490.023800,491.556317,492.810195,494.435592,495.225070,496.246748,497.756045,498.870603,500.240580,501.471238,502.260716,502.794775,503.421714,505.093551,507.160127,508.297904,509.133823,510.759220,511.430016,512.361397,513.450152,514.234301,514.978798,515.702487,516.677725,518.070923,518.701280,520.175079,521.648878,523.274615,524.135988,525.756728,528.101943,529.518360,531.190197,531.433687,532.497254,533.636789,534.062216,534.830450,536.660356,538.088574,538.698302 diff --git a/data/torah/labels/eikev-2.txt b/data/torah/labels/eikev-2.txt deleted file mode 100644 index c575483f6..000000000 --- a/data/torah/labels/eikev-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.399394,2.995828,4.180046,4.690885,5.689343,6.004805,6.814431,8.114749,9.507946,10.645724,12.085361,14.198377,15.893433,18.006449,19.237107,20.514204,22.255701,22.915996,24.066857,25.599374,26.969352,28.966268,30.220145,32.588581,35.049896,36.373433,37.743411,38.788309,39.763547,40,41.040644,42.340962,43.084000,44.012798,45.336336,46.775973,48.053071,49.771347,49.963535,51.103782,52.209442,54.717198,55.622776,56.806993,57.666132,59.128989,61.776064,63.796200,65.189397,67.581052,68.881370,70.460327,71.992844,73.827220,74.732798,74.952707,75.818999,77.092521,78.118982,79.117440,80.278438,82.043154,83.831091,85.061748,86.408506,87.569504,87.813801,88.869821,90.027657,91.513079,94.253034,95.924871,97.434168,99.361424,101.544100,103.633895,105.003873,106.466730,107.761619,108.783297,109.736224,110.408694,110.818648,111.692343,112.869611,114.891054,115.409251,116.609330,117.677448,118.792006,120.672823,121.658395,123.923616,124.875634,125.839350,126.733231,128.068465,130.158261,130.513817,132.480257,133.162404,133.766123,135.298640,136.180999,137.365216,140.337370,140.850683,141.730568,142.894039,143.330486,144.472996,145.855318,148.722248,150.370865,151.740842,152.948280,154.759436,156.561790,157.479910,159.264107,160.352740,161.586103,162.551787,163.745558,165.533495,167.878710,169.202248,170.456125,171.849323,173.312180,174.612497,175.959255,177.213132,178.165150,179.372588,180.649685,181.624924,183.505740,185.061477,187.662112,188.846329,190.007327,191.284425,191.798373,193.072361,194.628098,195.928416,197.042973,198.273631,199.759708,200.990366,203.289141,204.287599,205.750456,208.165332,208.702160,209.581749,210.627252,211.241800,212.263580,213.670377,214.791380,216.045258,217.856414,219.156732,220.573149,222.082446,223.475643,224.310211,226.053058,228.049974,230.650609,232.949385,234.412242,236.316278,236.845520,238.200489,239.822491,240.913829,242.144487,243.885983,246.115099,247.415417,248.831834,250.155371,252.036188,253.986664,255.310201,257.748296,258.569441,260.346448 diff --git a/data/torah/labels/eikev-3.txt b/data/torah/labels/eikev-3.txt deleted file mode 100644 index a4ffb9944..000000000 --- a/data/torah/labels/eikev-3.txt +++ /dev/null @@ -1 +0,0 @@ -2.226935,2.849034,3.885866,7.120904,8.402847,10.905757,12.298954,13.738591,17.012605,19.241720,21.052877,22.503762,23.723172,25.079659,25.524098,26.200293,27.453507,29.314931,30.708129,32.101326,33.610623,34.980600,37.023956,38.443926,41.714387,43.525544,45.661779,46.801693,47.504936,48.633934,48.821262,49.771711,52.024047,53.649444,55.303715,57.359347,58.804274,59.988491,61.753208,63.099965,65.189761,66.466859,66.898201,69.034977,70.321371,71.487310,72.829126,74.338423,75.754841,77.171258,79.028854,82.256428,84.392664,85.530442,87.225498,88.665135,91.590850,92.963255,94.676282,95.217238,97.200743,99.526853,100.832392,102.086269,103.565989,103.877022,140.1,105.177339,106.524097,108.404913,108.991201,110.128979,112.172335,113.158939,114.953109,115.755527,116.653702,117.768260,119.277557,120.407747,122.249711,123.251750,124.296648,125.805945,128.058280,128.576179,129.712187,130.153967,131.255681,132.347019,133.670556,134.924434,135.437302,136.828470,138.349448,140.008379,140.224761,141.459943,144.110627,146.139672,147.579309,148.627608,150.412144,152.883127,155.381214,158.051509,159.584026,160.977223,162.323980,163.484978,164.328075,165.024673,166.464310,167.718188,170.086623,172.571158,174.057236,175.473653,177.284809,178.445807,179.862224,180.930342,182.161000,183.577417,184.159388,185.692097,187.594469,189.730705,192.099140,192.985984,194.176497,194.756996,196.266293,197.798810,198.864371,199.811043,203.187520,204.291960,208.365570,208.971228,211.026860,212.532521,213.569353,215.703076,216.771194,217.839312,218.837770,220.439947,223.017361,224.456999,226.128835,227.150513,228.868790,229.913688,231.074686,232.885842,235.207838,235.712477,237.669153,238.534463,239.661454,240.776012,242.308529,243.953037,245.817339,248.208994,249.161013,250.461330,251.877747,253.154845,254.199743,255.709040,256.986137,258.286455,259.493892,261.096069,262.466047,265.089901,265.5,267.063598,268.503235,269.803552,271.010990,272.055888,273.750945,275.469221,276.699879,277.791217,279.021874,280.879471,281.278988,282.234676,283.370683,285.124012,285.541971,286.027820,286.726189,288.047956,289.951992,291.275529,293.272446,295.361871,295.587269,296.778659,298.055756,299.425734,301.608409,302.746187,303.692590,304.394804,305.423649,306.658831,309.224554,310.966051,311.671688,312.939747,314.313356,315.187901,315.972287,317.563582,318.724579,319.862357,320.837595,321.571179,323.209324,325.762665,327.202302,328.874139,330.267336,331.706973,333.750329,334.888107,336.049105,337.349422,339.067699,340.205477,340.883302,342.379946,343.236459,343.813479,344.940470,346.944598,349.173714,350.613351,351.890448,354.351763,355.559201,356.237431,357.211151,359.808453,362.037568,365.358022,366.650830,368.309761,371.395210,372.448073,373.385730,375.026629,376.090509,377.278301,378.119093,379.182338,380.552315,381.179254,382.247372,383.222610,383.600779,384.940886,386.503908,388.145240,389.166918,391.070954,392.185512,393.392950,395.645285,396.619782,399.174719,400.544696,401.984333,404.259889,405.444106,407.603562,409.670138,411.156215,412.404365,413.588583,415.005000,416.189218,417.535975,418.650533,419.625771,421.274388,424.316202,426.568537,428.565453,429.842551,431.769807,434.556202,435.090755,435.655943,436.909820,437.722519,439.069276,440.319899,442.436170,443.301705,444.270546,444.710753,446.900798,449.454993,450.824970,452.078847,455.445741,457.071138,458.348235,459.486013,460.925650,461.877668,462.535247,463.067187,464.789229,466.655527,467.277626,468.727555,469.630784,470.561931,471.583609,471.866734,473.381411,477.551138,479.106875,481.057351,482.682748,484.447464,485.794222,486.039776,488.209097,489.532634,491.134811,493.572906,494.710684,495.848462,496.916580,498.565197,499.842294,500.068564,501.015236,502.126821,502.962739,503.868317,506.654712,507.308356,508.027921,509.119259,511.023295,512.300393,513.647150,514.459849,515.481527,516.526425,518.151821,519.405699,520.729236,521.175615,522.099214,523.427951,524.528782,526.191125,529.279379,530.626136,533.087452,533.553728,534.617608,536.802644,537.448610,538.311941,539.486210,540.468851,542.117468,542.957343,543.649985,544.850689,546.151006,548.055042,550.423478,550.936441,553.650236,555.949827,557.366244,560.175859,560.853965,562.010235,563.387441,566.110881,567.225439,568.177457,569.918954,570.835010,571.717368,573.180225,574.201903,575.455780,577.104397,579.078093,580.494511,581.818048,583.652424,584.391141,586.179077,586.6,587.758034,589.104791,590.289009,591.354856,592.471685,593.330823,595.118760,595.781678,597.905154,600.877308,601.725548,602.770446,604.953121,606.764278,608.187598,609.481013,612.244187,612.893913,613.759442,614.394037,614.928096,615.810454,618.573629,619.734626,621.545783,622.892540,624.750137,626.932812,628.024150,630.230046,631.507143,632.784241,634.734717,636.035035,638.124831 diff --git a/data/torah/labels/eikev-4.txt b/data/torah/labels/eikev-4.txt deleted file mode 100644 index 3037ca291..000000000 --- a/data/torah/labels/eikev-4.txt +++ /dev/null @@ -1 +0,0 @@ -0.983980,1.663563,3.362520,5.845735,7.076393,9.351948,10,12.161563,12.948347,13.903059,15.340002,17.360139,18.776556,19.983993,21.191431,22.793608,23.792066,24.906624,26.485581,28.319957,28.691146,29.951206,30.697081,32.080683,33.181616,35.317852,35.881438,36.780709,38.522205,39.596631,40.734409,42.615225,44.496042,46.191098,47.584296,49.047153,50.208150,52.901665,53.569297,54.294862,55.496553,57.005850,58.868880,59.959044,61.221131,62.428568,64.286165,66.570821,67.193772,68.878914,70.364991,73.035285,74.474923,75.891340,77.307757,78.793834,81.603449,82.973426,84.575603,86.711839,87.849617,89.126714,90.125172,91.425490,92.911567,94.420864,96.162360,99.204174,100.852791,101.208318,102.340957,104.337232,104.698260,105.802583,107.661803,108.753141,109.890919,112.329411,113.277996,114.892006,115.828182,117.685778,119.148635,121.609950,124.233805,125.650222,126.487391,127.531039,129.414833,130.436511,131.318869,132.851386,134.941182,135.893200,138.517055,139.817373,140.746171,142.255468,143.671885,144.786443,146.365400,147.495040,149.012737,150.382452,151.430959,152.233998,153.278896,154.416673,156.715449,158.038986,159.362524,159.659538,160.755396,161.916393,163.309591,163.694562,164.402461,164.896882,165.965000,168.588854,170.005272,171.352029,173.186405,174.672483,175.949580,177.087358,177.969716,179.153934,180.457610,182.184883,182.922250,184.431547,186.173044,186.995228,188.365205,188.824976,190.014246,191.662439,192.660897,194.030874,195.447291,197.537087,198.721305,199.882303,200.927201,203.574276,204.804933,207.219808,208.682666,210.470602,212.119219,213.001577,214.487654,215.509332,217.111509,218.899446,221.198221,222.289559,223.613096,224.866974,225.604039,226.021998,227.119310,229.597871,231.083948,232.500365,233.684583,235.611839,236.353314,237.505804,238.318502,239.154420,240.965577,242.707074,243.050038,244.140203,245.160175,246.181853,248.225209,249.757726 diff --git a/data/torah/labels/eikev-5.txt b/data/torah/labels/eikev-5.txt deleted file mode 100644 index 14a54d412..000000000 --- a/data/torah/labels/eikev-5.txt +++ /dev/null @@ -1 +0,0 @@ -0.676939,2.076463,3.539320,5.025397,6.256054,7.417052,8.879909,10.249887,11.169490,11.398776,13.593560,14.062857,15.045510,17.098163,18.364694,19.022857,19.858776,21.902132,22.900590,24.821882,25.035816,26.258673,27.492449,28.355590,29.539807,30.375726,31.885023,34.833957,35.414456,36.273594,37.643571,38.159694,39.349796,41.489796,42.723571,44.208469,45.256633,46.606474,47.744252,48.812370,50.205567,51.343345,52.713322,53.572460,54.663798,56.103435,56.854059,57.397857,58.282245,60.685351,63.030567,64.029025,65.166803,66.304580,67.186939,69.532154,71.227211,74.338685,76.428481,77.235737,78.419955,79.070113,80.440091,82.762086,83.714104,84.666122,86.152200,88.381315,89.552449,90.610431,91.801633,92.882551,94.239580,95.400578,96.399036,97.583254,98.930011,100.555408,101.716406,102.877404,104.084841,105.315499,106.848016,108.148333,108.626837,109.634410,110.777755,111.869592,113.016020,114.380816,117.449331,118.447789,119.608787,120.862664,122.929240,123.881259,124.753265,125.506633,126.489286,128.279898,130.398061,130.649184,131.497404,132,132.890601,133.935499,134.864297,136.141395,136.807143,138.720567,140.856803,142.087460,143.109138,144.200476,145.849093,146.708231,148.263968,149.982245,150.9,152.350680,153.325918,154.556576,155.285907,156.145045,158.699240,159.222551,160.401735,160.893061,162.135794,163.436111,164.620329,165.549127,167.383503,169.682279,170.843277,172.259694,173.374252,174.628129,177.135884,178.598741,179.922279,181.083277,182.699014,183.883231,185.601508,188.434342,189.479240,190.408039,191.522596,193.287313,196.120147,198.790442,201.274977,202.900374,203.441939,205.245590,208.775023,210.957698,212.815295,213.923571,214.174694,216.827857,218.058367,218.487449,219.524694,221.192324,221.653776,222.581837,223.291531,224.296020,225.186156,226.440034,227.615204,229.438571,229.831633,230.828413,232.012630,233.707687,235.333084,236.841224,237.933719,238.588163,239.844104,241.074762,242.073220,242.911837,243.930816,245.139184,245.532245,246.601111,247.355612,249.386429,250.947755,253.636757,254.820975,256.423152,258.025329,261.020703,262.367460,264.294717,264.814082,265.589286,266.231440,266.988231,267.598265,268.842959,270.550351,272.106088,274.660283,275.937381,276.564320,277.353798,278.491576,281.185091,283.042687,284.226905,285.411122,286.029059,287.152619,287.445476,288.165295,289.767472,291.192857,292.863367,294.365023,297.569376,298.683934,301.005930,301.5,303.536905,304.721122,305.975000,307.159218,307.614082,308.691735,310.572551,311.217143,312.430147,313.138776,314.372551,315.913141,316.381531,317.462449,318.903673,320.208832,321.625249,322.255612,323.343526,324.930612,326.317245,327.664002,329.475159,330.095000,331.007676,332.400873,333.677971,334.885408,336.510805,338.461281,338.873367,339.157245,340.663980,343.054490,344.169048,345.469365,346.583923,348.046780,350.995714,352.644331,354.339388,354.617653,355.593265,356.800703,358.936939,360.121156,361.119615,363.162971,364.672268,366.065465,367.249683,367.610510,369.316259,371.870454,373.101111,375.399887,378.325601,379.183980,380.043878,381.483515,383.364331,384.293129,385.988186 diff --git a/data/torah/labels/eikev-6.txt b/data/torah/labels/eikev-6.txt deleted file mode 100644 index c19ddf28c..000000000 --- a/data/torah/labels/eikev-6.txt +++ /dev/null @@ -1 +0,0 @@ -1.217542,1.540728,3.793064,4.745082,5.882859,6.515146,7.392156,8.924325,10.051200,11.385989,12.802406,13.777644,14.623459,15.944622,16.916065,18.198696,19.336474,19.972873,21.255178,22.874250,24.532180,25.907721,27.742097,30.574932,32.084229,34.104365,35.438886,36.298024,37.830541,39.154079,40.175757,41.359975,43.078251,44.517888,45.424687,46.512703,48.429684,49.011922,49.801400,51.333917,52.262715,53.284393,56.094008,57.347885,58.624983,59.855640,60.784439,62.642035,64.128112,65.498089,66.343098,68.065791,71.001219,71.394603,72.324756,73.656570,74.167409,75.421286,77.603962,79.554438,81.272715,82.410493,83.385731,85.707726,86.195345,87.263463,88.679880,90.421377,91.294976,92.455974,93.361552,94.847629,97.448264,98.005543,100.164998,101.604636,102.208354,103.299692,105.366268,106.689806,108.593842,110.869398,114.189851,114.956110,116.186767,117.719284,119.344681,120.970078,122.850894,124.104772,124.668551,125.521189,126.728627,129.468581,131.326178,132.672935,133.810713,135.714749,137.131166,138.385044,139.084769,140.600220,143.121915,144.375792,144.677652,145.908309,146.338212,147.368892,148.274470,150.457146,151.130525,151.989663,152.407622,153.243541,155.054697,157.237373,158.514470,159.605808,160.790026,161.788484,162.995922,163.924720,165.364357,167.245173,167.658153,168.785027,169.588087,170.222763,171.331885,172.028484,173.259142,174.721999,175.790117,176.927894,177.508393,178.739051,179.639286,180.805627,181.455786,183.081182,184.636919,186.564176,187.098235,188.119913,189.159430,189.820012,191.556466,192.856783,194.644720,195.643178,197.384674,199.265491,201.680366,202.241533,203.089457,204.250455,206.688550,207.988867,209.056985,210.217983,211.704060,212.888278,213.863516,215.187053,216.417711,218.414627,220.388323,222.083380,222.896078,223.871316,224.939434,226.866690,227.632949 diff --git a/data/torah/labels/eikev-7.txt b/data/torah/labels/eikev-7.txt deleted file mode 100644 index 4de6db8b8..000000000 --- a/data/torah/labels/eikev-7.txt +++ /dev/null @@ -1 +0,0 @@ -0.589996,2.824168,3.5,4.357515,6.307991,6.823911,7.068815,8.237674,10.766222,13.064998,14.969034,16.222912,17.500009,19.195066,21.331302,21.749261,23.699737,25.650213,26.857651,27.418097,28.598088,29.945059,31.459010,33.939737,35.774113,36.446143,36.601991,37.399510,38.449902,40.249499,42.223195,43.314533,44.336211,45.682968,47.285145,47.990019,50.183022,51.307353,53.461653,54.034691,55.915998,57.185045,57.953152,58.871902,59.333519,60.313135,62.383685,63.062737,63.819712,64.632348,66.647238,68.247177,69.454615,70.685272,71.846270,73.773526,75.051893,75.840102,76.861690,78.115658,79.996384,82.388040,84.338516,85.871033,88.471668,89.222919,90.143504,90.603286,91.393657,92.228557,92.963268,93.920620,95.824190,97.015313 diff --git a/data/torah/labels/eikev-H.txt b/data/torah/labels/eikev-H.txt deleted file mode 100644 index e1d315819..000000000 --- a/data/torah/labels/eikev-H.txt +++ /dev/null @@ -1 +0,0 @@ -0.702514,1.855638,2.854096,3.666795,5.501171,6.708609,8.287566,9.518223,10.493461,11.584799,13.007638,13.540605,15.027774,15.703245,16.606731,17.824560,19.351149,19.684155,21.323353,22.136065,22.5,23.396630,25.347106,26.809964,27.669102,29.155179,30.687696,32.405973,34.193909,35.706924,36.434283,37.784211,38.576833,39.389532,40.411210,41.502548,42.663545,43.847763,44.446060,45.844679,46.627617,47.423636,47.881122,49.953986,51.090645,52.261501,54.010897,55.264402,56.843359,58.352656,59.490433,60.744311,62.903767,64.018325,66.015241,67.124484,68.128257,69.591114,71.053971,72.725808,74.838823,76.208801,77.578778,78.786216,80.086533,82.106669,82.965476,83.199648,84.342954,85.049384,85.500035,87.232060,88.741357,91.133012,92.087908,92.505868,93.272126,93.585829,94.536288,95.528072,96.630054,98.737595,100.018649,102.420788,103.744326,104.742784,105.927001,106.948679,107.993577,109.449628,110.564186,111.887723,112.677668,113.779651,114.619912,116.107588,117.329986,119.605541,120.929079,121.973977,122.540408,123.367174,124.388852,125.266228,125.944589,126.934562,128.449787,129.895726,130.847744,132.194501,133.982438,134.317842,135.100233,136.516650,138.095607,140.069303,142.298419,144.202455,146.663770,149.078646,150.048623,151.291496,152.057755,153.985011,154.658390,156.841066,158.443242,159.057340,160.090448,161.316403,162.242843,162.591142,163.450281,164.959578,166.143795,167.211913,168.953410,169.3,170.346607,171.019986,172.645383,173.865224,175.297801,176.468657,178.845111,179.361360,180.238308,181.021007,182.171414,183.482322,184.248581,186.152617,186.909937,188.056653,189.568469,190.780649,191.414289,192.337199,193.217199,194.447857,196.634929,196.882875,197.745090,198.177704,199.389884,201.068808,202.099931,203.794988,205.350725,205.712506,207.778723,208.453687,209.291577,210.406135,211.961871,213.540828,214.557471,216.136428,217.627688,218.922823,221.059058,221.842769,223.264954,224.402732,225.671744,226.879181,228.411698,229.851336,230.942673,232.120697,233.397794,234.322703,234.949642,235.832000,237.434177,238.409415,240.127691,241.915628,244.191184,245.421841,246.884698,248.486875,249.880072,251.180390,253.014766,255.235158,255.842433,256.956991,258.721708,259.574612,260.549850,262.105587,262.3,262.862067,263.429124,263.930212,265.694928,266.266422,268.643863,269.928128,272.366223,273.875520,274.827538,275.965316,277.288853,278.449851,279.657289,280.493207,281.700645,283.372481,284.486894,285.276372,287.041089,288.016327,288.875465,290.175783,291.615420,293.658776,295.075193,295.864672,297.293106,298.442086,300.474240,301.588798,301.970642,302.796235,304.793151,306.750489,307.927845,309.947981,311.296165,311.943580,312.894039,314.147544,315.924490,317.015042,318.237505,318.756538,319.708556,320.683795,322.169872,322.536382,324.097128,325.327785,325.828554,327.278262,329.205518,330.550131,331.804009,333.545505,335.913941,337.051719,338.096617,339.187954,340.720471,342.369088,345.085823,345.944961,346.695754,347.369133,348.061042,348.739110,349.149250,350.884872,351.463412,352.785791,353.533159,354.531617,355.831934,357.434111,357.896233,358.226827,359.521656,360.836148,362.577645,363.599376,364.249535,364.946134,365.926927,367.318179,367.8,368.629128,369.674026,370.579604,371.996021,372.717892,373.819074,374.980072,375.862430,376.651909,377.401316,378.207646,379.977199,380.703705,381.740370,383.024954,384.023412,384.952211,386.786587,388.687959,389.709637,390.800975,391.985193,393.401610,394.177794,395.770046,397.730447,398.775345,401.050900,401.959756,402.862057,403.979892,405.187330,406.301888,407.346786,408.972183,410.783339,412.153316,413.987693,415.099707,415.633766,416.785,418.489820,420.293970,421.315648,423.382224,424.682541,426.006079,427.352836,427.886256,428.636755,429.837371,431.763989,433.157186,434.277353,436.158169,437.690686,438.410505,439.148894,440.820731,442.046340,442.524514,443.453312,445.125149,446.113429,446.876104,447.526262,449.549982,450.664540,450.998745,452.011297,453.172295,453.933972,454.783598,457.012713,457.777134,458.644945,459.912224,461.813143,463.580537,464.003333,464.612953,466.656309,468.931865,470.348282,470.697874,472.116676,473.506196,474.945833,476.431910,478.150187,478.747845,480.303582,481.487800,482.764897,484.610398,485.299137,486.635290,487.200056 diff --git a/data/torah/labels/emor-1.txt b/data/torah/labels/emor-1.txt deleted file mode 100644 index 93f16d289..000000000 --- a/data/torah/labels/emor-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.873469,3.947392,4.279684,5.366921,6.088690,6.640164,7.940504,8.807398,10.142545,11.884042,13.451389,14.380187,14.695606,15.682454,16.930527,17.859325,18.261819,19.422817,20.641865,21.483588,22.963860,23.925969,25.223719,26.326666,27.806938,29.519410,30.622358,32.269116,33.197914,34.329887,34.556304,35.688277,36.470023,37.414354,38.720477,39.316272,40.361170,41.115819,42.276816,43.902213,44.623982,45.639855,46.626703,47.729651,48.861624,49.732372,50.105841,51.208789,54.024209,54.778857,55.968880,57.275002,58.523075,59.393823,61.628744,63.138041,64.299039,65.111737,66.301760,68.102150,68.537524,69.147048,70.685370,72.715189,74.746935,75.530608,76.778681,77.939678,79.013601,80.145574,81.074372,82.032195,83.185427,84.529284,86.711959,87.803297,88.708876,89.521574,90.775452,91.283207,91.956585,92.722844,93.837402,95.973637,96.383887,96.481393,97.254702,98.485359,98.969894,100.014792,101.082910,101.521005,102.264044,103.587581,104.423500,105.445178,106.559736,108.208352,109.183591,110.205269,110.994747,111.502502,112.547400,113.499418,113.915835,114.751754,115.773432,116.748670,117.747128,119.093885,121.658077,122.726195,124.281932,124.884109,125.696808,125.949143,126.854721,127.737080,128.828418,130.244835,130.473950,131.495628,132.540526,132.862522,134.069959,134.600935,135.460073,136.481751,137.549869,138.780526,139.426059,140.494177,142.537533,142.998848,143.881207,144.450912,144.842567,145.957125,146.833315,147.878213,148.478848,149.709506,150.217261,151.029959,152.144517,153.142975,154.466513,155.604291,156.138349,157.090368,158.065606,161.060980,162.639937,163.545515,165.287012,167.446467,168.212726,168.932545,170.070322,172.554857,173.901615,175.145668,176.167346,177.528071,178.456869,180.056895,181.008275,181.539250,182.398388,182.951041,184.135259,185.876755,186.221971,187.290089,188.102787,188.985145,190.006823,190.514578,191.396937,192.209635,193.347413,195.112129,195.805644,196.896982 diff --git a/data/torah/labels/haazinu-1.txt b/data/torah/labels/haazinu-1.txt deleted file mode 100644 index df932c425..000000000 --- a/data/torah/labels/haazinu-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.083879,4.509120,6.562693,8.187161,8.953419,9.723411,10.949425,12.175438,13.707955,15.071896,16.727014,17.907052,19.638796,22.198100,22.749806,23.745942,25.554312,26.351221,27.899063,29.738083,30.672919,31.607754,32.711166,33.753278,34.626813,36.174655,37.967700,39.270339,40.864157,41.768342,42.228097,43.178257,44.174394,45.584309,46.749022,48.082312,49.568853,50.656940,51.836979,53.062992,54.923248,56.532390,57.451901,58.570638,59.704701,60.976690,62.110752,67.420989,69,70.792265,71.887950,73.098638,74.401278,75.642616,76.171269,77.458584,78.837849,79.604107,80.236173,81.630763,83.312668,84.983112 diff --git a/data/torah/labels/haazinu-2.txt b/data/torah/labels/haazinu-2.txt deleted file mode 100644 index 64cedd1df..000000000 --- a/data/torah/labels/haazinu-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.100709,3.526879,4.721778,6.013039,6.957395,7.253003,8.409357,10.028252,10.856972,12.109689,13.632221,14.904210,15.906384,17.274736,18.450362,19.510353,21.341246,21.957968,23.210685,24.579037,25.831753,27.296468,28.626275,29.262269,31.228071,33.444415,34.542951,35.969121,37.067657,38.416737,39.707998,41.519619,43.697419,45.007953,46.222124,47.744657,48.920283,50.712631,52.774795,55.704225,57.689299,61.312541,63.663793,65.373213,66.317568,67.628103,68.283370,69.536086,70.673167,72.330608,73.641142,75.048039,76.551299,77.418564,79.153095,81.138169,81.851254,82.911245,84.279596,85.397405,86.187580 diff --git a/data/torah/labels/haazinu-3.txt b/data/torah/labels/haazinu-3.txt deleted file mode 100644 index 5fb29ac0e..000000000 --- a/data/torah/labels/haazinu-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.855739,2.032229,3.426057,4.178384,5.683037,6.502237,7.689241,9.879347,10.548082,11.785241,13.039118,14.209404,15.597029,16.967935,18.623053,19.442253,21.047216,21.966727,22.702335,24.240424,25.393992,25.979135,26.714743,28.319706,29.038596,29.757486,30.693714,31.629943,32.984131,33.853486,34.789714,36.578580,39.688196,40.758171,42.045486,44.402776,45.756963,46.910531,49.535314,51.039967,52.477747,54.166302,54.901910,56.690776,59.141053,60.328058,62.016613,63.939225,67.182588,68.854425,69.673625,71.128123,72.766523,73.535568,74.789445,76.544874,77.782033,78.852009,79.838392,81.058833,83.583307,85.723258,87.244629,88.531943,90.688613,91.213086 diff --git a/data/torah/labels/haazinu-4.txt b/data/torah/labels/haazinu-4.txt deleted file mode 100644 index e6df5fb44..000000000 --- a/data/torah/labels/haazinu-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.064718,3.794141,5.241208,6.794159,7.923577,9.476528,11.735365,13.182433,14.011849,15.105974,16.394217,17.011868,18.370699,19.447176,20.206005,21.617778,22.553078,23.735438,24.458971,26.311924,27.688403,29.206059,30.776657,31.535485,32.506079,33.847263,35.717863,37.323755,38.664940,39.123766,40.041419,41.047307,42.000254,43.588499,44.664976,45.212038,46.164985,47.541464,49.165003,49.994420,51.035603,52.006197,53.665030,54.476800,55.641513,57.212111,58.076822,59.576831,61.535666,63.229794,64.200388,65.753339,66.653344,68.012176,69.618068,72.282790,74.153390,75.123984,76.235755,77.859294,79.147537,80.241662,81.088726,82.235791,83.576976,84.829925,86.029932,88.253475,89.682895,90.565254,91.694672,93.529977,94.747632,95.524107,96.300582,96.724114,97.782944,98.806480,99.424131,100.024134,101.453555,103.677098,105.212401,106.730057,108.071242,109.659487,112.679575,113.932523,115.167825,116.509010,117.338426,119.350203,121.909042,122.579635,123.603170,124.909060,126.320834,127.450252,129.144380,130.044386,130.479694,131.714996,133.020886,134.520895,136.020904,137.026793,138.385625,139.373866,140.732698 diff --git a/data/torah/labels/haazinu-5.txt b/data/torah/labels/haazinu-5.txt deleted file mode 100644 index ac8ec8fb1..000000000 --- a/data/torah/labels/haazinu-5.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,1.741199,3.594151,4.547098,5.288279,6.505934,8.764771,12.064791,13.123621,14.464805,15.400105,16.511877,17.888356,19.370717,21.576613,22.441324,22.653127,23.617850,24.817858,26.388455,27.835523,29.829653,30.482598,31.770841,32.917907,34.241444,35.882630,36.888519,37.682641,38.565000,39.835595,42.006197,43.470912,45.263268,45.918772,46.854072,48.389376,49.501147,50.912920,52.395282,53.789408,54.830591,56.348247,57.618843,59.454148,60.336525,61.271825,61.936547,63.313026,64.671857,66.930694,68.307173,68.966025,70.201327,71.171921,72.407222,73.413111,74.418999,75.689595,76.607248,77.701372,78.989615,80.136681,81.389630,82.395518,83.154346,83.913174,84.689650,85.572008,86.383777,88.077905,89.419090,90.124977,90.666168,91.495585,92.572062,93.983836,94.972077,96.525027,98.483863,99.225044,100.654464,101.660353,102.719182,104.095661,105.472140,106.866266,108.807455,109.883932,111.242763,111.689849,113.101622,114.866339,116.719291,117.584002,119.189894,120.689904,122.472267,124.695810,125.436991,126.125231,127.625240,128.507598,129.531133,130.554669,131.719382,134.260574,135.019402,137.119415,139.201780,140.190021,142.078268,143.295923,144.795932 diff --git a/data/torah/labels/haazinu-6.txt b/data/torah/labels/haazinu-6.txt deleted file mode 100644 index aaac81524..000000000 --- a/data/torah/labels/haazinu-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.770692,1.551579,1.894073,2.633861,3.716310,5.743876,6.661761,7.634445,9.182519,9.621079,10.621163,11.744544,13.018623,14.361201,15.279085,16.306568,17.512148,18.183437,19.443816,21.197387,22.855060,24.320936,25.499116,26.540299,27.828078,28.540466,29.650148,31.033825,31.842111,33.239488,34.376569,35.239655,36.637032,38.363203,39.226289,40.171573,41.509069,41.837947,42.769615,43.879297,45.701367,46.934346,48.249524,49.331806,50.472570 diff --git a/data/torah/labels/haazinu-7.txt b/data/torah/labels/haazinu-7.txt deleted file mode 100644 index 20cf312a3..000000000 --- a/data/torah/labels/haazinu-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.011795,4.567386,7.443986,7.920459,8.196943,8.991066,9.691082,10.608735,11.455799,12.320510,13.520517,14.402875,14.661713,15.720543,17.749967,18.702914,20.326453,20.944104,21.297047,22.285288,23.185294,23.644120,23.997063,25.020599,26.820610,28.408855,29.185330,30.420631,31.461814,32.908882,35.573604,37.797147,39.032448,39.967748,41.132461,42.403057,43.673653,43.826607,45.220733,46.561918,47.656042,48.161939,48.620766,49.256064,49.997245,51.497254,54.250211,54.779626,55.644338,56.344354,57.403184,58.179659,58.526732,59.109089,60.732628,63.191490,65.150326,66.473863,67.603282,68.032259,69.885212,71.455809,72.796994,75.370361,75.882129,77.893906,79.388044,81.717470,83.623364,85.046914,85.199868,86.382228,89.011656,89.735190,90.476371,92.717561,97.605826,98.082299,99.705838,101.347025,103.094094,103.670580,105.594121,106.900012,108.558845,110.182384,111.964748,112.458869,113.023578,114.329468,116.076538,116.517717,117.382428,119.288322,120.576565,122.041280,123.594230,124.829532,126.488365,128.782497,131.676632,133.441349,134.764886,135.700186,137.023723,138.170789,139.794328,140.429626,141.770811,143.406127,145.241432,146.617911,148.390476,149.466954,150.772844,152.572855,153.119917,154.849339,156.984646,158.178783,160.631739,162.184690,163.614110,164.531763,165.661181,166.772953,167.655311,168.572963,169.220038,170.084749,170.843578,171.725936,171.896537,172.937720,174.031844,175.249499,175.973032,177.737749,178.702473,179.673067,180.182534,180.302495,181.506072,182.847256,183.535496,184.400207,184.947269,186.606103,187.488461,188.264936,189.283348,190.030430 diff --git a/data/torah/labels/haazinu-h.txt b/data/torah/labels/haazinu-h.txt deleted file mode 100644 index 49ca74f55..000000000 --- a/data/torah/labels/haazinu-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.718277,2.948934,4.365351,4.710567,5.778685,6.962902,8.054240,10.236916,11.606893,13.116190,14.997007,16.181224,16.668844,17.620862,18.572880,19.966077,22.241633,25.237007,26.096145,27.628662,30.833016,32.319093,33.038912,34.362449,35.593107,36.823764,39.649524,40.462222,43.666576,45.361633,46.499410,49.610884,51.840000,53.929796,57.227029,58.364807,59.665125,61.871020,64.640484,65.640566,67.080203,68.078661,69.820158,71.097255,72.513673,75.416167,76.577165,77.714943,79.456439,81.987414,82.962652,84.866689,86.071042,87.232040,88.671677,90.180974,90.970453,92.433310,94.755305,96.264602,98.052539,99.283197,101.512312,103.973627,105.715124,107.619160,109.476757,111.566553,113.517029,115.397845,117.557301,117.975260,118.741519,119.902516,121.970089,123.247186,124.408184,126.100642,127.424179,129.281776,131.139372,131.879327,133.295744,134.476878,135.521776,137.565132,138.958329,139.349984,141.114701,142.086855,142.368578,143.596152,145.825268,147.381005,147.540460,147.958420,149.444497,150.698374,152.416651,153.716968,155.876424,157.083862,157.780460,158.404315,160.261912,162.630347,165.207762,166.926039,167.854837,169.596333,170.757331,170.943091,172.173748,174.031345,175.447762,176.074701,177.607218,178.953975,180.138193,183.760506,185.107263,187.057739,189.310075,191.121231,192.189349,193.582547,194.789984,195.997422,199.077151,200.632888,203.117423,203.697922,205.044679,206.159237,207.807854,209.433251,211.151527,211.941006,213.589623,216.097378,217.769214,219.417831,222.529305,223.362140,224.639237,226.729033,229.002326,230.070444,231.208222,233.901736,235.318154,237.315070,238.940467,240.914163,242.469900,244.490036,246.765591,246.971487,247.807405,249.386362,250.474616,251.983913,254.793528,255.977745,257.185183,257.928222,259.089219,260.178999,261.525757,262.103172,263.612469,264.375643,265.466981,267.765757,268.460813,268.925212,269.993330,272.159960,273.785356,273.875152,274.478871,276.173928,277.146082,278.260640,279.955697,281.743633,284.158508,286.759143,288.361320,289.429438,291.496014,293.265771,293.839612,295.975848,296.649227,297.856664,299.389181,300.271540,301.130678,302.175576,304.381472,305.310270,306.239068,307.864465,308.723603,309.954261,311.997617,312.870782,313.428061,314.191235,316.327471,317.627789,318.042664,318.878582,320.759399,321.380169,321.921372,323.829251,327.255577,328.764874,329.554353,331.551269,332.340747,333.571405,334.593083,336.706099,338.424375,339.461563,341.342380,343.130316,343.989455,345.057573,346.241790,347.611768,349.051405,351.532510,352.467370,353.433083,354.546099,356.032176,357.727233,358.211768,359.233446,359.857301,361.668457,362.409954,363.126689,364.171587,365.750543,366.908240,369.903614,371.714770,373.363387,374.547605,376.799940,378.146698,379.168376,381.560031,382.419169,383.464067,385.414544,387.063160,388.015179,389.640575,390.639033,391.544612,392.752049,395.584884,397.790779,398.696358,399.532276,400.530734,402.086471,404.478126,405.778444,406.985881,408.495179,410.654634,412.442571,415.205745,416.679719,418.003257,419.907293,420.789651,421.857769,422.298948,423.947565,425.712282,428.916636,429.543574,430.983211,433.142667,433.955366,435.441443,437.020400,438.111738,439.899674,440.851692,442.105570,444.938404,449.001896,450.573143,451.780581,453.405978,455.565434,458.816227,461.254323,462.043801,463.065479,463.854958,465.224935,465.732690,467.265207,471.189379,473.186295,474.486613,476.042350,477.876726,480.144005,483.023279,487.946016,489.707649,491.681345,493.167422,494.328420,495.535858,496.418216,496.531232,497.854769,500.571504,501.918261,502.963159,504.260393,506.350189,507.717082,508.761980,510.833650,512.198533,513.248525,514.432743,516.267119,518.333695,522.257868,523.047346,524.626303,525.624761,526.832199,531.054441,532.401198,533.446096,534.398114,536.979437,537.676036,538.697714,540.864804,541.884940,542.976278,545.507253,547.597049,549.477865,551.567661,554.539816,555.933013,557.186890,559.183806,559.764305,560.925303,562.063081,563.224079,565.081675,567.008931,569.029067,571.513602,572.465621,573.951698,574.973376,576.900632,578.804668,581.078167,582.146285,582.793359 diff --git a/data/torah/labels/ki tisa-1.txt b/data/torah/labels/ki tisa-1.txt deleted file mode 100644 index db8f0d307..000000000 --- a/data/torah/labels/ki tisa-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.063791,3.922929,4.178349,4.525114,5.500352,5.918311,7.450828,7.822348,8.329199,8.681712,10.481970,12.267161,14.254502,14.811780,15.810239,17.226656,18.132234,18.949568,19.873731,20.436533,20.993812,22.479889,23.083608,23.695110,24.879328,25.668806,26.945904,27.370128,28.275706,28.601367,29.901685,30.772853,31.515892,32.560789,33.698567,34.441606,35.323964,36.415302,37.576300,38.667638,39.573216,41.128953,42.150631,43.223368,43.502007,44.628595,45.835419,46.555238,47.275056,48.366394,49.100923,49.774302,51.051400,51.856509,52.158368,53.528346,54.677524,55.222741,56.058659,57.312537,58.496754,59.332673,59.683298,60.708593,61.869590,62.757035,63.128555,64.614632,66.815958,67.094597,67.578858,69.459674,70.373359,71.200509,72.222187,73.661824,74.637062,75.011828,75.844500,76.587539,77.377017,79.167247,80.188925,81.164163,82.185841,83.034032,84.055710,84.881052,85.206131,87.017288,88.535854,89.220988,89.476407,89.841581,90.909699,92.418996,93.371014,94.439132,95.460810,96.319948,97.922125,98.943658,100.336856,100.597959,101.068381,101.764092,102.553570,103.621688,104.650827,105.136637,106.088655,107.969472,108.689290,109.362669,110.337907,110.802500,111.685763,111.941182,113.496919,114.982996,115.228696,116.329754,117.643571,118.363389,118.967108,119.733367,121.033684,121.561301,122.745519,123.000938,123.860076,124.974634,125.810553,126.576811,127.714589,129.688285,130.408104,131.360122,132.219260,133.240938,134.750235,136.166652,136.482723,137.861709,138.276666,139.159025,141.132721,142.691106,143.602417,143.804421,144.181075,145.249193,146.040448,146.361587,148.078055,148.751434,150.376831,150.780548,151.709346,152.684585,153.610912,154.601830,155.298428,156.621966,157.666864,158.874301,159.475518,160.009577,160.729395,162.101875,164.141131,164.688156,165.315095,166.081353,167.242351,167.937383,168.680422,169.841420,171.411577,172.735114,173.663912,174.284166,175.189744,175.839903,176.675822,177.790379,178.742398,179.508253,180.038985,180.544706,181.868243,183.168561,183.815361,184.019480,184.583993,185.443132,186.093290,186.650569,187.927667,188.578956,189.714021,190.062320,190.231465,191.158164,191.897553,192.965671,193.337190,194.405308,195.148347,195.775285,196.959503,197.530556,198.064615,198.923753,199.205671,199.457473,200.339832,200.890458,201.656717,201.981796,203.189234,205.209370,206.370367,207.392045,207.879664,209.040662,209.241343,209.775708,210.592008,211.799445,212.361213,213.081032,213.429331,214.195590,215.194048,216.424706,217.167744,217.771463,218.607381,219.192580,219.824040,220.543858,221.565536,222.308575,224.653790,225.354814,225.981753,226.956991,228.166786,228.582387,230.370324,231.204935,232.017633,233.201851,234.246749,235.059447,237.771580,238.340276,239.176194,240.244312,241.505069,242.224887,242.828606,243.308959,244.655716,245.680963,246.478887,248.104284,249.218841,250.588819,251.892947,252.851893,253.243903,254.012875,254.964893,256.288430,258.680085,259.562444,259.853937,261.080073,261.428373,262.194631,263.727148,264.888146,266.025924,267.488781,268.301479,269.395078,270.486416,270.992395,271.526454,272.733892,273.894889,274.800468,275.845366,276.774164,277.493982,278.631760,279.792758,280.436119,281.434577,283.106414,284.773052,286.328789,287.466567,288.929424,289.788562,290.787020,291.878358,292.900036,294.502213,295.245251,295.955819,296.758263,297.728948,298.708740,299.405338,300.473456,301.976036,303.090594,304.568162,306.991546,307.491147,308.280626,309.302304,310.611277,311.202933,311.745115,313.204629,314.266095,314.799863,315.403582,316.883571,318.270714,318.897943,319.802601,321.195508,322.922472,323.642290,323.920930,324.410325,325.266735,326.099020,326.971125,327.737383,329.339560,329.608802,330.119641,330.467940,330.899738,331.673230,332.696992,333.972006,334.598945,335.318763,336.317221,338.128378,339.057176,339.823435,340.300058,341.659136,342.916324,344.170201,345.749158,346.701176,347.746074,349.441131,350.648569,352.088206,353.272424,354.996514,355.669893,356.575471,357.001843,358.232501,360.322297,362.063793,363.015812,364.200029,364.746006,366.703716,367.075235,368.282673,369.076915,370.168253,371.130186,371.464598,371.971207,372.634623,373.616191,374.568209,376.797324,377.375030,377.604210,377.966073,379.582395,381.002720,381.699319,383.046076,383.662713,385.055911,386.216908,386.825100,387.823558,388.636257,389.448955,390.377753,390.679532,391.195216,392.309773,393.043705,394.269535,394.551468,395.580380,396.120753,396.863791,397.908689,398.159556,398.391755,399.413433,400.411891,400.945950,402.176608,402.741638,403.349878,404.232236,404.534096,404.804258,405.554530,406.018930,406.761968,407.110267,408.294485,409.200063,409.966322,411.243419,411.981211,412.745354,413.720592,414.858370,416.181907,416.685432,417.236074,417.793353,418.954351,420.254668,421.486150,423.133942,423.428149,424.266780,425.172358,426.356576,427.215714,427.721063,428.858841,430.437798,431.900655,432.606523,432.885162,433.270827,434.416727,436.138620,437.044199,437.369278,437.949777,438.808915,439.644833,440.025606,440.327465,441.214038,442.282156,443.825169,444.678,445.646547,446.484968,447.452859,449.565875,451.702111,453.002428,453.664537,454.454015,456.172292,457.868495,458.022267,459.215253,460.817429,461.630128,462.093236,463.161353,464.809970,465.808428,466.714007,467.898224,468.130311,469.006937,469.610656,470.841314,472.838230,473.606507,474.227116,474.877275,475.991833,476.897411,478.685347,479.437639,480.879957,481.853079,483.315937,484.709134,486.241651,486.938250,488.006367,488.462806,490.064983,491.945800,492.605841,493.418539,493.906158,494.904616,495.829136,496.119531,496.777812,497.031116,497.942733,499.730670,499.866324,501.445281,502.420519,502.820926,503.790497,505.601653,506.437571,507.203830,508.225508,508.7,509.270406,510.129544,510.576860,511.312649,512.693477,513.668715,514.736833,514.969033,515.897831,516.153250,517.383908,518.204648,519.346011,520.642743 diff --git a/data/torah/labels/ki tisa-2.txt b/data/torah/labels/ki tisa-2.txt deleted file mode 100644 index 58748245b..000000000 --- a/data/torah/labels/ki tisa-2.txt +++ /dev/null @@ -1 +0,0 @@ -2.998116,3.930382,4.162582,5.695099,7.575915,8.690473,9.549611,10.849929,12.150246,13.148704,14.123942,15.354600,16.515598,17.284976,18.349974,19.213756,20.676613,22.901090,24.108528,24.305511,25.054173,26.238391,27.283289,27.511365,28.537167,29.906278,31.833534,32.253814,34.134630,35.481388,36.874585,38.778621,39.614540,40.195038,42.006195,43.143973,44.328190,45.674948,46.111585,47.899521,49.199839,51.127095,52.218433,53.263331,54.517208,55.887186,56.353930,57.422048,57.797551,58.374066,59.418964,60.913290,61.772428,63.049526,64.628483,65.859140,67.066578,68.599095,69.876193,71.315830,72.848347,74.473744,75.913381,77.260138,79.442814,79.708759,80.696691,81.097341,81.987572,83.055690,83.984488,85.563445,86.840542,87.152267,88.615125,89.845782,91.773038,93.375215,94.304014,95.465011,96.695669,97.670907,98.855125,101.316440,102.245238,103.150816,104.544014,105.356712,106.471270,107.098209,108.746825,110.186463,111.695760,112.601338,113.623016,114.807233,116.246871,117.152449,118.588064,119.289162,120.091106,121.541497,123.074014,125.674649,127.718005,128.925443,130.174801,131.618957,133.013142,134.081260,135.381578,137.099854,138.609151,140.118448,141.774331,142.698209,143.046508,144.044966,145.071940,146.790217,147.507342,148.675603,150.231340,151.206578,152.297916,152.971295,154.318052,155.322674,157.133831,157.557695,158.486493,159.670711,161.110348,162.526765,163.757423,164.500462,165.777559,167.345061,168.227419,169.396571,170.270775,172.662430,173.568009,174.682566,175.959664,176.725922,177.933360,178.699619,180.301795,181.846336,183.030554,183.304461,184.261211,185.491869,185.711230,186.662522,187.697765,188.523891,188.872190,189.611527,190.340765,191.316003,192.918179,194.673947,195.463425,196.565073,197.122352,198.097590,199.746207,201.464484,202.370062,203.115586,204.439123,206.614302,207.868179,208.309358,208.959517,209.865095,211.142193,213.371309,214.671626,215.832624,217.063281,218.502918,219.965776,221.266093,222.380651,223.797068,225.050946,226.304823,227.233621,227.803863,229.266720,231.797695,232.680054,234.491210,236.488126,237.765224,239.065541,240.180099,241.132117,242.502094,245.033070,246.054748,246.960326,248.190983,249.305541,250.814838,251.836516,253.067174,253.601233,254.646131,256.225088,260.242140,262.587355,263.678693,265.954249,268.322684,269.646221,270.585106,272.326602,273.975219,275.554176,277.063473,278.392753,278.642948,279.910837,281.327254,282.975871,283.662606,284.452085,285.822062,286.518661,288.355639,289.653355,291.345578,292.854875,294.503492,296.430748,297.452426,297.724952,299.797641,300.581006,301.347265,302.113523,303.576380,306.107356,307.221913,308.197151,308.465953,309.590349,311.330091,312.049909,313.001928,314.162925,316.577801,318.040658,319.340975,321.152132,322.289909,323.195488,323.631703,325.257100,327.462996,328.461454,329.390252,330.528030,333.012565,334.127123,335.148801,336.100819,337.223511,337.623054,339.098188,341.675603,343.788619,344.310636,344.826794,345.639493,347.172010,348.400278,348.725358,349.932795,350.470205,351.352564,353.094060,355.416056,355.923053,356.782192,357.952164,359.359607,359.986545,360.659924,361.263643,362.796160,364.073258,365.164595,366.190353,367.765230,370.721595,372.021913,373.090031,373.372819,374.951776,375.914713,376.216572,377.331130,378.933307,379.862575,380.212398,381.944381,383.360799,384.661116,384.940319,386.462386,387.633811,388.539389,389.137672,390.693409,393.038625,393.473408,394.517182,395.492420,396.490878,398.046615,399.230833,400.577590,401.459948,401.998836,402.806706,404.165931,404.489370,405.519132,406.596387,407.692482,408.132819,408.762007,410.294524,411.662112,412.746303,412.968779,414.129777,414.5,415.290775,416.219573,417.125151,418.100389,418.596422,419.558257,420.579935,421.369414,422.855491,425.154266,426.384924,426.794614,427.491213,428.126421,429.449958,430.556247,431.717245,432.080939,433.334817,434.101075,435.122753,436.097991,438.311808,439.147726,439.937205,440.934914,442.212011,443.094370,444.092828,445.462805,445.957220,447.754132,449.088307,450.922683,451.990801,453.244678,454.498556,455.845313,456.449971,457.680629,458.234511,458.911287,460.049064,461.852092,462.780890,463.803154,465.289231,466.984288,468.149833,469.213404,471.633224,472.933542,474.280299,475.057454,476.380992,477.843849,478.888747,479.230651,480.530968,481.622306,482.690424,483.596002,484.439232,486.007341,487.864937,489.676094,491.789110,493.771712,495.118469,496.604546,498.113843,500.784138,501.232911,502.277809,503.392366,505.133863,506.178761,506.467875,506.949871,508.203749,509.504066,511.106243,511.615701,512.569100,513.516949,514.709766,516.404823,517.287181,517.675642,518.627660,518.825159,520.183397,521.112992,523.551087,524.572765,525.617663,527.266280,529.425736,529.959795,530.193099,531.770951,532.597829,532.904281,533.944586,534.674738,534.970740,536.693422,538.156279,538.553338,539.503036,540.478274,541.546392,542.918690,543.168722,544.149347,545.349852,546.650169,547.933172,549.140609,550.348047,551.392945,553.111222,554.899158,556.060156,557.012174,558.521471,560.100428,560.611267,561.516845,562.886823,564.976618,566.903875,567.716573,569.202650,570.665507,572.801743,573.846641,574.845099,575.271360,576.594897,577.695725,578.879943,580.180260,581.410918,583.129195,584.568832,584.813733,586.171009,587.151873,588.645002,589.271941,591.285025,593.799832,595.541329,595.912757,597.027315,598.234752,600.463868,602.948403,603.877201,604.829219,606.338516,607.847813,608.892711,609.775070,610.546393,611.800270,613.309568,613.722888,614.772425,616.049522,617.173829,619.008205,620.588147,621.492741,623.304882,623.955041,625.441118,626.903975,627.716673,627.987255,628.916053,630.053830,631.029069,631.951893,632.840225,634.064909,636.038605,638.499920,640.194977,641.541830,641.817705,643.677970,644.568275,645.241653,646.402651,647.586869,648.237027,649.467685,650.257163,651.627141,653.182878,654.483195,656.155032,657.432129,659.498705,661.098871,662.261880,662.527333,663.621,664.545430,665.311689,666.310147,666.579837,667.735445,668.641023,669.453721,671.148778,673.264256,674.171147,674.475560,675.655912,676.144726,677.259284,678.559602,679.859919,681.206676,682.065815,683.366132,684.294930,685.827447,686.251946,687.894023,688.597959,691.802313,693.265170,694.286848,695.401406,696.469524,697.746621,699.325578,701.136735,702.251292,703.365850,705.827165,706.220175,707.893741,709.237833,710.514930,712.233207,713.383404,715.205361,716.056535,717.617075,718.313674,719.149592,720.148050,721.703787,722.376394,724.094671,726.416666,727.283116,727.548143,728.328413,729.025012,730.255669,730.808520,732.015958,733.731541,735.076354,736.585651,736.943229,738.382866,740.194023,741.215701,743.166177,743.864956,746.140512,746.697791,747.442635,749.142472,750.391569,752.411705,752.783224,754.687260,755.801818,756.089364,756.546804,758.009661,759.217099,759.431773,759.942612,760.987510,762.427147,764.052544,764.934902,766.513859,768.278575,770.461251,771.599029,773.270866,774.849823,776.591319,777.100335,777.842952,779.174761,781.883646,782.409154,784.112761,784.459141,785.341500,786.011387,787.265265,790.167759,790.934018,791.218118,793.302453,794.122534,795.747931,796.630289,799.207704,800.670562,800.852152,802.435278,803.645389,804.272328,804.992146,806.037044,807.755321,808.182935,809.831552,811.317629,812.710826,812.917089,814.000039,815.104475,815.927295,816.647114,818.481490,820.989245,822.173463,823.264801,823.491778,824.675996,825.697674,826.050964,827.304842,830.323436,831.484434,832.181032,833.643889,835.594366,837.034003,838.380760,838.802261,839.704298,841.677994,843.957091,845.001989,845.907567,847.649063,849.135141,850.182900,851.715417,852.946074,853.642673,854.873330,856.150428,856.549176,857.965593,859.730310,860.069472,861.137590,861.375905,862.615256,864.054893,865.076571,865.912489,867.166367,868.234485,868.584965,869.674122,871.649999,872.648457,873.437935,874.924012,876.897708,878.151586,878.381023,879.475123,880.679799,881.039111,882.361407,884.511091,885.300570,885.834629,886.190615,887.460025,888.860910,889.212350,890.834606,893.809901,894.808359,895.125192,896.007551,897.191768,897.770604,899.163801,900.022940 diff --git a/data/torah/labels/ki tisa-5.txt b/data/torah/labels/ki tisa-5.txt deleted file mode 100644 index f2af453ba..000000000 --- a/data/torah/labels/ki tisa-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.678999,3.462526,3.958849,5.212727,5.949581,7.807177,8.320395,9.016994,9.992232,11.547969,12.937594,13.378774,14.771971,15.371558,16.931427,18.301404,20.182220,20.693059,21.412878,22.620316,23.270474,24.849431,25.822098,26.727676,28.144093,29.440512,30.464196,30.820593,31.586898,32.817556,34.895915,36.370209,37.110982,37.436061,37.946900,39.131118,40.505294,40.884631,42.335472,43.380370,44.091551,44.555950,44.944272,45.756970,46.453569,47.591346,48.306520,49.095998,50.303436,50.515402,51.743073,52.335402,52.892681,53.635720,55.135426,59.194926,59.811455,60.391954,62.179890,64.710865,66.336262,67.357940,68.705558,69.959436,70.447055,71.341383,72.513631,75.021386,76.167562,77.189240,78.234138,80.045294,81.392051,82.715589,83.342528,84.805385,86.128922,87.057720,88.311598,89.751235,90.726473,91.678491,92.932369,93.453493,95.045385,96.319325,97.040216,97.388516,99.571191,102.287926,104.168742,105.933459,106.444298,107.419536,108.673414,109.648652,110.554230,111.133137,111.692008,112.992325,114.035631,114.848330,116.473726,117.495404,119.585200,120.815858,122.418035,123.904112,124.809690,126.202887,128.733863,129.871640,131.473817,132.147196,133.145654,133.749373,134.654951,135.769509,136.174320,137.441346,137.962257,139.285794,140.655772,141.677450,142.596771,143.455909,144.825887,148.401760,148.670736,150.574772,151.963044,152.729303,153.867080,155.747897,156.488436,157.022495,157.997733,159.646350,160.598368,160.951427,161.571201,162.346117,163.042716,165.713010,166.874008,168.876990 diff --git a/data/torah/labels/ki tisa-6.txt b/data/torah/labels/ki tisa-6.txt deleted file mode 100644 index 08099fb83..000000000 --- a/data/torah/labels/ki tisa-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.226661,4.022220,6.367436,7.110474,9.246710,10.175655,10.547175,12.056472,13.635429,15.214386,17.745361,18.163599,18.929858,19.446763,20.375561,21.025720,22.186718,23.304044,23.652343,26.578057,27.367536,27.901595,30.014611,30.439137,31.630790,32.861448,33.232967,34.463625,35.392423,36.287164,37.355282,38.237640,40.072017,41.813513,43.090611,44.692787,45.482266,46.643264,47.920361,49.058139,50.985395,51.905933,53.856409,54.403410,55.442478,57.422005,58.652662,60.463819,62.042776,64.155791,65.774503,67.539220,68.140553,69.046132,69.905270,71.507447,72.877424,73.728243,74.842801,75.585840,76.862937,77.377575,77.981294,79.188731,81.115988,81.955822,82.211242,83.418680,85.020856,85.675153,87.091570,88.809846,89.536895,90.697892,92.625149,94.482745,94.962619,96.618981,97.385239,98.685557,99.583390,100.721168,101.998265,103.298583,103.855862,104.791006,105.789464,106.401089,107.177184,107.966662,109.174100,110.527174,113.220247,114.208530,116.410995,118.129272,120.451267,122.076664,123.260882,124.793399,126.604555,128.067413,129.251630,130.993127,132.195293,134.290360,135.985770,138.401794,139.520946,139.879198,141.086636,142.386953,144.035570,144.894709,146.389517,146.861352,147.534730,148.602848,149.374039,149.831121,152.153116,154.591211,155.543229,157.238286,158.399284,159.537062,160.966701,162.485996,163.942301,164.917539,166.241076,167.169874,168.762583,170.155781,171.453256,173.125093,173.778697,174.544956,175.496974,176.075087,176.862622,177.744981,179.231058,180.322395,181.018994,182.319312,183.991148,185.036046,186.489126,187.892101,188.458140,188.766979,189.851338,191.546394,192.165691,193.048049,193.953628,195.370045,195.973101,196.971559,197.709002,199.148640,200.356077,201.261655,202.538753,203.475134,204.775451,206.168649,207.419346,208.533904,210.066421,211.369168,212.661019,214.123876,215.354533,216.724511,217.931948,219.162606,220.238321,221.677959,222.838956,224.394693,225.578911,226.647029,228.017006,229.619183,230.028396,232.559371,232.950812,235.026208,236.903947,238.163316,238.976015,240.554972,241.450051,242.296468,242.895416,244.377842,245.757890,246.059750,247.592267,248.217733,248.960772,249.356321,249.578684,251.110524,253.820397,255.469014,255.841932,256.709993,258.288950,259.519608,260.587726,261.562964,263.188361,263.833071,264.529670,264.924409,265.853207,266.317739,267.911346,268.491845,269.815383,271.209743,272.137378,272.787537,274.384604,276.479510,277.779827,280.264362,282.772117,283.561596,284.699374,286.301550,286.824051,287.590309,288.635207,289.796205 diff --git a/data/torah/labels/ki tisa-7.txt b/data/torah/labels/ki tisa-7.txt deleted file mode 100644 index e7460fa1a..000000000 --- a/data/torah/labels/ki tisa-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.332419,3.536646,3.908166,5.208483,5.997961,6.996420,7.200863,8.607695,10.070552,12.438987,12.858158,14.646094,15.969631,17.734348,19.993200,22.268755,23.267213,24.056692,25.960728,26.982734,27.532777,27.884892,29.810240,31.017678,31.900036,33.618313,34.639991,35.847429,37.008426,38.215864,39.516181,40.236000,41.582757,43.201573,43.625698,45.686108,46.632753,47.840191,49.326268,50.580145,52.507401,55.015157,56.361914,57.731891,59.057828,60.590345,61.846108,62.867786,63.993605,64.527664,66.083401,67.858937,68.184017,69.391454,70.709409,71.057708,72.892084,73.936982,76.096438,76.810209,77.785447,79.012662,80.664721,82.103288,84.007325,84.826749,85.616227,87.032645,87.460144,88.887194,90.033278,91.171056,91.867655,93.167972,94.839809,95.760000,97.324344,98.865914,100.143011,101.420109,103.729472,106.051467,107.282125,107.923699,109.456216,110.988733,112.265831,113.264289,115.098665,116.302382,116.906101,118.299298,118.727868,119.795986,121.305283,124.161337,126.111813,126.477704,127.522602,129.031899,131.400334,132.538112,133.224173,134.767228,136.755072,137.939290,139.169947,140.330945,141.445503,141.919838,142.639657,144.241834,145.662672,147.589929,148.560863,149.926792,151.505749,152.689967,153.724373,154.142332,155.564892,155.876547,157.188777,159.977080,161.358737,161.799916,163.030574,164.632751,165.445449,166.304588,168.533703,170.344860,171.087898,172.434656,172.886331,174.036833,175.546130,176.984933,178.169151,179.190829,180.491146,181.721804,183.347200,184.668506,184.947146,186.386783,186.779568,187.913298,188.747914,190.243367,191.427585 diff --git a/data/torah/labels/ki tisa-h.txt b/data/torah/labels/ki tisa-h.txt deleted file mode 100644 index 2419a1e73..000000000 --- a/data/torah/labels/ki tisa-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.995258,4.316503,5.616820,6.545619,8.426435,9.564213,9.773163,11.773876,12.600423,14.072652,15.907028,16.733575,18.103552,18.466418,19.728949,20.787782,21.832680,22.204200,22.462076,24.224336,25.574104,26.781541,28.383718,28.671544,30.388597,32.052471,32.679410,34.397686,36.320572,37.458350,37.906414,39.253171,39.811363,39.988975,41.599300,43.851635,44.803653,46.336170,46.565612,47.729368,49.308325,50.933721,52.443018,53.673676,54.579254,55.129278,56.946407,57.775051,59.593482,60.237240,62.140131,64.647886,65.388399,66.057942,67.445837,69.377211,70.010403,71.350907,72.744269,73.719507,74.049257,76.252269,77.263662,78.447880,78.865839,79.203145,80.758882,81.757340,83.104098,83.310076,85.260552,87.094929,88.209487,90.159963,91.344180,92.551618,93.851936,94.539492,95.732752,97.906386,99.949742,101.691238,102.077208,103.284646,104.098296,105.537933,107.813488,108.928046,109.880064,110.785643,112.039520,114.407955,115.106311,115.733250,116.731708,118.403545,119.862216,120.953554,122.114552,123.066570,124.320447,126.317364,127.803441,129.156937,129.405316,130.496955,132.380199,133.494757,134.237796,135.120154,136.629451,137.883328,138.742467,140.463569,142.094346,142.698065,144.137702,144.686600,146.079797,147.990524,148.292898,149.978263,150.323124,152.056512,153.844448,154.092002,156.352204,156.912221,157.957119,159.721835,161.602652,162.601110,164.667686,165.215049,165.582217,166.398674,167.954411,170.647926,170.965576,172.033694,172.697778,173.556917,175.135874,176.879274,178.365351,179.588618,179.850641,181.150958,181.564848,182.755514,183.684313,184.171932,185.797329,187.794245,188.430409,189.953700,191.634763,192.176066,193.731803,194.243555,195.636752,198.144507,199.912477,201.067978,202.974258,204.274575,205.621333,207.293169,208.105868,209.359745,209.640307,210.661985,212.018240,213.832485,215.816815,216.577149,217.947127,220.362002,223.101956,223.681241,223.908022,225.238192,227.165448,228.191496,229.004194,230.281292,231.283790,231.754676,232.776354,234.517851,235.609189,236.528382,237.093692,238.768734,240.835310,241.990024,244.033380,244.7,246.123176,247.400273,248.330742,249.004120,250.350878,252.266393,252.934352,254.257890,255.848005,257.148322,258.030681,259.702517,260.264234,261.634212,262.084412,263.779469,265.776385,267.262462,268.469900,269.372127,270.668016,271.946852,272.802514,273.917072,275.821108,276.448804,277.540142,278.306400,279.629938,281.464314,283.623770,284.413249,285.411707,286.143683,287.560101,288.697878,289.858876,290.462721,291.925452,294.515258,295.150627,296.195525,296.543824,298.308540,299.353438,300.351896,301.443234,302.372033,303.254391,303.734784,305.831543,308.169601,308.935860,309.794998,310.005842,311.491919,312.028474,312.373530,313.255888,313.691017,315.339633,316.650478,316.942053,318.096010,319.317849,320.696645,321.381065,323.076122,325.398117,326.605555,327.580793,329.391950,329.738957,330.087256,331.341134,331.619773,331.812379,333.649446,334.101783,334.771918,336.350875,337.929832,338.495977,340.500964,341.738390,342.922608,344.060385,345.041246,346.704304,347.403155,349.360876,350.766455,351.927453,352.252533,352.707006,354.425283,355.470181,355.656737,356.956258,357.362991,357.624897,359.343174,360.537084,362.325020,362.676136,362.956912,364.712,366.110242,366.519023,368.562379,369.514398,373.322470,373.723589,374.463423,376.808639,377.352671,378.281469,379.628227,380.926572,382.228862,382.862375,383.837613,384.309965,385.958582,386.623658,387.529236,389.224292,390.362070,391.964247,393.427104,394.564882,394.846580,395.861693,398.351210,399.999827,401.973523,403.389941,405.293977,407.012253,407.917832,408.348706,408.874579,410.321655,411.790329,413.070631,414.487048,415.392627,417.087683,418.322740,419.762377,420.714395,422.502332,424.963647,426.263964,426.434506,428.446640,429.781588,429.932775,431.680244,433.848168,435.682544,436.035913,436.825391,438.933338,440.494144,440.677855,442.735807,444.198664,444.560695,445.907452,448.693847,449.548246,451.591602,452.868699,453.936817,454.317086,455.614199,457.239596,459.584811,460.043325,460.716704,461.854481,462.135617,464.120665,465.606743,466.077279,468.068058,469.345155,469.760871,471.481391,472.961233,474.656290,475.583748,477.394904,478.303532,480.068248,481.089926,482.181264,483.620901,484.921219,485.515099,486.420678,488.162174,489.369612,490.669929,492.156006,493.502764,493.884897,495.569340,498.657594,499.208841,500.256351,500.839540,501.617035,505.042352,507.225028,508.432466,508.960406,511.548659,512.965076,513.539253,514.815719,516.046376,517.470077,518.902431,519.821663,520.611142,521.243859,522.729936,524.819732,525.258939,526.536037,527.162975,528.695492,529.889013,532.329604,534.230242,535.107181,537.150537,538.404414,539.495752,540,540.679970,541.055257,542.607226,543.536024,543.988847,545.335604,546,547.541500,548.486167,548.914332,549.416548,550.623985,552.690561,553.642579,554.432058,556.312874,557.961491,559.354688,560.631786,562.373282,563.766480,565.415096,567.644212,567.988150,568.560501,569.392030,570.996382,572.319919,573.643457,575.222414,577.497969,578.589307,579.169806,580.957743,581.499454,581.8,582.156536,583.101116,583.542295,584.889052,586.282250,587.450968,587.915726,588.790005,589.964268,590.990180,592.164978,592.372461,593.313244,595.054740,597.446395,597.887575,598.560953,599.652291,601.509888,602.903085,604.458822,605.387620,606.339638,607.338096,608.638414,609.314113,609.575388,611.215303,613.165779,614.210677,614.743872,615.486910,616.276389,617.321287,618.807092,619.154168,620.966431,622.731148,623.052634,625.029923,626.489546,626.972737,628.760673,629.483502,631.271439,632.362777,634.022474,635.050406,636.324697,637.923426,639.656347,640.004647,641.722923,643.232221,643.495283,644.391606,645.685951,645.968271,647.534137,650.051302,651.003320,652.024998,653.000237,654.114794,655.507992,655.989812,657.274465,657.645985,659.387481,660.734239,661.802357,663.033014,663.916334,665.250670,667.386906,669.510332,670.485570,671.878767,673.689924,674.334790,674.575021,675.853779,676.544803,677.775461,680.306436,681.258454,683.185710,685.670245,686.573385,689.638419,691.540367,693.725131,694.809836,695.831514,696.899632,698.223169,698.945328,700.663605,701.021955,702.475120,704.466860,706.205511,706.858360,708.548911,710.496027,711.864227,712.252993,712.436578,713.639742,715.032940,716.983416,717.842554,718.748132,720.094890,721.163008,722.231125,722.558593,723.022992,724.021451,726.054211,728.300419,729.821030,730.238989,731.507744,733.591966,735.147032,735.546598,737.344819,738.389717,738.635134,739.779836,740.341387,742.220427,742.803577,743.980676,744.358643,746.032500,746.453664,747.149155,747.590335,749.053192,750.771468,752.025346,752.346754,753.252332,754.668750,754.866143,756.549566,758.941221,760.311199,761.448976,762.633194,764.026391,764.332106 diff --git a/data/torah/labels/korach-1.txt b/data/torah/labels/korach-1.txt deleted file mode 100644 index 2b2794ecf..000000000 --- a/data/torah/labels/korach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.507755,3.390113,3.735329,4.478367,4.752381,5.518639,5.794195,6.862313,7.976871,9.462948,11.190921,12.822132,13.701406,14.096145,14.653424,15.373243,16.441361,17.782903,18.595601,19.431520,20.522858,21.242676,22.145171,22.747348,23.978005,24.930023,26.369660,27.228799,27.995057,28.459456,29.759774,32.244309,32.708708,33.264445,33.417677,35.510613,36.273787,38.526123,39.176282,40.360499,41.196418,41.332654,42.261452,43.422450,44.513787,45.814105,47.230522,48.252200,49.715057,50.156236,50.806395,52.269252,54.103629,54.846667,55.775465,56.170205,57.331202,58.468980,59.001497,60.255375,61.021633,61.439592,63.506168,65.015465,67.360681,68.289479,70.123855,70.448935,70.885488,72.023266,72.461361,73.506259,74.876236,75.921134,77.450567,78.147166,78.913425,79.397960,79.930477,81.416554,82.298912,83.181270,84.295828,85.085307,85.967665,86.641044,87.151883,88.568300,90.240137,91.633334,94.373289,96.300545,97.322223,98.877960,99.481679,100.201497,101.130295,103.080772,104.636509,105.217007,105.797506,106.586985,107.376463,108.305261,108.885760,109.605579,110.278957,111.323855,112.368753,112.943084,113.094053,113.848663,114.446960,115.004239,115.301472,116.462470,117.691586,119.409863,119.851042,121.476438,122.219477,123.519794,124.448593,125.818570,126.654488,127.978026,128.697844,129.673082,131.669999,131.995078,132.758253,133.524511,134.337209,136.032266,136.496665,137.425463,140.490497,142.464194,143.392992,144.043150,144.156166,144.875985,145.035441,145.685599,146.637618,148.236711,148.999885,150.300203,151.938026,152.704284,153.099024,154.376121,155.769318,156.280157,157.278615,158.625373,159.066552,159.902470,160.574307,161.294126,162.849863,164.103740,164.682697,166.368790,167.157980,168.644058,169.085237,170.014035,171.012493,171.616212,172.661110,175.075985,175.842243,176.863921,177.885599,178.605418,178.986491,179.995531,181.122516,182.399613,182.840792,183.792810,184.907368,185.766507 diff --git a/data/torah/labels/korach-2.txt b/data/torah/labels/korach-2.txt deleted file mode 100644 index 459d6ddc2..000000000 --- a/data/torah/labels/korach-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.529433,4.179592,4.294150,6.012426,6.662585,7.335964,8.171882,9.890159,10.842177,12.258594,13.535692,14.277188,15.229206,18.154921,19.037279,20.244717,21.661134,22.741162,24.021859,25.020317,25.740136,26.390295,27.015692,27.175147,28.193741,28.703039,29.353197,29.840816,31.048254,32.859410,33.579229,34.415147,35.204626,36.133424,36.783583,37.828481,38.617959,39.569977,40.684535,41.404354,41.984853,42.215510,42.935329,43.724807,44.165986,45.605624,46.929161,47.229478,48.018957,48.808435,49.830113,50.851791,51.827029,53.359546,53.940045,56.471020,57.864218,58.630476,59.396735,61.416871,61.927710,62.577868,63.158367,64.342585,65.317823,66.037642,66.896780,67.918458,68.498957,69.125896,70.611973,72.864308,73.305488,75.232744,75.975782,76.672381,77.206440,78.669297,79.644535,80.526893,82.384490,83.173968,83.661587,84.288526,85.008345,86.262222,88.398458,89.350476,90.952653,91.788571,92.392290,93.502222,93.636916,94.170975,94.353651,95.537868,96.370703,96.788662,97.833560,98.321179,98.619955 diff --git a/data/torah/labels/lech-lecha-1.txt b/data/torah/labels/lech-lecha-1.txt deleted file mode 100644 index 9c898418a..000000000 --- a/data/torah/labels/lech-lecha-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.182908,3.026721,3.430284,4.200722,4.604285,5.778286,7.025662,8.218006,8.768319,9.520414,10.217477,10.676071,11.373134,12.125228,13.427635,14.124698,14.711699,16.234231,17.316513,17.940201,18.985796,20.123109,21.719017,23.021424,24.213769,24.892488,26.213239,26.708521,27.680740,28.451178,29.533460,31.019305,32.340056,33.385651,34.009339,34.614683,35.403465,36.302309,37.127779,37.733123,40.558063,41.145063,41.677032,42.319064,42.961096,43.548096,44.465284,45.657629,46.464755,47.987287,48.812756,49.308038,50.280258,50.903946,51.270821,51.527634,53.105197,53.618823,53.765573,54.609386,55.104668,55.985168,56.553825,57.140825,57.507701,58.021326,58.700045,60.149203,62.167017,63.304330,63.671205,64.276550,64.955269,65.707363,67.028114,67.743521,68.440584,69.541210,70.183242,70.751898,71.412274,71.925899,72.384493,73.851995,74.292245,75.227777,76.915403,77.685841,78.034373,78.731436,79.795374,81.262875,81.776501,82.235095,82.712033,83.060564,84.381315,84.821566,85.463597,86.123973,86.784348,87.683193,89.847757,91.260227,93.204666,94.837261,95.534324,95.882855,96.396481,97.056856,98.304232,98.634420,99.459889,100.395421,101.110828,102.101391,102.468267,103.036923,103.697299,104.852956,105.403269,106.192051,107.604521,108.081459,108.943615,109.824116,110.906398,113.768025,114.465088,115.235527,116.060996,116.996528,117.675247,118.353966,118.794217,119.252811,119.748093,120.243374,121.233937,122.903220,123.581939,124.242315,124.682565,125.379628,126.645348,127.012223,127.397442,127.947755,128.589787,129.011693,129.653725,130.956132,131.763258,132.130133,132.625415,133.487572,135.652136,136.404230,136.807793,137.431481,138.220263,138.770576,139.339233,139.999608,141.026859,141.485453,141.999078,143.246454,144.512174,144.970768,145.832925,146.346551,147.263739,147.759020,148.162583,149.061428,150.162054,150.730710 diff --git a/data/torah/labels/lech-lecha-2.txt b/data/torah/labels/lech-lecha-2.txt deleted file mode 100644 index 249a2e8c4..000000000 --- a/data/torah/labels/lech-lecha-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.391655,3.854512,4.365351,5.270930,6.478367,7.105306,7.360726,7.987664,8.452063,8.893243,9.311202,9.938141,11.749297,12.306576,12.979955,13.606893,14.419592,15.139410,15.371610,15.952109,17.066667,17.484626,17.902585,18.715283,19.969161,20.456780,21.130159,21.966077,22.291156,22.732336,23.312834,24.334512,25.332971,26.331429,27.538866,28.328345,29.651882,31.161179,31.439819,32.531156,33.459955,34.040454,34.342313,34.899592,35.456871,35.828390,36.316009,36.780408,37.616327,39.032744,39.590023,40.333061,41.679819,42.399637,42.817596,43.351655,43.723175,44.791293,45.069932,45.766531,46.184490,46.788209,47.415147,48.065306,50.085442,50.898141,51.710839,52.221678,52.871837,53.429116,54.613333,55.449252,57.051429,57.748027,58.514286,59.118005,59.768163,60.998821,62.322358,63.042177,63.738776,64.899773,66.014331,66.710930,67.268209,67.570068,67.895147,68.382766,68.800726,71.540680,72.794558,73.839456,75.395193,77.345669,77.763628,78.274467,79.226485,79.876644,80.503583,81.618141,82.988118,83.661497,84.125896,85.310113,86.587211,88.073288,89.652245,90.859683,91.533061,91.904580,92.299320,92.647619,93.367438,94.876735,95.642993,96.107392,96.571791,97.570249,98.591927,99.311746,99.729705,100.008345,100.495964,100.983583,102.121361,102.585760,103.444898,103.932517,104.327256,104.745215,105.511474,106.649252,107.763810,108.739048,109.180227 diff --git a/data/torah/labels/lech-lecha-3.txt b/data/torah/labels/lech-lecha-3.txt deleted file mode 100644 index 551145326..000000000 --- a/data/torah/labels/lech-lecha-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.898612,1.577564,2.296454,2.895528,3.414727,3.834079,4.253431,4.572938,5.551427,6.649731,7.009176,8.307171,8.866307,9.465382,10.104395,10.783347,11.382422,12.181188,12.760294,13.179646,13.678875,14.198073,15.016809,16.175020,17.453047,18.072091,18.870857,19.429994,19.969161,20.448421,20.767927,21.327064,21.606632,22.605090,23.583579,23.962993,24.562068,25.241020,26.598922,27.896918,28.176486,29.434543,30.013649,30.293217,30.812415,31.411490,31.830843,32.429917,33.108869,33.548190,33.947574,34.626525,35.265538,35.624983,36.064305,36.843102,38.919895,39.518970,39.898384,40.557366,40.996688,41.296225,41.855361,42.654128,43.133388,43.932154,44.710951,45.070396,46.548114,47.646418,47.985894,48.664845,49.882964,50.901391,51.160990,51.460528,51.780034,52.379109,52.738554,53.457444,54.156365,54.995069,55.933620,56.991985,59.088747,59.627915,59.987360,60.686280,61.185509,61.824522,62.403628,63.002703,64.260760,65.039557,67.016504,67.316042,67.955055,69.991909,70.770707,71.249966,71.809103,72.388209,72.767623,73.466543,74.844415,75.463459,75.982658,76.781424,77.660067,78.159296,78.558679,79.077878,80.635472,81.574023,82.053283,82.632388,83.750661,84.150044,84.529459,86.865850,87.444956,87.904247,88.882736,89.681502,90.420361,92.816660,93.635396,93.974872,95.093145,96.431078,97.309722,97.629228,98.348118,98.887285,99.186823,99.706021,100.504787,100.924140,101.423369,101.842721,102.162228,102.541642,103.500161,104.239020,104.858064,105.596923,106.615351,108.172945,108.532390,109.630694,110.269707,110.609183,111.028535,111.387980,112.266623,113.305020,113.584588,114.223601,115.461689,115.801165,116.320363,116.819592,117.458605,118.556909,118.996230,119.794997,120.933239,121.991605,122.311111,122.770402,123.169785,123.828767,124.627534,125.685899,126.963926,127.742723,128.301859,129.100626,129.759608,130.358683,130.738097,131.696617,133.174335,134.492299,135.930079,137.567550,138.066779,138.925453,139.624374,140.303325,141.341722,141.641259,142.180426 \ No newline at end of file diff --git a/data/torah/labels/lech-lecha-5.txt b/data/torah/labels/lech-lecha-5.txt deleted file mode 100644 index 5d648f3b5..000000000 --- a/data/torah/labels/lech-lecha-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.256515,2.795683,3.314881,3.694295,4.153585,4.592907,4.792599,5.511488,6.270317,6.529916,7.049114,8.007634,8.546801,8.886277,9.285660,9.625136,10.363995,10.843254,11.202699,11.721898,12.121281,12.620510,13.059831,13.479184,14.218043,15.276408,15.815576,16.234928,17.093602,17.433078,18.072091,18.531381,18.850888,19.130456,19.469932,20.108945,21.147341,21.646571,22.545183,22.844720,23.583579,25.840094,27.078182,27.637319,28.116579,28.675715,29.494451,30.133464,30.452971,30.932230,31.411490,32.689517,33.428376,34.087358,34.586587,35.325446,35.804706,38.157983,39.575793,40.614190,41.632617,42.151815,42.451352,42.890674,43.489749,44.528145,45.247035,45.726295,46.225524,46.884506,48.981268,49.640250,50.059603,51.097999,51.776951,52.096457,55.251585,56.769241,57.368316,57.807637,58.306866,58.606404,58.945879,59.764615,60.163998,60.882888,61.741562,62.340637,62.799927,63.418971,64.317584,65.176258,67.273020,67.852125,68.311416,68.710799,69.190059,69.809103,70.468085,71.266852,71.626297,72.125526,72.644724,73.343644,74.402010,74.801393,75.220746,75.660067,76.179265,76.938093,77.696922,78.236089,78.795225,79.054824,79.474177,79.893529,80.712265,81.531000,82.349736,83.987207,85.185357,87.042489,88.100854,88.600083,89.059374,89.498696,90.577030,91.595458,91.914964,92.354286,92.733700,93.252898,94.570863,95.149968,95.649197,96.208334,96.807409,98.464849,99.343492,102.318897,102.658373 diff --git a/data/torah/labels/lech-lecha-6.txt b/data/torah/labels/lech-lecha-6.txt deleted file mode 100644 index 4acc8f556..000000000 --- a/data/torah/labels/lech-lecha-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.726077,3.306576,4.096054,5.558912,6.534150,7.346848,7.973787,8.577506,9.436644,11.572880,12.106939,12.548118,13.035737,14.080635,15.473832,16.402630,17.006349,17.633288,18.074467,18.422766,19.421224,23.484717,24.854694,26.062132,26.456871,26.921270,27.571429,28.175147,28.709206,29.196825,29.916644,31.727800,32.819138,34.119456,34.467755,34.792834,35.117914,35.744853,37.254150,37.788209,38.717007,39.320726,39.692245,40.179864,40.760363,41.410522,42.246440,42.896599,43.360998,44.011156,46.100952,46.658231,47.052971,47.749569,48.817687,49.305306,50.210884,52.254240,52.811519,53.415238,54.529796,55.342494,55.667574,56.039093,56.805351,57.989569,59.034467,59.522086,60.032925,60.683084,61.681542,63.608798,64.793016,65.884354,66.348753,66.720272,67.788390,69.390567,70.389025,70.992744,71.480363,72.316281,72.711020,73.245079,74.127438,74.522177,75.195556,77.076372,77.494331,78.887528,79.584127,80.280726,80.745125,81.488163,82.486621,82.811701,83.276100,83.786939,84.320998,86.364354,87.339592,87.618231,88.198730,89.057868,90.033107,90.729705,91.379864,92.401542,92.935601,93.446440,93.934059,94.560998,95.791655,96.882993,97.788571,98.461950,98.879909,99.460408,100.853605,101.480544,102.177143,103.222041,103.709660,104.475918,105.126077,105.776236,106.379955,108.214331,108.283991,108.353651,108.887710,109.468209,110.071927,111.232925,112.742222,114.460499,116.294875,117.014694,117.455873,117.943492,118.431111,120.428027,121.426485,121.890884,123.400181,123.469841,123.934240,124.584399,125.629297,125.698957,125.931156,126.465215,126.929615,128.555011,129.274830,129.785669,130.459048,132.688163,132.734603,133.222222,133.733061,134.151020,134.592200,135.033379,135.637098,136.821315,137.355374,137.889433,138.516372,141.325986,141.372426,141.418866,141.465306,144.970119,145.806037,146.479416,146.874155,147.384994,147.872613,149.474790,150.844768,150.914428,151.518146,152.121865,153.282863,154.467081,154.861820,156.115697,157.067715,157.323135,159.436151,159.830890,161.154428,161.247307,161.549167,161.920686,162.570845,163.522863,164.056922,164.869620,165.868078,166.425357,166.889756,167.539915,170.651389,171.673067,172.253566,173.507443,174.320142,174.691661,175.318600,176.108078,177.013657,177.570935,178.174654,178.848033,179.312432,181.611208,181.657647,181.727307,182.841865,183.817103,184.351162,184.699462,185.303180,187.555516,187.857375,188.298555,188.948713,190.040051,190.481230,191.015289,191.851208,192.896106,194.358963,195.032341,195.845040,196.216559,198.143815,199.235153,200.442591,202.184087,203.507625,204.482863,205.458101,206.688759,207.129938,207.756876,208.987534,209.939552,211.448849,212.029348,212.586627,213.329666,216.580459,217.787897,218.089756,219.482954,220.504632,221.410210,222.130028,222.826627,223.244586,223.662545,224.359144,226.727579,227.679598,230.744632,232.137829,234.715244,236.456740,238.662636,239.243135,239.661094,240.102273,241.077511,241.866990,242.401049,242.911888,243.376287,245.976922,247.788078,248.577557,249.808214,250.574473,250.899552,251.410391,252.014110,252.757149,254.405765,255.125584,255.752523,256.518781,257.726219,258.399598,260.024994,260.814473,261.487852,262.021911,263.113248,263.438328,264.018827,265.226264,265.806763,266.503362,267.873339,268.453838,268.964677,269.429076,270.427534,270.938373,271.379552,271.890391,272.586990,273.237149,274.003407,275.489484,276.000323,276.557602,276.998781,277.602500,278.090119,278.577738,278.995697,280.737194,281.131933,282.014291,282.710890,283.082409,283.546808,283.918328,284.313067,286.379643,287.285221,287.981820,288.539099,289.537557,290.443135,291.302273,291.766672,292.300731,292.997330,293.345629,293.786808,294.297647,295.156786,297.803861,298.221820,298.802319,299.406037,300.032976,300.706355,301.077874,301.681593,302.471072,303.957149,304.746627,306.000505,306.813203,307.184722,307.950981,309.692477,310.110437,310.714155,311.387534,311.828713,312.432432,312.873611,313.918509,314.290028,314.731208,315.242047,315.776106,318.121321,319.746718,320.652296,321.232795,322.138373,323.438691,323.810210,324.251389,325.853566,326.387625,326.991344,328.082681,329.220459,329.568759,330.033158,330.567217,331.031616,331.379915,332.633793,333.144632,333.539371,334.073430,334.468169,337.735315,338.315814,338.640893,339.012412,339.383932,339.871551,340.335950,341.427288,342.890145,343.493863,344.817401,345.955179,346.280258,346.837537,347.092956,347.580576,348.393274,348.904113,349.298852,349.786471,351.411868,352.131687,352.758625,353.385564,354.360802,354.964521,355.382480,355.846879,357.054317,357.588376,357.983115,358.354634,359.306653,360.003251,361.280349,362.000167,363.254045,363.857764,364.484703,365.041981,366.365519,367.108557,367.480077,368.107015,369.082254,369.500213,370.637990,371.172049,371.566789,372.379487,373.354725,373.865564,374.864022,375.560621,376.860938,377.418217,378.045156,379.043614,380.576131,381.203070,381.806789,382.364068,383.292866,384.105564,385.893501,386.497220 diff --git a/data/torah/labels/lech-lecha-7.txt b/data/torah/labels/lech-lecha-7.txt deleted file mode 100644 index 51f20f154..000000000 --- a/data/torah/labels/lech-lecha-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.263220,2.913379,3.517098,4.260136,5.955193,6.698231,7.998549,10.158005,11.365442,12.085261,12.549660,13.571338,14.175057,14.918095,15.916553,16.984671,18.679728,19.956825,20.955283,22.394921,22.836100,23.486259,25.134875,25.854694,26.504853,26.876372,27.387211,28.130249,28.617868,30.034286,30.521905,31.264943,33.447619,34.097778,34.538957,35.467755,36.303673,36.814512,37.232472,37.696871,39.600907,40.808345,41.528163,42.549841,44.059138,45.313016,46.102494,47.983311,48.656689,49.748027,50.165986,50.583946,51.814603,52.650522,53.091701,53.416780,54.066939,55.692336,56.481814,56.992653,58.014331,59.221769,59.755828,60.359546,60.916825,61.915283,63.703220,64.794558,66.094875,66.907574,68.045351,68.509751,69.020590,70.042268,70.994286,71.481905,72.248163,72.689342,73.269841,73.734240,74.036100,74.686259,76.056236,77.170794,77.820952,78.958730,81.234286,82.116644,82.813243,83.649161,84.322540,87.132154,88.687891,89.663129,90.522268,91.079546,93.122902,94.864399,95.839637,96.187937,96.629116,96.977415,97.418594,98.091973,100.135329,101.203447,101.737506,102.735964,103.479002,104.036281,104.941859,106.567256,107.310295,107.681814,108.471293,109.353651,110.236009,111.025488,111.536327,111.931066,112.325805,112.929524,113.719002,114.229841,115.460499,118.177234,118.664853,119.268571,120.638549,122.078186,122.867664,123.633923,125.282540,126.188118,126.838277,127.325896,127.906395,128.277914,129.137052,131.900227,133.641723,134.152562,134.640181,135.522540,136.753197,138.123175,139.493152,140.120091,140.607710,141.281088,142.047347,142.813605,143.928163,144.671202,145.019501,145.855420,147.364717,148.061315,148.572154,149.268753,150.313651,150.894150,151.590748,152.542766,155.073741,156.652698,157.395737,158.022676,158.742494,159.114014,159.485533,159.880272,161.157370,161.807528,162.248707,162.945306,164.477823,164.756463,165.290522,166.288980,167.078458,167.496417,167.960816,168.866395,172.628027,174.462404,175.321542,176.227120,177.573878,179.013515,179.988753,181.010431,181.544490,182.032109,182.519728,183.448526,183.866485,184.818503,185.561542,186.768980,187.256599,187.837098,189.903673,190.507392,191.180771,191.668390,192.039909,192.597188,194.106485,195.058503,195.615782,196.358821,196.869660,198.030658,199.098776,200.306213,200.724172,201.327891,202.813968,203.394467,203.951746,204.996644,206.064762,207.457959,207.806259,208.642177,209.872834,210.453333,210.731973,211.219592,212.055510,212.473469,212.821769,213.332608,214.052426,214.586485,215.097324,216.211882,216.815601,217.790839,221.645351,222.109751,222.690249,224.454966,225.406984,226.150023,226.544762,228.007619,228.727438,229.168617,230.306395,231.792472,232.094331,232.605170,233.232109,233.650068,234.648526,235.136145,236.111383,237.760000,238.456599,238.851338,239.292517,239.733696,240.314195,241.242993,241.614512,242.218231,243.007710,244.725986,245.352925,245.770884,246.490703,247.256961,248.487619,249.114558,249.996916,250.368435,251.018594,251.552653,251.924172,252.783311,253.178050,253.688889,253.967528,254.269388,255.337506 diff --git a/data/torah/labels/lech-lecha-h.txt b/data/torah/labels/lech-lecha-h.txt deleted file mode 100644 index 0087eec77..000000000 --- a/data/torah/labels/lech-lecha-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.993832,3.899410,4.735329,5.664127,7.312744,8.613061,9.286440,10.284898,11.561995,12.351474,13.396372,14.673469,16.113107,16.577506,16.949025,18.249342,18.992381,20.106939,20.687438,21.360816,21.987755,22.777234,23.845351,24.611610,25.145669,26.469206,27.096145,27.699864,29.000181,30.207619,31.159637,32.436735,33.551293,34.062132,34.758730,35.548209,36.964626,37.754104,39.495601,40.749478,41.538957,42.792834,44.209252,45.021950,46.299048,46.972426,48.295964,48.853243,50.548299,51.662857,52.661315,53.357914,54.333152,55.006531,55.726349,57.537506,58.048345,58.768163,59.789841,60.672200,61.856417,62.878095,63.714014,64.294512,65.362630,66.082449,66.918367,69.193923,69.890522,70.796100,71.539138,72.375057,73.721814,74.604172,75.393651,75.858050,76.740408,77.762086,78.853424,79.666122,80.478821,81.570159,82.057778,83.265215,84.937052,85.935510,87.282268,87.955646,88.512925,89.116644,90.068662,90.904580,91.903039,92.762177,93.481995,94.108934,94.898413,96.848889,97.475828,98.427846,99.170884,100.122902,100.540862,101.283900,103.466576,104.139955,105.231293,106.090431,106.670930,107.483628,109.573424,110.525442,112.197279,112.684898,113.218957,114.728254,115.680272,116.260771,116.887710,118.397007,118.861406,119.441905,119.813424,120.881542,121.554921,122.251519,122.832018,123.900136,124.828934,125.571973,126.245351,127.197370,128.613787,129.983764,130.541043,131.051882,133.327438,134.256236,134.929615,135.765533,136.299592,136.949751,139.155646,140.200544,140.897143,143.079819,144.101497,145.308934,145.889433,146.911111,148.002449,150.092245,150.858503,151.555102,152.274921,153.621678,154.132517,155.154195,157.360091,157.754830,158.404989,158.915828,159.635646,160.192925,160.773424,161.423583,161.795102,162.677460,164.186757,164.929796,165.696054,166.485533,167.321451,167.901950,168.830748,169.504127,170.432925,171.942222,173.242540,173.985578,174.566077,176.330794,177.607891,178.583129,179.093968,179.999546,181.462404,182.367982,183.064580,184.295238,185.897415,187.151293,188.149751,188.2,188.3,189.682268,192.468662,193.954739,195.046077,195.812336,196.671474,197.786032,199.156009,200.409887,201.826304,202.221043,202.801542,203.335601,204.380499,205.169977,206.423855,206.725714,208.885170,209.396009,210.696327,211.718005,213.575601,213.970340,214.899138,215.851156,216.408435,217.615873,218.173152,220.843447,222.120544,222.701043,223.792381,225.417778,226.555556,227.019955,228.157732,229.249070,230.015329,230.897687,232.406984,233.382222,234.055601,234.868299,235.913197,236.841995,238.072653,238.955011,239.628390,240.859048,241.462766 diff --git a/data/torah/labels/masei-1.txt b/data/torah/labels/masei-1.txt deleted file mode 100644 index 62f1e73fa..000000000 --- a/data/torah/labels/masei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.000018,3.617669,3.988259,5.858859,7.747106,9.264762,11.329480,12.088308,12.988314,13.817731,14.523617,15.723624,17.064809,18.247169,18.529524,20.258946,21.335423,21.635425,21.774317,22.681909,23.476031,24.252506,25.734868,27.817234,28.629003,29.240784,30.229025,31.040795,32.240802,33.176102,33.687870,34.376109,35.734941,37.658482,38.876136,39.246727,40.023202,40.570264,41.170268,41.787919,42.193803,43.023220,44.876172,46.640889,48.347033,48.921497,50.403859,51.762691,52.539166,52.874462,53.545054,55.292124,55.945069,56.474484,57.674491,58.892146,59.262736,59.915681,60.745098,61.821575,62.809816,63.798058,64.609827,65.739246,66.745134,67.521609,67.921624,68.909865,70.127520,71.327527,72.327545,72.662841,73.104020,73.756965,74.374671,74.498146,75.074687,75.515884,76.239418,77.562956,78.233548,79.768851,81.457326,82.127918,82.933854,83.528023,84.016273,84.510394,85.410400,87.404529,88.233946,88.992774,89.504542,90.298664,90.881021,91.922204,93.069269,94.463395,95.504578,96.245759,96.986940,99.051658,100.463432,101.751675,102.369326,103.834040,104.628163,105.545815,106.669382 diff --git a/data/torah/labels/masei-2.txt b/data/torah/labels/masei-2.txt deleted file mode 100644 index e045239f0..000000000 --- a/data/torah/labels/masei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.169589,1.970678,2.851875,3.124245,3.357999,4.037486,5.187155,5.491569,6.010916,6.924156,7.558377,8.295378,9.384858,9.961642,10.605234,11.486431,12.575911,13.745501,14.514545,15.555960,16.677484,17.638790,18.503966,19.625490,20.586796,21.243688,21.804450,22.188973,23.502758,24.031476,25.056869,26.306567,27.075612,28.084984,28.934137,29.815335,30.776641,31.321381,31.914186,32.843449,33.532385,34.685952,35.823498,36.464369,37.233414,38.178698,39.444418,40.517876,41.415095,42.584684,43.594056,44.763645,45.548711,46.558083,47.311106,48.112194,49.458023,50.105197,50.669178,51.628253,52.701712,53.807214,54.608302,55.585630,56.659089,57.796634,58.581701,59.623116,60.808727,62.410904,63.452319,64.445668,64.798147,65.599236,66.627350,67.053287,67.758245,68.575355,69.841075,71.042708,71.939927,72.957461,74.319312,75.440836,76.306011,77.283339,78.324754,79.478321,80.167257,81.032433,82.121913,83.291502,83.996460,84.909701,86.031225,87.777597,88.562664,89.652144,90.997973,94.218348,95.147611,96.269135,97.823246,98.816596,99.649728,100.611034,101.171796,102.165146,103.190539,103.623127,104.394893,105.452329,105.855595,106.947796,108.213516,108.694169,109.433891,110.383102,111.552691,112.574155,113.471374,114.240419,115.361943,116.403358,117.348642,118.341992,118.998884,119.703842,120.585039,121.241932,121.862852,122.712005,123.190242,123.638852,123.978731,124.884309,125.825187,126.730765,127.715756,128.442178,129.227244,129.932202,130.508986,131.422227,132.129905,132.866907,134.308866,134.789519,135.051310,136.493269,136.973922,137.329122,138.068844,138.638978,139.394722,140.173138,142.063707,143.057056,143.348169,144.037105,144.591217,145.440371,146.209416,147.010504,147.308267,148.253552,150.945209,151.201557,152.611473,153.941280,154.710324,155.078825,156.184327,156.777133,157.690373,160.157726,161.215163,161.888077,162.641100,163.089710,163.490254,164.147146,164.643821,165.268670,166.085780,166.630520,167.832153,169.049807,169.514439,170.059179,171.084572,172.350292,173.391707,174.304948,175.298297,176.419821,177.605432,178.470607,179.560088,180.537416,181.482700,182.283788,184.280727,185.177946,185.946991,186.453037,187.382300,188.531938,189.236895,190.262289,190.823051,191.431878,192.489314,192.985989,193.437320,194.286474,194.898022,196.323959,197.285266,197.813984,198.663138,200.830005,201.567006,202.320029,202.826076,203.659208,204.764710,205.203948,206.085145,207.097238,207.866283,208.555219,209.291200,209.739809,210.669072,211.950813,212.338057,213.123123,213.603776,214.549061,215.141866,215.734672,216.423608,217.657284 diff --git a/data/torah/labels/masei-3.txt b/data/torah/labels/masei-3.txt deleted file mode 100644 index 920819941..000000000 --- a/data/torah/labels/masei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.733059,4.428116,4.781147,5.386491,6.156399,6.816775,7.275369,7.642244,8.339307,9.164777,10.357121,10.567810,11.264873,12.108686,13.007530,13.741281,14.566750,15.814126,16.566221,16.767472,17.464006,17.684131,18.124381,19.078257,21.041040,21.150572,21.379605,22.076138,22.993326,24.002233,25.726547,26.240172,26.670986,28.403677,29.301992,29.576619,30.328713,31.869589,32.915184,33.602810,34.043060,35.070311,36.928549,38.652334,38.780210,39.477273,40.274962,40.770244,41.595713,42.733027,43.558496,43.759748,44.438467,45.016031,45.914875,49.077905,49.389749,50.013437,51.590471,54.507129,56.543287,57.570538,57.698415,58.816855,60.045887,60.674424,60.853012,62.031862,63.755646,64.186990,64.792334,65.295993,66.763494,67.698496,67.954779,68.761905,69.816406,70.862001,72.329502,73.136098,73.566912,75.217850,75.556945,76.281259,78.886074,81.050638,82.206295,82.885014,83.783859,84.352515,85.654923,86.957330,88.241393,89.397050,90.605363,91.502591,91.961186,93.410343,94.161908,94.675533,95.299221,96.032972,98.527723,99.371537,100.894069,101.646666,102.104228,102.705690,103.937015,105.312797,105.973173,106.220019,106.705864,107.843177,109.952710,110.163399,110.887713,111.639807,112.612026,113.455840,114.152903,114.528155,115.012941,115.186942,115.681693,116.708944,117.396571,119.396041,120.145946,120.769634,121.430009,122.475604,123.227698,123.814698,125.263856,126.484706,128.153989,128.483647,129.914460,130.583743,131.115712,131.280276,131.775558,132.435933,133.811716,134.508779,135.187498,135.774499,136.691687,136.884031,137.691157,138.571658,140.351003,142.020285,143.010849,144.515037,145.322163,146.642914,147.596790,148.367228,149.724666,151.008730,151.907574,152.733044,153.503482,154.494045,155.044358,155.686390,156.621922,158.235795,160.913984,162.454860,163.427080,164.197518,164.949612,165.830113,166.839020,167.756208,169.113647,169.755149,170.432279,171.624624,172.321157,173.128283,173.880377,174.559096,175.017690,175.806472,176.356785,177.200598,177.823684,178.502403,179.070530,179.436876,180.188970,180.757627,181.436346,182.408565,183.399129,183.931098,184.389162,185.379725,186.496051,187.303176,188.422146,188.972459,189.541115,191.522242,192.732930,193.540056,194.603994,196.218246,197.080403,198.382810,199.189935,200.107124,200.542812,201.274532,201.843188,202.448533,203.017189,203.374098,204.548471,205.997628,206.456223,207.098254,207.740286,208.620787,209.152756,210.326757,211.665852,213.518572,215.224542,216.343511,216.893824,217.645919,218.764888,219.902202,221.773266,222.195172,222.837204,223.148518,223.918956,224.927863,226.899553,227.981835,229.119149,229.852899,230.935181,231.209808,232.016934,234.053091,234.750155,235.556750,237.042595,238.400034,239.427614,240.748365,241.445428,241.793959,242.196992,243.187555,243.866275,244.911869,246.654527,247.479996,249.057560,249.699592,250.543405,251.478937,252.231031,253.184907,254.891321,255.790165,256.523916,257.128731,258.155981,259.119731,260.944671,261.751267,262.338267,263.585643,264.227675,265.016457,266.025364,266.336678,266.908299,267.281345,268.235220,269.372534,270.418128,271.170223,271.885100,273.429139,274.138375,274.835438,275.262819,276.318309,277.131504,279.296068,281.148788,281.974258,282.854758,283.882009 diff --git a/data/torah/labels/masei-4.txt b/data/torah/labels/masei-4.txt deleted file mode 100644 index 4d1d1ff98..000000000 --- a/data/torah/labels/masei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,0.993143,1.781925,1.910331,2.515675,3.469551,4.478458,5.212209,6.166084,7.119960,7.890398,8.348463,8.568058,9.503590,10.475810,11.448029,12.310186,12.667625,13.749907,14.722126,16.042877,16.629878,17.161847,17.767191,19.344755,20.077446,20.278698,21.360980,22.645043,23.250387,24.057513,25.268201,26.001952,26.625640,26.955828,27.854672,29.047017,29.505611,30.221018,31.156550,31.431177,32.476771,33.540709,34.402866,35.393430,35.741961,36.659149,37.613025,37.795933,38.125591,39.042779,40.106718,40.464156,41.656501,42.563832,43.297583,43.884054,44.112556,44.864121,45.689060,46.606249,46.798593,47.679094,48.571704,48.920235,49.433331,50.222113,51.047053,51.276085,52.413398,53.275555,53.522931,54.311713,55.008776,56.237808,56.420716,57.374592,58.291780,58.456344,59.318501,60.033908,60.985665,61.296979,62.177480,62.947918,63.112482,63.717826,64.524952,65.478828,65.762891,66.955236,67.762362,68.046425,68.816863,69.623989,71.073146,71.265491,72.347773,73.741899,74.438962,75.025962,75.778057,76.713589,76.832558,77.198904,78.299530,79.271749 diff --git a/data/torah/labels/masei-5.txt b/data/torah/labels/masei-5.txt deleted file mode 100644 index fcab19cca..000000000 --- a/data/torah/labels/masei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.693233,5.435890,5.747734,6.463141,7.178548,7.747205,8.279174,8.774455,9.453175,10.462082,13.892366,14.047493,14.525848,16.259828,17.207076,19.206546,21.297736,22.361674,22.948674,23.719112,25.736926,26.690802,28.304524,29.240056,30.450744,32.615308,34.064466,34.944966,35.825467,38.925563,39.824408,40.814971,42.759410,43.713286,44.832255,46.594240,47.529772,48.153460,48.832179,49.657649,50.758275,51.436994,52.537620,53.087933,53.711621,55.177284,58.062444,58.906257,60.887384,61.437696,62.043041,63.015260,67.491139,72.352236,72.736926,73.176646,75.304523,76.129992,77.542462,78.019400,78.294027,78.715404,79.595375,81.393063,82.181845,82.823877,84.364753,85.465379,86.070723,86.657724,87.501537,88.858975,89.519351,90.179726,91.298696,92.931291,94.563886,96.838513,97.865764,98.856327,99.901921,100.433891,101.039235,101.626235,102.415017,103.057049,103.937550,104.836394,105.460082,106.303895,107.624646,108.358397,109.165522,109.972648,110.798117,111.678618,113.733120,114.650308,115.439090,116.613091,117.566966,118.502498,118.997780,119.786562,120.190125,121.437501,124.072219,124.897689,125.613095,126.548627,126.823254,127.813817,128.804381,129.611506,130.620413,131.372508,132.197977,133.206884,135.334761,136.123543,137.132450,137.756138,138.654982,139.608858,140.919046 diff --git a/data/torah/labels/masei-6.txt b/data/torah/labels/masei-6.txt deleted file mode 100644 index bc71ee206..000000000 --- a/data/torah/labels/masei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.650779,4.549624,4.843124,5.447938,6.530220,7.465752,7.768160,8.465223,9.492474,10.317943,11.253475,12.330361,13.926268,14.531613,14.677833,15.576678,16.327712,17.354963,19.774751,20.325064,21.132190,21.810379,22.470755,23.277880,24.057225,24.992228,25.615386,26.423033,27.028377,27.615378,28.991160,29.952883,31.511574,32.887356,33.785141,34.848550,35.765208,36.425584,37.416147,37.819710,39.177148,39.837524,40.662993,41.855338,43.324466,43.874249,44.883156,45.506012,45.814271,46.485852,47.230308,48.257559,49.169790,50.086979,51.811292,52.820199,53.627325,54.526170,55.314951,56.085390,57.002578,58.011485,58.543454,59.295548,60.157705,60.928143,62.083800,63.386208,65.147209,66.101085,67.220054,68.192274,70.118369,70.687026,71.237339,71.933872,72.703780,73.767719,74.409751,74.941720,75.344753,75.857848,77.105224,78.214228,78.800698,80.438157,82.008114,83.072052,83.787459,84.319428,84.961460,85.530117,86.685774,91.510184,92.380718,94.141720,94.645378,95.085629,95.351349,97.020631,98.047882,98.653226,99.111820,99.772196,100.377540,101.771666,106.333219,106.993595,107.286565,108.919160,109.579006,109.908664,110.173854,111.916512,112.907075,113.512419,114.117763,114.613045,115.181702,116.649203,118.261354,119.086823,119.581575,120.205263,120.461546,121.397078,122.344399,122.894712,123.206556,124.325525,125.049839,125.838621,127.378967,127.928221,128.420854,129.906699,131.264137,132.603232,133.502077,135.079640,136.125235,136.914017,137.831205,138.399332,139.094806,139.828556,140.332215,141.065966,141.762499,143.431782,145.119408,145.467410,146.329567,147.190664,148.162884,148.841603,149.557010,150.217385,150.859417,151.813293,152.968950,153.610982,154.949017,155.536018,156.049113,156.543865,158.029710,158.945796,159.441077,160.596734,161.330485,161.788549,162.347769,163.145458,163.769146,164.741366,165.493460,166.153836,167.089368,167.456243,168.171650,168.538525,169.492401,170.281183,171.271746,172.922685,173.803185,174.536936,175.802656,176.122877,176.562597,177.479786,178.047913,179.129665,180.193603,181.716136,183.330387,183.917387,185.898514,188.521672,189.034768,190.575644,191.933083,192.776896,193.657397,194.299428,194.702991,195.345023,196.005398,196.360999,197.173697,198.670955,200.285206,200.835519,201.385302,202.302491,203.182462,203.879525,204.356462,204.925119,205.732245,206.521027,207.731715,208.263684,208.887372,209.749529,210.795124,211.363780,212.024156,212.941344,213.711782,214.390501,215.436096,216.656456,217.371863,217.903832,218.655926,220.453615,221.150678,221.774366,222.581492,224.801087,225.699932,226.433682,226.671622,227.625497,228.304217,228.726123,229.386499,230.449907,231.165314,232.137004,232.724004,233.457755,233.879661,234.631226,235.401664,236.594009,237.107105,238.060980,238.904793,240.023763,241.014326,241.454577,241.913171,243.050484,244.499642,246.058861,247.397956,248.333488,248.993864,250.021115,250.919959,252.882742,253.768330,254.355331,255.070737,255.656678,256.427116,257.252586,257.619461,258.426587,259.435494,260.187588,260.609495,261.196495,261.893558,262.700684,263.691247,264.406654,265.158748,265.947530,266.644593,267.525094,267.754952,268.378640,269.662704,270.827268,271.459863,272.853989,274.174740,274.908491,275.568866,276.375992,276.632275,276.952496,277.998091,278.805216,279.575654,280.236030,280.859718,281.336656,282.400594,283.336126,284.400064,284.601316,286.343974,287.224474,287.903194,288.600257,289.242288,290.067758,290.782635,291.424667,291.698764,292.542577,293.559655,293.908186,295.779250,296.696438,297.411845,298.127252,298.659221,299.319597,299.723159,300.291816,301.484161,303.269644,304.030116,304.249711,305.845619,306.836182,307.533245,308.377058,308.817309,309.789528,310.266466,310.816779,311.660592,312.541093,313.274843,314.210375,315.934689,316.998628,317.787409 diff --git a/data/torah/labels/masei-7.txt b/data/torah/labels/masei-7.txt deleted file mode 100644 index 9cdcf6a4b..000000000 --- a/data/torah/labels/masei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.236132,3.955951,5.372368,6.624703,7.014817,7.743858,7.980999,8.642071,8.862595,9.744025,11.066169,11.472983,12.032351,14.354579,15.151256,15.880130,16.625955,17.575187,18.337962,18.982084,19.575354,20.711042,23.084121,23.457034,24.118106,24.863931,25.677558,26.558987,26.948850,28.474401,30.288112,31.372948,31.898416,32.695092,33.915533,34.678309,35.746195,37.492103,37.831114,39.509220,40.594057,41.119524,42.458619,50.442336,52.425552,53.306982,53.951103,54.341133,57.188829,59.188995,60.748448,61.816333,62.731664,63.663945,65.460705,65.935321,66.986256,67.867686,68.613511,69.444088,70.088210,71.223898,72.325685,73.563076,74.282450,74.960472,77.875970,78.689597,80.503308,81.791551,82.774684,83.673064,84.588394,85.418972,86.130896,87.012325,87.622546,89.080295,89.775268,90.656697,91.572028,92.758568,94.216316,94.860438,95.131647,95.741867,96.623297,96.860772,97.165882,98.132064,98.843988,100.623797,101.318771,101.691683,102.335805,103.420641,104.759736,106.166633,106.810754,107.420975,109.421142,110.878890,111.726419,112.404441,113.370624,114.319856,115.082631,115.811505,118.964311,120.879725,121.422143,122.439177,123.218903,124.252888,125.111956,125.722177,126.518853,127.129074,127.942701,129.044488,129.315864,130.044905,130.740212,132.062023,133.350599,134.096424,134.808348,135.689778,136.113542,137.130576,138.045906,139.249397,140.096925,141.893685,144.893936,145.555008,147.199213,149.148528,151.165645,151.945371,152.470839,153.267516,153.979439,156.013507,156.894937,157.437355,158.234032,158.776450,159.539225,160.403704,162.234365,163.658213,165.268517,165.980441,166.607612,167.268851,167.777535,168.269101,169.421740,171.116880,171.879822,172.252735,173.422324,176.219167,176.829388,177.541311,177.812521,178.371889,179.066862,179.524528,180.016094,181.100931,183.292955,184.174384,185.920293,187.869608,189.513813,190.512271,190.857486,191.809505,192.555329,193.487611,194.572447,196.672832,197.147615,197.961242,198.164816,198.605781,199.080397,199.724518,200.877157,201.928092,202.233202,202.724769,203.470594,204.470677,205.928426,207.657384,209.860957,210.742387,212.234037,213.996896,214.844424,215.454645,215.692119,216.082066,216.929594,218.082233,218.726354,219.924581,220.687356 diff --git a/data/torah/labels/masei-h.txt b/data/torah/labels/masei-h.txt deleted file mode 100644 index 8d31381d9..000000000 --- a/data/torah/labels/masei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.672439,3.135436,3.937580,4.507524,6.407339,6.977283,8.074954,8.518244,10.143640,11.009112,12.001237,14.428778,15.104267,15.821975,17.046300,17.465677,18.352257,19.046052,19.713423,21.782110,24.082996,25.180667,26.088356,27.608208,29.233604,30.183512,31.196746,32.294417,33.265433,34.173122,34.719154,36.471205,37.902353,39.506640,42.229708,43.496251,44.847230,45.902682,46.979244,47.908042,49.047931,51.201054,51.770998,52.530924,53.016432,53.607486,54.494066,55.042901,55.633954,57.660423,59.032511,59.750219,60.151291,60.721235,61.987778,62.832140,63.613175,65.914061,67.623894,68.970668,69.397055,70.404682,71.945643,73.040510,74.391489,77.853373,78.972153,79.623730,80.425873,81.586871,82.937850,83.739994,84.394375,85.660918,87.011897,87.771823,89.249456,90.938180,92.521359,93.471266,94.758918,95.093859,95.980440,97.225873,100.582212,102.334263,103.453043,104.351694,104.834399,106.670886,107.388594,107.958538,108.824009,110.132770,111.131480,112.503568,113.305712,114.720019,115.796580,117.928594,119.005156,120.018390,122.023750,123.620773,124.495882,125.255807,126.860095,128.654364,129.456508,130.596397,131.585719,131.965682,133.823278,135.579492,136.612275,137.688837,138.512090,139.694196,141.699556,142.480591,142.728292,144.353689,147.330065,148.385518,149.018789,149.393145,151.060760,151.610890,152.307489,152.898542,153.447378,155.431628,156.444863,158.429113,159.315694,159.927856,161.975434,163.284195,163.875248,165.162900,166.492770,167.632659,168.540348,168.892996,169.647314,171.040512,172.623690,173.742470,174.101324,174.840141,175.536739,177.141027,178.238698,179.019732,179.990749,181.489491,182.984028,184.335008,185.833750,187.543583,189.211198,189.928906,190.984358,192.060920,193.411899,194.256261,198.270450,200.906277,201.327057,201.960328,204.641177,205.928829,207.469790,208.649093,209.134601,209.591992,211.154061,212.420604,212.607782,213.554886,214.821429,215.475809,216.486240,217.710565,220.560287,221.148537,221.697372,222.689497,223.766059,224.758184,225.029798,227.014049,227.686735,228.341115,229.143259,230.156494,231.148619,231.760782,233.196197,234.881788,237.119347,239.293579,240.707885,241.911101,242.776572,243.156535,244.000897,245.014131,246.512874,246.721161,247.414956,249.420316,250.686859,251.932293,252.966636,253.452144,254.423160,255.436395,256.956246,258.010297,259.867893,261.218873,263.203123,264.997393,266.496135,267.657133,267.907638,270.102979,271.073995,271.282282,271.638333,273.158184,275.480180,276.915595,277.206916,277.562967,278.871728,279.165853,280.200196,281.361194,283.482840,284.939365,285.825945,286.902506,287.345796,288.971193,290.005537,291.730872,292.448579,293.377378,294.263958,295.424955,296.311535,296.878676,298.314092,299.411762,300.446106,301.290468,303.105846,304.414607,305.385623,306.504403,307.201002,308.172018,309.544106,310.240705,311.866102,312.372719,314.546951,315.454640,316.425656,317.649981,318.726543,319.549796,320.415267,321.407392,322.061773,322.631717,324.212092,325.478635,326.006361,327.378450,329.088283,331.517225,332.488241,334.789128,335.865689,336.815596,338.208794,339.053156,340.361917,341.058515,342.873894,343.570492,344.668163,345.744724,346.757959,347.982284,349.671008,351.380841,352.140767,353.154001,354.336108,356.383686,357.903537,358.769008,360.409092,360.915710,362.076707,362.643848,363.778130,365.129109,367.007814,367.619977,368.738756,369.514184,370.274110,371.200105,371.408392,373.477078,374.553640,375.443176,376.561956,378.229571,380.002731,381.395928,383.253525,383.862884,385.783807,386.965914,387.578076,388.717965,389.562327,389.981705,391.607101,392.551369,393.269077,394.873365,395.971035,396.773179,397.617541,398.567449,399.939537,401.058316,402.493732,403.105894,404.203565,404.752400,406.863305,407.433249,408.615356,409.079755,411.232878,412.013913,412.879384,413.934837,414.948071,415.897978,417.164521,418.895463,419.993134,421.259677,422.248999,424.169922,425.221169,426.234404 diff --git a/data/torah/labels/matot-1.txt b/data/torah/labels/matot-1.txt deleted file mode 100644 index b69c39178..000000000 --- a/data/torah/labels/matot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.298899,3.079125,3.586880,4.397792,5.457364,6.225789,7.201028,8.292365,9.845019,10.797037,11.608193,12.023068,13.300166,15.947241,16.595858,17.171731,18.397762,20.650098,21.554134,22.645472,23.551050,24.595948,25.431867,25.894724,26.893182,27.705880,28.309599,29.284837,30.213635,30.761758,31.563930,32.701707,35.164524,35.698583,36.279082,37.022121,37.811599,38.926157,40.628306,41.331780,42.190919,44.115091,45.577948,46.971146,47.271463,49.338039,50.940216,51.331871,52.005250,52.163164,53.138402,54.204978,54.691055,55.502211,56.895409,57.217404,58.355182,59.167880,60.514638,61.209694,61.695771,61.830465,62.596724,64.106021,64.731418,65.194275,66.030193,68.932687,69.791826,71.486882,72.205159,74.039536,76.361531,76.963708,77.542665,77.748560,78.445159,78.861576,79.860034,81.044252,81.646429,82.435907,82.968424,83.479263,84.152642,85.522619,86.521078,87.287336,88.169694,89.028833,90.329150,91.095409,91.827653,92.710012,93.499490,94.162075,94.881894,95.063028,96.177585,97.337041,98.892778,99.473277,100.471735,101.142030,101.768969,103.138946,104.044524,106.018220,106.552279,107.132778,107.383572,107.940851,109.287608,111.284524,111.981123,112.790737,115.786112,116.457948,118.036905,120.126701,120.591100,121.589558,122.518356,123.284615,123.865114,125.049331,125.931690,126.442529,127.139127,127.416225,128.252143,129.506021,130.225839,131.317177,132.454955,133.337313,134.266112,135.659351,136.417858,136.905477,137.134592,137.691871,138.450420,139.773957,140.351372,140.534048,141.227563,142.411780,143.061939,143.453595,144.916452,145.427291,146.100669,147.795726,149.119263,149.653322,150.535681,151.116180,151.928878,152.393277,152.973776,154.227653,154.644071,155.735409,156.524887,157.918084,158.661123,159.171962,159.377858,159.862393,161.441350,161.915091,163.586928,164.422846,165.232461,167.833096,168.576134,170.410511,170.921350,171.501848,173.266565,175.240261,176.076180,176.726338,177.025114,178.046792,179.231009,180.508107,181.808424,182.412143,183.387381,183.800715,185.147472,185.611871,186.262030,186.819309,187.492687,188.189286,188.978765,189.814683,190.302302,191.974139,192.786837,194.551554,195.294592,195.991191,198.615046,199.125885,199.401440,200.887517,201.769876,202.116633,202.554728,203.576406,204.040805,204.269921,204.571780,205.613595,206.006792,206.819490,207.887608,208.560987,209.184842,209.626021,210.064116,210.573413,211.664751,212.313368,212.705023,214.260760,215.119898,215.839717,216.629195,217.557994,217.972869,219.319626,220.480624,222.219037,223.194275,223.702030,224.537948,224.745386,225.604524,225.972960,226.344479,227.528697,228.426565,229.098402,230.166520,231.603073,232.392551 diff --git a/data/torah/labels/matot-2.txt b/data/torah/labels/matot-2.txt deleted file mode 100644 index 78e9cc517..000000000 --- a/data/torah/labels/matot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577415,3.575873,3.783311,4.433469,5.501587,7.219864,7.939683,8.427302,9.588299,10.145578,11.422676,12.305034,13.024853,13.207528,14.275646,15.692063,16.246259,16.546576,17.150295,17.754014,20.049270,21.628662,22.638005,23.682902,24.936780,25.051338,25.910476,26.535873,27.090068,27.856327,29.295964,30.201542,31.525079,32.221678,33.080816,34.009615,34.775873,35.635011,36.540590,37.910567,39.884263,40.743401,41.648980,42.252698,43.135057,44.017415,44.294512,44.828571,45.594830,46.361088,47.522086,48.218685,49.759291,50.443175,51.206349,52.483447,54.062404,54.638277,56.101134,56.399909,57.328707,58.048526,59.139864,60.203356,61.387574,62.409252,63.384490,64.545488,65.985125,66.472744,67.053243,68.538536,69.277732,69.858231,70.064127,70.900045,71.991383,72.291701,73.243719,73.883084,74.322721,75.646259,76.410975,76.664853,78.824308,79.263946,80.053424,80.284082,80.859955,81.486893,81.972971,82.390930,82.855329,83.055057,84.169615,85.633927,86.191383,86.957642,87.651156,88.278095,88.552109,89.271927,90.268844,91.499501,93.844717,94.400454,95.840091,96.279728,96.720907,97.159002,97.552200,98.341678,99.316916,99.538322,101.186939,101.767438,101.925351,103.620408,104.108027,104.292245,105.008980,106.146757,106.727256,107.258231,108.233469,109.670023,110.365079,110.665397,111.640635,112.685533,113.544671,114.891429,115.050884,115.372880,116.439456,116.840454,117.069569,118.137687,119.252245,120.807982,125.382313,125.891610,127.470567,128.187302,128.791020,130.393197,130.973696,131.530975,131.784853,133.456689,133.942766,135.544943,135.866939,137.492336,138.026395,138.792653,139.046531,140.044989,140.532608,141.136327,141.902585,142.901043,143.388662,144.154921 diff --git a/data/torah/labels/matot-3.txt b/data/torah/labels/matot-3.txt deleted file mode 100644 index 48afb5ec1..000000000 --- a/data/torah/labels/matot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.330280,5.328254,7.139410,8.648707,9.131701,9.758639,10.478458,11.430476,12.216871,12.704490,14.074467,15.119365,15.723084,16.257143,16.884082,17.557460,18.323719,19.229297,19.949116,20.785034,21.574512,22.241723,23.449161,24.656599,25.255692,25.789751,27.043628,27.224762,28.292880,28.803719,29.546757,30.684535,31.288254,32.100952,33.076190,33.819229,34.562268,35.073107,35.746485,35.856417,36.297596,37.156735,37.964807,38.545306,39.450884,40.588662,42.423039,43.189297,43.489615,44.139773,44.766712,45.393651,47.019048,47.854966,49.039184,49.875102,50.525261,51.546939,52.359637,52.963356,53.776054,54.310113,54.724989,55.163084,55.649161,56.345760,57.251338,58.203356,60.246712,62.243628,62.940227,63.776145,64.379864,65.006803,66.632200,67.700317,69.116735,69.790113,70.463492,72.390748,74.225125,75.130703,76.059501,76.686440,77.429478,78.358277,79.519274,81.232192,82.369970,82.741489,83.345208,84.083620,84.589834,85.054233,85.565072,85.865389,86.306568,86.582124,88.253961,89.461398,90.413416,91.017135,91.294233,91.921171,92.687430,93.616228,94.452146,95.009425,95.752464,96.681262,97.284981,97.678178,98.278813,98.603893,99.439811,101.086886,101.363983,102.130242,102.407339,103.196818,103.590015,104.333054,104.749471,105.446069,105.699947,106.419766,107.023484,107.929063,108.764981,109.902759,110.436818,111.063756,112.410514,113.525072,114.128790,115.011149,116.345522,117.070015,117.627294,118.602532,119.345571,120.622668,120.969425,122.292963,123.082441,123.847158,125.031376,126.981852,128.978768,129.628927,130.534505,131.486523,132.763620,133.854958,134.224936 diff --git a/data/torah/labels/matot-4.txt b/data/torah/labels/matot-4.txt deleted file mode 100644 index dd0400ace..000000000 --- a/data/torah/labels/matot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.462857,2.275556,2.596009,3.222948,4.291066,6.195102,6.798821,7.657959,8.470658,9.353016,9.887075,10.955193,11.721451,12.557370,13.323628,13.973787,14.693605,15.645624,16.899501,17.363900,18.246259,18.966077,19.941315,20.893333,21.984671,22.820590,23.470748,23.865488,24.817506,26.117823,27.812880,29.600816,31.435193,32.480091,33.478549,34.384127,35.289705,36.195283,36.938322,37.820680,38.563719,39.190658,39.933696,40.444535,41.234014,41.860952,42.627211,43.161270,43.881088,46.806803,47.642721,49.848617,50.614875,51.195374,51.845533,52.704671,54.144308,54.696961,55.997279,56.508118,57.831655,58.667574,58.825488,60.845624,61.402902,62.865760,63.167619,64.444717,65.094875,65.791474,66.232653,66.632353,66.917007,67.776145,69.378322,69.773061,70.771519,72.489796,73.325714,73.929433,75.206531,76.321088,77.017687,77.853605,78.666304,80.369643,81.229841,81.787120,81.993016,83.014694,84.079728,85.147846,86.239184,86.773243,87.353741,88.116916,88.417234,89.253152,91.296508,91.877007,92.152562,93.499320,94.146395,94.610794,95.281088,96.372426,98.160363,98.694422,99.414240,100.412698,102.270295,102.641814,103.338413,104.267211,105.196009,105.962268,106.473107,107.425125,108.400363,108.654240,109.140317,109.601633,110.251791,110.716190,111.691429,112.318367,113.177506,114.129524,115.522721,116.614059,117.984036,118.889615,119.632653,120.422132,121.838549,122.465488,122.976327,123.275102,124.038277,124.572336,125.408254,125.965533,126.615692,127.405170,129.169887,130.191565,130.818503,131.047619,131.744218,132.276735,132.764354,133.321633,134.575510,136.247347,136.640544,137.453243,137.987302,139.262857,139.936236,140.468753,141.652971,143.603447,144.207166,144.671565,145.344943,145.944036,147.047800,147.628299,148.162358,149.416236,151.204172,153.084989,153.711927,154.035465,154.732063,155.823401,156.636100,157.472018,158.145397,159.259955,160.420952,162.255329,162.462766,163.066485,163.809524,164.527800,165.408617,166.221315,167.962812,168.682630,169.750748,170.399365 diff --git a/data/torah/labels/matot-5.txt b/data/torah/labels/matot-5.txt deleted file mode 100644 index 23d0e0419..000000000 --- a/data/torah/labels/matot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.753667,3.956640,5.040238,5.863932,6.676630,7.350009,7.650327,8.393365,9.856222,11.853138,12.596177,13.292776,13.569873,14.220032,14.961528,15.354726,15.794363,16.721619,17.418218,17.927515,18.526608,19.408966,20.268104,22.334680,23.170599,23.704658,24.447696,26.491052,27.094771,27.605610,28.043705,28.972503,29.854862,30.551460,31.387379,31.944658,32.989556,34.359533,35.636630,36.655224,37.093320,39.159896,39.529873,40.435451,41.178490,41.384385,42.429283,42.916903,43.659941,43.981937,44.980395,46.187832,47.673909,49.763705,50.715723,51.528422,52.364340,53.246698,55.225524,55.955723,56.509918,56.949556,57.971234,59.314907,59.661664,60.567243,62.587149,63.392367,64.040984,64.946562,65.712821,66.455859,67.079714,68.310372,69.517810,69.771687,70.584385,71.675723,73.324340,73.788739,75.181937,75.692776,76.853773,77.407968,78.359986,79.126245,79.798082,80.355361,81.214499,83.304295,83.606154,84.183569,86.180485,88.177401,88.702209,89.398807,89.737855,90.504113,91.595451,92.477810,93.406608,94.101664,95.076903,96.307560,96.465474,97.454680,97.963977,98.962435,100.216313,101.632730,103.559986,105.255043,105.626562,106.369601,107.150351,108.052845,108.377924,109.678242,110.792800,111.046677,111.952255,114.367131,115.481688,116.480146,117.432165,118.360963,118.848582,120.079239,120.727856,121.096292,122.001870,122.791348,123.580827,124.416745,125.275883,125.809942,126.506541,127.783639,129.037516,129.989534,130.732573,131.032890,132.054568,133.029806,134.306904,135.328582,136.141280,136.466360,137.371938,139.043775,139.740373,140.553072,141.435430,142.758967,143.385906,143.545362,144.079421,144.961779,145.960237,146.398332,147.234251,148.859648 diff --git a/data/torah/labels/matot-6.txt b/data/torah/labels/matot-6.txt deleted file mode 100644 index 5d00de64f..000000000 --- a/data/torah/labels/matot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.708995,5.056790,7.894785,9.932981,11.429378,12.151776,12.354749,12.789922,13.434921,15.525299,16.314777,16.848836,17.568655,17.960310,18.378269,19.167748,19.980446,20.584165,21.118224,22.209562,24.740537,25.016092,25.410832,25.850469,26.570287,28.033144,28.147702,28.844301,29.098178,29.817997,30.862895,31.325752,31.859811,32.463530,33.531648,34.739085,35.691104,36.527022,37.386160,38.268519,39.522396,41.124573,41.867612,43.028609,46.070423,46.790242,47.579720,48.229879,48.926478,49.785616,50.807294,51.434233,51.968292,52.479131,54.127748,54.940446,58.609199,58.815095,59.906432,60.370832,61.299630,63.273326,63.807385,65.432782,66.812080,68.211466,69.093825,69.836863,70.626342,70.949879,72.110877,73.504074,74.014913,74.781172,75.081489,75.685208,76.381807,78.843122,79.864800,80.909698,81.815276,82.674414,83.719312,85.621772,86.713109,86.781227,87.244084,87.731703,88.521182,89.426760,89.751840,90.564538,91.145037,91.586216,92.118733,93.349391,94.045989,94.719368,95.741046,97.436103,98.922180,99.758098,100.385037,100.872656,100.985672,101.984130,103.725626,104.306125,104.956284,106.604901,107.440819,107.765898,108.555377,110.412849,110.617327,110.916103,111.448620,112.284538,113.306216,113.629753,113.999731,114.789209,115.320184,115.574062,116.131341,117.454878,118.660774,118.962633,119.566352,120.030751,121.371388,122.710133,123.801471,124.400564,124.864963,126.583240,127.464056,129.600292,130.296891,130.900610,131.411449,132.154487,132.688546,133.919204,134.660700,136.216437,137.330995,138.004374,138.817072,139.583331,139.860428,140.882106,142.182424,144.040020,145.084918,145.433217,146.129816,147.244374,148.242832,148.588047,149.122106,149.679385,150.608183,151.281562,152.303240,153.391494,153.879113,154.924011,155.992129,157.083467,158.267684,158.987503,159.568002,160.287821,160.729000,161.097435,161.817254,162.433176,162.967235,163.383652,164.335671,165.659208,167.586464,168.352723,169.978120,170.348097,170.928596,171.810954,174.315625,175.755262,177.125240,177.612859,177.984378,178.704197,179.075716,180.236714,180.910092,181.862110,183.069548,184.462745,184.903925,185.739843,186.506101,187.852859,188.224378,188.778573,189.916351,191.193448,191.959707,193.260024,194.072723,195.280160,195.976759,197.300296,197.718256,198.809593,200.202791,202.362247,203.151725,204.986101,206.007779,206.611498,207.517076,209.026374,209.676532,210.048052,211.295761,211.597621,212.363879,213.873176,214.662655,215.243154,216.404151,217.541929,218.099208,219.051226,219.910364,220.558981,220.837621,221.673539,223.832995,224.924333,225.456850,226.362428,227.035807,228.226104,228.897180,229.431239,230.127837,230.777996,231.683574,232.287293,233.076772,233.703710,234.188245,235.395683,236.138722,236.996318,238.017996 diff --git a/data/torah/labels/matot-7.txt b/data/torah/labels/matot-7.txt deleted file mode 100644 index 3cea8cecc..000000000 --- a/data/torah/labels/matot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.279209,3.115127,3.602746,4.113585,4.715032,4.814074,5.372144,6.138402,6.742121,8.739037,9.062575,9.596633,11.013051,11.872189,13.335046,13.636906,14.937223,15.262302,15.958901,16.423300,17.003799,18.523982,20.149379,20.520898,21.171057,22.146295,23.166431,24.536408,24.977587,25.836726,26.602984,27.415683,29.459039,30.829016,31.822060,33.493897,37.345326,38.367004,38.919657,41.682831,42.867049,43.281924,44.419702,44.975439,45.229317,45.994033,46.411992,47.271131,48.176709,48.757208,49.569906,50.684464,51.125643,51.822242,52.704600,53.470858,53.958478,54.492536,55.351675,56.234033,57.232491,58.021970,58.811448,59.786686,61.138842,61.556801,62.044420,62.553717,63.041336,63.340112,63.897391,64.547550,65.612584,66.332402,67.052221,67.655940,69.072357,70.535214,71.162153,71.998071,72.157527,73.063105,73.663740,73.965599,74.546098,75.544556,76.496575,77.866552,78.261291,78.748910,80.118887,80.560067,81.163785,82.115804,82.951722,83.787640,85.343377,86.620475,87.200974,87.758253,88.245872,89.148366,89.984284,90.261382,90.888321,91.163876,91.883695,92.298570,93.691767,94.269182,94.942561,95.337300,96.382198,97.264556,98.541654,100.259931,100.770770,101.208865,101.552538,101.947277,102.177935,102.920974,104.171767,104.727504,105.910180,106.444239,107.117618,107.976756,108.510815,109.137754,109.927232,110.414851,111.041790,112.202788,113.549545,113.897844,114.315804,114.961336,115.866915,116.513989,117.651767,119.044965,119.811223,120.461382,122.063559,122.735395,123.176575,124.175033,126.766038,127.182455,128.343453,128.620551,129.154610,129.781548,131.244405,131.964224,133.589621,135.098918,135.586537,136.283136,136.790891,137.719689,138.437966,140.086582,141.549439,142.013839,142.663997,143.174836,143.778555,144.753793,145.425630,146.447308,147.097467,148.095925,149.001503,149.512342,153.808034,154.458192,156.013929,156.803408,157.917966,158.916424,159.496922,160.495381,160.678056,162.233793,162.907172,163.603771,164.184269,164.648669,165.623907,166.459825,167.202864,167.690483,167.989258,168.755517,170.427353,171.565131,172.517149,172.981548,173.469167,174.514065,176.207580,176.602319,176.993975,177.319054,177.825267,178.127127,178.800505,179.170483,180.238600,180.795879,181.421276,182.814473,183.325313,183.882591,185.299009,185.786628,186.158147,186.829984,187.128759,187.359417,188.009576,188.470891,189.190709,189.817648,190.583907,191.443045,192.116424,192.696922,193.277421,193.857920,194.204678,195.226356,195.853294,197.064915,197.687671,198.941548,199.359508,200.683045,202.006582,203.097920,203.492659,203.885857,204.698555,205.697013,206.881231,207.345630,207.879689,208.341004,208.776015,209.797693,212.653748,213.141367,214.488124,214.789984,216.229621,216.833340,218.389077,219.480415,219.709530,220.170845,220.565585,221.169303,222.283861,222.910800,223.164678,224.047036,224.720415,224.879870,225.622909,226.296288,226.760687,228.386083,228.661639,229.195698,229.938737,230.867535,231.073430,232.071888,232.951163,233.482138,234.364496,235.177195,236.520868,237.101367,237.867625,238.027081,238.324315,238.646310,239.621548,241.223725,242.500823,243.894020 diff --git a/data/torah/labels/matot-h.txt b/data/torah/labels/matot-h.txt deleted file mode 100644 index 774a45a6d..000000000 --- a/data/torah/labels/matot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.274345,2.179923,2.481782,4.826998,4.989537,5.987995,6.916794,8.820830,9.819288,11.096385,11.653664,12.814662,13.019016,13.971034,14.946272,16.871748,17.827093,18.077973,18.821011,19.259106,21.163143,21.999061,22.649220,23.252939,24.878335,27.571850,28.407769,29.336567,29.474345,30.612122,31.564140,32.655478,33.189537,33.723596,34.605955,35.488313,36.486771,37.717428,37.971306,38.760784,39.107542,40.918698,41.708177,42.288676,43.171034,43.983732,45.446589,48.465184,48.626181,49.601419,50.437338,51.551896,52.782553,54.152530,55.058109,56.195886,58.471442,59.586000,60.584458,62.674254,63.742372,64.438970,65.739288,68.177383,69.013301,69.942100,70.986998,72.078335,72.192893,73.214571,74.839968,75.374027,76.066000,77.343097,79.270354,80.152712,81.104730,81.453029,82.079968,82.660467,84.425184,86.189900,86.607859,86.956159,87.652757,89.138834,90.253392,92.217805,92.454662,93.011941,94.103279,95.612576,96.282871,96.954707,98.941269,99.289129,99.892848,101.448585,102.702462,103.351079,104.953256,107.414571,108.343369,108.522961,109.521419,110.566317,110.679333,112.560150,113.790807,114.626726,115.625184,117.459560,118.597338,119.245955,120.430172,122.914707,125.143823,125.442599,127.532394,128.272349,129.038608,129.363687,130.965864,132.057202,132.846680,134.030898,136.120694,137.049492,138.442689,140.114526,140.298744,141.157882,142.226000,142.992258,143.712077,144.176476,144.873075,146.869991,148.913347,150.004685,150.770943,151.444322,152.373120,155.136295,156.993891,157.992349,158.849945,160.591442,161.148721,161.961419,163.540376,164.004775,164.887134,166.651850,167.625546,167.902644,168.876340,169.619379,170.641057,171.425909,172.281964,173.117882,174.720059,176.846928,177.590082,178.309900,179.517338,180.330036,181.212394,181.792893,183.023551,184.254208,184.997247,186.761964,187.946181,188.944639,189.989537,190.593256,191.056113,191.822372,192.887406,195.255841,196.231079,198.291487,198.529855,200.563959,201.678517,202.604231,202.904549,204.831805,209.266816,211.147633,211.937111,213.539288,214.560966,215.116703,217.229719,218.395411,218.661646,219.822644,220.890762,221.630716,222.000694,222.557973,224.392349,225.785546,226.528585,227.271623,227.828902,228.316521,230.336657,231.195796,233.262372,235.143188,236.025546,237.209764,239.369220,240.065818,241.180376,243.107633,244.175750,245.406408,246.660286,247.635524,248.610762,250.096839,250.654118,251.188177,252.000875,253.997791,254.438970,255.158789,256.157247,256.830626,257.712984,258.850762,261.056657,263.262553,264.423551,265.723868,266.583007,268.487043,269.369401,271.018018,272.179016,272.991714,273.151170,273.522689,275.310626,276.425184,277.145002,278.259560,279.629537,280.279696,281.231714,283.855569,284.598608,285.086227,285.806045,287.036703,287.663642,288.197701,289.739835,290.305061,291.048100,292.441297,295.413451,295.644109,296.456807,297.455265,298.430503,303.120934,305.466149,306.859347,308.972363,310.644199,311.526558,312.153496,313.430594,314.777351,315.155609,315.721660,316.812997,317.506512,319.503428,320.617986,321.616444,322.568462,323.265061,323.868780,325.099437,325.935356,326.748054,327.653632,328.234131,330.254267,330.788326,331.856444,332.715583,334.526739,335.478757,336.361115,336.825514 diff --git a/data/torah/labels/metzora-1.txt b/data/torah/labels/metzora-1.txt deleted file mode 100644 index 707e54a6b..000000000 --- a/data/torah/labels/metzora-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.097613,3.128447,3.383866,4.057245,5.287903,6.309581,7.424139,8.654796,10.256973,11.208991,12.811168,14.018606,14.366905,15.783322,17.362279,18.685817,19.086498,19.968856,21.315613,22.778470,24.148448,26.818743,27.793981,28.500163,29.668674,29.909780,31.762486,33.140013,34.695750,36.739106,39.084321,39.724645,40.653443,41.419398,42.673579,44.168241,45.050599,45.793638,46.536676,48.185293,49.857130,51.227107,52.357459,52.612879,53.820316,54.911654,55.378141,55.918947,56.605818,56.838018,57.348857,58.834934,59.569280,60.660618,61.984156,63.191593,64.422251,65.149261,65.679001,67.675917,68.164571,68.814730,69.743528,70.207927,71.577905,72.712648,74.547024,76.892240,78.091485,80.158061,81.388718,82.851576,84.500192,85.428991,86.087376,87.775115,90.443786,91.883423,94.275078,94.652969,95.691496,96.430357,97.823554,100.238430,102.560425,102.901317,103.564165,104.957363,105.325062,105.785410,107.062508,109.779242,110.963460,111.301942,113.243477,114.282431,114.561071,114.955810,116.859846,118.044064,119.181842,120.435719,121.712817,122.757715,122.951148,124.511989,126.823455,127.589713,128.936471,129.540189,131.003047,133.650121,134.332798,136.469034,137.397832,137.696657,137.950452,139.980815,140.475716,141.531144,141.809783,143.319080,144.387198,145.687516,146.894953,147.637992,147.900853,148.922531,150.424387,151.718849,151.985334,154.085660,156.160267,156.504247,158.733363,159.871141,161.659077,162.909349,165.277784,166.276243,166.636624,167.704742,169.121160,170.626601,172.415858,172.860000,174.190552,175.583749,176.651867,178.718443,179.693681,180.808239,182.154996,183.339214,184.407332,185.127150,186.334588,189.237082,190.258760,192.673635,194.461572,195.130540,196.342388,197.596266,199.106239,200.499436,201.544334,202.217713,203.541250,204.877102,206.641819,207.122370,208.006888,210.119903,211.280901,213.184937,214.578135,215.028094,215.667723,217.014480,218.361238,219.986634,221.472711,222.192530 diff --git a/data/torah/labels/metzora-2.txt b/data/torah/labels/metzora-2.txt deleted file mode 100644 index fc00137f3..000000000 --- a/data/torah/labels/metzora-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.385211,2.627359,4.810035,7.224910,8.571667,10.382824,10.610195,13.006989,13.533114,14.731946,15.753624,17.077162,20.676255,23.810949,24.948726,25.645325,27.131402,28.013760,29.151538,30.149996,31.589633,34.352808,35.095847,37.348182,38.741379,39.972037,40.497040,42.294033,43.058298,44.288955,45.589273,46.393021,47.052130,47.948758,49.434835,50.054985,50.664713,51.500631,53.102808,54.565665,55.587343,56.446481,57.886119,59.999134,60.460576,60.745224,61.859782,63.438739,64.762276,65.900054,66.212862,67.513179,69.115356,69.580082,72.005869,72.956053,73.204502,73.956345,75.442422,76.935889,77.237748,78.793485,81.138700,81.997839,82.949857,83.623236,85.178973,86.363190,88.476206,89.397472,89.675149,91.735807,92.746283,94.209140,94.696759,96.275716,97.111635,98.504832,100.014129,100.563022,101.268007,102.336125,103.607577,104.231285,104.856444,105.599483,107.008058,107.782159,108.104152,109.594841,112.795437,113.958667,115.258984,115.601439,116.434471,118.042076,118.828958,119.363017,120.013176,121.406373,122.915670,124.773267,125.980704,126.677303,128.093720,129.510138,130.555035,130.800617,133.065879,134.112265,134.298025,135.435803,137.061200,138.361517,139.011676,139.262467,140.680082,143.168048,145.164964,145.722117,146.496691,146.847441,147.819121,149.212318,150.598635,152.479451,153.710109 diff --git a/data/torah/labels/metzora-3.txt b/data/torah/labels/metzora-3.txt deleted file mode 100644 index ebba6077f..000000000 --- a/data/torah/labels/metzora-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.890538,2.587774,4.471594,5.022349,7.576544,9.782440,13.033233,13.845932,14.588970,16.748426,18.211283,19.418721,20.533279,22.010953,23.458993,24.712398,25.594756,27.498792,28.775890,29.357852,30.686441,31.767159,33.908765,34.618925,35.617383,36.662281,37.800059,38.589537,39.448676,40.540013,41.838211,42.767009,43.811907,45.122453,46.342882,47.453977,49.102594,50.913751,53.073206,54.700192,55.002820,56.187037,56.667490,57.271208,57.665948,58.455426,58.943745,60.579695,62.704678,64.864134,65.269416,65.859573,66.927691,67.345651,67.949369,69.203247,70.503564,71.989641,74.265197,75.658394,76.169233,77.887510,80.766784,81.022204,81.718802,83.831818,85.178576,86.548553,87.895310,89.381387,91.703383,92.189752,92.771501,93.420409,94.442087,95.858505,96.530918,97.228482,98.054350,99.517208,100.190586,100.840745,101.699883,103.278840,104.252470,105.250928,106.247464,107.502622,107.994525,108.342824,109.225182,111.082779,112.522416,113.636974,115.006951,116.725227,117.381834,119.582929,120.365627,120.643817,121.407260,122.850162,123.669511,124.575089,125.085667,126.572005,127.974470,129.715967,130.251301,132.433209,133.316523,133.681837,135.416934,136.041570,137.737008,138.565634,139.889171,141.212709,142.020220,142.753919,143.778987,145.125744,145.706243,146.402842,147.215540,148.492638,149.079589,150.071595,150.469459,151.792996,154.881250,155.383319,156.544317,157.626184,157.903800,158.726992,160.120190,161.269027,161.542547,162.128165,163.521363,164.855834,165.645312,166.156151,167.595789,169.197966,169.494252,170.721775,170.941819,172.323952,173.045558,173.370637,173.974356,175.321113,176.273131,177.062610,178.270047,179.042246,179.675710,181.185007,183.344463,183.722053,184.843391,186.631327,187.202163,188.041471,188.784510,189.015236,190.553380,192.498230,194.777103,195.304126,196.558003,197.156859,198.584403,200.012913,201.127471,201.792080,202.465458,203.162057,204.485594,206.621830,207.081424,207.735229,208.873007 diff --git a/data/torah/labels/metzora-4.txt b/data/torah/labels/metzora-4.txt deleted file mode 100644 index 14d917cfe..000000000 --- a/data/torah/labels/metzora-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.732175,4.001782,4.458486,5.193949,5.542248,6.331726,7.585604,8.537622,9.489640,9.864118,10.673858,11.927736,13.137073,14.994669,15.853807,16.573626,18.129363,19.758786,20.664364,21.848582,22.870260,23.551758,25.687138,26.919516,27.503990,28.335934,29.613031,30.596304,31.594762,32.709319,35.727914,36.679932,37.146230,38.444648,39.631342,41.419279,42.482939,42.770181,44.437390,46.109227,47.084465,48.315123,49.336801,49.716033,50.978224,52.023122,52.859040,53.240763,54.076682,55.237679,56.793416,58.558133,59.277951,60.392509,61.042668,61.242327,62.528745,64.059645,64.291845,66.126221,67.240779,68.216017,69.678874,70.932752,72.736105,74.547261,75.290300,76.742,77.756539,78.453138,78.847877,80.148195,82.586290,84.676086,85.154139,85.943617,86.245477,87.011735,88.205519,89.307528,89.490424,90.186039,90.905858,92.486213,93.551179,94.526417,95.292676,96.732313,99.170408,101.422744,102.514081,103.210680,104.059312,105.275,106.985026,108.411614,109.957180,110.208601,112.392964,113.111095,113.830914,114.829372,115.990370,117.016362,117.179970,118.115607,119.323172,119.737733,120.652896,122.139058,123.132440,125.080095,126.156772,126.946250,128.200128,130.940082,131.520581,132.844119,134.190876,135.282214,135.803927,137.011365,138.149143,138.565060,139.487265,140.926902,142.738059,144.038376,145.547673,146.940871,147.382050,148.125088,149.587946,150.876740,152.722639,153.790757,154.487356,154.803337,156.159193,157.144993,158.097011,159.072249,160.488666,161.764833,162.857102,163.669800,163.986254,165.402019,167.772056,168.499551,168.765438,169.672779,170.572993,172.238364,173.452268,174.752585,177.244502,179.845137,180.820375,181.609854,182.910171,184.373028,185.626906,187.159423,188.204321,189.063459,190.294117,191.641275,191.803815,193.777511,194.381230,195.611887,196.032602,197.417079,198.221710,198.606009,199.566340,200.889878,202.259855,202.524783,203.593884,204.894202,205.270272,206.145546,207.561963,209.140920,209.337663,210.448374,210.859740,211.625999,212.647677,213.622915,214.445080,214.700499,216.024036,217.951293,219.181950,220.273288,220.526878,221.618216,223.638352,224.799350,225.821028,226.169327,227.516085,228.402554,228.774074,230.445910,232.558926,234.091443,236.924278,237.376738,238.328756,239.118234,240.464992,241.672429,242.554788,242.791954,244.051281,245.143848,246.351285,246.629925,247.674823,248.071741,249.042106,250.226324,253.453897,254.452355,254.712539,255.533059,256.276097,257.692515,258.992832,259.921630,260.688475,261.477367,262.963444,264.351991,264.584190,265.675528,266.813306,267.271112,267.619411,268.246350,268.541668,269.075481,270.802199,272.807471,273.062890,273.464799,276.394861,276.926751,279.109063,281.099386,282.051404,283.862560,286.091676,287.043694,289.249590,290.482113,292.337844,293.509191,294.760323,296.548259,297.708283,298.938941,299.937399,300.156091,301.084889,301.735047,303.221125,304.382581,304.614780,306.379497,307.447615,308.817592,309.885710,311.232467,312.439905,314.297501,315.179859,317.223215,318.500313,319.382671,320.706209,323.097864,323.435802,325.063411,327.199647,327.849806,328.290985,329.034023,329.356985,330.102141,331.616854,332.618923,332.874342,334.058560 diff --git a/data/torah/labels/metzora-5.txt b/data/torah/labels/metzora-5.txt deleted file mode 100644 index fdd244362..000000000 --- a/data/torah/labels/metzora-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.408775,3.666352,4.358181,4.850570,6.127667,7.731435,9.171073,10.030211,11.702048,13.164905,14.442002,16.810438,19.248533,19.956132,21.047470,21.784860,23.010166,23.755410,24.553683,26.271960,28.322785,29.739202,30.096231,30.785533,31.069417,31.946396,33.130614,34.593471,34.918550,35.777689,37.054786,38.424764,39.701861,40.607439,42.348936,43.115194,44.206532,45.204990,46.853607,47.968165,48.623033,49.547122,52.077665,52.774263,53.888821,55.165919,55.887938,58.233154,58.645036,60.624809,61.032294,61.937872,63.145310,64.561727,65.815605,67.046262,67.836262,70.042158,71.063836,72.201614,74.059210,75.127328,76.265106,77.142788,79.255804,79.929182,80.579341,81.415259,82.901336,85.809098,86.621797,87.411275,89.106332,91.172908,93.309144,94.377262,95.236400,95.936805,96.192225,97.585422,99.559118,99.822625,101.146163,102.005301,102.771560,103.561038,104.745256,106.765392,108.971288,110.039406,110.921764,111.601327,111.928482,113.383079,115.065093,116.086771,116.945909,119.000703,121.019611,122.014607,122.873745,123.640004,123.872203,125.218961,126.131375,126.688654,127.524572,128.662350,130.589606,132.749062,133.631420,134.468921,135.184905,135.417105,136.626855,137.454225,139.377163,140.646536,141.631360,143.535397,144.510635,145.973492,147.111270,149.317165,150.803242,151.615941,152.939478,154.146916,155.234955,155.490375,156.860352,158.544697,159.577087,161.572742,163.523218,164.521676,165.404034,166.049842,166.305262,167.721679,169.351013,170.419131,170.942296,171.592455,172.810786,173.914450,174.139852,175.076770,176.291741,178.233963,180.238887,181.206117,182.100634,182.877953,183.179813,184.554756,185.482009,187.223505,187.850444,188.317901,188.683240,189.537293,190.907270,191.952168,192.382556,193.277162,194.540490,196.136274,196.852630,197.874308,198.919206,200.289184,201.594578,202.936258,204.061882,205.896258,207.568095,208.715156,210.014753,212.049561,214.069697,215.114595,215.973733,217.808109,219.087748,221.195678,221.983127,222.587591,223.772553,224.979991,225.561550,226.554922,227.321181,228.458959,230.664854,231.817960,233.907756,234.522494,235.242313,236.296820,237.336497,238.594874,238.919954,240.406031,241.938548,242.820906,244.144443,245.630520,246.745078,248.091836,249.229613,250.489620,251.855707,253.889770,254.660631,256.425348 diff --git a/data/torah/labels/metzora-6.txt b/data/torah/labels/metzora-6.txt deleted file mode 100644 index 90f414af2..000000000 --- a/data/torah/labels/metzora-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.616892,5.049589,5.862287,6.814305,7.616574,8.871191,10.279587,12.230063,12.755278,13.016657,14.131823,14.746984,15.044955,16.540041,17.583484,18.517995,19.054504,20.021605,20.862389,21.489328,22.302026,22.875860,24.159623,25.260841,26.119979,26.888926,27.167565,28.777790,31.440037,32.740354,34.063892,35.573189,36.710967,37.549657,38.800763,40.477098,41.695123,42.794595,43.201633,44.687711,46.707847,46.954061,48.147484,49.562620,51.375058,52.234196,53.279094,54.625851,55.949389,56.831747,58.039184,59.711021,60.447274,61.422512,62.072670,62.727712,62.983131,64.213789,66.512565,67.696782,68.718460,70.483177,71.922814,73.130252,75.083632,75.705713,76.450705,77.356283,78.819141,79.874028,80.965366,82.405003,84.425139,86.375616,87.466953,88.326092,89.146526,89.378726,90.542157,92.211560,93.418998,94.237459,94.906827,95.464106,96.323244,97.391362,99.225738,101.454854,102.476532,103.498210,104.098117,104.376756,105.769954,106.859977,107.254716,109.019433,110.900249,112.502426,112.799840,114.912855,115.563014,116.143513,116.590562,117.539662,118.6,119.282762,120.250709,120.575789,122.001100,125.591299,127.773975,129.051072,130.537149,132.650165,133.973702,135.390120,136.667217,137.804995,138.780233,139.801911,140.429873,142.495426,143.173617,143.823776,144.729354,146.331531,150.580783,151.008903,152.949218,153.763834,155.554441,156.408985,158.387276,159.873353,160.183293,161.610421,162.373646,162.99,163.535252,163.722360,164.882010,165.640879,167.389765,168.186708,170.147047,172.227621,174.338204,175.463357,176.378314,177.894311,178.756860,180.810063,182.220364,183.195602,184.217280,184.491508,185.600353,186.761351,187.945569,189.199446,189.943867,190.615863,191.445027,192.606024,193.404520,194.649380,195.763938,197.273235,198.503893,199.618451,200.965208,202.304397,203.209975,203.860134,204.928252,206.948388,208.759545,209.827662,210.756461,211.406619,211.685259,212.799817,213.896606,214.936052,216,217.415593,219.064209,219.853688,220.945026,222.036364 diff --git a/data/torah/labels/metzora-7.txt b/data/torah/labels/metzora-7.txt deleted file mode 100644 index ceebcfb4f..000000000 --- a/data/torah/labels/metzora-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.753279,5.036485,5.853303,6.666001,7.896659,9.173756,9.908818,10.952880,11.951339,12.926577,14.551973,15.550431,15.743679,17.082948,17.489661,18.288037,18.750647,19.914635,21.490074,22.767171,23.205139,24.536138,25.790015,26.271799,27.282673,28.420451,29.976188,31.044305,32.135643,33.180541,34.666618,35.757956,37.522673,39.426709,39.635272,40.020879,40.972897,42.389314,43.573532,44.757750,46.313487,47.656341,48.059260,49.055211,49.798250,51.632626,52.446598,53.256731,54.371289,55.718046,56.809384,58.550881,59.132066,60.176128,60.960123,62.042035,64.002303,65.511600,66.858358,67.108366,68.274775,69.501281,71.103458,73.773753,74.423912,75.817109,76.144193 diff --git a/data/torah/labels/metzora-h.txt b/data/torah/labels/metzora-h.txt deleted file mode 100644 index 8378433e9..000000000 --- a/data/torah/labels/metzora-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.505774,5.758629,6.496995,7.983072,8.749330,10.281847,11.789327,13.004170,13.268789,14.436088,16.084704,18.035181,19.159729,19.871682,20.331616,21.836386,22.391870,24.111942,25.078144,26.773201,28.305718,29.141636,30.884903,31.951251,32.308809,33.197176,33.959532,35.939529,37.982885,39.190323,40.513860,40.820744,42.118641,43.240124,43.599251,44.979138,46.434463,47.159017,48.485351,50.157188,52.480098,53.687536,54.825313,55.166914,55.946691,57.409548,59.569004,59.917468,60.799662,62.355399,63.469956,64.363201,64.586116,65.454539,66.841768,69.303084,71.462539,71.869459,72.939204,74.634261,75.410323,76.223084,77.281563,78.232934,79.121593,79.818191,81.373928,84.160323,84.697216,85.012239,86.933883,87.955561,88.613563,90.494379,91.237418,93.141454,93.492672,94.835111,96.924907,97.367461,97.950296,98.879094,99.482813,100.899230,104.521543,105.357462,106.982859,108.608255,108.985527,111.102485,111.593922,112.655739,113.027258,115.140274,116.556691,117.230070,118.483948,119.946805,120.411204,121.850841,124.172837,125.751077,127.483707,127.823932,128.452853,130.457528,132.549284,132.864308,133.557860,134.347339,135.763756,137.180173,138.088608,139.760444,140.782122,141.710920,142.848698,144.474095,146.610331,148.793007,149.861125,150.083492,151.030336,152.075234,153.468431,154.420449,155.697547,157.648023,160.062898,160.724985,160.932901,162.570653,163.3,164.618676,165.775710,167.633306,168.492444,169.421242,169.863149,171.558206,172.324465,173.369363,175.296619,177.711494,178.195270,178.378902,179.543863,180.423593,182.167718,183.372527,184.487085,186.228581,188.016518,188.453353,189.770151,192.287424,195.538218,195.824903,196.347842,198.074170,199.356504,200.238863,201.423080,202.235779,202.591607,203.883204,204.897579,205.906656,206.162076,208.073016,208.878811,209.452047,211.153946,212.073814,212.458143,213.730838,214.777802,216.124559,217.239117,218.689308,219.365586,220.503364,221.966221,223.823817,225.867173,226.413684,227.308350,228.788961,229.866842,231.422579,232.955096,234.030890,234.239869,235.354427,236.081797,236.956604,238.071162,239.727330,240.114661,240.671939,241.507858,243.249354,245.501690,245.890564,246.639468,248.125545,249.593112,249.807328,251.068614,252.558736,253.464314,254.694971,255.106023,256.034112,256.202305,257.040268,258.762508,260.102296,260.671466,261.693144,263.272101,264.967158,265.849516,267.614233,269.564709,270.603490,272.112787,273.200973,273.396287,276.382710,278.505968,279.047600,279.545546,280.843443,282.802889,283.420836,284.419294,285.603511,287.089589,287.780260,288.622106,290.535423,291.121637,291.562816,292.491614,293.072655,294.559565,296.034314,297.543611,299.656627,300.980164,301.486265,303.088441,304.133339,305.549757,307.035834,308.103952,309.822228,311.099326,311.865584,312.956922,314.721639,318.297512,318.570656,320.492299,321.534151,321.991811,323.637173,324.903838,325.995176,327.365154,327.992092,328.781571,329.524609,331.846605,333.239802,334.540120,336.002977,337.372954,339.337297,340.391548,342.263011,343.098930,343.818748,345.467365,346.400687,347.057208,348.583363,350.447322,352.095938,354.069634,355.346732,355.997158,357.320695,359.410491,360.095926,360.330170,361.959176,362.568047,363.543285,363.755728,364.681063,364.967316,366.283240,368.697695,370.717831,372.180688,374.015064,375.361822,376.244180,377.590937,378.891255,380.563092,381.677649,382.583228,383.419146,384.882003,387.180779,388.527536,389.642094,391.035291,391.467092,392.544588,394.428313,395.313008,397.170604,399.028200,399.8,400.467837,401.582395,402.580853,403.765071,404.833189,406.033778,407.875003,409.143811,411.256827,411.981422,412.367169,415.377375,417.392838,418.119290,419.926314,421.021784,422.020242,423.390219,424.574437,425.276978,426.925595,428.806411,429.828089,430.687227,431.894665,432.986003,433.522728,434.843599,436.266270,436.923793,438.170306,439.749263,440.770941,443.023277,444.161054 diff --git a/data/torah/labels/mishpatim-H.txt b/data/torah/labels/mishpatim-H.txt deleted file mode 100644 index 5748bd086..000000000 --- a/data/torah/labels/mishpatim-H.txt +++ /dev/null @@ -1 +0,0 @@ -2.316349,4.928294,5.577523,6.269380,6.537589,7.714689,8.713147,10.779723,14.284791,16.304927,17.373045,19.439621,21.924156,22.496011,22.706311,23.827977,25.546254,27.194871,28.158874,29.075687,30.468884,33.739370,34.621729,34.836663,36.874064,38.522681,38.824540,40.682137,41.750255,43.259552,45.488667,47.508803,48.204433,49.691479,51.032816,52.267186,53.641756,56.667326,57.088848,58.045800,58.378079,60.216633,60.895584,61.635384,64.452399,68.160191,68.890035,69.133861,71.202762,72.090253,72.279218,73.572751,74.896288,76.080506,76.616276,77.334384,79.276672,80.994948,83.409824,85.174540,85.787188,86.753497,89.679211,90.213270,91.583248,92.117525,93.644486,94.894095,96.046174,98.252783,100.538671,101.851876,103.898688,105.092124,105.433481,106.465183,106.658707,107.902844,108.923243,110.015859,111.802517,112.187466,113.016408,114.107746,115.351110,117.493733,120.493233,121.577821,122.699761,123.229743,126.438174,128.155032,129.032806,130.106072,131.476050,132.706707,133.787416,134.719137,136.135555,138.620090,139.502448,142.521042,146.004035,147.838412,148.282881,149.180321,151.223677,151.891509,152.962799,155.238354,157.049511,158.396268,159.743026,161.136223,162.041801,164.340577,164.991069,166.088287,167.282337,168.327235,169.279253,170.032175,170.208949,172.019358,174.178664,176.042490,178.729775,180.144865,180.358213,181.473718,182.741614,183.808353,184.686128,185.320076,187.484033,188.953085,189.751616,191.110947,193.885033,194.701287,195.463244,196.170340,197.834453,199.679028,201.629504,202.003881,203.278121,206.083003,207.127901,207.380248,208.446987,209.914295,210.192935,211.655792,212.445736,213.475902,214.481685,216.903502,218.946858,220.084635,221.617152,222.801370,224.217787,226.191484,230.185316,230.651977,231.232476,233.182952,234.738689,235.286152,236.877043,238.177360,239.825977,241.010195,241.962213,242.983891,244.005569,246.095365,247.355547,249.346158,250.414276,252.207688,252.875162,255.220502,255.785837,256.885438,257.379850,258.873286,259.260360,260.773992,262.271613,263.212087,264.744604,265.904623,266.755091,268.078628,270.005885,270.205107,272.885159,274.301576,274.551308,275.717993,277.064751,277.184631,278.228208,278.785487,280.132244,281.409342,282.523900,283.475918,286.122993,287.539410,288.431112,289.884625,291.277823,293.517936,293.980450,295.536187,296.849211,298.879860,300.226617,303.013012,304.777729,307.494463,308.841221,309.217293,311.139996,313.833511,314.831969,315.453147,317.014645,318.488783,319.475960,320.938817,322.448114,323.609112,324.700450,326.813465,328.089438,329.321221,331.109157,332.130835,333.291833,334.568930,335.637048,337.473697,338.637967,339,340.861538,341.558137,343.810472,345.180450,346.712967,348.152604,349.336822,350.358500,352.123216,355.118590,356.279588,357.649565,358.787343,360.064441,361.991697,363.617094,365.706890,366.290902,368.626658,371.487879,372.283055,372.977835,374.094211,375.905367,377.043145,378.768706,380.158066,381.876343,383.227677,384.699237,386.998013,388.112571,389.180689,389.972518,391.293705,393.626863,394.946572,396.305080,396.704130,397.342164,398.352747,399.513744,401.557101,403.619550,404.618008,405.616466,406.174767,407.659822,408.534632,409.324110,412.226605,413.434042,415.175539,417.613634,418.913952,420.098169,421.305607,422.013568,422.523311,423.592525,424.823183,427.005858,427.509556,428.164839,428.387330,429.765695 diff --git a/data/torah/labels/nasso-h.txt b/data/torah/labels/nasso-h.txt deleted file mode 100644 index 3118f89f8..000000000 --- a/data/torah/labels/nasso-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.221769,4.146712,6.062358,8.007029,9.545351,10.764399,11.459070,12.532993,13.426984,14.646032,15.226531,16.939002,17.615059,18.147576,19.192474,19.562451,21.536147,22.534605,24.972701,25.971159,26.598097,26.756011,27.847349,28.822587,30.355104,31.794741,32.536238,33.886232,35.613698,37.076556,38.280909,38.907848,39.903222,40.271658,41.571975,41.829027,42.711385,43.034923,44.288800,46.306890,47.071607,48.743443,49.553058,51.994345,53.317883,53.500559,54.707996,54.890672,56.074890,56.677067,58.395343,60.183280,60.740559,61.622917,62.155434,63.200332,65.870627,69.771579,70.421738,70.534754,71.440332,72.136930,74.203506,76.441964,79.135479,80.293393,82.589085,85.305819,86.350717,87.999334,90.298110,91.459107,94.082962,95.615479,96.219198,97.356976,98.053574,99.353892,100.468450,101.815207,101.928223,103.146600,104.130422,104.766703,105.566975,105.856486,106.367338,108.108835,111.150649,111.963347,112.613506,113.333324,114.315381,115.461851,118.317905,118.593461,119.777678,120.358177,123.257588,124.070286,125.228200,125.412417,126.921715,127.384572,128.031646,129.030105,130.353642,131.514640,131.768517,132.766975,133.367610,133.784027,135.479084,136.918721,138.590558,138.819674,139.980671,141.559628,143.275699,144.754730,145.398721,147.334196,147.829107,150.360082,151.137225,151.456136,152.228452,153.887307,156.386567,156.660581,157.775139,158.307656,160.025932,161.022848,162.276726,162.679266,164.072463,164.906839,166.578676,168.225751,169.479628,169.826386,173.002130,174.408031,175.333745,176.819822,177.864720,178.839958,179.606216,181.835332,183.763907,184.924905,185.946583,186.759281,187.780959,189.661775,190.613793,191.542592,192.561186,193.884723,195.022501,195.437376,195.994655,196.760914,198.850710,201.526013,202.173088,203.125106,203.914584,204.959482,206.886739,207.067872,207.950231,208.623609,210.643745,212.199482,214.289278,214.939437,215.752135,215.958031,217.002929,217.769188,219.115945,222.359029,223.264607,224.355945,224.913224,225.865242,226.561841,227.185695,227.742974,228.602113,230.575809,232.526285,233.199664,234.082022,234.383881,235.637759,237.507536,237.992317,238.613088,238.817442,240.001659,241.952135,243.597157,244.104912,246.008949,246.751987,248.586364,249.375842,251.790717,252.742735,254.182373,254.365048,255.433166,255.778382,256.747452,257.532305,258.693302,259.434799,259.688677,260.919334,262.358706,263.397701,264.250672,264.396160,265.012305,266.404540,267.066545,267.874618,269.198155,270.195071,271.425729,272.003144,273.257021,275.346817,275.902554,277.713711,277.896386,280.241602,280.775661,281.959878,282.408858,283.662735,284.916613,285.915071,287.122509,288.028087,288.907361,290.439878,291.693756,291.876432,292.755706,294.148903,294.706182,295.097838,296.165955,297.814572,300.159788,301.506545,301.898975,302.456254,303.570811,304.008907,305.518204,306.236480,306.583238,307.926911,310.597206,311.430040,312.289179,313.055437,314.657614,315.702512,316.236571,316.979610,318.024507,319.371265,321.066322,322.419632,324.114688,324.438226,324.922761,326.339178,326.569836,327.730833,329.006389,329.353146,330.189065,331.791242,333.439858,334.345437,335.111695,336.295913,337.573010,339.918226,340.545165,342.124121,342.981718,343.933736,345.257273,346.093192,346.602489,347.531287,348.227886,349.412103,350.503441,351.896638,352.941536,353.707795,353.864167,354.839405,356.579360,357.358044,358.193963,358.820901,359.935459,361.119677,362.187596,362.387523,362.941718,363.237409,364.514507,365.745165,366.813282,367.858180,368.160040,368.458815,369.596593,371.059450,373.265346,374.472784,374.585799,375.653917,376.139994,377.277772,377.810289,378.599768,380.666344,383.243759,384.166389,386.952784,388.601400,389.390879,390.458997,391.550335,392.572013,393.268611,394.197409,395.102988,397.030244,397.935822,399.166480,399.466797,399.838316,401.208294,403.612375,403.843033,405.027251,407.186706,408.603124,410.042761,410.714598,411.357047,411.479314,412.355505,414.049019,415.997954,416.880312,418.455709,420.219360,423.168294,424.213192,425.211650,426.349428,427.416004,428.368022,429.272058,430.316956,431.222534 diff --git a/data/torah/labels/nitzavim-7.txt b/data/torah/labels/nitzavim-7.txt deleted file mode 100644 index aa3908409..000000000 --- a/data/torah/labels/nitzavim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.972154,3.993832,5.410249,6.339048,7.058866,8.126984,8.730703,9.822041,10.472200,11.470658,12.213696,14.698231,17.205986,18.575964,21.849977,23.986213,26.726168,27.329887,28.165805,29.396463,31.300499,32.716916,35.967710,37.384127,38.823764,40.890340,42.655057,43.676735,45.743311,47.322268,48.669025,51.408980,52.546757,53.154189,53.548928,54.315187,57.008701,58.120175,58.883350,60.090788,60.949926,62.110924,65.083078,68.240992,69.773509,71.073826,73.477588,75.329654,76.328113,77.419450,78.092829,79.486026,81.181083,81.854462,83.015459,83.897818,84.733736,86.916412,88.309609,89.400947,90.207478,90.399405,91.693555,92.619269,93.501627,95.150244,97.286480,98.165754,101.021809,101.509428,102.298906,102.713781,104.571378,106.011015,107.172013,108.704530,110.097727,111.537364,113.302081,114.788158,116.042035,117.226253,118.224711,119.107069,121.150425,122.862331,123.280291,124.046549,125.323647,126.716844,127.970721,129.080653,130.032672,131.054350,131.611628,132.447547,133.863964,135.071402,136.394939,136.766458,138.972354,141.642649,142.803647,145.659701,148.144236,150.350132,152.021969,153.554486,154.251084 diff --git a/data/torah/labels/nitzavim-h.txt b/data/torah/labels/nitzavim-h.txt deleted file mode 100644 index 9fa8a7558..000000000 --- a/data/torah/labels/nitzavim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.438095,3.410249,6.684263,8.309660,9.563537,11.003175,11.699773,13.418050,14.156463,15.410340,16.405714,18.193651,20.190567,21.653424,23.394921,25.438277,27.783492,28.572971,30.755646,31.707664,32.845442,35.120998,36.630295,38.859410,39.927528,41.785125,42.830023,44.385760,47.590113,49.192290,50.678367,52.257324,53.766621,54.393560,56.692336,58.642812,59.943129,61.638186,63.356463,64.441633,65.649070,66.647528,67.994286,68.644444,69.596463,70.850340,72.429297,74.449433,75.355011,77.050068,78.492682,79.514360,80.837897,81.836355,83.415312,85.251449,86.621427,87.550225,89.105962,90.592039,92.867594,93.726733,94.841291,97.999204,102.410996,103.548774,104.570452,105.034851,106.637028,108.048819,109.233037,109.767096,111.322833,112.274851,114.712946,115.595304,117.708320,121.237753,122.839930,123.559749,124.697526,125.695984,126.973082,127.646461,130.409635,132.615531,133.242470,133.799749,136.191404,138.118660,138.629499,139.558297,142.012964,143.389590,145.240538,148.026933,150.697227,151.858225,152.833463,153.994461,155.550198,157.407794,158.757119,159.778797,159.961473,161.052811,162.004829,163.235486,164.976983,166.045101,167.136439,171.501790,173.684466,174.984783,175.960022,178.421337,179.582334,181.439931,183.343967,183.854806,185.224783,187.244919,187.593219,188.638117,189.334715,191.029772,193.073128,193.932266,194.814625,196.045282,198.535330,199.928528,202.552382,203.388301,205.334151,205.547757,207.632927,209.258324,211.301680,213.840012,215.999468,217.833844,218.901962,220.829219,221.595477,223.383414,223.987132,224.962371,225.821509,227.400466,230.442280,231.231758,232.090897,232.296792,233.318470,234.827767,235.686906,237.056883,239.959377,240.981055,242.722552,243.837110,245.903686,246.344865,247.854162,249.998265,251.543903,252.438047,254.040224,255.605660,256.650558,258.066975,259.320852,260.040671,261.015909,262.331737,263.214095,265.195538,266.952764,268.136725,269.772193,270.677771,271.117408,272.557045,273.996682,276.620537,278.060174,278.617453,279.894551,281.218088,282.727385,282.956501,284.465798,285.348156,286.346614,288.320311,289.341989,291.013825,292.221263,294.566478,296.818814,298.328111,300.371467,300.905526,302.020084,302.995322,304.109880,305.804936,307.314233,308.800311,309.752329,310.286388,313.003122,313.766297,314.439676,314.945889,317.801943,318.939721,320.147159,321.586796,322.913649,323.679908,325.978683,327.882720,328.413695,329.899772,331.710928,332.407527,333.684624,333.927504,336.746574,338.139404,339.274097,340.992374,342.548111,343.476909,345.102306,346.518723,347.308202,350.257136,351.766433,352.648791,353.693689,354.901127,356.456864,357.780401,359.870197,361.820673,363.213871,364.413326,364.676728,366.294142,367.009335,368.469108,370.675004,372.199156,372.667003,373.616,375.795529,376.744464,377.975121,379.623738,380.854396,381.922514,383.129951,385.057207,385.916346,386.961244,388.865280,389.561879,390.490677,391.814214,392.739929,395.247684,396.548001,397.639339,398.730677,400.611493,402.678069,403.743103,404.718341,406.761697,408.380080,409.726837,410.911055,412.698533,414.300710,416.297626,417.014361,417.381254,418.495812,420.748148,421.978805,422.861164,424.022161,425.345699,426.553137,427.389055,428.759032,429.966470,432.938624,434.510741,434.739856,436.156273,437.317271,438.571149,439.314187,440.800264,442.054142,442.913280,445.235276,445.719811,446.904029,447.786387,450.340582,451.826659,452.848337,454.009335,455.472192,456.726069,457.515548,459.164165,460.839477,462.209455,462.664602,462.951034 diff --git a/data/torah/labels/noach-1.txt b/data/torah/labels/noach-1.txt deleted file mode 100644 index 303474aeb..000000000 --- a/data/torah/labels/noach-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.749466,2.608604,3.374863,4.884160,5.696858,6.950736,7.740214,8.297493,9.458491,9.922890,10.735589,11.455407,12.384205,13.283050,13.686613,14.310301,14.823926,15.455991,15.667739,15.849588,16.253151,16.472746,17.371590,18.645687,19.269375,19.571253,20.616848,21.467979,22.128354,23.779293,25.742076,26.842702,27.337983,27.833265,28.420265,29.227391,29.924454,31.281892,31.648768,32.547612,33.226331,33.868363,34.161334,35.316991,36.930712,37.976307,39.718965,40.250934,40.553341,41.232060,41.616750,42.497250,43.001439,43.477317,44.834756,45.678569,46.760851,47.530760,48.392916,48.759792,49.860418,52.098357,52.722045,53.749296,53.913860,54.665954,55.528111,55.930085,56.112349,57.041147,58.260742,59.508118,60.194685,60.873404,62.671093,64.688907,65.532721,66.248127,67.036909,68.706192,69.843505,71.200944,72.063101,73.145383,74.135946,74.759634,75.585103,77.988136,78.483418,79.529013,81.033201,81.950389,83.692010,84.260666,84.921042,85.764855,86.700387,87.305731,88.149544,88.552577,89.414734,91.524267,92.349737,93.211894,94.550988,96.673970,98.448426,99,99.494431,100.026400,100.705119,100.832996,101.621778,102.116530,102.354469,103.913689,104.592408,104.720285,105.444069,106.072639,106.806390,107.778609,108.530174,108.648614,109.308989,110.721459,111.775431,112.105619,112.765994,113.756558,114.471435,114.893341,115.663779,116.966586,118.754939,119.727158,120.204096,120.882815,122.331973,123.909536,125.432069,126.239194,127.596633,129.082478,130.494948,131.026917,131.412136,131.980793,132.718644,133.369492,134.048211,134.855336,136.561306,138.211716,139.880998,140.486342,141.165062,141.898812,143.705569,144.384288,145.081351,146.108602,147.429353,148.841823,149.685636,150.401043,151.795169,154.326608,154.785203,156.216016,156.747985,157.591798,158.215486,159.059300,160.159925,160.912020,161.774177,162.719613,163.435019,164.517301,165.654085,166.406179,168.148837,168.827556,169.340652,170.918216,172.165592,172.972717 diff --git a/data/torah/labels/pekudei-1.txt b/data/torah/labels/pekudei-1.txt deleted file mode 100644 index 56df0754b..000000000 --- a/data/torah/labels/pekudei-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.567164,2.728162,4.098139,5.468117,6.861314,7.813332,8.718910,8.941202,9.592065,10.660183,11.774741,12.842859,13.502646,14.756523,15.265589,15.985408,17.541145,19.956020,20.427041,21.007540,21.257423,21.889898,22.911576,24.165454,26.768269,28.324006,28.768696,29.302755,29.952913,30.757069,31.105368,32.498566,34.704461,36.910357,37.249818,39.742139,40.648770,41.182829,42.134847,43.551264,45.687500,47.196797,49.820652,50.888770,51.910448,53.628724,54.634463,56.468839,57.703668,59.166525,60.106481,61.045785,62.253223,64.505558,65.589587,67.719297,68.810635,69.971633,71.109410,72.154308,73.477846,75.590862,76.473220,77.239478,78.632735,80.917363,81.793534,82.977752,83.790450,84.626368,86.971584,87.792259,89.316799,91.252032,93.179289,94.084867,94.897565,96.406862,97.405320,98.903615,99.924589,100.946267,101.921505,103.221822,103.997831,105.971527,106.416755,108.622651,109.853309,110.851767,111.734125,112.871903,113.753817,114.218216,114.854471,116.286052,117.679249,118.724147,119.257572,120.960658,123.263631,124.378188,125.632066,126.723404,128.859640,129.741998,131.019095,132.156873,132.853472,133.828710,135.338007,137.056284,139.029980,139.796828,140.841725,141.561544,143.070841,143.983475,145.323124,146.530562,147.784439,149.363396,150.826253,151.847931,152.753510,154.169927,155.335451,156.473229,157.448467,159.143524,160.583161,161.674499,162.533637,163.694635,164.878853,165.671815,166.318490,167.645511,170.176486,171.825103,172.502939,173.617497,174.615955,175.684072,176.659311,177.820308,178.795546,180.235184,180.932138,181.546823,182.475622,182.986461,183.845599,184.704737,185.077030,185.703968,187.863424,188.897181,189.772187,190.979625,192.140623,192.723763,193.606121,194.465260,195.719137,196.973015,197.317403,198.803480,200.916496,201.483403,201.800670,202.497269,203.472507,204.587065,205.322821,206.571893,208.132435,209.595292,210.965270,212.010168,212.485794,213.553912,214.622030,216.038447,218.430102,218.825805,219.606646,220.651544,221.742882,223.252179,225.295535,226.154673,227.501430,228.360569 diff --git a/data/torah/labels/pekudei-2.txt b/data/torah/labels/pekudei-2.txt deleted file mode 100644 index e982793d4..000000000 --- a/data/torah/labels/pekudei-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.841828,2.166908,3.304685,5.185502,6.748076,8.744992,9.882770,10.811568,11.531386,12.947804,15.641318,16.105717,17.080955,18.845672,19.890570,22.073246,24.139822,25.022180,26.252838,27.529935,29.178552,31.105808,31.941726,33.125944,33.868983,34.728121,35.889119,37.142996,38.257554,38.923372,39.534652,40.920288,41.275653,42.026435,43.048113,44.371650,45.400351,47.397267,48.348383,49.857850,51.251047,52.783564,55.407419,57.381116,59.006512,61.096308,62.168840,63.000345,63.836263,64.788281,66.742546,67.578464,68.298378,68.623457,69.830895,71.642051,71.996429,73.110987,74.295205,75.595522,76.733300,77.754978,79.635795,81.052212,82.282869,82.613211,83.480072,83.967691,85.384108,86.637084,88.170502,89.043824,90.297701,91.481919,92.364277,93.385955,94.430853,95.731170,97.681647,98.378245,99.119025,99.490545,100.837302,102.787778,103.073058,105.054477,106.052935,106.842413,108.049851,109.117969,110.975565,112.624182,114.504998,115.596336,116.228028,116.754227,118.127311,121.057800,122.752857,123.751315,124.492604,124.748023,125.909021,127.696957,129.252694,130.135053,130.899689,132.178409,133.631592,134.653270,136.023248,137.291456,138.345243,139.923225,140.852023,142.013020,143.266898,144.162994,145.867533,147.005311,148.259188,149.672605,150.725267,152.234564,153.372342,154.951299,156.019417,156.971435,158.689712,159.781050,161.127807,162.172705,163.008623,164.854988,167.362170,168.383869,169.343154,171.588223,174.699697,175.108216,176.106674,176.539696,177.538345,178.977982,179.744241,180.835579,180.996909,182.459724,183.643942,184.828160,185.919497,186.088657,187.280512,188.511169,189.347088,190.647405,192.798163,193.184766,195.158463,196.273020,197.294698,198.386036,199.198735,200.220413,201.706490,204.028485,205.491342,207.093519,208.184857,209.136875,210.204993,211.203451,213.455787,213.946367,214.851945,216.221923,216.608187,217.413131,218.040070,219.410047,221.848142,222.891853,224.401150,225.840787,226.296435,227.225244,228.479122,228.989462,229.755721,231.079258,232.217036,233.447693,234.251323,235.373550,236.906067,238.306149,238.538295,239.536775,240.999632,243.414507,243.970524,244.775585,246.006243,246.354542,246.709853,248.071779,250.285419,251.608956,252.909274,254.070271,256.485147,256.831442,257.682815,258.588394,259.679731,260.158875,262.512566,264.439822,264.801806,265.513860,266.465878,267.696536,270.506150,271.247852,271.990891,273.918147,277.540460,277.802011,279.583816,280.843380,281.903267,283.195809,284.472906,285.633904,286.841342,288.304199,290.788734,291.856852,293.273269,294.686802,294.980855,298.216151,300.747126,301.124999,301.914435,303.957791,304.754335,306.449391,307.819369,308.282983,309.467201,310.697858,311.587260,312.794698,314.071795,315.116693,316.417011,318.344267,319.000282,320.331351,320.911850 diff --git a/data/torah/labels/pekudei-3.txt b/data/torah/labels/pekudei-3.txt deleted file mode 100644 index 9f8cb491d..000000000 --- a/data/torah/labels/pekudei-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.935654,3.260733,3.874650,4.942768,6.150205,7.171883,8.054242,9.215239,10.021773,11.043451,12.343768,13.202906,14.410344,15.710662,17.298535,18.410266,18.750168,20.259465,21.842622,22.130859,23.282259,24.466477,26.605714,27.697052,28.811610,29.856508,30.831746,32.735782,34.122731,35.263508,36.192306,37.167544,38.531012,38.879311,41.015547,41.833646,43.830562,44.306187,45.180148,46.132167,47.177065,48.105863,49.708040,50.915477,51.937155,53.005273,54.468130,54.919513,55.612170,56.587408,57.562646,60.047181,61.927998,62.880016,63.599834,63.878474,65.271671,67.697008,68.186169,69.379298,70.191997,71.213675,72.467552,73.804117,75.416486,76.751767,78.400384,79.398842,80.059457,80.800611,82.088076,83.063314,83.587350,84.224742,85.090821,85.648100,86.855538,87.737812,89.600378,90.250537,91.783054,93.292351,95.242827,96.181912,96.855291,97.784089,98.782547,100.640144,101.306757,101.775269,102.279254,103.642978,105.785467,106.148078,106.671770,107.159389,108.018527,109.063425,110.247643,111.410272,113.086478,114.293915,115.705366,116.894811,117.799019,119.162743,120.481997,121.446867,122.584645,123.675983,124.604781,124.825159,125.947600,127.178257,129.244833,130.011092,130.620984,130.932268,132.221876,134.698184,135.127200,137.138939,138.160617,139.042976,139.971774,141.481071,142.642069,144.058486,146.659121,147.495039,149.073996,150.722613,151.195419,152.227465,152.831184 diff --git a/data/torah/labels/pekudei-4.txt b/data/torah/labels/pekudei-4.txt deleted file mode 100644 index cf2f46736..000000000 --- a/data/torah/labels/pekudei-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.200827,2.544057,3.681835,3.901342,4.980814,5.514873,6.432747,6.819903,7.166434,8.211332,9.813509,11.160267,12.460584,13.342942,14.898679,15.828727,17.592194,18.598382,19.626621,21.368118,21.904099,22.743043,23.509301,24.948938,25.808077,26.713769,28.187940,28.813346,29.498314,30.678996,31.073735,32.234733,33.233191,34.835368,35.260984,36.421470,36.744271,36.973405,38.091028,39.019826,39.607041,40.791259,41.351247,42.185121,44.119725,44.493167,46.571965,48.452781,49.946434,50.364393,50.598320,51.789099,52.671458,53.182297,54.505834,55.782932,56.943929,58.267467,59.335585,60.217943,61.471820,62.330959,63.306197,64.467195,66.626650,67.439349,68.079906,69.445689,71.256845,72.278523,74.136119,74.704296,75.586654,76.538672,77.142391,77.862210,78.373092,79.185747,79.581527,79.934744,81.026082,81.604341,82.641955,83.040451,84.149697,85.937633,86.680672,88.539702,88.995054,90.022439,90.324298,92.506974,93.075709,94.315124,95.708321,97.310498,97.804365,99.106944,100.790424,102.585562,103.005887,104.748484,105.603389,106.810827,107.530645,108.923842,109.748600,110.387844,111.482440,112.640968,113.941285,114.398445,115.141483,116.279261,117.626018,119.135315,119.634993,120.242156,120.915535,122.587372,124.909367,125.489866,126.071219,126.865117,127.148302,128.199114,128.892953,129.914631,130.982749,132.236626,133.026105,133.278041,134.985611,135.989485,137.568442,137.971670,138.260643,140.309311,141.470309,142.538427,143.583325,146.021420,146.810898,147.597019,148.340058,149.384956,150.344986,151.474752 diff --git a/data/torah/labels/pekudei-5.txt b/data/torah/labels/pekudei-5.txt deleted file mode 100644 index 2930b9bcd..000000000 --- a/data/torah/labels/pekudei-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.031709,3.077055,3.355695,4.005853,5.190071,5.890403,6.842422,7.933759,8.978657,10.232535,12.740290,13.111809,13.947728,14.455657,15.788,17.466561,18.488239,19.138398,20.067196,21.112094,22.783931,23.159036,24.436133,24.830872,26.549149,28.708605,28.947749,30.533500,32.112457,32.414317,33.598534,35.572231,35.804430,37.104748,39.055224,39.403523,40.773500,43.768875,44.210054,45.208512,46.485609,47.762707,48.784385,49.898943,51.152820,53.799895,54.241074,54.937673,55.796811,57.422208,60.417582,61.207060,62.275178,63.598716,66.083251,67.035269,67.871187,68.395475,69.811892,71.675537,71.954176,73.184834,73.562625,74.200465,75.020032,75.825638,77.242055,78.525574,79.245393,80.313510,81.606960,81.833411,83.070862,83.976441,86.553856,86.943444,87.807733,88.261756,89.863933,91.561603,91.928120,92.856918,94.064356,95.578582,95.986536,97.077874,97.487173,97.765812,98.382896,99.242034,100.960311,102.725027,103.239078,103.581479,104.579937,105.415855,106.646513,109.409688,109.781207,110.570685,111.615583,112.101935,112.390579,113.528357,115.385953,115.687813,117.081010,118.127179,119.334616,120.124095,121.935251,123.699968,123.861389,125.077935,125.495895,126.540793,128.026870,129.420067,131.068684,131.503668,132.717300,133.061271,134.201886,134.689506,135.386104,136.105923,137.266921,138.660118,139.565696,141.074993,142.653950,142.932589,144.975945,145.765424,146.763882,147.948100,149.573496,151.175673,152.645404,153.382992,154.491652,155.675869,156.560393,157.280212,158.394770,159.741527,160.531006,162.365382,163.804200,165.452817,166.544154,167.844472,168.029934,169.319351,171.153727,172.036085,174.892140,175.681618,177.330235,179.768330,180.836448,181.811686,183.738943,185.201800,186.177038,188.870553,189.776131,191.122888,193.003704,194.373682,194.954181 diff --git a/data/torah/labels/pekudei-6.txt b/data/torah/labels/pekudei-6.txt deleted file mode 100644 index 6c0e26ac3..000000000 --- a/data/torah/labels/pekudei-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.343295,4.882712,6.995728,7.919249,9.010587,10.101925,11.495122,12.513848,13.953485,15.104885,16.733212,17.220831,19.008768,20.192986,20.548137,21.941334,23.146804,23.451367,24.875036,25.982445,26.330744,27.584622,28.629520,28.868241,30.299237,31.785314,32.240191,33.174548,33.546067,34.846385,36.936181,37.400580,38.491918,40.233414,41.138992,42.416090,44.482666,45.318584,46.024442,46.349521,47.765938,50.157594,51.225712,51.550948,52.758386,53.083465,55.242921,56.380699,56.585261,57.467619,57.720665,59.020983,60.843511,61.168591,62.979747,63.486926,64.292372,66.103529,67.011157,67.301217,69.491172,69.988822,72.241157,74.354173,75.236531,76.488874,77.946426,81.111180,81.761339,82.565635,84.034051,86.239947,87.052645,87.818904,88.142042,89.527080,90.917270,91.158668,92.424118,93.724435,94.908653,96.394730,97.253869,98.136227,99.294857,100.230679,101.809636,103.295713,105.130090,106.082720,106.825758,107.847436,108.985214,111.167890,112.073468,112.798067,113.030267,114.488343,116.559700,116.848576,118.032794,119.309892,120.610209,121.515787,122.839325,124.511161,125.207760,126.391978,127.854835,129.062272,130.083950,130.943089,132.196966,134.333202,135.053021,135.703179,136.030981,137.459527,139.665196,140.036715,140.710094,141.801432,142.799890,143.798348,144.373521,145.813158,146.953742,147.836101,148.695239,149.693697,151.411974,152.267100,153.704666,154.331605 diff --git a/data/torah/labels/pekudei-7.txt b/data/torah/labels/pekudei-7.txt deleted file mode 100644 index 58e7395fa..000000000 --- a/data/torah/labels/pekudei-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.472525,3.889455,4.672038,5.670496,7.388772,8.805189,10.082287,11.429044,13.588500,14.424419,15.353217,15.933705,16.746404,18.053192,19.562489,20.054142,21.233297,21.581596,22.974793,24.971709,25.854068,26.666766,26.945406,28.268943,29.746351,30.001770,31.348528,31.807178,32.457337,33.153936,33.896974,35.313391,36.613709,38.239106,39.028584,40.862961,43.138516,44.299514,45.209719,46.347497,47.485274,48.032535,48.938113,49.280226,51.097569,53.105143,53.480010,54.146930,55.725887,58.442622,58.909742,59.884980,61.452014,63.465704,64.153750,64.850089,65.079414,66.575889,67.868683,68.086156,70.148119,71.344473,72.784111,74.455947,77.056582,77.428101,78.287240,79.076718,80.469915,81.519594,82.471612,82.727031,84.422088,85.818894,86.747692,87.095991,87.769370,88.791048,90.277125,91.657359,92.649358,92.967636,94.483735,95.133042,95.845787,97.401524,98.547180,98.895480,99.893938,100.985275,101.477544,102.328390,103.117868,104.371746,105.973923,107.483220,108.504769,108.732343,110.293143,111.756000,112.870558,113.961896,115.447973,116.423211,117.282349,118.396907,119.139946,120.742123,121.528279,122.065660,123.153676,124.361113,125.707871,126.822428,127.414922,127.774447,129.736918,131.803494,132.758695,133.752788,134.073857,135.141975,136.256533,138.661840,139.330771,140.155866,140.922124,141.967022,142.192693,142.580796,143.950773,144.640843 diff --git a/data/torah/labels/pekudei-h.txt b/data/torah/labels/pekudei-h.txt deleted file mode 100644 index 434cf0e6a..000000000 --- a/data/torah/labels/pekudei-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.087021,2.375530,3.583606,4.807101,6.687917,7.547056,8.568734,9.127036,10.937169,11.875061,13.546898,14.014491,16.026303,16.890571,18.734563,19.197465,20.077873,20.472612,21.633610,21.935469,23.235787,25.186263,26.672340,27.040124,28.858712,29.820146,30.981143,32.420780,33.052829,33.953297,39.145098,39.713406,39.849800,40.482742,42.479658,43.362016,44.987413,46.427050,48.493626,48.806344,49.456015,50.384813,52.544269,54.796605,55.148668,56.334012,56.728752,58.725668,59.399046,60.188525,60.5,62.022901,64.762856,65.094069,65.746178,67.000056,67.418015,68.253933,69.554251,70.715249,71.783367,73.478423,74.198242,74.994005,76.562537,78.756208,79.474564,80.131515,81.609118,82.363035,83.686572,84.109676,85.567388,88.281095,88.578381,89.298199,90.250217,90.713422,91.625490,92.670388,93.259444,93.509500,93.966753,95.174191,95.691805,97.351266,98.993678,100.010951,101.516969,103.250310,104.370266,106.148684,106.721549,107.394928,108.555926,110.227762,111.156560,112.462592,113.152045,114.707782,115.991974,117.338732,118.592609,120.334106,120.720117,122.936520,123.573026,124.686911,126.250298,127.701570,130.232545,130.745081,131.648962,132.244289,133.567827,133.916243,135.939422,136.314505,136.748219,137.816337,138.187856,138.745135,140.324092,140.917805,141.679339,142.236617,143.885234,144.999792,146.114350,147.851170,149.385603,149.681124,150.541725,152.120682,154.187258,156.602133,157.069136,157.789930,158.194387,159.171878,160.660846,164.779136,166.683172,168.726528,169.887526,170.909204,171.145333,172.120572,172.436201,173.592810,174.684148,175.395156,176.440054,177.995790,179.676453,180.517550,181.358646,181.938321,183.427290,184.211556,185.530032,186.992889,188.035383,189.126721,190.497049,191.497272,192.406566,194.145590,195.256789,197.160825,198.391483,199.297061,200.225859,200.681139,201.851256,202.993046,204.200484,204.850643,206.127740,208.287196,208.853417,210.134416,210.342386,211.933835,212.979036,213.861394,214.229617,214.581968,216.048204,216.801634,218.310931,220.656146,221.386253,222.477591,223.207279,224.925556,225.232072,225.662860,226.020238,226.949037,227.277983,227.728090,229.121287,230.746684,231.187307,232.743044,234.325010,235.302500,236.473401,238.428198,239.445556,241.396032,241.940345,243.063343,244.201121,245.016862,246.247520,247.780037,249.289334,250.194912,250.442242,251.533395,253.702754,254.492232,254.794092,255.178371,256.780548,257.385847,257.873466,259.034464,260.427661,262.819316,263.608795,264.839452,266.232650,267.463307,268.647525,269.738863,270.876641,271.573239,272.362718,274.011334,274.972729,275.924747,277.387604,278.466196,280.091593,281.020391,282.343928,282.801735,283.359501,283.586001,286.451471,288.169747,288.598483,289.436990,290.853407,291.851865,293.012863,294.173861,295.683158,296.495856,297.285335,298.028373,299.468011,300.913596,302.213914,303.351692,303.658661,303.850760,305.383277,307.635612,308.027660,309.028809,309.762296,311.301673,312.880630,313.809428,314.476668,315.428686,316.177542,317.518482,318.820496,320.004714,320.399453,321.583671,322.814328,324.811244,325.925802,327.063580,327.323032,329.447867,330.423105,331.212584,332.954080,335.183196,335.615798,336.637476,336.892896,338.471852,340.120469,341.118927,341.621677,342.506624,344.155241,345.176919,345.421240,346.373259,347.673576,349.415073,349.803219,350.406938,351.149977,352.682494,354.451681,355.937759,356.295405,357.499917,358.242956,359.845133,365.325042,367.182638,368.204316,369.713613,372.244588,372.787721,373.637786,375.742926,377.175064,378.527000,379.943417,381.743963,382.835301,383.660945,384.543303,385.233680,386.725979,388.513916,389.442714,390.143867,391.439630,392.098209,392.957348,393.468187,395.140023,396.347461,397.276259,397.429583,398.681174,399.540312,400.376230,401.258589 diff --git "a/data/torah/labels/re\342\200\231eh-1.txt" "b/data/torah/labels/re\342\200\231eh-1.txt" deleted file mode 100644 index e6596988f..000000000 --- "a/data/torah/labels/re\342\200\231eh-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0.970501,3.510322,5.893131,7.004651,8.281748,9.117667,10.441204,11.996941,12.988190,14.179617,15.619254,18.219889,18.676975,19.752406,21.060554,22.569851,24.798966,26.888762,28.281960,29.489397,30.812935,33.947629,34.473422,35.155066,36.548263,37.353951,38.427696,39.820228,41.236645,43.117462,43.517663,44.591408,46.707925,48.855416,50.001433,51.281668,52.289344,54.518459,56.468936,57.606713,58.953471,60.160908,60.563371,62.101718,64.879002,66.081997,67.219775,68.729072,69.866849,70.583011,71.860109,72.581060,73.231502,73.675454,74.542710,75.854831,77.828527,78.249197,79.361044,79.766895,80.499932,81.738869,82.533571,83.694569,84.206419,84.588425,85.854024,86.918740,88.222460,89.492550,92.143230,93.745407,94.883184,96.137062,97.437379,99.202096,100.920373,102.290350,103.776427,105.030305,106.493162,107.863139,109.302776,110.626314,112.089171,113.273388,114.736246,114.973355,116.152663,117.731620,119.078377,119.371581,120.414353,121.075120,122.066269,123.511696,124.482196,125.328803,126.918773,128.528899,129.665083,130.618695,133.242549,134.566087,135.219651,135.673927,136.904284,137.480711,138.901200,141.037436,143.057572,144.098699,145.333127,146.912084,149.446777,150.613443,153.901290,154.670962,155.682760,157.964782,160.101018,162.840973,164.141290,165.929227,168.019023,169.969499,171.223377,172.454034,173.595725,174.659930,175.727506,176.354445,177.213583,177.601621,179.396259,180.510817,183.343651,183.847928,184.209285,185.912823,188.103742,189.113087,189.693586,192.503200,193.687418,195.753994,196.961432,198.145649,198.426087,199.695998,200.274168,201.513105,202.717729,203.722543,205.109384,206.456142,207.129620,207.387732,209.153217,211.052920,211.569144,214.363130,216.011747,216.318403,218.393622,220.252028,221.965890,223.000953,224.311551,225.774408,227.167605,229.675360,229.957034,230.929238,231.371487,232.345655,233.622753,234.757915,236.254964,237.008651,238.599087,240.457025,242.459974,243.007171,243.337554,245.031015,245.898024,246.682684,247.956563,249.419420,250.197864,251.787856,252.961039,253.228401,254.307796,255.329474,256.629792,258.092649,259.300086,260.739724,263.270699,265.523034,267.310971,268.982808,270.422445,273.324939,274.927116,275.763034,276.761492,278.851288,281.150064,282.636141,283.982898,285.956594,288.011558,289.857547,291.529384,292.620721,293.897819,296.730653,298.077411,299.400948,300.561946,302.001583,303.603760,304.685585,305.786436,306.977619,308.577912,310.866830,312.051048,314.187284,315.580481,317.739937,319.736853,320.688871,321.640889,322.639347,323.331587,324.287964,326.308100,327.283338,327.760787,328.815855,329.164916,330.063145,330.610342,331.993822,332.582115,333.789552,334.554292,335.442196,336.803733,337.662871,339.381147,343.305320,343.722425,345.813075,347.763551,348.947769,349.524781,350.691446,352.085250,352.717250,353.757815,356.130584,358.290039,359.492839,361.703373,363.624674,365.296511 diff --git "a/data/torah/labels/re\342\200\231eh-2.txt" "b/data/torah/labels/re\342\200\231eh-2.txt" deleted file mode 100644 index bfc462971..000000000 --- "a/data/torah/labels/re\342\200\231eh-2.txt" +++ /dev/null @@ -1 +0,0 @@ -1.125262,2.369871,5.086606,5.687273,7.962829,9.286366,10.772443,11.956661,13.233758,14.534076,15.486094,16.972171,18.226049,19.781786,20.348489,20.805627,21.861034,22.627292,23.579310,25.088607,28.083981,30.359537,31.882425,33.359332,34.742467,35.872314,37.219071,38.310409,39.424967,40.864604,43.650999,46.135534,47.133992,49.455987,52.149502,53.937439,56.236214,58.349230,59.904967,61.762563,62.853901,64.641838,65.523073,66.249805,68.008731,68.687873,70.387487,72.304423,74.314183,75.462337,75.971943,77.109721,78.642238,79.372287,80.440405,81.322763,82.971380,84.195391,84.819653,86.654030,87.315882,88.337560,89.707538,91.263275,92.888672,94.281869,95.117787,96.627084,98.043502,99.390259,101.317515,102.733932,103.802050,106.077606,108.446041,109.209029,109.828385,111.662762,114.015532,115.710589,118.148684,119.541881,121.956756,124.000112,125.114670,125.843495,126.865173,127.424209,128.579408,130.088705,131.621222,133.409159,135.057776,137.031472,137.914933,139.145689,139.637991,140.880468,141.232112,142.116642,143.416959,144.740497,145.533895,147.057688,148.223490,151.056324,152.449522,153.773059,155.491336,157.023853,158.161630,159.554828,161.110565,162.002575,163.319645,164.712842,166.036379,167.824316,169.008534,170.889350,174.325903,174.778988,177.158738,178.760915,180.688171,183.706765,185.634021,186.980779,188.768715,190.417332,193.435926,195.363182,196.524180,197.824497,199.217695,201.191391,202.723908,204.395745,205.050664,206.350982,209.137376,210.646673,212.155970,213.316968,214.640506,215.685404,217.148261,219.051017,220.166855,220.645139,221.928856,222.227539,223.275613,223.845103,224.888886,225.469385,227.559180,228.146886,230.508115,231.808432,233.201629,233.632539,236.336323,237.372931,237.883770,239.393067,241.111344,242.597421,243.897738,244.474908,245.370548,246.485106,247.381835,248.307831,249.168308,249.607257,250.909804,252.022132,253.299230,254.098243,254.754645,256.689343,259.266758,260.613515,262.308572,263.678549,266.418504,267.542780,268.503941,270.528436,273.129071,274.731248,277.796282,278.841180,280.025397,281.348935,282.509933,283.926350,285.273107,287.037824,288.709661,289.824218,290.404717,291.821134,294.096690,295.954286,297.370704,297.807641,298.792246,299.261105,300.993017,301.852155,303.129252,304.638549,306.101407,307.541044,309.435349,311.486608,314.298051,315.923447,317.312184,318.547302,318.941470,319.972960,320.488705,321.589116,322.399306,323.260953,324.345072,324.813931,326.349445,328.248325,329.772117,330.369913,331.108366,332.370827,333.810464,334.878582,335.946700,337.038038,338.222256,339.336814,340.614486,342.056228,342.853289,343.708957,344.869383,345.795380,347.061300,348.996315,351.155771,351.897142,352.593741,353.406439,354.915736,356.684635,357.669239,358.478022,359.591562,360.181775,361.040914,362.410891,363.966628,365.290166,366.799463,367.983680,369.027354,370.189576,371.048714,372.209712,373.413096,376.106611,377.964207,379.154712,380.379083,381.702620,383.026158,384.558675,386.369831,387.693368,390.386883,391.478221,391.825632,393.384589,394.451244,395.394439,396.346457,397.716435,400.108090,401.269088,402.778385,404.171582,405.518340,405.867965,406.981197,408.077304,409.098982,410.259979,411.792496,413.533993,414.439571 diff --git "a/data/torah/labels/re\342\200\231eh-3.txt" "b/data/torah/labels/re\342\200\231eh-3.txt" deleted file mode 100644 index c383e59bb..000000000 --- "a/data/torah/labels/re\342\200\231eh-3.txt" +++ /dev/null @@ -1 +0,0 @@ -1.086331,2,3.856115,5.041624,6.992100,7.467626,9.824934,10.962712,11.888561,12.273381,13.931917,14.860715,15.835953,17.205930,18.906475,19.899445,21.478402,22.964479,24.473776,26.726112,27.309353,28.514048,30.278765,31.718402,33.041939,34.713776,35.654676,36.357525,38.563421,41.210495,42.665933,44.778949,46.056047,47.124165,47.496403,49.376500,50.546763,51.257316,51.669065,53.068473,53.827338,54.992806,55.798561,57.109274,58.363151,60.429727,61.151079,62.124784,64.086331,65.178960,67.384855,68.708393,71.239368,72.327756,73.132316,73.510791,74.625180,75.3,77.395683,78.937305,80.098302,82.489958,83.976035,84.517986,86.971409,88.318166,89.734584,91.220661,92.590638,93.472996,94.587554,95.586012,96.417266,97.675808,98.720706,99.640288,100.618705,101.755396,102.575540,103.338129,104.596871,105.781089,106.965306,107.940545,108.939003,110.401860,112.630975,113.606213,114,115.278050,116.648028,117.600046,118.946803,120.038141,120.633094,121.709978,122.661996,124.832440,126.132758,128.245774,130.219470,131.587095,131.913669,133.166052,135.580928,136.647482,138.820144,139.294964,140.341018,141.683453,142.719424,144.520610,144.892086,145.565508,146.703841,147.423659,148.700757,150.651233,151.672911,153.228648,154.412865,156.781301,158.383478,159.823115,160.258993,161.425292,162.795269,163.582136,164.722525,165.439732,167.018689,168.574426,170.849982,172.874315,174.151413,175.067425,176.032229,176.733813,178.225339,179.726619,181.309353,182.374101,183.538672,184.769329,185.628468,187.277084,189.088241,192.478354,193,195.148649,196.456954,198.012691,200.265026,200.834532,201.357477,203.215074,203.669065,204.817251,207.046366,208.486003,210.482919,211.620697,214.174892,215.986049,217.425686,218.795663,220.968486,221.338129,222.524223,224.451479,226.401955,227.609393,228.700731,229.559869,230.511887,231.812204,232.810662,234.807579,235.942446,239.498009,241.007306,241.338129,243.899281,244.187050,244.964029,245.280576,246.969776,248.362974,249.245332,251.636987,253.378484,255.143200,256.048779,257.256216,258.589928,259.697842,262.159157,263.877434,265.131311,266.501288,267.848046,268.776844,269.728862,270.820200,272.677796,274.372853,276.810948,278.204146,280.642241,282.522144,283.845681,284.774479,285.958697,287.189354,288.173355,288.893173,289.557625,290.184564,291.438442,292.425500,293.679377,294.515296,295.629854,296.535432,297.603550,298.431655,299.321826,300.366724,301.620602,302.330935,303.266187,303.793697,304.871396,306.649752,308.089389,309.412926,310.968663,313.128119,313.841727,314.405216,315.870504,317.309734,318.284972,318.676259,319.492409,321.582734,322.982086,324.212743,325.280861,326.209660,328.415555,330.087392,331.602069,332.995266,334.086604,336.687239,337.676402,338.628420,339.683453,340.950416,342.413273,343.667150,345.524747,347.126923,347.597122,348.821980,351.492275,352.676493,354.534089,355.555767,357.599123,358.647482,360.292638,361.453635,363.752411,366.120846,367.467604,369.185880,370.100719,372.043165,373,373.783431,375.246289,377.545064,378.775722,379.364026,380.401118,382.150421,384.843935,385.338129,386.237133,387.165931,388.187609,390.927564,393.412099,394.215827,395.409015,396.100719,396.223022,397.834723,400.230108,402.343123,403.782761,404.897318,406.383395,407.776593,408.914371,410.028928,413.349382,414.278180,415.021219,416.948475,418.411332,420.872647,421.395683,423.519722,424.402080,425.307659,426,426.747296,427.954733,430.114189,430.604317,430.748201,431.251799,432.546763,433.467626,434.589928,435.510791,437.007194,438.000000,438.345324,440.316547,443.060755,443.5,444.105653,446.311548,448.070015,450.438450,450.877698,451.593943,452.057554,452.330935,453.625899,455.323741,456.589928,457.784173,459.202955,460.230216,461.093525,461.856115,462.964587,464.055925,464.978417,466.633340,468.583816,469.656144,470.129496,471.064748,473.255237,474.648435,476.575691,477.922448,480.151564,480.920863,481.712230,483.237410,485.052725,486.329822,487.374720,488.349958,489.905695,490.705036,492.947509,494.038847,495.362384,496.407282,497.614720,497.931033,498.187050,499.332997,501.321147,502.412484,503.434162,504.362961,505.779378,507.010035,508.937292,509.866090 diff --git "a/data/torah/labels/re\342\200\231eh-4.txt" "b/data/torah/labels/re\342\200\231eh-4.txt" deleted file mode 100644 index 3602bc1a0..000000000 --- "a/data/torah/labels/re\342\200\231eh-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0.941912,2.254010,3.348201,4.841142,6.092991,7.023818,9.554793,10.437151,12.410847,14.338103,14.960253,16.102820,17.700208,18.374635,19.255945,20.509822,21.717260,23.412317,24.619754,27.057850,28.427827,30.680162,31.608961,32.630639,33.930956,34.952634,36.415491,37.878348,39.132226,39.354245,39.897301,41.801338,42.706916,43.798254,44.218335,45.609410,46.337636,47.787297,48.640904,49.789002,51.669818,52.482138,53.689954,54.616156,55.926002,57.056268,58.286925,60.214182,61.560939,62.838037,64.300894,66.483569,67.685180,69.362844,70.775827,73.356676,74.773093,75.794771,77.048649,78.093547,79.533184,80.763841,82.249919,83.689556,85.361393,86.963569,87.509476,89.099805,90.114450,91.277122,92.969620,94.191161,95.873482,97.057699,98.427677,98.944872,101.137760,102.064954,102.855423,103.315930,105.096732,105.773731,107.716423,108.643618,110.475259,111.984556,113.168773,114.561971,115.769408,116.466007,117.743104,118.828037,121.035642,121.727359,122.456755,123.455213,124.523331,125.800429,126.822107,127.681245,128.424284,129.399522,131.024919,132.069816,133.114714,135.134850,135.694142,137.271086,137.769291,138.524964,139.918161,141.102379,141.781224,142.733243,144.590839,145.422323,146.894060,147.766618,148.950836,150.529793,151.830110,153.827026,154.429353,155.847162,156.845620,157.960178,158.653237,159.655235,160.537593,161.210972,162.488069,163.421665,164.252786,165.344124,167.062400,169.054420,170.044481,170.265242,171.306755,172.212334,173.442991,174.487889,176.693785,179.573059,180.140596,181.778955,183.643330,185.145848,186.306846,186.733977,187.653603,189.209340,190.672198,191.717096,192.994193,194.180966,195.248093,195.782152,197.082470,198.359567,199.241926,201.029862,201.598520,202.156448,202.644067,203.735404,206.336039,207.923675,208.559836,209.572292,210.119877,212.126487,214.898270,216.616546,217.870424,219.867340,221.771376,223.094914,224.023712,225.091830,226.229608,227.065526,227.971104,229.108882,231.082578,231.739692,232.225365,233.079494,234.519131,235.404317,236.353508,236.817184,238.629063,240.195929,240.799648,242.517924,244.004001,246.697516,247.812074,249.065951,250.435929,251.372662,252.014886,252.947420,254.286701,255.405221,256.523741,256.935827,257.583392,258.746064,260.041192 diff --git "a/data/torah/labels/re\342\200\231eh-5.txt" "b/data/torah/labels/re\342\200\231eh-5.txt" deleted file mode 100644 index 27bc08aa3..000000000 --- "a/data/torah/labels/re\342\200\231eh-5.txt" +++ /dev/null @@ -1 +0,0 @@ -2.133124,3.656785,5.096381,6.103737,6.578009,7.240013,8.543005,9.593492,10.684830,11.660068,13.308684,15.862879,17.813356,19.160113,21.644648,22.968186,23.701487,25.977043,27.347020,28.508018,30.621034,32.107111,33.430648,35.102485,36.658222,38.097859,39.305297,40.605614,41.952371,43.972508,46.294503,46.697560,47.530762,48.575660,49.082876,50.479697,51.2,52.056641,53.637611,56.261465,56.764226,57.468903,59.790530,62.008626,62.612345,63.285723,64.330621,66.118558,67.070576,68.254794,69.764091,71.134068,72.062866,73.061324,73.990123,74.880021,76.288898,77.403456,78.796653,80.538150,81.768807,83.138785,83.997923,85.692754,87.037779,87.247939,88.340054,89.174485,90.939202,92.076980,93.098658,94.189995,95.977932,99.089406,101.202422,101.888656,102.817454,104.814370,106.254007,108.483123,110.131740,111.733916,113.870152,115.124030,116.308247,117.422805,118.908882,120.812919,121.973916,123.088474,124.319132,125.781989,126.571467,127.918225,129.172102,129.626908,131.112985,131.444594,132.622282,133.283494,133.903466,135.478336,136.221375,137.266273,138.589810,140.609946,141.588241,143.469057,144.815815,145.168044,145.472776,146.557311,148.782797,149.896645,151.010493,152.660250,154.446610,155.551840,158.454334,158.8,159.206735,160.637010,161.539511,163.094695,165.112232,167.556557,168.949754,170.528711,171.753289,173.129346,174.568983,175.729981,176.937418,178.516375,180.072112,181.117010,181.896069,182.671103,183.800106,184.705684 diff --git "a/data/torah/labels/re\342\200\231eh-6.txt" "b/data/torah/labels/re\342\200\231eh-6.txt" deleted file mode 100644 index f4ece0b0e..000000000 --- "a/data/torah/labels/re\342\200\231eh-6.txt" +++ /dev/null @@ -1 +0,0 @@ -1.640574,2.835560,3.473561,4.405245,5.427431,6.866106,10.071422,11.185980,13.252556,15.806751,16.496884,17.478587,18.987884,20.311422,21.263440,22.261898,23.724755,24.233912,25.350152,25.671946,26.745408,27.532828,28.693825,29.1,29.854823,30.876501,32.548338,33.378593,34.405934,35.474052,36.913689,37.905363,39.586445,40.234573,41.146377,42.075175,43.259393,45.674268,47.415765,48,48.460662,48.994428,50.148906,50.594494,51.516051,52.862942,54.908596,56.859794,58.345871,59.553309,60.667867,61.582290,62.223604,63.269250,64.778547,66.005411,66.574901,67.688871,69.126905,70.807987,71.901703,72.813133,74.391582,75.575800,75.972757,76.134789,77.386957,78.780154,80.730630,81.682648,82.656578,84.027864,84.762994,85.573154,86.606108,88.347952,90.373352,91.122750,91.669608,94.825142,95.922948,98.006276,99.538793,100.560471,101.675029,103.207546,104.647183,105.901061,107.038839,107.710777,108.942875,110.100749,111.903355,112.490721,114.114167,115.298385,116.505822,117.922240,119.152897,121.056934,121.867388,122.540767,123.724984,124.514463,125.234281,127.091878,128.322535,128.835700,131.155370,132.481420,133.359289,133.696660,135.053678,136.772622,138.072940,138.841176,140.664036,142.648928,143.175532,144.226228,144.783507,146.637496,148.100354,149.679310,151.235047,152.419265,153.278403,154.300081,156.016569,159.385251,159.783813,160.128131,162.335817,163.796216,165.560932,168.184787,169.461885,170.160594,172.271499,173.313486,174.933806,176.432602,178.612658,180.400594,181.724132,182.711342,183.784804,184.513948,185.789603,186.857721,187.369762,188.413457,189.516686,189.820496,191.035736,192.646464,193.737801,194.689820,195.532125,196.222337,197.081475,197.699303,198.641995,199.477914,201.385531,203.289407,204.362869,206.384581,208.153413,209.291191,210.428969,211.491850,212.490308,213.651305,214.763298,216.262094,218.086317,218.378637,219.177655,220.083233,220.877147,221.847949,222.702867,224.090212,225.327577,226.307731,227.375849,229.442425,230.579001,230.956372,232.413377,234.363854,236.616189,238.171926,239.797323,240.526387,241.554719,243.087236,244.262609,246.375625,247.281203,248.465421,250.183698,250.627576,251.393834,252.903132,254.040909,255.689526,256.966624,258.777780,259.717053,260.952547,262.098876,263.190213,264.415982,265.721188,267.230485,268.739783,269.877560,270.899238,273.314114,274.800191,276.170168,278.143864,280.140780,281.301778,282.277016,282.883221,283.928119,287.295013,287.920750,288.660021,289.872428,290.870886,291.962224,293.843040,294.719521,295.810858,296.469247,297.877434,299.783315,301.803451,302.301090,303.126988,303.921410,305.100684,306.911841,307.324082,308.305038,309.257056,309.856126,310.808145,311.736943,312.619301,313.733859,314.193235,315.307793,315.901652,316.398890,317.025829,318.024287,319.812223,320.256262,322.389638,324.038255,325.547552,326.824650,328.381884,329.101702,329.728641,330.518120,331.476978,332.747235,333.522633,334.604832,335.629049,336.177937,338.662472,340.287869,341.332767,342.377665,343.886962,345.605239,347.044876,348.368815,349.371388,351.055596,351.538566,352.409488,353.865211,355.072649,356.024667,357.391973,358.070482 diff --git "a/data/torah/labels/re\342\200\231eh-7.txt" "b/data/torah/labels/re\342\200\231eh-7.txt" deleted file mode 100644 index cb819cb5b..000000000 --- "a/data/torah/labels/re\342\200\231eh-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0.512354,0.803464,4.739270,6.777040,8.426345,10.260722,11.793239,13.047116,14.509973,15.322672,16.367570,17.412468,18.527026,19.830411,20.779361,21.681871,22.543556,23.379996,24.749973,27.652468,28.999225,30.160223,31.553420,32.946617,34.107615,35.500812,35.944744,36.621634,37.696922,38.927579,40.343996,41.487547,42,43.275484,45.109860,46.572717,47.571175,48.546413,49.521651,50.222292,51.054168,52.261606,53.840563,55.024781,56.348318,58.577434,59.877751,61.247729,62.478386,63.732264,65.055801,66.797298,67.886845,68.166310,69.142513,69.598571,70.582150,71.310298,72.091447,73.420285,74.920062,76.345999,76.949718,77.749651,78.900194,80.940216,81.895057,83.315673,84.480113,86.226773,87.519301,89.906453,92.321328,94.225364,96.175840,97.708357,99.008675,100.517972,102.189809,103.350806,104.349264,104.985899,105.997881,107.414298,108.441739,109.533076,110.647634,111.994392,112.923190,113.968088,114.825416,115.756024,116.641942,117.923456,118.924245,120.802730,121.590812,122.184676,123.250385,124.063083,124.875781,125.514974,128.196235,129.542992,130.703990,131.911428,133.142085,135.092562,135.727112,136.439319,137.578571,139.077670,139.890368,140.842386,141.421223,142.746423,143.354193,144.511139,145.416717,147.204654,148.140041,149.217256,150.049723,150.935533,151.412117,152.413535,152.704645,154.975805,156.043923,157.112041,159.132177,160.246735,161.129093,162.661610,163.440781,164.358830,165.241188,165.868127,166.750485,169.026041,170.233478,171.032929,171.941192,173.079452,173.822490,174.937048,176.887524,177.507215,177.809969,179.557819,180.148772,180.915031,182.285008,183.376346,185.001743,186.069861,187.950677,188.879475,189.244769,190.086913,191.271131,192.781224,193.802902,195.010339,196.010164,197.256115,199.289204,201.262900,203.229692,204.068088,205.977770,207.116993,208.069011,208.695950,210.565663,211.552005,213.001762,214.743258,215.805642,216.856274,217.424214,218.342351,219.410469,221.546705,222.823803,224.294409,225.377338,226.064358,226.970349,228.433206,229.710304,230.848081,231.604544,232.125179,233.926540,235.366177,237.061234,238.547311,239.708308,240.962186,242.378603,245.002458,246.093796,247.347674,248.647991,249.762549,251.968445,252.827583,253.895701,254.709579,255.753297,256.780561,258.034438,258.940016,260.147454,262.980288,264.907545,266.486502,268.460198,269.737295,270.895293,273.452488,275.054665,277.283780,278.885957,280.023735,281.533032,283.808588,285.062465,286.664642,287.383762,288.684778,291.158071,292.179749,293.247867,294.548185,295.546643,296.893400,297.775758,298.913536,301.351631,301.892682,302.321529,303.087787,304.272005,306.199261,307.499579,307.959414,308.939216,310.146653,312.306109,314.070826,315.255043,316.044522,316.694681,317.368059,319.179216,320.858035,322.576311,324.689327,325.919985,326.941663,328.102661,329.310098,330.981935,332.630552,335.254407,337.367422,338.481980,339.921617,340.528798,342.197173,343.262753,345.282889,346.583206,348.046064,349.044522,350.414499,351.051754,351.602621,352.643615,353.978078,356.023018,357.207235,359.482791,360.394142,361.830543,363.061201,364.593718,365.824376,367.147913,367.612312,368.959069,370.538026,371.861564,375.692856,377.033988,377.441542,379.222289,379.747133,381.195986,382.496303,384.516439,385.886416,387.024882,388.092312,389.810589,391.737845,392.759523,393.943741,394.709999,395.801337,397.667862,399.493310,399.980929,400.561428,401.467006,402.674444,403.928321,404.825932,405.894050,408.123165,409.191283,410.584481,411.545920,412.196079 diff --git "a/data/torah/labels/re\342\200\231eh-h.txt" "b/data/torah/labels/re\342\200\231eh-h.txt" deleted file mode 100644 index 8c1da967e..000000000 --- "a/data/torah/labels/re\342\200\231eh-h.txt" +++ /dev/null @@ -1 +0,0 @@ -2.809461,3.847358,4.938696,5.545312,7.283911,8.700329,11.184864,12.531621,13.739059,15.387675,17.361372,19.729807,21.331984,22.748401,24.742093,26.437150,27.579339,29.316424,30.242831,31.148409,32.400816,33.749044,34.793152,35.701013,36.790858,38.718114,39.902332,41.111373,42.502967,45.057162,47.170178,48.749135,50.119112,50.803400,51.930268,53.323466,54.809543,55.947321,56.778106,57.133889,58.054018,60.080472,60.532233,61.311130,63.561296,64.443654,66.417350,67.795120,68.646466,69.877124,71.456081,73.424247,74.515585,76.395261,77.793857,79.581728,81.137465,81.560253,82.561212,83.907751,84.720449,87.251424,89.805619,90.945570,91.771371,93.698627,94.331646,96.136723,97.491557,98.606115,99.999312,101.206750,102.097536,103.946705,104.722972,105.409562,106.667281,108.919616,111.729231,114.004786,115.212224,117.557439,119.856215,121.435172,121.938990,123.332187,124.500383,124.978083,125.940021,127.518977,128.703195,130.228953,130.474321,130.977325,132.743467,133.950905,135.042243,136.528320,137.758977,139.918433,140.853378,142.495848,143.675108,144.668847,145.503098,147.186279,148.594732,149.257225,150.312307,150.943196,152.011314,154.101110,154.867368,157.026824,158.420021,159.557799,160.742017,162.785373,164.642969,165.920067,167.800883,169.170860,170.447958,172.235894,173.698751,174.975849,175.744678,177.669364,179.775513,180.872864,182.167915,183.235286,184.725139,185.543741,187.534600,189.584013,190.160035,191.162970,193.214864,194.130977,195.361635,197.196011,198.658868,199.657326,199.962478,201.004084,202.526572,203.739760,204.111279,205.040077,205.973989,207.853489,209.200246,210.709543,211.940201,213.445438,214.709082,215.150744 diff --git a/data/torah/labels/shmini-1.txt b/data/torah/labels/shmini-1.txt deleted file mode 100644 index 13129391d..000000000 --- a/data/torah/labels/shmini-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.992500,3.086751,4.665707,6.105345,7.266342,8.705980,9.843757,11.074415,12.723032,13.987037,14.265676,16.100053,16.648353,19.272207,20.075927,20.331346,22.072843,24.255519,25.439736,26.391755,27.622412,28.969169,29.519203,31.283919,32.034141,32.730739,33.914957,35.145615,36.422712,37.467610,38.244017,39.047956,40.650133,41.880790,43.552627,44.016932,45.804869,47.221286,48.684143,49.961240,51.702737,54.256932,55.696569,57.020107,58.390084,59.551082,60.712079,62.174937,63.452034,64.566592,65.774030,66.377748,68.089855,70.719880,71.555798,72.379282,73.702819,74.933477,75.325209,76.127248,76.986386,78.124164,79.565409,79.882543,82.112202,83.505399,84.085898,85.502315,87.290251,88.451249,90.076646,92.166442,92.770161,93.466759,94.372338,95.672655,96.878380,97.946498,98.452503,100.198834,101.410594,103.012771,103.523610,105.543746,106.565424,106.892508,108.239265,110.514821,111.020408,112.725237,113.005432,115.275413,116.413190,117.504528,118.619086,119.733644,122.125299,122.730877,123.695726,124.763844,126.296361,127.689558,128.827336,129.477495,131.126112,132.379989,133.308787,133.478197,134.899427,137.163780,137.604959,138.255118,139.253576,139.685975,140.823752,144.190646,145.467743,146.317412,146.619271,149.127027,151.565122,152.911879,154.351516,155.767934,157.045031,157.409158,158.298909,159.970745,160.755056,161.939273,163.146711,163.614148,164.612606,166.307663,167.065486,167.947844,168.435463,170.502039,171.217149,172.355198,172.680277,173.771615,174.059609,176.244311,177.336191,178.868708,181.028164,181.933742,182.978640,183.385700,184.959624,185.622614,186.551413,187.097343,188.119219,189.552195,190.703274,191.645718,193.433655,194.850072,195.037439,196.235501,199.447623,200.655061,201.792838,202.814516,203.094993,204.138054,205.722847,206.016959,207.015418,208.408615,209.407073,211.357549,213.243283,215.592424,217.304656,217.908374,219.092592,220.532229,220.762508,222.457564,223.920422,224.178535,225.119622,225.514361,227.302297,228.625835,228.849598,229.801616,231.705653,235.235086,236.140664,237.324882,238.694859,240.947195,241.456467,242.280640,243.859597,245.136695,246.483452,248.151520,249.711026,251.615062,253.449438,253.742475,254.846572,256.746463 diff --git a/data/torah/labels/shmini-2.txt b/data/torah/labels/shmini-2.txt deleted file mode 100644 index c7bf14cc6..000000000 --- a/data/torah/labels/shmini-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.163872,4.559354,7.150179,8.636256,9.634714,10.679612,12.049590,12.495981,13.744646,14.794756,15.328815,16.675573,18.440289,18.775076,19.656837,20.119225,21.452621,22.479439,23.895857,25.033634,26.008873,29.491866,30.792183,31.720981,32.141295,32.951639,34.205517,35.849384,36.173742,37.172922,38.705439,39.625518,40.915727,41.310466,42.401804,43.423482,44.723800,46.093777,47.765614,49.646430,50.993187,52.572144,54.349421,54.697720,55.858718,56.303720,57.818928,59.096026,60.140924,62.091400,63.013713,65.133214,66.222660,67.105018,68.498216,70.239712,72.306288,73.490506,74.465744,75.882161,77.345018,77.925517,79.295495,81.129871,82.917807,83.326495,85.309463,85.711047,86.477306,88.729641,91.237396,93.466512,95.602748,97.112045,99.085741,100.780798,101.848916,103.056353,103.424214,104.101251,105.540888,108.456708,109.919143,110.263245,111.317058,112.380035,112.815775,114.376951,114.789471,115.403271 diff --git a/data/torah/labels/shmini-3.txt b/data/torah/labels/shmini-3.txt deleted file mode 100644 index b302d0cb0..000000000 --- a/data/torah/labels/shmini-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.293732,3.106430,4.569288,5.916045,7.425342,7.806524,9.143619,9.635942,10.541909,10.913429,12.399506,13.815923,14.183735,15.158974,16.830810,18.177568,18.494438,20.027429,21.588294,22.101858,24.818592,25.896594,28.150402,28.710490,30.916386,32.170263,33.261601,34.306499,35.351397,36.280195,37.534073,39.809628,40.947406,42.061964,43.170072,44.331070,46.560186,49.509120,50.592807,52.218204,53.750721,55.384766,56.387573,57.339592,58.991948,60.036846,61.337164,61.940883,63.380520,64.587957,66.190134,66.886733,68.744329,70.880565,71.995123,72.854261,74.440274,75.856692,77.760728,79.548664,80.157629,80.738128,81.063207,81.899126,83.269103,84.267036,85.729893,86.848191,88.496808,88.949495,90.342692,91.364370,93.082647,93.872125,94.754484,95.613622,96.983599,98.167817,100.048633,104.920456,106.076664,106.378608,107.896063,109.033840,109.498239,110.589577,110.933781,111.698719,113.393776,116.296270,118.565885,120.701122,121.106269,122.021867,123.391844,124.506402,125.133341,126.456878,128.059055,129.777331,130.129015,133.655064,136.232479,137.811436,139.994111,141.480189,142.009693,143.355,145.235879,145.700278,146.907716,148.300913,149.601230,150.575723,150.947243,151.968921,153.013818,154.824975,155.244355,156.033834,157.473471,158.820228,159.036840,160.799780,161.996267,163.017945,164.434363,166.779578,167.638716,169.333773,170.076812,171.237809,171.527296,172.793546,173.387465,174.985292,175.988100,176.777578,177.938576,179.331773,180.167692,181.630549,183.673905,184.881343,185.075783,186.046130,187.473819,188.393918,190.599814,191.107098,192.918255,195.286690,197.004967,198.328504,200.836259,201.161236,201.989623,202.825626,203.615020,205.008217,205.827381,206.663299,208.776315,211.028650,211.678809,212.677267,213.397086,214.511644,215.463662,216.462120,216.926519,218.250056,219.573594,219.885623,220.459522,221.806279,222.920837,223.258203,225.513889,226.907865,228.295173,230.107344,231.546982,232.452560 diff --git a/data/torah/labels/shmini-4.txt b/data/torah/labels/shmini-4.txt deleted file mode 100644 index 071590882..000000000 --- a/data/torah/labels/shmini-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.366836,4.239016,4.819515,6.886090,7.753657,10.725811,11.492070,13.163906,15.300142,17.923997,18.890414,19.122614,21.119530,22.652047,24.091684,25.392002,26.715539,27.992636,28.952248,30.484765,31.970843,32.899641,34.083858,35.012657,36.893473,37.868711,39.563768,40.910525,41.526800,42.989657,43.758767,44.826885,45.569924,46.939901,48.216999,48.615228,49.126067,50.565704,52.585840,53.468198,55.372234,57.578130,58.460488,60.364525,61.780942,63.150919,64.404797,66.935772,68.189649,69.188107,70.186566,70.721751,71.952408,72.509687,73.461705,74.599483,75.783701,76.712499,77.339438,78.802295,79.729668,81.889124,83.189441,85.302457,85.935981,86.841559,88.327636,89.535074,90.509849,91.618483,92.640161,94.033358,95.306398,97.071115,98.278553,99.416330,99.948570,101.016688,102.595645,103.440478 diff --git a/data/torah/labels/shmini-5.txt b/data/torah/labels/shmini-5.txt deleted file mode 100644 index f84d70767..000000000 --- a/data/torah/labels/shmini-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.623179,4.471928,6.445624,7.610891,9.387682,10.446641,11.305779,12.455851,15.322528,15.897478,16.756617,17.406775,18.567773,19.496571,20.854391,22.008548,23.437149,25.644399,26.029065,27.190062,27.338761,28.671189,29.971506,31.432706,33.053798,33.895679,34.940577,35.947952,38.329217,39.468468,41.305799,42.615496,42.890257,44.013705,45.418062,46.498240,47.403819,48.020698,49.557801,50.598113,50.918351,52.037750,52.305415,53.551000,54.187475,55.232373,56.435995,57.855595,59.179766,60.841336,61.919720,62.593099,64.074362,65.449153,67.243277,67.840809,69.478003,70.348564,73.077378,74.502417,74.966816,76.081374,76.499333,78.004766,79.262508,80.679110,82.257882,82.977701,84.067834,85.601556,86.530354,87.668132,88.968449,89.573404,90.991822,92.824198,93.985196,95.471273 diff --git a/data/torah/labels/shmini-6.txt b/data/torah/labels/shmini-6.txt deleted file mode 100644 index 409146ee4..000000000 --- a/data/torah/labels/shmini-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.283433,5.326789,5.744748,6.443395,6.791694,7.813372,8.440588,9.810565,12.248661,12.689840,13.200679,14.245577,15.035055,16.242493,17.542810,18.657368,19.911246,20.679669,21.817447,22.723025,22.913754,24.272277,26.255864,27.625841,29.390557,30.923074,31.875093,33.361170,34.498947,35.334866,36.681623,37.517542,39.050059,40.187836,40.574553,41.418494,42.456359,43.865197,45.473147,46.657364,48.514961,49.884938,50.321037,53.060991,53.8,54.500628,56.242125,58.285481,59.725118,61.183850,62.461868,63.424731,63.796250,65.166228,66.053589,68.213045,68.659941,69.629462,70.587197,71.376676,72.653773,73.327152,74.488150,75.463388,76.020667,77.437084,78.551642,80.920077,81.363491,82.338729,83.360407,84.149885,85.496379,85.885713,87.511110,88.788208,89.299047,90.994103,91.862432,94.788147,95.177113,96.018804,97.974665,99.942977,101.360397,102.342064,103.670398,104.732328,105.823666,106.080857,107.148975,108.077774,108.460449,110.013875,110.931253,112.115471,112.974609,114.321366,116.504042,117.130981,118.663498,119.615516,120.248185,121.757482,122.448204,123.194337,124.610754,125.516332,126.574089,128.024087,128.669463,129.366062,131.014679,132.175676,134.242252,136.517808,138.886243,140.558080,141.254679,142.554996,144.830552,145.829010,146.156946,147.431186,148.704919,150.817935,152.211132,153.790089,155.060369,156.221367,157.359145,159.588260,160.493838,161.422637,162.444315,163.860732,164.743090,165.136015,166.414927,167.665634,169.012391,170.126949,171.775566,172.820464,174.120781,174.887122,176.001680,177.975376,179.206034,180.622451,180.920379,182.504983,183.544234,184.751671,185.959109,186.748587,187.445186,188.884823,189.622643,190.528221,192.115206,192.486725,193.662915,194.342287,195.665824,196.683938,197.337661,197.961956,198.973571,199.321870,200.622187,201.249126,203.455022,204.894659,206.334296,207.048965,208.072207,209.535064,210.487082,210.711129,211.508760,213.033124,214.426321,215.285460,216.841197,217.514623,218.983841,219.486998,220.835457,221.539877,222.365054,223.930785,224.865299,225.750038,226.121558,227.390834,227.878453,229.457410,230.463689,231.674130,231.952770,233.345967,233.763926,235.458983,236.666420,238.222157,239.452815,240.544153,241.286803,242.656780,243.080352,244.798629,245.843527,247.097405,248.072643,249.233640,249.495226,250.493684,251.376042,251.980855,253.372958,254.517442,254.868974,255.509069,256.670067,258.156144,259.526121,260.640679,261.801677,262.104366,263.090554,263.918755,264.499254,265.846011,267.099889,268.516306,269.630864,270.698982,270.976922,272.393339,273.042992,273.728780,274.704018,276.027556,276.700934,277.978032,279.371229,279.898263,281.059261,282.429238,283.265156,284.704794,286.121211,286.701710,287.700168,289.209465,290.718762,292.019079,293.087197,293.899896,294.619714,295.362753,296.500531,297.406109,297.747984,299.077945,300.213888,301.839285,302.285675,303.325362,304.602459,305.122662,305.354862,306.599376,307.451122,308.426360,310.098196,311.119874,312.095112,312.760546,313.000691,314.393888,315.848799,318.774514,319.533816,320.996673,322.222168,323.922194,326.176335,327.264614,329.238310,330.747607,332.140805,333.394682,334.439580,335.182619,336.157857,336.963197,337.799116,338.704694,340.074671,342.443107,343.348685,343.716376,345.497551,346.282406,347.350524,348.650842,349.010297,350.101635,351.146533,351.796692,352.888030,353.327382,354.325840,355.695817,356.410541,356.689181,358.012718,359.963195,360.079031,361.356128,362.517126,363.515584,364.607441,364.955221,366.162659,367.338322,367.895601,369.312018,370.635556,371.610794,373.120091,374.164989,375.233107,375.581406,376.695964,377.787302,379.250159,380.202177,382.106213,383.482301,384.503979,386.082936,387.383253,389.380169,391.052006,392.189784,393.118582,393.815181,394.952958,395.618889,396.570907,398.474943,399.728821,400.243272,400.482511,401.967806,403.755742,404.424061,405.654719,407.953495,409.137712,411.273948,413.386964,414.135019,414.529759,415.504997,416.119021,416.921414,417.349678,418.115937,419.552148,420.558461,421.242754,423.378139,424.121178,424.957096,425.700134,427.000452,428.811608,430.715645,431.781879,432.037299,433.244736 diff --git a/data/torah/labels/shmini-7.txt b/data/torah/labels/shmini-7.txt deleted file mode 100644 index 0aed9e7bf..000000000 --- a/data/torah/labels/shmini-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.835744,2.346583,3.298601,4.088079,4.738238,5.620596,5.965550,7.204717,7.740728,9.598324,11.897100,12.965218,13.963676,15.472973,16.378099,18.189256,19.094834,21.045310,22.415287,23.553065,25.573201,26.409120,27.667431,28.353727,29.491505,30.815042,32.301119,32.997718,33.856856,34.971414,38.338307,39.197446,40.149464,41.774861,44.212956,46.442072,48.322888,50.621663,51.480802,52.897219,53.779577,55.056675,55.630946,57.262571,57.958291,59.107194,61.146886,61.910370,62.723068,63.512547,64.897287,65.973862,67.297399,68.943772,69.954524,71.022641,72.740918,73.165714,73.589488,74.239647,75.261325,76.375883,77.792300,78.860418,79.742776,81.275293,81.894717,82.815868,83.257711,84.302609,85.381189,86.658286,87.842504,88.817742,89.263926,90.864974,92.330447,93.398565,93.647744,95.232941,95.969740,96.480579,97.316497,98.849014,100.242211,101.797948,102.591542,102.800522,104.124059,106.051315,107.621151,108.651950,109.693741,110.544529,110.799948,112.479126,114.025344,114.300705,115.693902,116.757107,117.848445,118.730804,118.963003,120.332980,121.377068,122.259427,123.373984,123.629643,124.883520,125.835538,126.346377,126.724070,128.237390,130.474471,131.242057,131.520696,133.262193,135.398429,136.304007,136.629086,138.417023,139.345821,139.704674,140.981772,142.374969,143.058968,143.894887,145.102325,145.497064,146.727721,147.388620,148.665718,149.072910,149.699849,150.860421,151.597685,153.060542,153.432061,155.916596,156.687236,157.546374,159.106917,160.054129,161.215127,162.352905,164.001521,165.325059,166.692752,167.900190,170.407945,172.822820,174.750076,175.864634,177.266752,177.858921,178.927703,179.926161,180.831739,182.091829,182.333083,184.619605,185.323545,186.043364,186.846503,187.125143,188.379020,190.399156,191.258295,193.046231,194.416208,195.437886,196.575664,197.852762,198.572580,199.338839,200.406957,201.776934,203.077252,203.518431,204.447229,205.585007,206.450662,207.286581,208.633338,209.817556,211.071433,211.930572,213.254109,214.438327,215.668984,216.316978,217.085402,218.081151,218.374699,219.880956,222.554291,223.088350,223.901048,224.760187,226.199824,227.291162,228.475379,229.915017,230.770277,232.167352,233.490890,233.908849 diff --git a/data/torah/labels/shmini-h.txt b/data/torah/labels/shmini-h.txt deleted file mode 100644 index 36b28062e..000000000 --- a/data/torah/labels/shmini-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.879944,3.025641,4.999337,5.495023,5.796882,6.377381,7.817018,8.745816,10.046134,12.437789,13.947086,15.967222,16.572800,17.501599,19.018769,20.241553,21.820510,23.910306,25.351557,27.161100,27.973798,29.391829,30.808247,31.574505,32.241043,33.989380,34.600494,36.262035,38.497080,39.244485,40.867898,42.580736,45.243991,45.588647,46.573309,47.966506,48.283234,49.780872,51.220510,53.565725,54.517743,55.794841,56.468219,58.349036,59.416681,61.506949,62.249988,64.711303,66.104500,66.466472,67.510885,69.119282,71.773397,72.795075,74.072173,75.488590,76.835347,77.694486,78.259986,79.960294,82.090897,83.345156,83.887288,85.349467,87.773475,88.429563,89.027353,91.250403,92.827467,94.153872,95.584719,96.943038,97.569977,99.357913,101.145850,102.701586,104.257323,106.184580,108.529795,110.201632,110.652350,111.083814,112.890650,113.893287,115.564348,115.867228,116.621828,118.039608,119.877776,120.755083,121.115235,122.322672,124.319588,125.591105,126.316504,127.309381,128.609699,129.933236,131.628293,133.230470,133.690896,135.362733,137.198084,138.080443,138.869921,139.589740,141.308016,143.188833,144.337939,146.092553,147.410116,148.617554,150.846669,151.682588,153.656284,156.117599,157.278597,158.184175,159.784814,160.877690,161.883258,162.417317,163.717634,165.343031,167.130968,167.356811,168.568331,169.174090,170.792931,172.766873,174.427490,175.144977,175.980895,176.863254,178.256451,179.076538,179.564157,181.398533,182.443431,184.556447,184.829848,185.268502,186.521798,186.861985,187.119542,188.768159,190.532875,191.600993,192.203407,192.619034,193.524613,195.173229,197.495225,198.447243,200.281620,201.256858,202.580395,204.484431,205.715089,206.411688,208.385384,210.266200,212.518536,212.841017,213.361086,214.329692,214.823943,215.043709,216.320806,218.851781,219.850239,222.659854,224.308471,225.446248,227.071645,227.483693,228.287892,229.059931,230.011949,230.615668,230.917527,231.274914,232.124965,233.504760,234.108478,235.942855,237.034193,238.891789,240.470746,240.946183,241.436133,243.363390,244.385068,245.290646,247.078582,247.494849,248.284327,250.165144,253.067638,254.182196,256.179112,257.015030,257.615700,258.498058,259.058837,260.777114,261.752352,262.704370,264.260107,266.605323,267.673441,268.270564,268.973758,269.707191,271.425468,273.213404,274.467282,275.256760,276.348098,277.787735,278.303928,279.186286,280.372790,281.508282,281.782748,282.235489,283.837666,285.021884,285.420950,286.767708,288.880723,290.157821,291.295599,292.177957,292.668062,294.223799,295.117770,295.396410,296.975367,298.972283,299.761761,301.967657,303.221535,303.579657,304.496797,305.518475,306.679473,308.444189,309.907046,310.951944,312.039406,312.786321,314.556443,316.728720,317.157032,317.633090,319.513906,320.976763,321.812681,323.159439,324.622296,325.760074,326.712092,327.298480,328.035629,329.731770,330.943290,331.988911,334.078707,334.798526,335.799812,337.352721,339.316715,340.338393,341.429731,342.474628,344.610864,346.243947,346.546826,347.490139,348.627916,349.185195,350.926692,352.339239,352.664951,354.220688,354.864097,355.630356,358.463190,359.239072,359.471272,360.910909,362.861385,363.455732,364.068823,364.927961,366.869065,367.704984,369.111402,370.852898,372.106776,372.311486,372.989134,373.495703,374.981781,376.291721,377.137696,377.896960,378.105939,379.893876,382.401631,383.446529,383.644392,384.584307,385.918346,386.963244,388.960160,389.596722,390.270101,391.965158,392.626348,394.496133,395.564250,396.794908,397.584387,398.768604,399.929602,401.137040,402.449079,403.308217,404.135784,405.806846,406.944526,409.289742,409.577178,410.976692,411.770446,413.447140,414.599057,415,415.643954,416.851392,417.518460,418.563358,420.026215,420.955013,422.789390,423.357849,423.593207,424.727826,425.266697,426.868874,428.424611,428.889010,430.235767,432.334947,432.930263,433.878735,434.830753,435.782771,437.384948,438.008735,439.192952,440.771909,441.723927,442.838485,444.835401,446.553678,446.800073,447.771378,448.126478,448.665201,449.245700,450.801437,451.521255,452.101754,453.309192,455.259668,455.552258,456.196636,457.009334,458.750831,460.863847,461.823790,462.241749,462.961568,463.669973,465.016730,466.496787,467.541685,467.843545,468.981323,470.258420,471.767717,472.603636,473.253794,474.275472,474.855971,476.667128,477.804905,478.965903,480.057241,480.758715,482.314452,483.707649,484.543568,484.689159,485.687617,487.336233,488.079272,489.356369,489.934349,491.490525,491.978047,492.883625,493.951743,495.855779,496.544562,497.891320,499.029098,499.417623,500.413846,500.805963,501.570813,502.708591,504.004103,505.397300,505.840766,506.872888,507.128307,508.219645,509.334203,509.891482,511.447219,513.490575,514.256833,514.516780,515.213379,517.094195,517.984039,518.657417,519.725535,520.979413,524.276647,526.691522,527.042359,527.752851,528.635209,529.842646,530.933984,531.746683,533.232760,534.791906,536.170532,537.298499,539.094890,540.066485,540.494404,543.752974,544.327595,544.791994,546.928230,547.926688,549.575305,549.925457,550.702257,551.979354,553.163572,553.999490,555.601667,557.621803,557.852555,558.313409,558.499168,559.636946,561.633862,563.909418,564.287550,565.309228,566.238027,566.636073,568.202693,570.858798,571.492595,573.779861,574.774676,576.841252,577.746830,578.652408,580.138485,581.488310,582.463548,583.926405,584.213551,585.412482,586.942383,588.939299,590.396478,591.461780,591.848213,592.824569,593.164174,594.407026,595.782590,597.663407,598.592205,599.846082,600.983860,602.284178,602.595228,602.793666,604.109627,605.937351,607.148237,608.053816,609.112367,609.981072,610.652512,611.906390,612.360493,613.740766,615.236661,617.651536,618.812534,620.019971,621.482829,622.968906,624.060244,624.870525,625.868984,627.192521,627.841226,628.653925,629.164764,630.093562,631.951158,633.181816,634.714333,635.886659,637.535276,638.510514,639.741171,641.180808,641.618157,642.639835,643.893712,645.400342,646.166600,646.754436,648.418936,649.699876,650.489354,651.580692,652.314165,652.917884,653.498383,654.061784,655.176342,657.242918,658.612896,660.261512,661.817249,662.137238,663.275649,664.892836,665.171476,666.146714,667.330932,668.213290,669.025988,670.651385,672.648301,673.145356,675.025300,675.589477,676,676.773695,678.282992,680.526879,680.936680,681.373196,682.510974,682.928933,684.322130,685.552788,686.311134,687.062085,688.029411,689.260068,689.794127,690.212086,691.512404,692.557302,695.320476,697.085193,698.176531,699.569728,700.986145,701.428266,702.403504,704.400420,704.613533,705.226482,706.526799,707.571697,708.825575,709.986573,711.124350,711.664829,712.663287,714.358344,715.960521,717.376938,719.791813,720.185738,721.068911,723.266757,724.666271,725.374335,726.303133,726.671545,728.149994,729.449685,730.941349,732.009467,733.472324,734.958401,736.746338,738.487834,739.277313,740.290697,740.729350 diff --git a/data/torah/labels/shoftim-1.txt b/data/torah/labels/shoftim-1.txt deleted file mode 100644 index 39fb60863..000000000 --- a/data/torah/labels/shoftim-1.txt +++ /dev/null @@ -1 +0,0 @@ -1.919414,3.151501,5.705696,6.499604,7.444077,8.012793,9.235129,10.628327,12.787783,14.761479,15.690449,16.665390,18.314132,19.637669,19.844102,20.775447,21.866785,22.981343,24.099311,25.303338,26.301796,27.430358,28.364676,29.288839,30.172379,31.177987,32.292544,33.128463,35.404018,36.913315,38.143973,39.467510,40.953587,41.766286,43.252363,44.413361,45.202839,46.154857,47.524835,48.616173,50.357669,50.646130,51.611547,52.291342,53.042859,54.320402,55.202761,56.410198,57.155889,57.989155,59.869972,61.286389,61.695456,62.377727,64.513963,66.998498,68.043396,69.065074,69.854552,70.886302,71.665709,72.521358,73.303342,74.227504,75.357681,76.565119,77.493917,78.445935,79.862353,80.808353,82.904167,84.393290,86.224620,87.074377,89.266434,90.473872,91.502232,92.334993,93.259156,94.325497,95.229348,95.879308,97.980004,100.069800,101.091478,102.185955,103.134834,104.074902,105.496691,106.963002,108.356199,109.633297,110.340926,111.050738,111.886657,112.875843,113.512053,114.895979,115.398430,117.460023,118.623880,120.801226,121.278541,123.105332,123.964470,124.432802,125.473767,126.638698,128.287314,131.050489,132.722326,133.952983,135.346181,136.762598,137.668176,139.966952,140.942190,143.240965,144.982462,145.652054,146.259559,147.466997,148.333141,148.546409,150.069753,151.433715,152.408953,153.871810,155.891946,156.913624,158.399701,159.398159,160.628817,161.952354,164.529769,165.582087,166.464445,168.414921,169.900998,170.360703,171.201316,174.684309,176.866985,177.276688,178.211006,179.769479,180.506178,182.263102,182.791195,183.705202,184.628133,185.556931,186.253530,187.460968,187.940100,189.550763,190.618881,190.864921,191.816940,193.303017,194.464014,196.042971,196.836432,198.272087,199.502745,201.847960,203.496577,204.425375,205.330953,206.143652,207.536849,208.837166,209.812404,210.424666,211.112722,211.855760,213.295398,214.943922,217.498209,218.274968,218.944207,220.457892,222.013629,223.174627,223.535585,224.405284,225.984241,227.382008,228.217926,229.912983,230.614060,232.954797,234.022915,235.648311,238.071796,238.880743,239.790073,242.019189,242.715787,243.342726,245.757601,246.564415,247.452658,248.839971,249.884869,250.651127,252.299744,254.018021,255.318338,255.982825,257.129495,258.154849,260.012445,261.103783,262.032581,263.007820,265.585235,266.006432,267.024872,268.394849,269.523338,270.684336,271.845333,272.704472,273.540390,274.260209,276.001705,277.418122,278.602340,279.554358,280.274177,281.551274,284.337669,284.926372,285.591547,286.793926,287.792384,289.110492,290.105744,290.867416,292.077663,292.983241,294.399659,295.071847,296.168655,297.789772,298.950770,300.042108,300.878026,302.085464,303.054173,303.646207,305.410924,306.502262,308.522398,309.274005,311.285572,311.970816,312.711145,313.547063,314.661621,315.647155,317.842755,318.602443,320.373730,321.109554,321.829372,322.688510,323.756628,325.265925,327.773680,328.372309,329.277887,331.715982,333.202059,333.991538,334.384293,335.407955,337.962150,339.099928,340.191265,340.518294,341.723782,342.629361,343.581379,343.981364,344.951356,346.337470,347.231166,348.206106,349.462793,350.205832,351.529369,352.852907,353.572725,354.547963,355.964381,356.985058,358.378255 diff --git a/data/torah/labels/shoftim-2.txt b/data/torah/labels/shoftim-2.txt deleted file mode 100644 index 651a2f41d..000000000 --- a/data/torah/labels/shoftim-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.237636,1.647080,2.614855,3.126660,5.546099,6.914013,8.119171,9.419488,10.650146,11.555724,13.250781,14.899397,15.456676,18.452050,19.775588,20.774046,21.609964,22.668284,23.673281,24.814318,26.579035,27.879352,29.179669,30.224567,31.130146,32.337583,34.171960,35.216858,36.238536,37.004794,38.537311,41.068286,42.624023,43.754626,44.536291,45.764622,48.034273,49.032731,50.263388,51.122527,52.120985,53.235543,53.702243,54.303660,55.609878,58.320713,58.848204,59.313481,59.667470,61.965559,62.616946,63.682301,64.245415,65.191598,66.478743,67.967629,68.721377,69.735681,71.269998,72.248175,73.206645,74.081365,76.528721,78.746823,79.675621,80.604420,81.765417,83.181835,83.814955,84.575032,85.710915,86.430733,87.289872,88.381209,90.068275,91.492683,92.171326,92.720352,93.436879,94.730348,96.461178,98.188762,99.256880,100.116018,101.253796,102.975052,104.272390,104.808243,105.682963,106.771710,107.786014,108.232679,109.209761,110.689341,111.822948,113.332113,115.306599,116.235397,117.419615,118.116213,118.524601,118.915434,119.788050,121.176679,123.293559,124.733196,125.075698,126.196053,127.217731,129.516507,130.073786,130.407770,131.977822,133.143597,134.930260,135.604165,136.463303,137.392102,139.133598,140.898315,141.462746,142.593372,144.577116,146.968771,147.706760,147.911481,149.043509,149.693668,150.619392,152.945776,153.987996,156.230630,156.751740,158.947846,159.617845,161.367285,162.670060 diff --git a/data/torah/labels/shoftim-3.txt b/data/torah/labels/shoftim-3.txt deleted file mode 100644 index fdbe05e49..000000000 --- a/data/torah/labels/shoftim-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.330627,3.111602,4.339788,6.081284,6.558755,8.068052,9.995308,11.109866,12.479843,13.060402,13.873041,16.088751,18.190903,19.724529,21.466026,23.091423,23.404657,23.9,24.461400,25.423556,26.485039,28.035636,28.813213,29.927770,31.413848,32.040786,32.946365,36.522238,38.774573,39.819471,41.630628,42.745185,45.020741,46.878337,47.923235,48.782374,49.410988,49.943371,50.285150,50.802510,52.415597,53.808794,55.016232,56.409429,58.243806,59.683443,61.610699,63.027116,65.720631,68.019407,68.971425,70.085982,70.661590,71.688159,73.741841,75.292439,77.418597,78.463495,79.252973,80.135331,81.157009,82.431432,84.965082,85.470317,87.258253,88.070952,89.696349,90.2 diff --git a/data/torah/labels/shoftim-4.txt b/data/torah/labels/shoftim-4.txt deleted file mode 100644 index 745414976..000000000 --- a/data/torah/labels/shoftim-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.219370,2.008848,3.657465,4.934563,6.188440,6.735173,7.953157,8.697608,9.254887,9.839192,10.671304,11.925182,12.466227,13.434479,14.572257,15.314809,16.336487,16.986646,17.493757,18.933395,21.301830,22.578928,23.484011,24.390084,25.411267,26.177526,27.547503,28.708501,29.730179,30.751857,32.191494,33.143512,34.095530,35.419068,36.603285,37.973263,38.532130,39.854079,41.536328,42.488346,43.184945,43.604228,44.880001,45.721660,46.302159,47.207737,47.881116,48.763474,49.489670,50.760391,52.212110,53.720789,54.543556,55.727773,56.543642,57.843960,58.819198,59.933756,60.424607,61.446285,62.351863,63.837941,64.929278,66.090276,67.228054,69.155310,70.525288,71.500526,72.929767,73.868961,75.753875,77.119755,77.572600,79.097619,79.910962,80.652737,81.953055,82.328398,82.972295,83.787431,85.110969,86.504166,87.479404,88.849381,89.824619,90.838357,91.743935,93.322892,95.087608,96.016406,97.247064,98.233775 diff --git a/data/torah/labels/shoftim-5.txt b/data/torah/labels/shoftim-5.txt deleted file mode 100644 index 7f0f942d4..000000000 --- a/data/torah/labels/shoftim-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.418392,3.591438,5.750893,6.981551,8.049669,9.164227,10.232345,11.248381,12.322141,12.827338,13.895456,15.172553,17.401669,18.330467,19.166386,20.280943,21.116862,21.836680,23.044118,24.297995,25.760853,27.014730,28.477587,29.568925,30.335184,31.101442,32.007020,33.702077,35.350694,37.277950,38.044209,39.390966,40.784163,41.782621,42.873959,44.243937,45.010195,46.008653,47.123211,47.999496,50.048925,51.523601,52.061176,52.951420,54.042757,55.180535,55.907516,56.666612,57.672232,59.645928,60.301152,61.039126,61.787230,62.390948,63.737706,65.150449,66.009587,67.268582,68.570709,69.029730,70.376487,71.560705,72.379039,74.120535,75.165433,76.558631,77.696408,79.414685,80.482803,81.481261,83.640717,84.917814,85.800173,86.143292,86.723791,88.070548,90.624743,91.855401,92.853859,93.301395,94.044433,94.684920,95.739490,96.805123,97.919681,99.266439,100.589976,101.286575,102.772652,103.817550,107.370203,108.484761,110.504897,112.339273,113.987890,116.147346,116.940535,117.990811,118.362331,119.662648,121.032625,122.820562,123.981560,125.003238,125.908816,126.953714,128.091492,128.834530,129.902648,131.202966,132.108544,133.501741,134.685959,135.730857,135.970699,136.961514,138.052852,138.336030,139.132231,140.502209,143.102843,144.565701,146.446517,147.398535,149.813410,150.410710,151.160168,152.181846,153.249964,154.109102,155.255300,156.439518,157.159336,157.581224,158.436434,159.736751,161.129949,162.314166,163.335844,163.900719,164.707367,165.812098,166.743895,168.489063,169.742941,170.671739,171.066478,172.064936,173.342033,174.526251,175.547929,176.499947,177.475185,177.674592,178.543303,180.749199,182.049516,183.303394,185.811149,186.820301,187.702660,188.515358,189.351276,190.883793,192.114451,193.507648,194.552546,195.504564,196.526242,197.315721,198.592818,200.311095,203.051050,205.094406,207.044882,207.444314,208.507739,209.808056,210.945834,212.130052,213.035630,213.941208,216.200716,216.714501,217.617133,217.968843,219.033550,220.841652,221.607910,222.699248,223.457179,224.060898,225.012916,226.127474,227.348614,228.300632,228.565048,229.616307,230.220026,230.924487,232.890320,233.628030,234.185309,234.817577,235.624946,237.087803,239.679386,240.515304,241.072633,242.052214,244.532356,245.739794,247.504510,248.711948,249.849726,251.219703,252.752220,254.168637,255.585055,256.560293,256.841506,257.953490,259.136868,259.345847,260.112106,260.878364,262.666301,264.639997,265.454656,265.893664,266.497383,267.449401,268.772938,269.504390,271.521010,272.565908,274.168085,275.375522,277.743958,278.559546,281.134071,283.061327,285.638742,286.205061,286.869400,287.635658,288.750216,289.586134,290.932892,292.070670,292.503044,293.254887,295.010799,295.606655,296.104875,297.614172,298.542971,299.332449,300.493447,301.460252,302.798217,303.767460,304.765918,305.694717,306.716395,307.738073,308.487620,309.363469,310.420202,312.068818,313.229816,314.390814,314.780172,316.452628,317.571948,318.384646,319.661744,321.124601,322.076619,322.437633,323,323.655576,324.677142,325.373741,325.884580,327.742176,328.470421,330.435691,331.158298,331.504735,332.361029,333.777447,336.076222,337.422979,338.560757,340.627333,342.810009,344.899805,345.410644,346.919941,348.614998,349.775995,350.751233,351.299450,352.121211,353.885927,354.524747,355.255905,356.405563,357.334361,358.448919,359.238398,360.492275,362.001572,363.348329,364.555767,365.368466,367.017082,368.410280,369.431958,370.709055,371.777173,372.822071,373.704429,374.795767,375.886265,376.629304,377.999281,379.129558,379.555018,380.390936,381.683753,383.053731,384.330828,385.189966,386.304524,387.070783,388.347880,389.021259,389.810737,391.691554,392.274630,393.015091,393.676050,395.739004,398.395800,399.463918,400.299837,401.646594,403.016571,403.945370,405.222467,407.219383,409.193079,410.121877,411.004236,412.165233,412.750274,413.424325,414.376343,415.281921,417.371717,417.779589,419.577613,421.172909,422.705426 diff --git a/data/torah/labels/shoftim-6.txt b/data/torah/labels/shoftim-6.txt deleted file mode 100644 index 98d1e8680..000000000 --- a/data/torah/labels/shoftim-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.923470,2.896726,3.918404,5.241942,5.938540,6.751239,7.633597,9.601786,10.768291,11.882849,13.657061,14.841279,15.979057,17.000735,18.068853,18.742231,20.274748,21.136872,23.177243,23.943501,25.383138,27.356835,28.178773,28.889352,29.606181,30.849068,31.801086,32.404805,33.380043,34.564261,35.469839,36.746937,37.815055,39.951290,41.576687,41.801900,42.087694,42.556863,43.915206,45.067810,46.864140,47.321355,48.016744,48.591347,49.502821,50.315520,51.476517,52.126676,53.426993,55.748989,56.213570,58.140827,58.864530,59.495482,60.323502,60.919167,62.064999,63.040237,64.247675,66.616110,67.637788,68.636246,69.611484,70.935022,72.902651,74.133308,75.212643,76.385644,76.773843,77.546641,78.591539,79.740052,80.622410,81.829848,84.021695,84.579844,85.542450,86.543499,87.263318,88.261776,89.562093,90.421231,91.976968,94.206084,95.134882,96.295880,97.047451,97.906589,99.485546,101.203823,102.202281,103.920558,105.011895,106.497972,107.728630,108.703868,110.120285,111.049084,113.301419,114.493412,115.658776,116.634015,117.795012,118.584491,119.397189,120.117008,121.603085,122.178077,123.132593,125.137662,125.485961,127.468361,129.547265,131.035530,132.126868,133.125326,133.914805,134.913263,135.589838,136.366394,137.490782,137.749634,138.558796,139.541583,140.493601,142.211878,143.001356,144.255234,147.064848,148.806345,149.220007,150.315642,151.573828,152.595506,153.454644,153.733283,154.894281,156.217818,157.216277,158.168295,159.189973,160.165211,161.507381,163.424502,165.157501,165.551941,166.527478,167.210211,167.967116,170.462037,170.850315,172.686545,173.317497,175.245058,176.591815,177.474173,179.076350,180.190908,181.235806,182.652223,183.952541,185.020659,186.669275,188.387552,189.527224,190.616668,191.501840,192.778018,194.287315,196.887949,197.390719,197.967319,199.914525,200.440318,201.952983,202.969715,203.666313,204.2,205.036290,206.081188,207.335066,208.867583,209.889261,210.957379,211.600919,212.280916,213.574615,214.596279,215.405191,217.314223,218.259780,219.781405,220.581775,221.191651,221.789213,223.002807,224.070925,225.139043,226.346481,227.600358,228.097021,228.900676,230.499490,231.179153,231.922191,233.477928,234.423648,235.878755,237.043588,238.138840,239.114078,240.042877,241.250314,242.388092,243.316890,244.268908,244.720164,245.522786,246.730223,247.567534,248.494940,250.073897,252.535212,254.880428,255.739566,256.028754,257.690042,259.919158,260.389257,261.056936,262.101833,263.007412,264.052310,265.253848,266.182646,267.088224,267.790335,269.572759,270.265606,271.001716,271.996678,273.654948,275.950143,276.902161,277.854180,278.666878,278.953322,279.734996,282.335631,283.543068,284.750506,285.732005 diff --git a/data/torah/labels/shoftim-7.txt b/data/torah/labels/shoftim-7.txt deleted file mode 100644 index 7b9b27000..000000000 --- a/data/torah/labels/shoftim-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.655808,2.723926,2.920204,3.815264,5.244955,6.382732,7.659830,8.588628,10.051485,11.650951,11.985442,12.974489,14.251586,16.008601,16.638861,18.825917,19.306961,19.986915,20.9,22.587550,24.073627,26.070543,27.185101,29.112357,30.063396,30.760974,31.817619,33.059750,34.406507,35.265645,36.565963,38.052040,39.398797,41.929772,43.160430,44.112448,45.273446,46.596983,46.880830,47.122430,48.059840,48.991091,50.453948,51.744336,54.238801,55.283699,57.605694,59.741930,61.065467,61.947826,63.875082,64.370542,65.314719,66.317708,67.060747,68.662923,69.076482,70.009681,71.054579,72.099477,73.887413,74.955032,75.953490,76.812628,78.066506,79.134623,79.647152,81.110009,82.224567,83.223025,84.198263,86.218399,86.818847,87.495497,88.162852,88.911914,90.046421,92.229096,93.529414,94.922611,95.921069,97.174947,98.475264,99.520162,100.472180,101.284879,102.190457,103.068498,104.024833,104.381539,106.360210,106.850057,107.567648,110.237943,111.946855,113.456152,114.965449,116.335427,117.658964,119.005722,120.259599,121.304497,122.256515,123.672932,125.928120,127.274878,127.653605,128.714515,129.836281,131.066938,132.506576,133.992653,135.060771,136.082449,137.289886,139.147483,139.913741,141.539138,142.354697,143.303854,144.108920,145.884152,147.100984,148.517402,150.746517,151.768195,153.857991,154.613251,155.553048,155.880402,156.902080,158.132738,159.200856,160.431513,161.360312,162.823169,164.193146,165.493463,165.905407,166.956321,167.730392,168.914610,169.704088,170.981186,171.863544,173.237431,174.742818,177.436333,178.195475,179.004308,181.147192,182.029556,182.564167,183.330425,184.537863,185.582761,186.557999,187.533237,189.042534,190.714371,193.082806,193.458268,194.476004,195.191483,196.078181,197.842897,199.491514,200.907931,201.494082,203.111749,204.014566,204.943364,207.404680,209.030076,211.375292,212.629169,214.556426,215.647764,216.762321,218.109079,219.386176,220.477514,221.105668,221.963591,222.450222,223.668725,224.816455,225.977453,227.509970,228.996047,229.561655,231.305374,232.576398,233.384618,234.801035,236.403212,237.378450,238.910967,239.257152,240.664733,243.994606,246.180042,247.099460,248.655197,249.700095,252.091750,253.345627,254.005233,254.994244,256.074587,257.419141,257.723767,258.805713,260.969591,264.290045,266.519160,267.773038,268.748276,269.236514,270.234353,270.780650,271.876966,273.037964,275.127759,275.570625,276.729936,277.565855,278.401773,279.632431,280.496044,281.047244,281.448062,282.347562,283.886158,285.667488,288.964722,289.775242,291.751116,292.995646,294.783583,296.896599,298.080816,299.125714,301.192290,302.678367,303.444626,304.350204,305.123729,305.836281,306.656246,307.212984,307.654163,308.072122,308.954480,311.833755,313.157292,314.318290,315.270308,316.663505,317.035089,318.196022,319.821483,320.140503,321.347938,322.306049,323.484174,324.442285,326.021241,328.064597,329.272035,331.594031,332.997804,334.426865,334.799003,335.797461,336.958459,338.305216,338.955375,340.000273,342.461588,343.901225,345.108663,345.807556,346.780500,347.987937,348.670264,349.638849,350.753406,351.589325,352.727141,353.702379,354.747277,356.161492,357.229610,358.646027,361.293102,363.382898,364.334916,365.472693,366.889111,367.756636,368.639000,370.204145,371.391135 diff --git a/data/torah/labels/shoftim-h.txt b/data/torah/labels/shoftim-h.txt deleted file mode 100644 index f18ca38f9..000000000 --- a/data/torah/labels/shoftim-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.247079,5.338733,5.896012,8.055468,8.649502,9.262905,10.516783,12.258280,13.465717,14.395713,15.137554,16.067550,17.669726,19.898842,21.036620,23.428275,24.370080,26.028910,26.784955,27.793627,29.571350,31.568266,32.087599,33.843821,35.306678,36.630216,38.046633,39.300511,40.206089,42.226225,43.735522,44.571182,45.871758,47.105873,48.007994,50.333446,51.304573,52.465570,53.696228,54.462487,55.437725,57.225661,59.036818,60.337135,61.660672,63.239629,64.493507,65.840264,67.465661,68.580219,69.346477,70.782141,72.365072,73.409969,74.431647,75.662305,76.405344,78.448700,79.679357,80.817135,82.581852,83.348110,84.973507,85.693326,86.622124,87.667022,89.176319,91.521534,92.728972,95.213507,96.351285,98.139221,99.039773,99.973598,100.450618,101.2,102.824096,103.782616,105.657460,107.213197,109.465533,110.533650,112.344807,113.322173,114.945442,115.897460,116.773190,117.469788,119.095185,120.163303,120.883122,122.067339,123.204058,123.922948,125.646002,126.583823,127.419741,129.254118,130.647315,131.451258,132.458471,134.502493,136.290430,137.404987,138.612425,139.351087,140.864761,143.344919,144.854216,147.199432,148.462998,148.811961,149.461456,150.599898,152.062755,153.572052,153.830392,154.895589,155.920188,157.220505,160.285539,161.200275,161.841276,162.491435,164.427849,165.821046,166.564085,167.701863,168.409211,169.907758,170.940186,173.331842,174.608939,175.816377,177.418554,178.649211,180.367488,181.691025,182.047290,182.461136,184.198780,184.731916,186.064342,187.643299,188.873957,189.456051,190.208510,191.183748,192.762705,194.109462,194.667140,195.827739,196.855257,197.505416,198.364554,199.502332,201.220608,202.892445,203.914123,205.237661,207.095257,209.603012,210.810450,212.459067,213.248545,214.293443,216.360019,219.425053,220.307411,222.884826,224.463783,225.648001,226.901878,227.602866,228.139711,230.252727,230.9,231.475424,232.009483,232.891842,234.331479,236.885674,238.603950,239.695288,240.159687,242.203043,244.269619,245.732477,247.264994,248.449211,248.804416,250.004948,251.143662,251.816105,252.837783,254.184540,255.331481,257.319234,258.583603,259.687669,261.731025,262.372039,262.965409,263.913447,265.236984,266.374762,268.418118,269.240371,269.936970,270.819328,271.637733,272.955564,274.488081,275.625859,277.344135,278.830213,279,279.3,279.851891,280.2,281.361188,281.941824,282.684725,283.427764,285.192480,286.701777,288.118194,288.799143,289.952571,291.028258,291.264572,291.933836,292.883866,294.369943,296.502995,297.594333,298.290931,299.684129,300.961226,302.424083,303.561861,304.121664,304.4,304.771823,305.956040,307.767197,308.540755,309.396576,309.784549,311.701589,312.728707,314.934603,317.140498,319.067754,320.693151,321.320090,322.597188,324.060045,325.197822,325.940861,326.604293,326.916099,328.309296,329.622092,331.433248,332.663906,333.383724,334.300582,335.949199,336.692238,337.737136,338.596274,339.873372,340.941489,341.823848,343.333145,344.912102,345.864120,347.210877,348.487975,350.531331,350.989499,351.669108,352.930290,354.114508,355.298725,357.318861,358.294099,359.385437,359.718878,360.476775,361.777093,363.170290,363.724123,365.287423,366.839313,367.010477,368.278680,369.044938,370.000147,372.109972,373.224530,374.199768,375.267886,376.266344,377.636322,378.261677,379.935097,382.159313,383.506070,385.549426,386.780084,387.550325,389.245381,389.706862,390.290279,391.520937,392.751595,394.716271,395.092832,397.021283,397.700500,398.327439,399.465217,400.951294,402.762450,403.456529 diff --git "a/data/torah/labels/sh\342\200\231lach-1.txt" "b/data/torah/labels/sh\342\200\231lach-1.txt" deleted file mode 100644 index 85aa530ee..000000000 --- "a/data/torah/labels/sh\342\200\231lach-1.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.416417,2.716735,3.065034,3.848345,5.032562,5.729161,6.588299,8.376236,9.653333,10.140952,11.092971,11.905669,12.579048,13.298866,14.227664,15.086803,16.201361,17.037279,18.569796,19.359274,20.729252,21.983129,23.028027,24.142585,25.024943,25.884082,26.859320,27.973878,28.809796,30.713832,31.851610,32.826848,33.175147,33.755646,34.568345,36.193741,37.168980,38.097778,38.492517,39.235556,40.094694,41.069932,42.045170,43.554467,44.413605,45.319184,45.690703,46.456961,47.641179,48.686077,49.521995,50.079274,50.868753,52.215510,53.074649,53.933787,54.374966,55.164444,56.627302,57.532880,58.415238,58.856417,59.436916,60.644354,61.317732,62.292971,62.581196,63.312040,64.591746,65.503904,66.316602,66.664902,67.407940,68.661818,69.544176,70.519414,70.821274,71.587532,72.678870,73.305809,74.188167,75.000866,75.860004,76.231523,76.951342,78.228439,79.014834,79.920412,80.219188,81.147986,82.494743,83.237782,84.189800,84.465355,85.347714,86.624811,87.553609,88.250208,88.714607,89.504085,90.990163,91.686761,92.638779,93.010299,93.799777,94.751795,95.750253,96.841591,97.561410,98.165129,99.024267,99.906625,100.205401,101.087759,102.062997,103.897373,104.802952,105.174471,105.731750,106.753428,108.123405,108.959324,109.818462,110.816920,111.211659,111.861818,112.628076,113.812294,115.623451,116.505809,117.039868,117.899006,119.268983,119.686943,120.476421,121.799958,122.098734,122.772113,123.047668,123.697827,124.089482,124.739641,125.923859,126.852657,127.967215,128.451750,129.543088,130.541546,131.098825,131.420820,132.024539,133.162317,134.666988,135.307895,135.749074,136.814108,137.394607,138.625265,139.159324,139.667079,140.479777,141.547895,143.312612,144.032430,144.496829,145.611387,146.609845,148.281682,148.815741,150.348258,151.207396,152.461274,153.622271,155.340548,155.804947,157.244584,158.080503,158.309618,159.191977,159.374652,160.210571,161.696648,162.973745,163.693564,164.483042,166.270979,167.176557,168.244675 diff --git "a/data/torah/labels/sh\342\200\231lach-2.txt" "b/data/torah/labels/sh\342\200\231lach-2.txt" deleted file mode 100644 index 30375fccb..000000000 --- "a/data/torah/labels/sh\342\200\231lach-2.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.253878,2.414875,2.527891,3.340590,4.130219,4.524959,4.896478,5.593077,6.336115,7.241693,8.449131,10.655027,11.560605,11.978564,13.162782,14.254120,15.206138,16.599335,17.667453,18.665911,19.710809,21.707725,22.357884,23.147362,24.285140,25.097839,26.049857,27.025095,28.998791,29.439970,30.017385,31.712442,32.797612,33.865730,34.840968,36.001966,36.930764,37.998882,39.368859,40.042238,41.133576,41.806954,42.642873,43.153712,44.152170,46.056206,46.915344,47.820922,48.703281,49.585639,50.375117,51.257476,52.418473,53.022192,53.881331,54.856569,55.924687,56.923145,58.130582,59.082600,59.779199,60.777657,61.845775,62.681693,65.862827,67.581104,67.975843,68.602782,69.113621,70.367498,70.901557,71.296297,72.271535,73.014573,74.152351,74.802510,75.406229,76.242147,77.333485,78.540922,79.632260,80.235979,80.839698,81.327317,82.465095,83.695752,84.229811,84.717430,85.599789,86.900106,87.364505,89.245322,90.638519,91.219018,91.845956,92.542555,93.889312,95.816569,96.675707,97.558065,99.229902,99.740741,100.483780,101.226818,102.503916,102.991535,103.757793,104.500832,105.592170,106.590628,108.680424,109.725322,110.584460,111.350718,112.000877,112.720696,113.672714,114.485412,115.228451,116.691308,117.457566,118.223825,119.036523,121.242419,122.589176,123.657294,124.934392,125.677430,126.861648,128.161966,128.579925,129.183644,129.926682,130.623281,131.737839,134.083054,135.262026,135.703206,136.260484,136.655224,137.235723,139.116539,139.929237,140.765156,142.274453,142.994271,143.597990,144.201709,144.991187,145.873546,148.265201,149.077899,150.053137,150.633636,151.724974,152.491233,153.327151,154.232729,154.604249,155.231187,155.742026,156.206425,156.879804,157.738942,160.014498,161.012956,162.081074,162.893772,163.799351,164.774589,165.308648,165.842707,166.934045,167.909283,170.649237,172.135314,173.319532,174.480530,175.478988,176.965065,178.033183,179.124521,180.169419,180.633818,181.423296,182.723614,183.536312,184.186471,185.045609,185.951187,186.926425,187.832004,189.364521,190.037899,191.658670,192.494589,193.376947,193.818126,194.746924,195.838262,197.022480,198.206698,199.181936,200.203614,201.387831,202.595269,202.990008,204.568965,205.892503,206.333682,206.960620,208.144838,208.887877,209.863115,210.652593,212.069011,212.319804,213.411142,213.756357,214.452956,215.265655,215.869373,217.030371,218.261029,219.561346,220.072185,221.488602,222.022661,222.672820,223.903478,224.878716,226.596992,227.618670,228.477809,228.942208,229.801346,231.194543,232.936040,234.027378,235.350915,235.861754,236.558353,237.394271,238.485609,239.414407,240.389645,241.388103,242.224022,243.083160,245.242616,247.660581,248.405018,249.310596,250.262614,251.539711,252.073770,252.326106,253.022705,254.299802,255.089281,256.250278,257.248736,258.525834,260.104791,261.056809,261.451548,262.264247,264.168283,264.702342,265.329281,266.165199,266.931457,268.046015,269.462432,269.690006,270.897444,271.779802,272.197761,272.917580,273.567739,274.333997,274.705516,275.309235,276.377353,277.468691,279.349507,279.790686,280.185426,280.673045,280.995040,281.854179,282.802584,284.338714,285.244292,286.289190,286.800029,287.991457,288.723672,289.579727,290.415645,291.599863 diff --git "a/data/torah/labels/sh\342\200\231lach-3.txt" "b/data/torah/labels/sh\342\200\231lach-3.txt" deleted file mode 100644 index e9856a382..000000000 --- "a/data/torah/labels/sh\342\200\231lach-3.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.603719,1.230658,1.996916,3.274014,4.435011,5.456689,6.013968,7.058866,8.196644,9.264762,10.031020,11.772517,12.445896,13.827800,14.897969,15.757108,16.848445,17.800464,20.029579,20.865498,22.746314,24.371711,24.859330,25.625588,26.066767,27.018786,28.040464,28.969262,30.107040,30.780418,31.778876,33.659693,35.563729,36.701507,37.676745,38.234024,39.371801,40.579239,41.066858,42.645815,43.806813,44.758831,46.059148,47.127266,49.031303,50.192300,51.515838,52.537516,53.071575,53.275928,53.926087,55.087085,56.330169,57.235747,57.630486,58.396745,59.023683,59.627402,60.881280,61.786858,62.692436,63.389035,63.992754,64.550033,65.780690,66.546949,67.545407,68.613525,69.658423,70.540781,71.748219,72.885996,73.884454,75.184772,76.554749,77.390668,78.180146,78.923185,79.944863,81.082640,82.313298,83.242096,83.706495,84.426314,86.353570,87.375248,88.071847,89.859783,91.647720,92.112119,92.739058,93.644636,94.805634,97.104409,97.684908,99.379965,100.308763,101.609080,102.700418,103.095157,104.093615,105.161733,106.229851,107.205089,108.087448,108.923366,109.550305,110.711303,112.522459,113.637017,115.424953,117.468309,118.815067,119.813525,121.206722,122.878559,123.969897,124.991575,125.990033,126.942051,128.056609,128.753207,129.798105,132.491620,132.932799,133.536518,134.349216,135.254795,136.183593,137.437470,138.459148,139.132527,140.014885,140.358559,141.264137,142.332255,144.375611,145.583049,147.579965,148.787402,149.298241,150.389579,151.109398,151.637289,152.380327,152.908219,153.511937,154.371076,155.857153,157.180690,159.827765,160.686903,161.151303,162.010441,163.055339,164.053797,165.214795,166.306132,168.395928,169.115747,169.974885,170.416064,171.112663,172.227221,173.318559,174.317017,175.524454,176.383593,177.776790,179.611166,180.516745,181.352663,181.770622,182.536881,183.024500,183.906858,184.394477,185.392935,186.298513,187.645271,189.595747,190.779965,191.662323,192.730441,193.705679,194.959557,196.027674,197.327992,198.071030,199.232028,199.835747,200.671665,202.250622,203.156200,204.108219,205.292436,206.569534,206.964273,207.707312,208.961189,209.797108,210.470486,210.911665,211.306405,211.910123,212.676382,213.326541,214.905498,215.996835,216.414795,217.064953,217.575792,218.806450,219.874568,220.524727,221.453525,222.568083,224.170259,225.749216,226.933434,228.117652,229.069670,230.161008,231.089806,232.181144,232.664137,233.314296,233.520191,234.495430,235.493888,236.445906,237.676563,238.373162,239.325180,240.184318,241.298876,242.715293,244.340690,245.455248,246.918105,247.777244,248.659602,249.518740,250.679738,251.840736,254.253769,254.718168,255.391547,255.992182,256.688780,257.687238,258.825016,259.939574,262.168690,263.329687,264.328145,265.396263,267.114540,267.950458,268.925696,270.574313,271.851411,272.640889,273.128508 diff --git "a/data/torah/labels/sh\342\200\231lach-4.txt" "b/data/torah/labels/sh\342\200\231lach-4.txt" deleted file mode 100644 index cead8950b..000000000 --- "a/data/torah/labels/sh\342\200\231lach-4.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.532517,2.507755,2.879274,3.529433,3.993832,4.713651,5.688889,6.222948,7.732245,8.986122,9.868481,10.797279,12.817415,13.746213,14.698231,15.580590,16.323628,18.204444,19.319002,21.223039,22.337596,24.055873,25.936689,26.842268,27.956825,28.955283,30.882540,31.486259,31.973878,32.647256,33.274195,33.901134,35.178231,36.362449,37.384127,38.475465,39.241723,40.124082,41.145760,42.283537,44.025034,44.953832,46.579229,47.299048,48.343946,48.924444,49.783583,51.757279,52.662857,53.568435,54.682993,55.565351,56.749569,57.748027,58.514286,58.978685,60.418322,60.481814,61.457052,62.362630,63.337868,63.681542,64.471020,65.539138,66.653696,67.327075,68.348753,68.743492,69.625850,69.924626,70.760544,71.851882,72.246621,72.873560,74.452517,75.404535,76.402993,77.308571,78.214150,79.862766,80.698685,81.836463,82.161542,82.834921,83.833379,84.669297,85.412336,87.107392,87.920091,89.127528,90.172426,90.869025,93.260680,94.282358,95.304036,96.256054,97.579592,98.438730,99.576508,99.966621,101.197279,101.540952,102.242177,103.259229,104.304127,105.274739,106.644717,107.155556,107.945034,108.246893,110.313469,111.172608,112.426485,113.239184,115.096780,116.025578,117.929615,118.997732,119.346032,121.644807,122.805805,123.548844,124.802721,125.243900,126.381678,127.333696,129.609252,130.909569,131.548934,132.570612,133.499410,135.473107,135.983946,136.866304,137.818322,138.770340,140.163537,140.999456,142.346213,144.299688,145.298146,145.987035,147.124812,149.423588,150.236286,150.863225,151.722363,152.604722,152.976241,153.742499,155.739416,157.016513,157.736332,158.131071,158.502590,159.640368,160.917465,161.799824,162.310663,163.100141,164.330799,165.468577,166.722454,167.233293,167.906672,168.835470,170.182227,171.087806,172.225583,173.758100,174.176060,174.710119,175.708577,176.103316,176.892794,177.914472,178.309212,179.470209,180.143588,181.420685,182.256604,182.697783,183.347942,184.601819,185.368078,185.786037,186.877375,187.713293,188.317012,188.665311,189.152930,189.826309,191.358826,192.194744,193.402182,195.213339,196.072477,197.140595,197.488894,197.906853,198.417692,199.230391,201.134427,202.945583,203.549302,205.269941,205.868253,206.448752,207.447210,208.256825,209.278503,210.602040,211.530838,212.482857,214.270793,215.222811,216.128389,216.546349,217.080408,217.800226,218.938004,219.727482,220.424081,221.886938,222.513877,224.371473,224.951972,225.950430,227.134648,228.109886,230.083582,230.965941,232.428798,233.845215,235.145532,236.352970,237.003129,238.326666,239.719863,240.718321,241.252380,241.716780,242.065079,242.831337,244.503174,245.315872,246.012471,246.639410,247.591428,248.845306,251.004761,252.096099,252.514058,252.978458,253.814376,255.277233,255.741632,256.298911,257.320589,257.993968,258.435147,259.480045,260.617823,261.709160,262.754058,264.054376,265.261814,266.190612,267.072970,268.117868,269.139546,269.580725,270.625623,272.018820,272.994058,273.504897,274.062176,274.874875,276.059092,276.449206,277.424444,278.399682,279.557596,280.439954,281.415192,283.133469,283.574648,284.039047,285.780544,287.092743,287.766122,288.648480,289.925578,290.900816,291.945714,292.688752,293.942630,294.360589,294.941088,295.773922,296.493741,297.329659,298.351337,299.071156,300.394693,302.484489,303.181088,304.040226,305.131564,305.804943,306.594421,307.174920,307.732199,308.544897,310.565033,311.586711,312.631609,313.699727,314.674965,315.975283,316.950521,318.692018,319.806575,320.596054,321.548072,322.685850,323.521768,324.845306,325.681224,326.702902,327.027981,327.724580,328.351519,329.512516,330.534194,331.602312,332.461451,333.320589,334.713786,335.619365,336.548163,337.360861,338.405759,339.427437,340.379455,341.377913,342.376371,343.351609,344.303628,345.209206,346.114784,347.090022,347.670521,348.367120 diff --git "a/data/torah/labels/sh\342\200\231lach-5.txt" "b/data/torah/labels/sh\342\200\231lach-5.txt" deleted file mode 100644 index b2bb4714d..000000000 --- "a/data/torah/labels/sh\342\200\231lach-5.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.580499,1.486077,1.764717,2.600635,3.436553,3.688889,4.292608,5.035646,5.616145,6.034104,6.730703,7.798821,8.983039,9.493878,9.842177,10.376236,11.397914,12.373152,13.487710,14.532608,15.438186,16.390204,17.295782,18.271020,20.267937,21.150295,22.079093,22.984671,23.913469,24.842268,25.492426,26.096145,27.094603,27.976961,29.695238,30.786576,31.808254,32.644172,33.456871,34.292789,34.826848,35.407347,36.614785,37.288163,38.472381,39.865578,40.538957,41.514195,43.348571,44.254150,45.229388,46.529705,47.040544,47.690703,48.387302,48.967800,49.339320,49.780499,51.819214,52.701572,53.278987,53.901300,54.969418,55.474089,56.727966,57.633545,58.864202,59.607241,60.234180,60.977218,63.229554,65.412229,66.294588,66.851867,67.385926,68.477263,69.615041,70.613499,71.402978,72.424656,74.435716,75.434174,77.115532,78.030038,78.935616,79.794755,80.862873,81.559471,83.649267,85.576523,86.551762,87.364460,88.200378,89.384596,90.406274,92.147771,93.192669,94.051807,94.818065,95.746864,96.861421,97.859879 diff --git "a/data/torah/labels/sh\342\200\231lach-6.txt" "b/data/torah/labels/sh\342\200\231lach-6.txt" deleted file mode 100644 index 5f6cfeaeb..000000000 --- "a/data/torah/labels/sh\342\200\231lach-6.txt" +++ /dev/null @@ -1 +0,0 @@ -0,1.160998,2.089796,2.507755,3.111474,4.130068,5.035646,5.325170,6.323628,7.275646,8.390204,9.435102,10.944399,11.289615,12.264853,13.193651,14.981587,15.817506,16.789660,17.718458,19.529615,20.806712,21.781950,22.641088,23.685986,24.545125,25.566803,26.495601,28.678277,29.650431,30.323810,31.438367,33.063764,33.830023,34.642721,35.594739,36.384218,37.591655,39.507630,40.622188,41.501462,42.400873,44.600601,46.249218,47.294116,48.617653,49.546451,50.034070,50.565045,51.421100,52.346814,52.901009,53.620828,54.572846,54.755521,55.614660,56.797335,57.325227,57.975385,59.507902,61.388719,62.456837,62.964592,63.846950,64.261825,65.794342,66.607041,68.232438,70.229354,71.227812,72.760329,74.641145,75.105544,76.289762,78.588537,79.679875,81.119512,82.164410,82.439966,84.854841,85.806859,85.966315,87.336292,88.265091,89.565408,90.470986,91.350261,92.418379,93.765136,94.737290,95.776020,96.464909,97.068628,97.950986,99.297744,100.316338,101.988174,102.588809,102.726587,104.444864,105.347358,106.345816,107.274614,108.017653,108.644592,109.759150,110.525408,111.941825,113.033163,113.122959,114.539376,115.700374,117.441871,119.717426,120.506905,121.551803,122.109082,123.293299,125.231048,125.576264,126.249642,127.314676,128.243475,129.260527,130.026785,131.466422,131.927738,132.342613,133.271411 diff --git "a/data/torah/labels/sh\342\200\231lach-7.txt" "b/data/torah/labels/sh\342\200\231lach-7.txt" deleted file mode 100644 index a5b5f4759..000000000 --- "a/data/torah/labels/sh\342\200\231lach-7.txt" +++ /dev/null @@ -1 +0,0 @@ -0,0.671837,1.368435,2.250794,3.202812,4.178050,6.198186,6.964444,7.168798,7.981497,9.212154,10.187392,12.044989,12.532608,13.786485,15.853061,16.990839,17.826757,18.639456,19.730794,20.798912,21.750930,22.749388,23.678186,24.673560,25.997098,27.181315,28.272653,29.155011,30.246349,31.337687,32.150385,33.399451,34.397909,35.636424,36.750982,38.701458,39.351617,40.791254,41.720052,43.415109,44.088488,44.738646,45.244859,46.057558,46.356333,47.238692,47.881141,48.949258,51.201594,52.130392,53.059190,53.941549,54.707807,55.636605,56.207853,56.904451,57.810029,58.433884,59.382819,60.265177,62.305449,64.395245,65.556243,66.345721,67.344179,68.017558,69.062456,69.384451,70.266810,71.334927,73.610483,75.212660,76.350438,77.116696,78.022274,79.043952,80.831889,81.714247,82.921685,83.757603,84.709621,85.638419,86.146175,86.865993,87.164769,88.116787,88.883045,89.205041,90.296379,91.387717,92.270075,93.222093,94.197331,95.242229,96.078147,96.588986,97.349077,97.976016,99.206673,100.112252,100.437331,101.127762,101.914156,102.819735,103.655653,104.630891,105.513249,106.488488,106.833703,108.482320,109.295018,110.525676,111.776469,113.030347,113.326039,115.067535,115.644950,116.248669,117.409667,118.408125,120.196061,121.333839,122.239417,124.213113,125.049032,126.117150,126.511889,127.208488,129.019644,129.971662,130.247218,130.967036,132.011934,133.614111,134.030528,134.773567,135.702365,137.180732,138.109531,139.131209,139.943907,141.871163,142.239599,143.052297,144.043045,145.157603,147.270619,147.663816,148.476515,149.451753,150.239689,151.307807,152.422365,154.419281,156.485857,157.530755,159.365132,160.572569,161.083408,161.524587,162.290846,163.289304,164.519961,165.495200,166.493658,168.002955,169.071073,170.139190,171.671707,172.763045,173.459644,173.970483,174.945721,176.431798,177.778556,178.916333,180.146991,180.541730,180.936469,181.354429,183.181102,184.290704,185.707121,187.448618,188.748936,190.745852,191.721090,192.951747,193.694786,195.041543,196.109661,197.154559,198.153017,199.151475,200.242813,201.055511 diff --git "a/data/torah/labels/sh\342\200\231lach-H.txt" "b/data/torah/labels/sh\342\200\231lach-H.txt" deleted file mode 100644 index 6eae5184c..000000000 --- "a/data/torah/labels/sh\342\200\231lach-H.txt" +++ /dev/null @@ -1 +0,0 @@ -0,3.181134,4.202812,4.829751,5.921088,6.478367,8.528185,9.874942,10.989500,12.150498,13.265056,14.472493,16.794489,17.862607,18.184602,19.206280,19.786779,21.203196,24.570090,26.358026,27.101065,28.122743,30.328639,31.303877,32.534534,33.715668,34.783786,36.943242,37.848820,39.265237,40.542335,41.703332,43.468049,44.536167,46.091904,48.204920,49.180158,50.457255,51.429410,51.704965,53.121382,54.793219,55.814897,56.906235,57.463514,58.554852,60.040929,61.805645,63.198843,64.336620,65.335078,65.915577,66.728276,67.889274,69.793310,70.698888,70.904784,71.133899,71.993038,72.875396,74.941972,77.008548,77.469863,78.027142,79.463695,81.507051,82.737709,84.339886,85.384784,86.336802,87.660339,88.565917,89.843015,90.771813,91.793491,93.029512,94.492369,97.069784,98.277221,99.809738,100.947516,102.085294,103.223072,104.198310,105.289648,106.868605,107.913503,109.956859,111.466156,112.302074,113.579172,114.902709,115.780441,117.127199,118.682936,120.470872,121.446110,122.839308,123.744886,124.229421,125.111779,127.805294,128.943072,130.336269,131.450827,132.588605,133.679942,135.560759,137.139716,138.184614,140.878128,143.037584,144.198582,145.661439,147.008196,148.939304,150.146742,151.865018,154.070914,155.046152,156.300030,156.741209,157.670007,158.738125,159.083340,161.057036,163.077172,163.796991,165.329508,167.674723,168.998261,169.369780,170.553998,171.320256,172.341934,173.619032,174.687150,175.778488,177.728964,178.143839,178.979757,180.094315,181.394633,182.638293,184.681649,185.842647,186.516026,187.166184,188.652261,189.093440,189.720379,190.246728,190.896887,192.173985,193.845821,195.587318,196.678656,199.372171,201.299427,202.158565,203.760742,204.828860,206.102874,207.124552,208.680289,209.678747,210.700425,212.023962,213.068860,214.972896,216.296434,217.387772,218.037930,218.688089,219.477567,221.288724,222.403282,224.121558,224.864597,226.373894,227.650991,228.556570,229.601468,230.971445,231.900243,232.643282,233.455980,234.663418,237.093022,238.018736,238.552795,239.435154,240.526491,241.060550,241.873249,243.103906,244.381004,245.750981,246.117875,247.325312,247.833067,248.529666,249.455380,250.357875,251.681412,252.633430,253.260369,254.398147,257.109205,257.573604,258.293422,258.731518,260.519454,260.935871,261.725350,262.090701,263.344579,264.691336,265.200633,265.874012,267.174329,268.474647,268.748661,270.002538,271.344670,273.898865,274.567617,276.819953,278.073831,279.350928,280.349386,281.301404,282.369522,283.553740,283.994919,285.132697,286.270475,288.406710,289.219409,290.032107,290.868026,291.285985,292.121903,293.747300,294.768978,295.651336,296.742674,298.344851,299.529069,300.295327,301.665305,302.710203,303.592561,304.799998,305.937776,307.354193,308.027572,309.397549,310.721087,311.719545,313.043082,313.902221,314.645259,315.481178,316.781495,318.430112,320.009069,321.704125,322.911563,324.769159,325.721178,326.951835,328.252153,329.844422,330.866100,332.166418,333.884694,335.045692,336.415669,337.971406,339.085964,340.734581,341.872359,342.731497,344.240794,346.365866,347.457204,348.594981,349.895299,350.452578,353.009073,354.532646,355.637952,357.170469,359.538905,360.816002,361.837680,363.416637,364.136456,364.794430,365.381071,365.715413,367.028438,367.522316,369.403132,370.353608,370.861364,371.557962,372.602860,373.972837,375.180275,376.573472,379.561083,380.327284,380.791683,382.138441,383.369098,385.203475,387.479030,388.454268,389.893906,390.915584,391.960482,393.376899,394.558033,395.649371,396.508509,397.437307,398.714405,399.898622,400.238057,401.004316,401.463874,402.185450,402.903512,404.041289,404.293625,405.521199,406.241017,407.843194,408.888092,410.443829,411.163648,412.672945,413.787503,415.598659,415.943874,416.710133,418.707049,420.402106,422.491902,422.857253,423.577072,424.711766,425.919203,427.275214,428.645191,429.643649,431.060066,431.543059,432.801014,433.799473,434.270130,435.152488,436.612262,438.725278,440.861513,441.534892,442.324370,443.386821,444.669586,446.942485,447.964163,449.148381,450.704118,452.027656,453.397633,454.605071,455.089606,456.320263,456.801715,457.684073,458.845071,459.518449,460.722803,461.044798,462.391556,463.436454,464.690331,464.873007,466.034005,466.400898,468.003075,470.190467,471.371601,471.693597,471.967610,473.288064,473.868563,475.935139,476.326794,477.209152,478.230830 diff --git a/data/torah/labels/tazria-1.txt b/data/torah/labels/tazria-1.txt deleted file mode 100644 index 092cbd6d3..000000000 --- a/data/torah/labels/tazria-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.826794,2.876004,3.320926,4.063965,5.248182,7.430858,8.034577,8.731175,9.613534,10.426232,11.401470,11.842649,12.632128,13.746686,14.466504,15.813262,16.533080,17.252899,18.831856,19.621334,20.596572,21.780790,23.034667,24.172445,24.985144,25.635302,27.717077,30.452244,31.218503,32.216961,32.983219,33.772698,34.446076,35.305215,36.115446,36.649505,36.997804,39.250140,40.010236,40.712997,41.217674,42.123252,42.571680,43.400349,43.934454,45.095451,45.891847,46.836948,47.626426,48.148257,49.077055,50.145173,51.217176,52.140808,53.097992,53.957130,54.607289,54.851807,55.292986,56.424460,57.731082,58.382044,60.703236,63.118111,64,65.324007,67.553122,68.481921,68.826327,69.741335,70.670133,71.272287,71.877571,72.085127,72.349977,73.384686,73.800891,74.406316,74.739688,75.389847,75.691706,76.829484,78.803180,79.848573,80.754151,81.682950,82.631957,83.769735,84.628873,85.638513,86.579350,87.392048,88.344066,89.415616,89.740695,91.845203,93.541349,94.175707,94.957767,97.813821,98.4,99.996497,100.988269,101.345240,103.153055,103.942534,104.592692,105.289291,106.078769,106.728928,107.564846,108.145345,109.050924,109.956502,111.558679,112.394597,114.019994,117.127693,118.102931,118.378040,118.912099,119.213958,119.980217,121.968956,125.140946,125.672987,126.346366,126.671445,127.669903,128.366502,128.693831,129.531265,130.023836,130.870203,131.830941,132.232597,133.022076,133.532915,134.484933,135.570227,135.781434,136.719922,137.567144,138.790122,139.143871,139.769672,140.605591,142.068448,143.136566,144.088584,144.342982,145.141322,145.598138,147.373612,148.325630,149.834927,150.548464,152.313181,153.334859,154.389990,155.085641,155.782240,156.896798,157.639836,158.313215,158.824054,159.870395,160.636653,161.373957,162.215610,162.914079,164.771675,165.905186,166.907009,167.563375,169.369226,170.390904,170.609144,171.269681,171.525100,172.314579,173.243377,173.476428,173.988854,174.725827,176.706440,178.455330,178.770883,179.421042,179.931881,181.151306,182.297068,184.899502,185.571744,187.963399,190.378274,191.348012,192.079346,193.124244,193.593475,194.260717,194.980536,195.770014,197.928947,199.657222,200.516360,201.538038 diff --git a/data/torah/labels/tazria-2.txt b/data/torah/labels/tazria-2.txt deleted file mode 100644 index 1caac1ea4..000000000 --- a/data/torah/labels/tazria-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.023248,4.893447,6.229144,6.890248,9.778325,11.526597,12.923500,13.652468,14.465166,14.980291,15.770059,16.327338,17.116816,18.556453,19.206612,20.002287,20.739129,21.684142,22.520060,24.099017,24.775755,25.701194,26.397910,27.419588,28.464486,30.229202,32.272558,32.874368,33.757074,34.888309,36.135875,36.762813,37.087893,38.364990,39.464667,40.578762,42.335603,43.473380,44.425398,45.075557,46.329435,47.258233,47.838732,48.767530,49.951748,50.926986,51.600364,52.366623,53.156101,54.340319,54.607787,55.942496,57.083058,59.335394,60.426732,61.000978,61.750269,62.792100,64.418712,65.393950,65.860145,66.742851,68.815797,69.605275,70.208994,72.159470,73.297248,74.411806,74.969085,75.572804,76.478382,77.685820,78.707498,79.391244,80.621902,80.951846,81.620360,82.554428,83.162895,83.754165,84.724191,85.629769,86.442468,87.835665,89.809361,90.854259,91.346628,91.758566,92.589852,93.685359,94.056878,94.892796,95.655929,96.259647,96.840552,98.001144,99.255022,101.298147,102.064405,103.225403,104.223861,104.673496,105.046405,106.160963,107.112981,107.278764,108.350009,109.798332,110.518209,111.366635,112.127103,113.063487,113.867905,114.727043,116.097021,116.954249,117.536658,118.453992,120.555252,122.134209,122.370464,123.109912,123.806511,124.874629,125.841298,127.435311,128.039029,128.526648,129.153587,130.074858,130.923284,131.137533,132.602997,133.601744,134.251903,134.925282,135.877300,136.716578,136.939397,138.233461,139.322888,140.576765,142.109282,142.898761,143.665019,144.361618,146.242434,147.914271,148.346014,149.470008,150.488504 diff --git a/data/torah/labels/tazria-3.txt b/data/torah/labels/tazria-3.txt deleted file mode 100644 index 71b7bd28d..000000000 --- a/data/torah/labels/tazria-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.935850,3.342734,4.039332,4.526952,5.362870,6.175568,7.754525,9.728221,10.773119,11.678698,12.424396,13.489854,14.114895,14.788274,15.508092,16.622650,17.597888,17.839284,19.135446,20.124622,22.017701,23.192754,24.098332,24.887811,25.087558,25.979149,27.013139,27.779397,28.429556,30.741213,32.890113,34.304205,34.977583,35.511642,36.440440,37.671098,38.440635,39.342935,41.229893,42.225488,42.653966,43.114444,43.762525,44.589681,45.689714,47.139369,47.557210,48.168133,48.665770,49.464295,50.507685,51.396091,51.930150,53.074427,53.543433,54.112825,54.879084,55.547367,57.464136,59.248251,60.227311,61.063229,61.959959,62.985724,64.541461,65.377380,66.306178,67.002777,67.838695,68.773337,69.626631,70.230350,71.739647 diff --git a/data/torah/labels/tazria-4.txt b/data/torah/labels/tazria-4.txt deleted file mode 100644 index 4c4e6039b..000000000 --- a/data/torah/labels/tazria-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.077316,4.267884,4.479765,5.211747,6.094105,6.558504,7.208663,9.156357,9.829736,11.849872,13.289509,14.195087,15.239985,15.628730,16.540302,17.792941,18.735030,23.518341,24.295663,26.374395,27.001334,28.394531,30.646867,31.714985,32.458023,32.634685,33.456481,34.249434,34.783493,35.898051,36.892480,37.917059,38.590438,39.681776,40.401594,41.005313,41.910891,43.280869,43.931027,45.904723,46.763862,47.183005,48.180279,49.035266,49.741536,50.665080,52.197597,52.728046,53.335374,53.782405,54.493719,55.785741,56.621660,57.248599,58.595356,61.566850,62.333109,62.890388,63.726306,64.275548,64.956964,65.746442,66.652020,67.606629,68.419328,69.371346,70.091164,70.810983,71.716561,72.271525,74.270756,75.016235,76.571972,76.857231,77.965169,78.801964,79.591443,80.404141,81.123960,81.936658,82.557833,83.701375,84.782581,85.211387,85.929132,87.090130 diff --git a/data/torah/labels/tazria-5.txt b/data/torah/labels/tazria-5.txt deleted file mode 100644 index 0bfa2da41..000000000 --- a/data/torah/labels/tazria-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.032501,3.547662,4.406801,4.802308,5.271499,5.711825,6.501687,7.337606,7.616245,8.916563,9.822141,11.401098,11.888717,13.630214,14.535792,15.302050,16.161189,16.389486,17.252526,18.937837,19.758193,20.408352,20.942410,21.863381,22.605979,23.557997,24.370696,24.997634,26.785571,28.387748,28.938046,29.879542,30.715460,31.164403,31.937188,33.478159,33.887551,34.448107,36.236044,37.443482,37.790921,38.511600,39.044799,39.306247,40.253445,41.182243,41.855622,42.300790,42.854080,44.999068,46.554805,47.019226,47.622945,48.273103,48.900042,49.875280,51.105938,51.918636,52.130802,54.495156,55.063811,57.060727,57.989525,58.308483,58.998470,59.969052,60.428190,60.846149,61.403428,61.844607,62.587645,63.516443,64.282702,64.817359,65.369348,65.677542,66.744722,68.634489,69.155076,69.791214,70.116294,71.021872,71.811350,73.668947,73.851586,75.271124,76.378949,76.982668,77.957906,80.303122,81.208700,81.524239,83.102009,83.808248,85.898044,87.918180,88.475459,89.079177,89.915096,90.797454,92.608611,93.495001,93.982620,94.173996,94.928382,96.496596,97.123535,98.238093,99.120451,99.979590,101.535327,102.504437,103.183943,104.670020,105.716306,106.239651,107.330988,108.677746,110.025293,111.004882,112.541445,113.303658,114.023476,114.696855,115.386615,117.065290,118.949122,119.918658,120.754577,121.404735,122.147774,122.896095,124.707252,125.566390,127.098907,128.050925,129.908522,130.837320,132.207297,133.019995,133.763034,134.239229,134.722220,135.996673,137.413090,138.527648,139.032337,139.905275,140.369675,140.844731,141.193030,142.087951,143.086409,143.956205,145.256522,146.254981,148.182237,150.039833,150.444719,152.243284,153.043669,153.624417,154.924734,156.397005,157.965575,158.732807,159.708045,160.665723 diff --git a/data/torah/labels/tazria-6.txt b/data/torah/labels/tazria-6.txt deleted file mode 100644 index bf1fb4bfd..000000000 --- a/data/torah/labels/tazria-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.122288,4.721522,5.543219,6.355917,7.168616,7.679455,8.306394,9.490611,10.396190,11.278548,12.068026,12.880725,13.739863,14.622221,15.133060,15.690339,16.503038,17.393018,18.159276,19.376821,19.835935,20.881926,22.019704,22.623423,23.598661,24.666779,25.595577,26.129636,27.615713,27.994887,29.612629,30.440655,31.973172,34.248727,35.200745,35.652354,36.524283,37.161651,38.369088,39.528050,39.832282,40.946503,41.956068,42.629446,43.068206,44.115524,45.093580,45.785926,46.157445,46.668284,47.227889,48.990280,50.917536,51.892774,52.659032,53.727150,55.979486,56.527176,56.875476,58.733072,60.660328,61.542687,62.471485,63.330623,64.212981,65.095340,65.708361,66.349217,67.380198,68.285776,69.005595,70.096932,70.670172,72.318789,72.963492,73.613651,74.937188,75.842767,76.492925,77.026984,77.693951,78.652381,79.409746,80.555135,82.164800,84.095291,84.432712,84.880763,85.279030,85.826648,86.751918,87.541396,88.377315,89.083821,89.687540,90.918197,91.684456,92.473934,93.078436,94.018789,95.070374,96.115272,96.811871,97.485250,98.088969,98.438453,99.017549,100.085667,101.522468,103.008545,103.925694,104.542787,106.493263,108.513399,109.186144,110.616967,111.149824,111.935296,112.189745,113.096909,113.646469,114.026200,114.457657,115.126967,115.901376,116.511598,117.138536,118.206654,118.484584,119.808831,123.021980,123.788239,124.060329,124.949237,125.803474,126.062729,126.731732,127.219351,128.217809,129.176960,129.370562,130.754946,131.533376,133.685127,134.033611,134.718053,135.739731,137.574107,138.005223,138.654288,139.002587,139.884946,140.279685,141.115603,142.717780,143.321499,144.157417,144.714696,145.806034,147.640410,149.358687,150.194605,150.775104,151.634243,152.609481,152.873877,154.304537,154.726681,154.958880,155.632259,156.282418,156.602103,158.387852,159.548849,159.943589,161.034927,161.685085,161.935433,162.150191,162.631431,163.240822,163.952056,164.439675,164.965721,165.983516,166.336252,166.986411,167.868769,168.449268,169.401286,171.142783,174.396917,175.132605,176.998892,177.788370,178.036639,178.647509,179.506647,180.971058,181.551557,182.224936,182.712555,183.618133,184.361172,184.762935,185.083762,185.924549,187.175622,188.081201,189.403858,189.840846,190.387062,190.631849,191.494762,192.477843,192.993797,193.956277 diff --git a/data/torah/labels/tazria-7.txt b/data/torah/labels/tazria-7.txt deleted file mode 100644 index 7d6fdc6d6..000000000 --- a/data/torah/labels/tazria-7.txt +++ /dev/null @@ -1 +0,0 @@ -3,4.820438,6.365462,7.271041,8.339159,8.664238,10.521834,12.282187,12.602766,13.118105,14.097102,14.322055,15.146886,16.327481,16.791880,17.651018,18.533376,19.113875,19.764034,21.041132,22.109249,22.643308,23.927704,24.206343,25.676864,28.594915,29.335291,31.146447,32.121686,33.073704,33.816742,34.652661,34.880527,35.395699,36.115518,37.341842,39.129779,39.457959,40.197897,40.577372,40.764833,41.613260,42.127283,42.359483,43.102521,43.566920,44.913678,45.567626,46.496424,47.657422,49.398919,49.912953,50.629576,50.979275,51.883454,52.226763,52.646549,53.064508,53.578511,54.504145,55.247184,56.106322,57.220880,57.731719,58.191879,58.586618,59.654736,64.670246,65.068943,65.707920,66.097271,67.281489,67.764640,68.080771,68.661270,69.357869,70.008028,71.099365,72.083812,72.710751,73.666998,74.568347,75.264946,76.580684,78.358890,79.142678,79.769617,81.093155,81.743313,82.439912,83.259668,85.086987,85.777258,86.613177,87.100796,88.122474,88.935172,89.446011,89.724411,90.281930,91.979304,92.375651 diff --git a/data/torah/labels/tazria-h.txt b/data/torah/labels/tazria-h.txt deleted file mode 100644 index e55f31c33..000000000 --- a/data/torah/labels/tazria-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.407538,3.867303,4.567346,6.471382,8.003899,8.979138,10.581314,11.301133,12.253151,12.671116,13.407335,14.575756,15.627709,17.601405,19.273242,20.155600,20.695213,22.315056,23.621798,24.922116,25.604942,26.257023,26.907182,27.557340,28.021739,29.507817,31.504733,32.363871,33.014030,34.430447,34.846992,35.311391,36.913568,37.842366,38.551488,39.758925,41.825501,43.497338,44.797656,45.958653,46.724149,48.024466,49.835623,50.253903,50.857301,51.343820,52.993536,53.581112,54.873253,55.670908,56.390726,57.505284,58.480522,59.270001,59.554964,60.918617,61.654858,62.505153,63.271764,65.101110,67.013072,68.678906,69.630924,70.281082,71.767159,73.772188,74.566500,75.815544,77.685028,78.520947,79.380085,79.937364,81.748520,83.490017,84.349155,84.952874,85.974552,87.483849,87.743691,88.923486,89.917775,90.869793,91.705711,92.570804,93.115127,94.856624,96.389141,97.410819,98.130638,100.173994,102.797848,103.680207,104.632225,106.280842,107.372180,108.115218,108.951136,110.088914,110.855173,111.435672,112.782429,113.840615,114.258574,114.895445,115.797596,116.464470,117.648688,117.862987,118.128537,118.689143,120.659127,122.516724,123.608062,125.419218,126.139037,126.599212,128.135953,129.289101,130.078579,131.030598,131.936176,132.609554,133.816992,135.170959,136.022007,136.333479,136.835208,137.671126,139.319743,141.386319,141.945440,142.777498,143.408917,144.683552,145.661739,146.378850,147.173829,147.309555,148.107626,149.152524,151.451299,153.099916,156.652569,158.231526,158.732326,159.452145,159.707564,161.425841,162.206930,164.305115,166.270422,166.967020,167.663619,168.685297,169.869515,170.323907,170.937633,171.849486,172.778285,173.846403,174.142831,176.608595,177.251817,177.645787,177.4,178.412045,179.311306,179.847287,180.776086,181.429807,183.125696,185.360500,186.823357,187.915133,188.336686,190.380042,190.674164,191.587480,191.974481,192.856839,193.112259,194.257775,195.271715,195.509869,196.363052,197.171559,197.984257,198.564756,200.654552,201.334270,202.006998,202.930108,204.545177,206.077694,206.611155,207.121994,208.817648,210.001268,210.651427,211.487345,213.670021,214.691699,215.136980,215.764688,217.436525,218.806502,220.989178,222.010856,222.568135,224.286411,226.107101,227.339986,227.781165,228.431324,229.453002,231.101618,232.773455,233.415310,234.669188,235.714086,236.410684,238.198621,240.275734,240.840067,242.419024,243.131874,243.794604,245.582540,246.813198,247.834876,248.412352,249.387591,250.525368,251.407727,253.056343,253.512070,254.301549,254.905267,256.298465,260.060097,261.476515,262.521412,264.541549,265.228610,267.142183,268.131104,269.129562,270.128020,270.757956,271.361674,271.895733,274.018314,274.914327,275.773466,276.980903,278.815280,281.090835,281.787434,283.110971,285.618727,286.524305,287.429883,289.357139,291.307615,292.050654,292.723580,293.095100,294.975916,296.461993,296.820226,297.553331,298.157050,298.926924,299.853399,301.489877,302.302576,302.999174,303.765433,304.694231,305.571581,305.884340,307.832893,308.599152,310.503188,312.175025,313.034163,313.777202,315.054299,316.610036,317.125965,317.469174,319.096938,319.533621,319.893589,321.895252,324.194028,325.053166,326.980422,328.605819,329.336795,329.731534,330.904595,331.206546,331.613205,332.506863,333.523126,334.475144,334.906027,335.142072,337.052559,338.736802,339.125325,339.619160,340.417552,340.842550,341.981465,343.905229,344.265197,345.907528,346.673787,347.323945,348.043764,348.177637,349.808481,350.549885,350.880481,351.623520,353.272137,356.708690,358.775266,360.656082,361.436424,361.924043,363.117398,363.944179,364.464717,365.186458,367.020834,369.714349,370.017667,371.575561,372.118213,374.022249,374.416988,374.929585,375.788723,376.624641,377.739199,378.149538,378.414954,379.573575,380.915890,381.635709,382.195396,382.961655,384.711445,386.049909,386.300132,387.693330,389.318726,390.688704,391.248092,391.782151,392.034730,393.614418,395.300637,396.043675,396.949254,400.253195,400.903354,401.785712,403.457549,405.338365,406.406483,407.079862,407.915780,408.983898,409.541177,409.791187,411.939194,412.717035,413.738713,414.571091 diff --git a/data/torah/labels/terumah-1.txt b/data/torah/labels/terumah-1.txt deleted file mode 100644 index 971c09372..000000000 --- a/data/torah/labels/terumah-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.913023,5.308793,5.657092,6.258792,7.660934,9.263111,9.611410,10.586649,12.258485,13.744562,14.278621,15.834358,17.065016,17.489172,18.597533,19.355884,20.725862,21.910079,23.210397,23.698016,25.439513,26.879150,28.504547,29.665544,30.896202,32.498379,33.682596,35.006134,36.515431,38.698107,41.020102,42.319132,43.481417,44.178016,46.012392,47.378258,49.096535,51.743609,52.951047,54.158485,55.087283,56.434040,57.780798,59.499074,61.449550,62.889188,64.398485,65.954222,67.649278,69.560973,71.906188,73.508365,74.878342,76.271540,78.059476,79.298746,80.009952,81.356710,83.362238,85.103734,87.448950,88.586728,89.701285,90.769403,92.116161,93.114619,94.368496,95.808133,96.806591,97.874709,98.545654,99.569766,100.830722,102.990177,105.275600,106.204398,107.249296,108.725506,110.198230,112.006324,113.863920,115.346183,116.344641,117.737839,118.759517,119.943734,121.615571,123.240968,124.216206,125.307544,126.491762,127.815299,128.999517,130.741013,133.132669,134.781285,135.797152,136.801421,138.357158,140.454374,142.112979,143.513813,144.788536,146.112073,148.619828,149.664726,150.686404,152.567221,154.099738,155.887674,156.826231,157.745271,158.999148,160.333011,161.610108,162.271533,163.165845,164.512603,167.461537,168.459995,169.528113,170.735550,172.128748,173.103986,174.357863,175.913600,176.262870,177.251592,178.862535,180.134018,181.132477,182.664994,183.733111,184.172640,185.204239,186.574216,188.571132,189.848230,191.264647,192.773944,193.483931,194.575269,196.014906,197.872503,198.285236,199.590779,200.649304,202.019281,203.157059,204.573476 diff --git a/data/torah/labels/terumah-2.txt b/data/torah/labels/terumah-2.txt deleted file mode 100644 index 58714ea9b..000000000 --- a/data/torah/labels/terumah-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.848411,5.162810,6.597305,8.199482,9.546239,10.823337,12.007554,13.054030,13.958031,15.513768,18.253722,19.273800,20.481237,21.827995,23.360512,24.614389,25.821827,27.284684,28.004503,29.351260,33.437972,34.482870,35.411668,36.758425,37.965863,38.861764,39.628022,41.230199,42.367977,43.049063,45.254959,46.601717,46.852209,48.412873,48.988445,49.615384,51.287221,53.075157,55.954432,57.347629,59.437425,61.736200,63.199057,64.917334,65.458317,66.705271,68.563060,69.239146,69.492130,70.585846,71.314990,73.143021,74.512999,75.313522,77.067194,80.852177,81.099633,82.965193,83.799408,84.945007,86.562583,87.559423,89.602779,90.856657,91.248847,93.155432,94.144939,94.864758,97.070654,100.344667,103.014962,105.499497,106.985574,109.191470,110.375688,112.697683,114.253420,115.391198,117.086255,118.549112,119.003362,119.872649,121.335506,122.682264,123.154779,124.625486,126.645622,128.224579,128.828298,129.385577,131.150293,132.938230,134.238547,135.469205,136.932062,138.325259,139.439817,140.925894,142.388751,143.619409,144.641087,146.336143,147.822221,149.029658,150.422856,151.885713,153.511109,155.136506,155.848657,156.831563,158.665939,162.638396,163.330096,165.280573,166.488010,168.183067,170.342523,171.023496,172.734178,174.529709,176.201546,178.146351,179.510556,180.886522,182.039040,183.473807,185.134485,185.602437,187.119527,188.245959,189.337297,190.753714,192.100471,193.052490,194.283147,195.838884,197.139202,198.625279,200.366775,202.294032,203.896208,205.126866,205.501013,207.265071,208.625695,208.927554,210.274311,211.644289,212.967826,214.244924,215.266602,216.590139,217.777984,218.447736,218.825532,220.630411,223.165013,225.301249,227.948324,229.945240,232.011816,233.688886,234.617684,235.941221,237.055779,238.077457,239.022988,240.392965,242.831060,243.193055,245.362035,246.555351,247.948549,249.666825 diff --git a/data/torah/labels/terumah-3.txt b/data/torah/labels/terumah-3.txt deleted file mode 100644 index 92deb1aaf..000000000 --- a/data/torah/labels/terumah-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.756287,5.056604,6.333702,7.773339,10.291661,11.767171,13.183588,14.785765,16.341502,18.733157,19.963815,21.798191,23.005629,24.654246,26.302863,27.487080,29.066037,30.714654,33.408169,34.592386,36.658962,38.214699,39.584677,41.395833,42.440731,43.694609,45.273566,47.084722,48.640459,52.309212,55.351026,56.932354,59.786037,60.956148,63.301364,65.135740,67.248756,70.104811,71.335468,72.844765,74.214742,76.141999,78.324674,79.601772,80.902089,82.481046,82.895402,84.454742,86.308735,87.655493,88.979030,91.231366,92.949642,94.621479,99.776309,101.870750,102.747789,104.535725,106.880941,108.808197,110.154954,110.971932,112.109709,113.526127,116.823360,117.741440,118.321939,119.575817,121.108334,122.594411,123.964388,125.659445,126.025556,128.017131,130.208977,131.952053,133.182710,134.784887,136.828243,137.863747,138.787215,139.488160,140.923430,142.258575,142.513994,143.907191,145.207509,146.716806,147.134765,149.363881,150.780298,151.212192,151.746251,153.301988,155.391784,157.179721,158.247839,159.757136,162.241671,163.240129,164.540446,166.072963,167.535820,168.603938,168.872242,170.070489,171.672666,172.880103,174.389400,176.757836,177.517237,178.283009,179.419803,180.873470,183.503100,184.362238,185.755435,186.800333,188.054211,189.191988,191.490764,192.837521,194.393258,196.041875,197.458292,199.919607,201.057385,202.264823,203.449041,204.981558,207.071354,208.766410,210.930449,212.207546,213.368544,214.761741,216.363918,217.568866,218.706644,220.262381,221.562698,222.821838,223.634537,224.261475,225.649410,227.210410,229.462745,231.111362,232.434899,233.735217,234.004546,235.546373,236.978614,238.093172,239.416710,240.740247,240.958370,242.644283,246.730995,248.193852,250.121109,251.131038,251.990177,253.151174,254.544372,256.309088,258.166685,259.339693,260.640010,262.102867,263.496065,266.003820,267.652436,269.393933,271.205089,273.248445,276.290260,277.474477,279.866133,281.654069,283.650985,285.346042,286.948219,288.387856,289.920373,291.661870,293.240826,295.005543,297.420418,298.674296,299.058966,300.740872,305.245543,306.917380,307.985498,309.100055,310.818332,311.097428,313.117108,314.210816,314.490894,315.740962,318.088549,319.081153,320.195711,321.774668,323.458546,325.016203,325.814940,327.219185,327.613925,328.960682,330.121680,330.795058,331.886396,333.071514,334.579911,338.341544,339.734741,341.824537,343.403494,345.028891,346.607847,348.070705,349.394242,350.740999,352.250296,353.806033,354.850931,356.313788,357.149707,358.798324,361.886578,362.447869,363.256555,364.371113,365.624990,366.568880,367.033279,368.194277,369.541035,371.514731,372.146445,373.488427,374.974504,375.789080,376.416019,377.159058,378.855496,381.454749,383.103366,385.355702,385.942834,387.073978,388.081486,389.405024,391.425160,393.422076,395.326112,397.439128,398.646566,399.877223,401.293640,402.710058,404.335454,408.073867,409.185297,410.326203,411.993928,413.619325,413.969529,415.460429,417.845357,419.387949,419.632724,420.701411,421.932069,423.302046,424.857783,426.297421,427.922817,429.269575,430.430572,431.452250,432.775788,435.933702,437.141139,438.116377,439.811434,441.158191,443.201547,444.514122,445.628679,447.137976,448.554394,449.738611,451.271128,452.525006,454.638022,455.324352,456.983107,459.033718,460.194716,461.471813,463.770589,465.369795,466.461132,467.691790,468.852788,470.083445,472.103581,474.680996,475.772334,477.606711 diff --git a/data/torah/labels/terumah-4.txt b/data/torah/labels/terumah-4.txt deleted file mode 100644 index 2529233ac..000000000 --- a/data/torah/labels/terumah-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.841701,4.236440,5.676078,7.324694,8.508912,9.484150,11.155987,12.572404,13.454762,14.755080,16.334037,18.145193,19.770590,21.094127,22.348005,23.276803,24.902200,26.481157,28.338753,29.848050,31.357347,33.749003,35.001118,35.338380,36.778017,37.985455,39.726952,40.980829,41.863187,43.604684,45.113981,45.450418,46.971577,48.629464,50.254270,51.159848,52.529825,53.690823,55.409100,58.056174,58.863712,59.885390,62.857544,64.111422,65.295640,66.735277,68.082034,70.032510,71.081474,72.034005,73.427202,74.936499,76.469016,78.721352,80.741488,81.624481,82.543424,83.760082,84.990739,86.848336,89.224387,91.283347,93.004589,94.374566,95.883863,97.184180,98.368398,100.179555,101.619192,102.803410,104.126947,106.332843,107.493840,108.979917,110.465995,112.068171,113.414929,114.622366,115.644044,117.594521,119.939736,121.240054,122.470711,124.049668,124.955246,126.464543,127.718421,128.879419,130.295836,132.812083,134.127539,136.821054,138.887630,141.627584,144.739058,147.409353,148.640011,149.592029,149.874618,151.147766,151.763358,153.063676,154.456873,155.617871,157.057508,158.450705,159.658143,161.074560,162.560637,164.503195,165.807100,167.173096,168.760365,169.712383,170.801994,171.962992,173.588389,174.842266,177.071382,178.185940,179.625577,181.065214,182.547945,183.801823,184.869940,185.845179,187.656335,189.119192,190.442730,191.882367,193.252344,197.060417,198.383954,198.814535,199.986131,201.797287,203.637349,205.007326,206.493403,206.960840,208.374219,210.033522,211.960778,214.189893,216.001050,217.138828,218.508805,220.459281,221.991798,224.917513,226.124950,227.518147,229.073884,231.906719,232.865095,234.014778,234.316637,235.965254,236.930835,239.392150,241.203307,243.293103,244.091100,245.893738,247.381947,248.426844,249.843262,251.538318,252.960534,253.262394,254.516271,255.886248,257.859945,258.247787,259.694321,262.171922,263.151418,264.800035 diff --git a/data/torah/labels/terumah-5.txt b/data/torah/labels/terumah-5.txt deleted file mode 100644 index 1913833c7..000000000 --- a/data/torah/labels/terumah-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.147519,6.602856,8.599773,11.130748,12.431065,13.592063,14.915600,16.633877,18.050294,20.116870,21.463627,22.206666,23.948163,25.538232,27.593695,28.322957,29.553615,31.132572,32.641869,34.429805,35.730123,37.285860,38.632617,39.332661,40.374114,41.236697,42.394250,45.346629,45.620411,48.643863,49.606187,52.254242,54.372395,55.327515,56.743932,58.299669,59.344567,60.389465,61.736222,63.686699,65.010236,66.380213,67.750191,69.143388,70.559805,71.395724,73.230100,75.250236,75.590380,76.970072,78.133751,79.185639,80.485956,81.832714,84.038609,85.547906,85.847482,87.312623,88.636160,90.238337,91.171141,92.690195,93.923556,95.397065,97.649400,98.515560,99.785636,101.480693,103.872348,105.149446,105.727585,106.312909,107.880740,109.536497,110.720715,112.276452,113.530329,115.527245,117.756361,119.103118,120.124796,121.401894,122.818311,124.234964,126.603164,128.394750,130.716745,132.388582,134.013979,135.337516,136.872617,137.731755,138.892753,140.332390,141.702368,143.699284,144.929941,146.810758,148.111075 diff --git a/data/torah/labels/terumah-6.txt b/data/torah/labels/terumah-6.txt deleted file mode 100644 index 7cb5f9ac0..000000000 --- a/data/torah/labels/terumah-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.759140,4.100217,5.480035,6.896471,8.475428,10.309804,11.764419,13.514158,15.743274,16.973931,18.738648,20.131845,21.060643,22.546721,23.730938,24.682956,26.563773,28.119510,30.487945,31.625723,32.833160,34.203138,35.782095,37.012752,38.614929,40.031346,41.006584,42.423002,44.164498,45.534476,47.740371,49.296108,51.339464,53.638240,55.542276,56.655475,57.724952,58.559511,60.068808,61.549035,62.248753,63.638368,65.403084,66.381668,67.980499,69.420136,69.742931,71.836710,73.554987,74.762425,76.248502,77.316620,78.106098,80.126234,82.750089,84.630905,86.651041,87.835259,89.344556,90.877073,92.711449,93.942107,95.103105,96.031903,97.634080,99.282697,100.374034,101.767232,103.183649,104.228547,105.621744,107.038161,107.966960,109.476257,111.038632,111.363711,112.547929,114.406916,115.939433,118.191769,118.814750,120.699550,121.860547,123.346625,124.577282,126.318779,127.340457,128.362135,129.569572,130.962770,132.355967,133.307985,135.421001,137.185718,138.021636 diff --git a/data/torah/labels/terumah-7.txt b/data/torah/labels/terumah-7.txt deleted file mode 100644 index 19e999d46..000000000 --- a/data/torah/labels/terumah-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.925892,7.090248,8.251246,9.923083,11.571699,12.337958,15.728071,16.958729,19.257504,20.106230,22.351885,23.483536,24.528434,25.689432,27.105849,28.754466,30.542402,31.958820,33.259137,34.513015,35.859772,37.740588,39.969704,41.943400,43.127618,44.522976,45.566068,46.727066,48.305668,49.559545,51.069197,52.810339,54.773903,56.724379,58.094356,59.023154,60.300252,62.273948,64.433404,66.267780,67.660978,69.193495,70.609912,71.375688,72.351408,73.791046,74.998483,76.484560,78.342157,79.665694,81.291091,82.823608,85.540343,87.630139,89.905694,90.774774,91.935772,92.864570,94.327427,96.696406,97.841009,99.652165,101.045363,102.624319,104.458696,105.875113,107.523730,109.288446,111.146043,112.585680,113.643493,114.884456,116.416973,118.293678,119.710095,121.405152,123.193088,124.902339,127.085015,129.383790,130.684651,132.565468,133.646659,135.898994,138.012010,139.962487,140.775185,142.191602,143.631239,145.210196,147.160672,148.460990,149.970287,151.618904,153.251204,154.110342,155.085580,156.316238,158.684673,159.706351,161.192428,162.167666,163.955603,165.604220,166.796350,168.979025,169.977483,171.904740,174.412495,175.945012,178.545647,180.962747,181.914765,183.191862,184.236760,185.722837,187.046375,188.648552,190.111409,191.272407,192.526284,193.896261,195.591318,196.416877,199.063952,199.951728,200.926966,202.854223 diff --git a/data/torah/labels/tetzaveh-1.txt b/data/torah/labels/tetzaveh-1.txt deleted file mode 100644 index f067b2e23..000000000 --- a/data/torah/labels/tetzaveh-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.663532,5.706888,6.217727,6.856478,8.377183,9.259541,10.606298,11.140357,11.929836,12.835414,13.578453,14.344711,15.427413,15.775712,16.704510,17.640784,19.196521,19.962779,21.425637,22.191478,22.516557,23.910172,25.953528,26.881909,28.298326,29.668303,30.339659,30.594358,31.084721,31.967079,33.081637,33.942663,34.569601,36.264658,37.170236,37.632349,38.909447,41.208222,41.776247,43.540964,43.940548,44.582387,46.046687,46.489227,47.000066,48.462923,49.879340,50.436619,51.249318,52.179781,52.876379,54.733976,55.894973,57.799010,58.913568,59.749486,60.123269,61.353927,62.514924,62.849348,63.443723,64.418961,65.487079,66.531732,67.924929,69.643206,70.908002,71.013183,71.402030,71.876150,72.563028,73.280175,74.430345,75.091331,76.032531,77.924166,78.100681,79.344838,81.086335,82.270552,83.072392,83.958742,84.744188,86.299925,86.984557,88.738020,89.691023,90.373147,91.348385,92.184303,92.927342,94.111559,95.318997,96.260583,97.955639,99.046977,100.602714,101.624392,102.460310,103.226569,104.503666,105.159827,105.362805,106.657453,107.028037,108.026496,108.583774,109.814432,110.387211,111.014149,111.757188,112.189499,113.697313,115.062496,115.174563,116.304063,118.922869,119.782007,121.523504,122.847041,124.379558,125.006497,125.842416,126.493355,127.593651,129.371849,130.120258,131.763504,132.595926,133.621100,133.818477,134.411287,135.247206,136.640403,137.778181,138.915958,139.867976,140.796775,142.004212,142.886571,143.745709,145.347886,146.741083,148.436140,149.434598,150.271986,150.880713,152.383532,154.572686,154.785240,155.070502,155.671590,156.816966,158.256603,159.278281,160.090979,160.602549,161.902136,162.855311,164.248508,164.875447,165.664925,166.756263,167.272587,168.665784,170.244741,171.754038,172.259452,172.909611,173.652649,175.370926,176.601583,178.250200,180.014917,181.014704,182.429792,183.722571,183.954771,184.813909,186.030214,186.367827,187.089301,187.878780,188.877238,190.549075,191.524313,192.267351,193.010390,194.357147,196.795242,197.004027,197.757934,199.530634,200.315105,201.487479,202.509157,202.995039,204.039937,205.015175,206.083293,208.010549,208.720148,208.954471,208.954471,210.623931,211.854588,213.549645,213.824302,214.334206,215.680964 diff --git a/data/torah/labels/tetzaveh-2.txt b/data/torah/labels/tetzaveh-2.txt deleted file mode 100644 index 06f0be8c2..000000000 --- a/data/torah/labels/tetzaveh-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.652385,4.720503,5.835061,6.781417,8.151394,9.289172,10.519830,12.679285,13.747403,14.397562,15.605000,16.580238,18.759515,18.976315,20.000039,20.952058,21.386613,23.376065,25.201309,26.130108,27.128566,28.359223,29.589881,31.068110,32.089788,33.436546,36.199720,37.337498,39.055775,40.890151,42.538768,43.444346,44.187385,45.092963,46.230741,47.558694,48.487492,49.625270,50.577288,51.436427,52.249125,53.595882,54.921689,55.641508,56.965045,57.824183,59.124501,60.378378,61.562596,63.582732,64.511530,65.649308,66.833526,68.040963,69.527041,71.151559,72.289337,73.311015,74.286253,75.911649,77.281627,78.535504,79.487522,80.253781,82.204257,83.643894,85.106751,86.198089,87.312647,89.077364,90.618379,92.266996,93.544093,95.471350,99.093663,101.137019,101.615105,103.091316,103.602155,105.227552,106.133002,106.968920,107.247560,108.338898,109.755315,110.637673,111.682571,111.957467,112.979145,115.417241,116.346039,116.880326,118.372415,120.059891,120.338531,122.149687,123.217805,124.053724,125.098622,126.120300,127.118758,128.442295,130.044472,130.490078,131.581416,132.579874,133.485452,134.576790,137.014885,137.374236,138.477965,139.801502,140.409426,141.109273,141.748480,143.152629,146.059328,146.552836,147.597734,149.107031,150.709208,151.338422,152.290440,153.822957,154.399357,155.016552,156.502629,157.995675,158.947693,159.760391,160.758849,162.152047,163.313044,163.581445,164.577978,165.855076,167.805552,168.236253,168.826257,169.849737,170.221256,170.660750,171.635988,174.213403,175.444061,176.651498,177.742836,179.623653,180.784650,181.320728,182.112854,182.925552,184.330413,184.687494,186.834558,188.808254,189.316557,190.013156,191.011614,192.381591,195.028666,196.050344,196.866513,198.720639,199.970162,202.013518,202.299248,203.995384,205.389543,206.504101,207.711539,208.802877,209.778115,210.776573,212.448410,214.491766,215.699203,217.347820,218.954535,219.171335,221.742615,224.296810,225.088680,226.048518,227.232736,228.324073,229.438631,230.506749,230.929508,231.714187,232.921624,233.531100,234.742748,235.625106,236.484244,237.552362,239.224199,241.430094,241.845990,242.384621,242.810038,244.296115,245.862075,247.510692,248.138465,248.835063,249.670982,249.829306,250.989819,252.141312,252.545796,253.149514,254.217632,256.841487,257.434366,258.130965,259.988561,260.420469,261.488587,261.804278,262.997884,264.399374,264.747673,265.421052,266.721369,267.905587,268.648626,269.856063,271.202821,273.408716,273.906541,274.649580,275.090759,276.646496,277.018015,278.713072,279.595430,280.918967 diff --git a/data/torah/labels/tetzaveh-3.txt b/data/torah/labels/tetzaveh-3.txt deleted file mode 100644 index 53662de7c..000000000 --- a/data/torah/labels/tetzaveh-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,5.739674,6.093161,6.952299,8.136517,8.879555,10.412072,12.060689,12.9,13.964725,15.400452,19.955474,22.207809,23.299147,25.319283,26.898240,28.639737,29.661415,31.890530,32.601524,33.283728,33.775992,35.373524,37.025618,37.373320,39.103926,40.468526,41.490204,43.045941,44.648118,45.809116,46.502754,47.386253,48.918770,51.031786,52.819723,54.259360,55.606117,56.836775,57.974553,59.344530,60.250108,61.155686,62.339904,62.856012,63.971195,64.853553,66.200310,67.523848,68.057554,69.051205,70.537282,71.767940,74.531114,75.529572,75.901092,77.735468,79.453745,81.497101,82.820638,83.509144,84.925562,86.260505,87.049984,88.071662,89.116560,91.276016,92.111934,93.505131,94.712569,95.827127,97.336424,99.008260,99.905067,100.276587,101.484024,102.668242,103.862019,104.176670,105.746583,106.378655,106.866274,107.307453,108.375571,109.861648,112.787363,113.321422,114.087680,116.014936,117.268814,119.149630,119.509065,120.335478,122.749674,123.901710,125.202027,126.223705,127.616903,128.328764,129.536202,131.138379,132.531576,132.877513,134.029929,135.098047,136.282264,137.211062,138.325620,139.602718,141.460314,142.959753,144.071107,145.533964,146.862607,147.791405,149.050633,149.979431,150.722470,151.953127,153.323104,154.437662,155.784420,157.409816,158.477934,159.801472,161.380429,163.493445,165.002742,166.094080,167.394397,168.880474,170.784510,171.899068,172.292559,173.478025,174.685463,175.394039,176.298232,177.396876,178.923662,180.827699,182.822035,183.201213,184.741062,186.269424,187.105343,188.544980,189.613098,191.795774,192.794232,193.610597,194.446515,195.630733,196.494868,197.702306,199.342884,199.701232,200.917468,202.241006,204.470122,204.982726,205.702545,206.272724,207.886660,210.046034,210.468393,211.188212,212.767168,214.369345,214.995877,216.180095,217.666172,218.989709,219.648043,220.507181,221.459199,222.713077,223.874074,225.429811,226.823009,227.963638 diff --git a/data/torah/labels/tetzaveh-4.txt b/data/torah/labels/tetzaveh-4.txt deleted file mode 100644 index 100a2b920..000000000 --- a/data/torah/labels/tetzaveh-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.813063,4.579615,5.531633,6.622971,8.271587,9.339705,10.291723,11.661701,12.451179,15.075034,15.711277,17.047691,17.395832,19.191962,20.143980,21.003118,22.465975,23.766293,25.368470,26.784887,27.922665,29.246202,30.383980,31.707517,32.357676,33.797313,34.865431,36.281848,37.094547,37.837585,39.137903,40.670420,41.552778,41.977134,42.945975,44.176633,45.718806,46.679018,47.700696,48.908134,49.929812,50.881830,51.624868,53.203825,53.941868,54.986766,55.497605,56.658602,57.842820,58.431577,59.143137,59.770076,60.931074,62.616737,63.406216,64.358234,65.999196,66.277835,68.297971,69.853708,70.132348,71.571985,72.031546,73.678369,74.796918,75.795376,77.142133,78.157200,79.294978,80,81.155683,84.422175,85.275529,86.228779,87.947056,89.526013,90.594131,91.062926,91.987328,94.545919,95.149638,96.496396,97.378754,97.686592,99.301303,100.949919,101.294633,102.297698,103.854695,105.366779,105.636259,106.744122,108.170931,109.540908,110.351225,111.094264,112.185602,113.602019,115.320296,118.037030,118.965828,120.568005,121.752223,123.516940,125.049457,126.001475,127.348232,128.880749,130.436486,131.620704,132.781701,133.710500,135.103697,135.458740,136.612994,137.070104,138.393641,140.135138,140.504009,141.389016,142.547393,143.388829,144.340847,145.641165,147.359442,149.147378,149.695664,150.879882,151.181741,151.763500,152.994158,155.130394,155.340394,156.245062,157.266740,158.404518,159.240436,159.820935,161.307012,162.955629,164.139847,165.138305,167.344201,167.669280,168.505198,169.364337,171.129053,171.880113,172.288002,173.449000,174.563558,174.973324,175.762802,177.318539,180.267473,180.754937,181.077874,182.868108,183.980368,184.324493,185.884404,187.788440,189.297737,189.744040,191.058418,192.199893,193.153465,194.546663,195.253414,196.012334,196.848253,198.218230,199.681087,201.097504,201.742312,202.740770,203.553468,203.876782,204.924761,205.194241,206.661411,208.360137,209.497915,210.310614,211.634151,212.818369,213.682869,214.440879,215.230357,216.135935,217.157614,219.618929,221.522965,223.427001,223.964041,224.892839,225.287578,225.663117,226.986654,228.896263,229.058803,230.289461,231.984517,232.286377,233.145515,235.212091,235.450885,236.355553,237.841630,239.118728,240.233285,241.649703,243.367979,245.132696,246.247254,247.315372,248.865013,249.256699,250.371257,250.835656,252.159194,253.831030,254.210909,254.598954,255.295553,256.990609,257.849748,258.223787,259.593764,260.754762,261.869320,262.890998,264.284195 diff --git a/data/torah/labels/tetzaveh-5.txt b/data/torah/labels/tetzaveh-5.txt deleted file mode 100644 index 7ca9d661b..000000000 --- a/data/torah/labels/tetzaveh-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.653095,5.233594,6.162392,7.439490,8.625291,10.249104,11.944161,12.468885,13.444123,13.714673,14.062973,15.293630,17.053496,17.216035,19.282611,20.791909,21.999346,25.341370,25.612283,27.587435,28.387313,30.160201,30.717480,31.878478,32.807276,33.875394,35.338251,35.965520,36.569239,37.544477,38.844795,39.386786,40.036945,40.826423,42.103521,44.463426,44.811725,46.158483,46.655206,47.607224,49.023641,51.926135,52.351705,53.350163,53.867801,54.197290,56.899137,57.781495,60.033831,61.589568,61.952074,62.996972,63.414931,64.552709,65.320387,66.829684,67.341051,67.921550,68.687808,69.593386,70.654954,71.404543,72.605430,74.601538,75.391016,76.017955,77.132513,78.789916,79.011477,81.854950,82.830188,85.291503,85.718410,87.724306,89.232960,89.465803,91.183638,92.298196,93.250214,94.457652,96.245588,97.499466,99.310622,99.962976,100.938214,102.168872,103.306649,104.397987,104.923961,105.985648,107.925973,108.412457,109.295183,110.571913,111.784656,113.446662,115.304259,116.697456,117.672694,118.787252,119.762490,120.760948,121.852286,123.199043,124.197501,125.126300,125.776458,127.076776,128.934372,129.932830,130.908068,132.069066,133.276504,134.065982,135.069560,136.021578,138.114493,139.547860,140.546318,141.086771,142.619288,144.291124,145.243143,146.520240,147.843778,148.981555,149.207291,150.349520,151.454854,152.383652,153.498210,154.728868,155.564786,156.168505,157.375943,158.725864,158.929341,161.229981,162.335600,163.615003,164.567021,166.099538,167.864255,168.978813,169.930831,170.650649,171.695547,172.670785,173.367384,174.389062,176.780717,178.220355,179.125933,181.029969,181.981987,182.841126,184.095003,185.070241,185.720400,186.742078,187.531556,188.831874,190.071739,191.836456,193.415413,194.297771,195.853508,197.905044,198.973162,200.598559,201.480917,202.758015,203.988672,204.987130,206.124908,206.592554,207.591012,208.334051,210.563166,211.700944,212.490423,212.958266,214.119264,215.535681,217.091418,218.531055,220.086792,221.549649,222.571327,223.732325,225.032643,226.077541,226.820579,227.911917,229.862393,230.837631,231.5,232.300488,232.685175,233.934037,235.002155,236.627552,238.531588,240.156985,240.992903,242.153901,243.314899,245.033175,245.402806,245.983304,246.912103,247.840901,248.932239,250.557636,250.961442,251.913460,252.819038,254.197150,254.453419,255.509401,256.322100,257.738517,259.131714,260.060513,260.989311,261.308652,262.446430,263.584208,264.341004,265.316242,266.197874,267.220278,267.855756,268.482694,269.527592,271.129769,271.872808,272.871266,274.194803,275.193261,276.204470,276.521865,277.268463,278.383021,279.636898,280.869219,281.263958,282.006996,282.233008,282.848055,283.712048,284.363259,285.942216,287.614052,289.169789,289.540344,290.533786,290.928525,292.112742,294.063219,294.416782,295.646185,296.574983,297.243066,298.310981,298.566401,299.286220,300.145358,302.165494,303.210392,304.324950,305.276968,306.368306,306.659131,307.738131,309.340308,310.043098,310.902236,311.691715,313.061692,314.044256,315.762533,316.830651,317.759449,318.124703,319.308920,321.163972,321.361665,322.861573,324.404613,325.333412,326.726609,327.330328,328.769965,329.814863,331.091960,332.463646,332.765505,333.926503,335.412580,336.318158,337.572036,338.802693,339.894031,341.380108,341.995406,342.715225,344.456722 diff --git a/data/torah/labels/tetzaveh-6.txt b/data/torah/labels/tetzaveh-6.txt deleted file mode 100644 index 192f293b3..000000000 --- a/data/torah/labels/tetzaveh-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.662684,5.332392,6.289279,6.447121,7.713673,9.516705,9.987686,11.125464,12.472221,13.092920,14.213718,14.742809,15.648387,16.693285,17.761403,18.899181,19.804759,20.896097,21.894555,22.753694,23.036785,24.332650,25.525455,26.918652,27.824230,28.636928,29.542507,30.517745,31.516203,33.874703,34.709153,35.471692,36.493370,37.677588,39.047565,40.208563,41.230241,42.275139,43.157497,43.575456,44.898994,46.152871,47.197769,48.544527,49.510709,50.126613,51.416752,52.415210,53.274348,54.412126,55.642783,56.641241,59.009677,59.868815,60.449314,61.145913,61.912171,63.142829,64.443146,65.557704,66.440062,67.368861,68.335507,69.342557,70.271355,71.890827,72.819625,73.841303,75.164841,76.279398,77.719036,80.087471,80.673449,81.379614,82.192313,82.610272,83.794490,84.445724,85.978241,86.406673,87.544450,88.728668,89.643788,90.446945,92.995560,93.806105,94.618559,95.709896,96.894114,97.362452,98.867810,101.236685,101.514835,102.330641,103.468418,105.209915,106.659339,108.052536,109.074214,109.817252,110.676391,112.291021,113.660998,114.914876,115.472007 diff --git a/data/torah/labels/tetzaveh-7.txt b/data/torah/labels/tetzaveh-7.txt deleted file mode 100644 index 824cc7130..000000000 --- a/data/torah/labels/tetzaveh-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.292220,4.329746,5.351424,6.465982,7.303749,8.093228,8.789826,9.927604,10.832439,12.481056,13.316974,14.338652,15.453210,16.683868,18.365137,19.642235,20.663913,22.103550,23.473527,25.400784,26.561781,28.117518,28.848661,30.241858,30.590158,32.378094,33.167573,33.503891,34.800618,36.333135,37.795992,38.600916,39.297514,40.435292,42.246448,43.198467,44.661324,45.590122,47.099419,48.283637,50.164453,51.279011,52.207809,53.601006,54.791514,55.002936,55.876562,57.116335,58.370212,59.763410,61.342366,62.178285,63.037423,64.384180,66.032797,66.228160,67.120333,67.816932,69.024370,70.092488,70.858746,71.926864,73.529041,74.481059,75.456297,76.733395,77.708633,78.105604,78.869630,80.102520,81.309957,83.051454,84.258892,84.650275,86.600751,88.202928,89.015626,89.851545,90.989323,92.893359,94.124016,95.029595,96.469232,97.560570,98.675127,100.161205,102.251001,102.944754,103.876397,105.571454,106.968817,108.663874,109.045994,110.624951,111.345216,112.459774,113.504672,115.246168,116.894785,117.630304,118.520182,120.517098,121.138599,122.136293,123.599150,124.736928,125.851485,127.058923,128.103821,130.541916,131.064164,132.178722,133.394509,134.547157,135.499176,135.792835,137.099377,138.121055,139.119513,141.325409,142.300647,144.088584,145.226361,146.410579,147.803776,148.546815,151.031350,151.844048,152.610307,153.552342 diff --git a/data/torah/labels/tetzaveh-h.txt b/data/torah/labels/tetzaveh-h.txt deleted file mode 100644 index b30179bf4..000000000 --- a/data/torah/labels/tetzaveh-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.825680,3.155955,5.617203,6.748806,7.097105,7.510714,8.834251,9.120512,10.688565,12.874523,16.009217,18.099013,18.540192,20.560328,21.459,24.112981,25.173319,25.684158,27.959714,29.035608,34.840597,41.667263,48.421084,50.078457,50.811004,56.871412,57.809554,58.306720,60.582275,61.551048,63.277736,63.858235,65.762271,67.515605,69.007289,70.818446,73.419081,76.693094,77.142260,77.489614,80.136121,80.784510,81.261827,82.771124,83.816022,85.371759,86.950716,88.018834,89.504911,90.490561,91.176747,94.636521,95.254267,98.096294,99.698471,101.207768,102.638011,104.642737,105.298692,106.297150,107.431490,108.915898,110.587735,111.679072,113.188369,114.924402,115.743464,116.974122,119.459847,120.571378,122.825550,123.905060,126.029904,128.119700,128.818544,130.240068,131.726145,133.072902,134.930499,136.857755,137.293970,139.427713,140.972580,143.178476,143.853990,145.200558,147.081374,148.706771,150.192848,152.073665,153.188222,155.208359,157.158835,159.596930,160.080363,161.539659,163.420476,165.579932,166.903469,168.784285,170.897301,173.451496,174.512124,176.276840,179.063235,180.735072,182.987407,184.961103,188.235117,189.697974,190.858972,192.066409,193.080652,194.473849,196.795845,199.210720,200.696797,201.672035,203.970811,207.523464,209.682919,211.076117,212.910493,213.2,214.489450,215.696888,216.857885,218.088543,218.994121,221.617976,224.381151,225.449269,227.422965,228.464652,230.740208,232.667464,233.991001,235.453858,237.961613,238.751092,240.539028,242.141205,244.114901,244.636140,245.717078,246.613363,247.844021,249.817717,251.489553,252.952411,254.554587,256.435404,258.084021,260.731095,262.356492,263.587150,265.003567,266.075653,267.511322,269.554678,271.619481,272.180631,273.782808,279.480663,280.249536,282.223232,283.291350,285.102506,286.324963,288.539060,291.028589,292.050267,293.582784,296.462058,297.121561,297.493081,298.677298,300.976074,303.228409,305.573625,308.917298,309.422539,310.493460,312.072417,312.568569,313.838891,315.486339,317.320715,318.115011,319.480171,321.755727,323.492738,324.769836,327.231151,331.364303,332.687840,333.489177,335.752874,337.715520,339.761390,341.128853,342.614930,344.913706,346.713189,348.408246,351.148201,351.887133,352.657498,353.841716,356.424435,358.468048,358.816213,360.496305,361.726963,363.096940,365.093856,368.066010,370.759525,372.408142,374.312178,374.823017,376.332314,377.871036,378.945518,379.386697,380.269055,382.010552,384.727286,385.632865,387.722661,389.394497,390.911680,392.061997,393.292655,394.851662,397.054287,398.899177,401.197952,403.356862,404.796121,405.758563,406.433422,407.723592,409.946655,411.919973,412.198612,414.776027,415.844145,416.228792,417.098022,418.134274,420.218151,421.280305,423.582762,425.522558,425.766128,427.240834,429.223665,431.452780,433.287157,435.237633,437.536408,437.863955,440.531782,442.807338,443.778890,446.289760,448.979714,450.697991,452.044748,452.442880,454.070479,454.494613,456.212890,456.968400,458.775807,460.600726,462.357343,463.819132,464.859612 diff --git a/data/torah/labels/toldot-1.txt b/data/torah/labels/toldot-1.txt deleted file mode 100644 index 68e2e616f..000000000 --- a/data/torah/labels/toldot-1.txt +++ /dev/null @@ -1 +0,0 @@ -0.000000,3.529433,4.202812,5.061950,5.387029,6.362268,7.616145,8.266304,8.591383,9.636281,10.913379,11.772517,12.074376,13.119274,14.071293,15.278730,15.557370,17.368526,17.763265,18.692063,19.829841,20.735420,21.524898,23.196735,24.148753,24.938231,25.588390,26.401088,27.840726,28.746304,29.721542,30.603900,31.579138,32.159637,32.879456,33.715374,35.038912,35.596190,36.664308,37.778866,38.707664,39.775782,41.723175,42.675193,43.812971,45.020408,45.412154,46.155193,46.823946,47.497324,48.472562,49.689342,50.432381,50.613278,52.043900,52.923175,54.548571,56.475828,57.520726,58.194104,59.401542,60.376780,61.352018,62.420136,63.465034,64.463492,65.276190,66.274649,66.948027,68.109025,69.339683,71.127619,72.288617,73.379955,74.239093,74.935692,76.259229,77.698866,78.558005,79.579683,80.578141,81.530159,82.366077,83.573515,84.246893,85.384671,86.499229,87.637007,89.005442,90.723719,92.233016,93.231474,94.253152,95.251610,96.087528,96.760907,97.666485,99.802721,100.267120,101.056599,101.915737,102.798095,103.750113,105.607710,106.606168,107.720726,109.833741,111.459138,112.155737,112.968435,113.456054,114.245533,115.708390,116.288889,117.055147,118.192925,119.702222,121.257959,122.999456,123.460771,124.180590,124.528889,125.016508,125.759546,126.990204,127.826122,127.987120,129.612517,130.680635,131.609433,132.468571,133.606349,135.324626,135.719365,136.601723,137.182222,138.134240,139.063039,140.758095,141.013515,142.963991,144.287528,144.937687,145.378866,146.098685,146.748844,147.886621,148.513560,149.070839,149.860317,150.464036,150.881995,151.416054,152.066213,153.018231,154.457868,155.386667,156.149841,157.589478,157.889796,159.166893,160.142132,161.697868,162.673107,164.182404,164.971882,165.575601,166.388299,167.177778,167.595737,168.083356,169.267574,171.519909,173.331066,174.701043,175.281542,176.256780,177.487438,178.137596,179.275374,179.600454,180.668571,182.084989,184.314104,185.637642,187.402358,188.818776,189.654694,190.583492,191.721270,192.696508,193.509206,194.275465,195.343583,196.156281,196.527800,197.851338,199.778594,200.451973,201.589751,202.611429,203.261587,204.097506,204.886984,205.653243,206.256961,207.069660,209.136236,210.784853,211.272472,212.108390,212.479909,213.292608,214.592925,216.613061,217.263220,218.215238,219.422676,219.724535,220.281814,221.117732,222.232290,223.230748,223.834467,224.949025,226.156463,228.110359,228.876372,229.689070,230.617868,231.147302,232.494059,233.144218,233.794376,236.569879,237.580862,237.836281,238.088617,238.806893,239.666032,241.082449,241.336327,242.520544,243.170703,243.983401,244.655238,245.816236,247.441633,247.766712,248.788390,249.389512,250.543855,251.732880,252.661678,252.963537,253.147755,253.960454,254.726712,256.212789,257.443447,258.047166,258.697324,259.858322,261.344399,261.832018,262.784036,263.387755,264.130794,265.477551,266.476009,268.147846,269.239184 diff --git a/data/torah/labels/toldot-2.txt b/data/torah/labels/toldot-2.txt deleted file mode 100644 index fc926f54c..000000000 --- a/data/torah/labels/toldot-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.577415,3.366893,4.945850,7.267846,8.289524,9.311202,10.379320,11.424218,12.236916,13.026395,14.187392,15.162630,15.998549,16.811247,17.438186,19.202902,19.922721,20.781859,21.106939,21.942857,22.407256,22.871655,23.637914,24.520272,26.772608,27.376327,27.675102,27.905760,28.857778,30.467755,32.255692,33.347029,33.904308,34.786667,35.436825,36.365624,38.455420,39.430658,40.104036,41.056054,41.474014,42.286712,43.099410,44.399728,46.303764,48.207800,49.508118,50.135057,50.738776,51.528254,52.178413,52.828571,53.525170,54.221769,54.871927,56.009705,56.706304,57.495782,58.354921,59.074739,59.423039,60.119637,61.094875,62.673832,63.579410,63.974150,64.528345,65.223401,65.757460,67.824036,69.890612,70.703311,71.307029,71.678549,72.813243,73.924717,74.621315,75.619773,77.105850,78.127528,78.545488,78.729705,79.286984,80.169342,82.143039,82.723537,84.093515,85.045533,85.626032,86.833469,87.948027,88.760726,89.314921,90.169433,91.910930,92.723628,93.373787,94.023946,94.813424,96.831565 diff --git a/data/torah/labels/toldot-3.txt b/data/torah/labels/toldot-3.txt deleted file mode 100644 index b42e497c8..000000000 --- a/data/torah/labels/toldot-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.530975,3.297234,4.690431,5.340590,6.385488,6.803447,7.173424,7.753923,8.798821,9.518639,9.958277,10.585215,11.049615,11.786485,12.575964,13.620862,14.363900,15.455238,16.012517,17.289615,17.986213,19.959909,21.028027,21.794286,22.490884,23.233923,24.023401,24.650340,25.300499,27.860226,28.608617,29.853243,30.689161,31.961633,32.611791,32.865669,33.678367,34.816145,35.861043,36.139683,36.766621,37.834739,38.600998,39.808435,40.551474,41.480272,42.455510,43.082449,43.683084,44.421497,45.257415,46.766712,48.508209,49.274467,49.481905,50.596463,52.245079,53.615057,54.358095,55.124354,55.913832,56.610431,58.189388,59.002086,60.000544,60.557823,61.347302,62.485079,63.158458,64.087256,65.434014,66.060952,66.664671,67.268390,68.754467,70.472744,70.913923,71.471202,72.423220,73.514558,74.907755,75.581134,76.184853,77.369070,79.574966,80.434104,82.361361,82.732880,83.220499,84.497596,85.217415,85.890794,86.517732,87.980590,88.352109,89.095147,90.047166,90.650884,91.835102,92.833560,94.528617,95.132336,95.968254,97.152472,97.383129,98.335147,99.287166,99.798005,101.609161,103.141678,104.906395,106.044172,106.671111,107.530249,108.226848,108.969887,109.666485,110.734603,111.454422,112.452880,114.589116,114.937415,116.353832,118.188209,119.743946,120.885601,121.867846 diff --git a/data/torah/labels/toldot-4.txt b/data/torah/labels/toldot-4.txt deleted file mode 100644 index 944d9118d..000000000 --- a/data/torah/labels/toldot-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,2.902494,3.390113,4.388571,5.921088,6.594467,7.383946,8.126984,9.055782,10.541859,12.165926,13.169023,14.028161,14.910519,15.491018,16.257277,16.582356,17.255735,18.068433,19.786710,20.498476,20.681494,21.819272,22.861086,23.464805,24.463263,27.017458,27.689295,29.546891,30.684669,31.172288,32.124306,32.820905,33.262084,34.260542,35.769839,36.280678,36.861177,37.441676,38.184714,41.063989,41.528388,42.248206,43.200224,44.338002,45.406120,46.172379,46.636778,47.960315,49.330292,50.328751,51.141449,51.907707,52.673966,53.208025,54.601222,55.506800,56.156959,57.805576,59.291653,62.147707,62.821086,65.050202,65.444941,66.048660,66.629159,68.486755,70.785531,71.667889,72.013104,73.592061,74.567299,75.147798,76.169476,77.376914,78.166392,79.397050,80.511608,81.229884,82.808841,84.782537,85.989975,86.477594,87.847571,88.915689,89.705168,90.378546,90.866166,91.585984,92.723762,94.186619,96.369295,97.344533,98.621630 diff --git a/data/torah/labels/toldot-5.txt b/data/torah/labels/toldot-5.txt deleted file mode 100644 index 323953e8a..000000000 --- a/data/torah/labels/toldot-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.345215,3.227574,4.156372,5.154830,6.733787,8.289524,9.287982,10.704399,11.215238,12.260136,13.583673,14.442812,15.348390,16.161088,17.693605,20.201361,21.269478,23.243175,24.380952,25.031111,25.936689,27.097687,27.654966,27.980045,28.442902,29.325261,29.905760,30.834558,31.716916,32.134875,32.947574,34.015692,35.223129,35.942948,36.894966,37.333061,37.820680,38.238639,38.935238,39.631837,40.398095,40.908934,41.628753,42.534331,43.741769,44.508027,44.856327,45.692245,46.504943,47.480181,48.246440,48.525079,49.244898,49.732517,50.638095,51.566893,52.356372,53.656689,54.167528,54.840907,56.094785,57.371882,57.952381,58.811519,59.879637,61.319274,63.523628,63.914066,64.481905,65.410703,66.548481,67.175420,67.918458,69.868934,70.217234,70.771429,71.721905,73.904580,75.042358,75.599637,76.389116,77.085714,77.550113,78.734331,80.429388,81.056327,81.543946,82.635283,83.215782,83.842721,84.376780,85.375238,86.605896,87.186395,87.650794,88.576508,89.505306,90.619864,91.895420,92.800998,94.030113,94.424853,95.562630,97.118367,97.411410,99.198912,99.849070,101.311927,102.124626,102.565805,103.443537,105.486893,106.276372,106.833651,107.483810,108.319728,109.503946,110.479184,111.570522,112.336780,112.497778,113.124717,113.867755,115.609252,116.561270,117.652608,118.302766,118.767166,119.951383,121.483900,122.412698,122.596916,123.293515,123.757914,124.384853,125.127891,126.126349,126.287347,127.123265,128.795102,129.189841,129.465397,130.137234,131.251791,131.805986,132.106304,133.497959,134.217778,134.400454,135.234830,136.372608,138.485624,138.996463,139.530522,140.134240,140.923719,142.038277,142.572336,143.129615,143.733333,144.638912,145.056871,145.776689,146.682268,147.377324,147.795283,148.025941,148.629660,149.046077,149.580136,151.344853,153.016689,153.713288,154.386667,155.060045,155.988844,157.660680,159.262857,159.959456,160.818594,162.789067,164.620499,165.502857,166.199456,167.871293,168.475011,169.543129,170.053968,171.145306,172.182494,173.088073,173.249070,173.852789,174.711927,175.012245,175.755283,176.335782,176.846621,177.427120,178.098957,178.516916,179.445714,180.769252,181.650068,182.416327,183.088163,184.086621,185.572698,186.407075,187.893152,188.541769,189.052608,190.143946,191.374603,191.862222,192.651701,193.162540,194.091338,194.671837,196.274014,196.924172,197.574331,198.178050,198.664127,199.243084,200.517098,201.445896,202.351474,203.001633,204.000091,204.510930,205.370068,205.973787,206.623946,207.459864,208.504762,209.874739,210.223039,210.757098,212.057415,212.730794,213.497052,214.588390,215.424308,216.329887,217.003265,218.071383,218.278821,218.859320,219.439819,220.809796,223.131791,223.921270,224.617868,225.221587,226.103946,226.218503,226.659683,227.495601,228.097778,229.328435,231.760363,232.014240,233.709297,234.150476,234.847075,235.381134,236.170612,236.727891,237.494150,238.376508,240.071565,240.419864,240.930703,241.696961,242.159819,243.320816,243.970975,244.505034,244.992653,245.875011,246.803810,248.475646,248.683084,250.167619,251.375147,252.017596,252.946395,254.200272,254.757551,255.384490,256.243628,256.799365,257.170884,258.958821,259.887619,260.700317,261.838095,262.859773,263.997551,265.576508,266.249887,266.503764,267.177143,267.571882,268.686440,269.568798,270.311837,270.892336,272.485261,273.019320,274.621497,275.364535,276.246893,277.709751,279.683447,280.310385,280.751565,281.471383,282.121542,282.469841,284.164898,284.745397,285.877007,287.067392,287.770249,288.466848,288.697506,289.626304,291.669660,293.434376,293.665034,294.384853,294.872472,295.801270,298.123265,298.819864,299.353923,300.329161,301.606259,302.535057,303.765714,304.462313,305.414331,305.716190,306.296689,307.875646,309.477823,310.081542,310.662041,311.566077,313.470113,315.420590,316.163628,316.741043,317.250340,317.877279,318.689977,319.688435,321.894331,323.032109,323.426848,324.262766,324.772063,325.375782,326.001179,326.929977,327.673016,328.578594,329.066213,329.925351,332.108027,333.617324,334.221043,335.312381,336.471837,337.238095,337.818594,338.375873,338.835646,339.188571,339.995102,340.341859,341.363537,342.292336,342.778413,343.382132,345.425488,345.797007,346.261406,347.004444,348.304762,350.278458,351.021497,351.739773,352.389932,352.990567,353.896145,354.499864,355.521542 diff --git a/data/torah/labels/toldot-6.txt b/data/torah/labels/toldot-6.txt deleted file mode 100644 index 2eb89b254..000000000 --- a/data/torah/labels/toldot-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.275556,2.902494,3.831293,4.504671,5.317370,6.362268,7.128526,7.685805,8.196644,9.473741,11.029478,12.887075,14.257052,14.767891,15.859229,16.602268,17.322086,18.483084,19.342222,19.783401,20.433560,21.339138,22.500136,23.289615,24.566712,25.913469,28.351565,29.048163,30.046621,32.670476,33.529615,33.901134,35.967710,37.941406,38.452245,39.195283,39.822222,40.797460,41.237098,41.887256,42.676735,43.280454,45.300590,46.066848,46.763447,48.179864,49.271202,49.523537,50.080816,50.916735,51.729433,52.681451,54.028209,55.723265,56.535964,57.116463,57.859501,58.647438,59.344036,59.994195,60.875011,62.036009,63.173787,64.450884,64.915283,65.588662,65.819320,66.376599,67.885896,69.186213,69.859592,70.695510,71.972608,73.272925,73.992744,76.895238,77.638277,77.845714,79.517551,82.512925,83.000544,85.763719,86.297778,86.551655,88.780771,89.872109,91.125986,92.263764,93.982041,94.678639,95.398458,96.605896,97.232834,97.952653,99.252971,100.669388,101.296327,101.526984,102.200363,103.152381,105.404717,106.379955,106.983673,107.633832,107.839728,108.698866,109.633923,110.423401,111.468299,111.652517,112.116916,113.161814,115.228390,115.666485,116.409524,117.338322,118.522540,119.962177,123.143311,125.147464,126.109297,127.386395,129.127891,130.078367,130.682086,131.587664,131.959184,133.050522,133.932880,134.442177,135.092336,135.719274,136.555193,138.134150,138.737868,139.736327,140.058322,141.823039,142.936054,144.445351,145.488707,147.253424,147.787483,149.087800,150.063039,150.597098,150.943855,151.268934,153.219410,154.333968,154.657506,155.818503,156.296871,156.993469,158.363447,159.524444,160.081723,160.755102,161.637460,162.519819,164.075556,165.211791,165.651429,167.439365,168.484263,169.064762,169.668481,170.318639,171.131338,172.176236,172.406893,172.964172,173.683991,175.402268,176.958005,177.770703,178.815601,180.975057,181.718095,182.298594,182.902313,183.529252,185.456508,186.965805,187.801723,188.239819,189.307937,190.050975,190.770794,191.978231,192.907029,193.766168,194.671746,194.855964,195.622222,196.504580,197.572698,198.151655,199.010794,200.055692,200.705850,201.215147,202.492245,204.297234,205.040272,205.294150,206.222948,206.476825,207.986122,208.705941,209.495420,210.215238,211.144036,212.722993,214.719909,216.949025,217.483084,217.993923,218.806621,219.944399,220.012517,220.589932,221.588390,223.028027,223.817506,223.953741,224.391837,224.994104,225.362116,226.224762,228.198458,229.359456,230.241814,230.868753,231.704671,232.633469,233.306848,233.887347,234.630385,235.419864,236.511202,236.998821,238.183039,240.017415,240.505034,241.015873,241.619592,243.732608,244.266667,245.822404,246.472562,246.980937,247.718730,249.111927,250.641361,251.128980,251.755918,252.615057,253.311655,253.588753,254.447891,254.841088,256.048526,257.232744,257.718821,258.087256,259.503673,261.590427,262.556372,262.810249,263.274649,263.901587,264.412426,265.132245,266.270023,267.013061,267.895420,269.404717,269.799456,270.912472,271.607528,272.974422,274.390789,274.994508,275.294826,275.991424,277.245302,278.127660,278.777819,279.265438,279.938817,280.658635,281.308794,282.794871,283.514690,284.023987,284.581266,285.811923,286.462082,287.274780,288.110699,288.434236,289.502354,291.243851,293.078227,293.329021,293.816640,294.651016,295.463715,296.717592,297.251651,297.855370,298.155687,298.617003,299.360041,300.008658,301.099996,302.028794,302.350789,303.208386,303.951424,304.694463,305.623261,306.134100,307.016458,307.852377,308.409656,309.129474,309.756413,310.638771,311.219270,311.799769,312.867887,314.679043,315.631062,316.374100,317.210019,318.324576,319.508794,321.827715,322.815503,324.314551,325.036269,325.825748,326.172505,326.751462,327.819580,328.469739,329.234455,329.884614,331.301031,331.695771,332.160170,333.065748,333.692687,334.016224,334.689603 diff --git a/data/torah/labels/toldot-7.txt b/data/torah/labels/toldot-7.txt deleted file mode 100644 index c8361dc54..000000000 --- a/data/torah/labels/toldot-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.621274,3.248213,3.944811,4.780730,5.825628,6.591886,7.125945,7.706444,8.472702,8.867442,9.819460,10.771478,11.793156,12.512975,12.977374,13.766852,15.090390,16.622907,18.248303,18.782362,19.129120,21.590435,22.031614,23.935650,25.026988,25.677147,26.420185,27.070344,27.974380,28.461999,29.135378,29.785537,31.248394,32.243768,33.288666,33.938825,34.797963,35.308802,35.819641,36.400140,37.095197,37.977555,39.440412,40.090571,40.485310,40.994607,41.313519,41.940458,42.892476,43.681954,44.655650,45.700548,46.397147,46.791886,47.349165,47.716058,48.668077,49.469981,50.120140,51.257918,52.231614,52.812113,53.112430,54.087668,57.361682,57.849301,58.383360,58.894199,59.610934,59.776557,61.097011,62.699188,64.231705,64.742544,66.093688,66.787393 diff --git a/data/torah/labels/toldot-h.txt b/data/torah/labels/toldot-h.txt deleted file mode 100644 index fd3a76849..000000000 --- a/data/torah/labels/toldot-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.685805,3.173424,4.148662,4.543401,6.586757,7.236916,8.421134,10.185850,10.743129,11.602268,12.949025,14.110023,14.969161,16.873197,17.500136,17.987755,18.823673,19.822132,20.332971,21.192109,22.399546,22.771066,24.001723,25.720000,26.532698,28.320635,29.528073,29.876372,30.503311,31.687528,32.221587,33.382585,34.195283,35.263401,36.238639,36.839274,38.650431,41.042086,42.295964,43.168654,44.328526,45.365714,46.201633,46.944671,48.012789,48.988027,49.754286,50.427664,52.285261,53.655238,54.305397,55.118095,56.371973,58.508209,59.088707,59.715646,60.574785,61.085624,62.269841,63.941678,65.822494,66.751293,67.587211,68.376689,69.398367,70.350385,71.186304,72.579501,75.342676,76.457234,76.944853,77.429388,79.542404,80.030023,80.610522,81.330340,82.305578,83.977415,84.277732,84.974331,86.297868,87.365986,89.502222,90.105941,90.941859,93.147755,94.494512,95.771610,96.862948,97.791746,99.347483,100.578141,101.274739,101.528617,102.689615,104.361451,104.663311,105.476009,106.474467,107.635465,108.796463,109.562721,111.791837,113.997732,114.833651,115.553469,116.296508,117.248526,118.664943,119.593741,120.290340,121.079819,121.869297,122.589116,123.262494,124.934331,125.747029,126.722268,127.186667,128.603084,130.298141,132.225397,134.756372,136.219229,136.753288,137.565986,138.634104,139.237823,140.004082,141.072200,143.308261,143.935200,144.260279,144.442955,144.930574,146.881050,147.856288,148.831526,149.528125,150.456923,151.060642,151.896560,152.453839,153.196878,154.288216,155.124134,155.653567,156.419825,157.808397,158.806855,159.340914,160.175290,161.057649,162.845585,163.286764,163.727943,165.562320,167.094837,168.116515,168.929213,170.229531,171.181549,171.645948,172.178465,173.455562,174.848760,176.195517,177.542274,178.053113,179.698646,180.789984,181.347263,182.252841,183.251299,185.155336,186.036152,187.568669,188.404587,189.240506,190.749803,191.166220,191.909259,192.605857,193.557875,194.486674,195.322592,196.599689,197.598147,198.643045,200.291662,203.890755,204.912433,205.725132,206.979009,207.513068,208.511526,209.161685,210.183363,212.667898,213.782456,215.988352,217.240687,219.376923,220.421821,221.489939,222.581277,223.626175,225.460551,225.924950,226.993068,227.270166,228.663363,229.869259,230.096832,231.954429,232.951345,234.414202,235.435880,235.946719,237.014837,238.802773,240.706810,241.983907,242.912705,243.795064,245.629440,246.696016,247.508714,249.250211,250.598825,251.574064,253.199460,254.615878,255.544676,256.380594,257.841909,258.793927,259.374426,260.465764,263.205719,265.202635,266.176331,266.896150,268.730526,269.728984,269.913202,272.885356,273.207352,274.205810,275.597465,276.061864,277.315742,279.196558,279.473655,281.424132,282.608349,283.583587,284.883905,286.323542,286.927261,287.204358,288.620776,289.549574,289.710571,291.870027,292.845265,293.843723,294.331342,295.213701,296.119279,296.349937,297.418054,298.902590,299.574426,300.223043,300.382499,301.288077,302.727714,303.540413,303.840730,304.815968,305.559007,307.648803,308.763361,309.529619,311.108576,312.715136,313.676739,314.535878,315.998735,316.439914,317.204630,318.621048,319.665946,320.362544,320.500322,321.289801,322.195379,322.868757,324.029755,325.071569,325.788304,328.110299,329.224857,330.385855,331.057692,331.452431,331.867306,333.794562,334.512839,335.116558,335.813157,337.090254,338.553111,339.365810,340.410708,341.200186,342.198644,342.638281,343.076376,345.026853,346.443270,347.372068,348.231206,348.881365,349.994381,350.853519,352.060957,352.686354,353.568712,354.265311,355.170889,355.983587,356.982045,357.957284,359.652340,360.999537,361.757646,362.129166,363.359823 diff --git a/data/torah/labels/tzav-7.txt b/data/torah/labels/tzav-7.txt deleted file mode 100644 index a3686d208..000000000 --- a/data/torah/labels/tzav-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.270930,3.757007,4.682721,6.517098,7.515556,9.651791,10.650249,10.879365,12.411882,13.800454,14.083719,14.842268,15.141043,16.139501,16.836100,17.950658,18.577596,19.158095,19.659773,20.100952,21.703129,21.837823,22.580862,22.878095,23.853333,24.401361,25.771338,26.255873,26.836372,27.413787,28.412245,29.310113,30.563991,30.978866,31.652245,31.904580,33.506757,34.613605,34.734331,37.396916,38.135329,38.480544,40.013061,41.243719,41.844354,42.703492,43.369161,44.039456,44.684989,45.404807,46.356825,47.308844,48.191202,49.212880,49.800998,50.530249,51.807347,53.409524,53.852880,54.851338,55.614512,56.984490,60.234100,61.080167,63.053863,63.773682,65.166879,66.513636,67.790734,68.765972,69.810870,70.995087,72.039985,73.758262,74.674907,76.033818,77.310915,78.487417,78.766056,80.391453,81.807870,82.852768,83.967326,85.290864,87.241340,89.424015,90.585013,91.418274,93.136551,95.574646,96.410565,98.128841,99.568479,100.683036,101.890474,103.283671,104.607209,107.184624,107.602583,108.520587,109.681585,110.417333,111.905781,112.564729,113.075568,114.909944,116.465681,117.510579,118.578697,119.414615,119.808636,121.225053,121.898432,122.734350,123.965008,124.893806 diff --git a/data/torah/labels/tzav-h.txt b/data/torah/labels/tzav-h.txt deleted file mode 100644 index b7f1d6bb3..000000000 --- a/data/torah/labels/tzav-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.579995,4.063514,5.011654,6.443539,7.178831,9.075112,11.880833,12.739290,13.042143,14.471846,15.342587,16.987320,19.967189,20.644433,21.611923,21.806117,23.354100,24.844035,26.527468,28.636596,29.778234,30.765074,31.597116,33.648195,34.091777,34.710971,35.833259,37.555391,38.697029,39.111442,39.298792,40.361698,43.434976,44.847512,45.834352,47.053390,48.523974,50.052335,51.445794,52.316535,53.554923,54.909408,55.393157,55.548804,57.328134,59.902817,60.514982,61.463122,63.185254,64.984785,66.339271,67.713107,68.390350,70.131832,71.524436,72.840222,73.440827,74.717914,75.054564,76.462195,77.984737,80.541456,82.052734,82.786342,84.572838,85.530411,86.812512,87.354306,88.902290,90.009813,91.789995,92.912283,94.206022,95.601906,96.975742,98.214129,99.259018,99.974961,101.619694,103.187028,104.522164,104.962342,105.252589,106.703824,108.309857,109.412796,110.264187,112.237867,113.456905,114.463094,115.701482,116.494823,117.501012,117.965408,119.919738,121.467722,121.757969,122.957657,124.524991,126.459970,128.046655,129.323741,129.672038,129.810565,131.455298,132.751735,133.583776,134.628666,136.660394,137.903389,139.180476,139.838369,141.444403,143.190437,145.009318,145.783310,147.016167,147.826280,148.290675,150.554601,151.734940,153.316996,154.598710,155.382918,156.698705,158.614335,159.988171,161.478105,163.045440,164.941720,166.547753,167.611992,169.218026,170.069417,170.346014,171.675450,173.345233,174.390123,175.647860,177.195843,178.434231,178.747641,179.267222,180.911005,181.479215,182.695333,183.122416,184.089907,186.140985,187.630920,188.156870,189.879002,190.861390,193.067268,195.273145,195.768583,196.168383,196.728536,197.824984,199.864614,202.229820,203.055920,205.145699,206.287338,207.545075,207.917802,209.038163,211.202277,211.556580,212.291078,212.696091,214.046269,215.793393,216.935031,218.192768,219.682703,220.574481,221.754819,222.276382,223.554350,226.170618,227.389656,228.337796,229.189187,229.427666,230.743453,231.372531,232.417421,233.172063,234.333051,235.571438,235.792749,236.922686,238.023894,238.311167,238.678218,240.632547,241.851585,242.877124,243.593067,245.237800,248.333768,249.398008,250.307447,251.178189,252.648774,253.310923,254.646060,255.968810,257.749896,258.922365,261.043946,264.108112,265.423898,267.455627,268.790763,271.267539,272.080230,273.163819,274.615054,275.776042,276.472634,277.556224,278.310866,280.032998,280.613492,281.871229,282.490423,283.922308,285.160695,286.457132,287.061202,292.552320,294.022904,294.386635,295.516571,296.309119,297.470108,298.092442,299.050015,301.746414,302.423656,303.042850,304.997180,307.145008,308.170548,310.299026,312.504902,313.336944,313.973166,315.482450,317.881826,320.900394,321.906584,323.977013,326.086141,327.150380,329.375608,330.343097,332.316777,333.456545,334.598183,335.720472,337.307156,338.468144,340.112877,341.370614,342.299404,343.924788,345.801718,346.653110,347.736699,349.091184,350.523070,352.903096,353.203142,353.628838,354.886575,356.221711,357.601178,358.317122,359.671607,361.683987,362.999773,364.509057,364.816122,365.869594,367.011232,368.830114,369.398477,370.540115,371.887383,373.664094,375.416265,376.316572,377.602792,378.336004,379.864638,381.954416,382.902557,385.011685,385.485106,386.568695,387.362037,389.006770,389.526659,390.245157,391.328746,393.283076,393.683318,394.283163,395.209485,396.856686,398.149972,398.553398,400.742845,401.823514,403.971342,407.551055,408.537895,410.143929,411.064259,412.515493,413.657132,414.547222,416.230656,416.946598,418.339784,420.216714,420.585167,421.424801,422.490626,422.982471 diff --git a/data/torah/labels/vayakhel-1.txt b/data/torah/labels/vayakhel-1.txt deleted file mode 100644 index 7077b049a..000000000 --- a/data/torah/labels/vayakhel-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.818708,3.653084,4.071970,4.338257,6.121275,6.910753,8.303950,9.302409,10.509846,11.624404,12.878282,13.807080,14.526898,15.755308,16.511272,17.695490,19.006227,21.177579,22.106377,24.242613,25.264291,27.121888,28.496241,29.448259,31.096876,32.002454,33.000912,34.278010,34.828106,36.019301,37.366059,38.744742,40.009605,40.446895,41.956192,42.908210,43.883448,45.717824,46.832382,48.527439,50.686895,51.755012,52.299521,52.536184,53.237474,53.817973,54.700331,55.605909,57.162919,58.482567,59.155945,59.898984,60.483380,61.690818,62.991135,64.618952,65.584242,67.004438,68.010904,69.103161,70.286459,72.748694,73.514952,74.443750,75.697628,76.696086,77.601664,79.134181,80.991778,83.244113,84.544431,85.380349,86.076948,87.818444,88.750855,90.074393,92.489268,93.627046,94.602284,95.438202,96.808180,98.015617,99.246275,100.476932,101.823690,102.938248,104.215345,105.724642,106.786072,107.645210,108.690108,109.758226,110.942443,112.474960,113.360548,113.883511,114.392975,115.521151,116.821468,118.470085,119.747182,120.139768,120.629541,121.581559,122.881876,123.837815,125.370332,125.919839,126.856409,127.313956,128.667565,129.124428,130.424746,130.891101,132.352002,132.832776,134.938587,135.287121,136.278146,136.682841,138.182182,138.693021,139.934098,140.770016,141.722035,142.019674,143.346072,144.414190,145.087568,146.712965,147.145697,148.005409,148.400148,149.238243,149.575565,150,150.724320,151.668566,152.434825,153.619043,154.368729,155.924238,158.130133,158.663060,159.650085,160.125918,161.477829,162.383408,163.126446,164.609678,165.219919,166.027471,167.304568,167.638692,168.848078,169.900983,170.806561,172.013999,172.989237,173.732276,175.079033,175.682775,176.234907,177.210145,178.115723,179.717900,181.900576,182.861426,184.524431,185.113769,186.220092,187.450749,187.881069,189.018846,189.607360,190.509850,190.894413,191.256095,192.344227,192.972776,194.280417,194.860916,196.209056,197.252571,198.405923,199.881596,200.170073,201.245169,201.616688,202.788561,205.239001,206.307119,206.960389,208.507891,209.159770,210.529748,212.944623,213.641222,214.361040,215.522038,215.958667,217.797594,218.577155,219.135463,220.250021,221.364579,222.641676,223.082855,224.081313,224.986891,226.217549,227.657186,228.285531,228.922308,229.572466,231.174643,233.798498,234.232605,234.794803,235.264466,236.529785,237.597903 diff --git a/data/torah/labels/vayakhel-2.txt b/data/torah/labels/vayakhel-2.txt deleted file mode 100644 index 9c0a72f2c..000000000 --- a/data/torah/labels/vayakhel-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,4.319182,4.910590,5.560749,6.118028,7.232586,8.277484,11.597937,13.734173,14.964831,16.659887,18.819343,21.605738,22.009209,22.812352,24.786048,26.039926,26.826293,27.685432,28.282014,30.617049,32.149566,33.542763,34.892598,36.192916,36.567194,37.890647,39.974727,41.042845,42.714682,45.384977,46.290555,48.473231,49.680668,50.980986,51.281378,52.674575,54.044552,55.158993,56.738067,57.851223,59.570901,60.676786,61.435637,62.828835,63.945812,65.408669,65.930636,66.696895,68.066872,70.040568,72.269684,73.453902,74.243380,75.009639,76.495716,77.411563,78.804760,80.848116,81.800134,82.937912,84.470429,85.462446,87.093559,88.231337,89.113695,90.367573,92.805668,93.455827,94.454285,95.917142,99.214375,101.234511,102.279409,104.044126,105.078561,106.900180,107.645846,108.621085,109.592806,110.943080,112.021887,112.695266,113.490647,114.221899,115.566475,116.950117,118.482634,119.945491,120.470504,121.793551,122.156547,124.369901,124.685612,125.665450,126.780008,127.174747,128.637604,129.937921,131.609758,132.793976,133.908534,136.091209,137.514818,139.024115,140.626291,141.065612,143.096115,145.770216,147.111799,147.917800,149.334217,150.541655,151.563333,152.492131,153.838888,155.232086,157.020022,157.944173,158.875829,159.340228,160.292246,162.869661,163.960999,165.330976,166.375874,167.885171,168.500495,168.988114,170.636730,171.960268,172.774101,174.822734,177.138318,178.531515,179.061772,180.315649,181.569527,182.962724,185.052520,186.097418,186.679424,187.722815,189.510751,190.037220,191.879187,193.730580 diff --git a/data/torah/labels/vayakhel-3.txt b/data/torah/labels/vayakhel-3.txt deleted file mode 100644 index b8e4a93d7..000000000 --- a/data/torah/labels/vayakhel-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.066657,3.057552,3.498731,4.566849,6.052926,8.119502,9.094740,10.023538,11.091656,13.599411,13.970354,14.590148,14.826017,15.619547,16.571566,17.802223,19.227526,19.970565,20.713603,21.828161,24.103717,25.311154,26.193512,26.755846,27.940064,29.402921,30.981878,33.350313,34.325551,35.393669,37.065506,38.839671,40.409180,41.546957,42.754395,43.799293,44.758846,45.136528,45.856347,47.737163,49.483359,50.342498,51.433835,53.244992,54.429210,54.677759,55.729527,56.450651,57.424584,58.679766,60.072964,61.141082,62.673599,65.320673,65.683747,66.644211,68.008736,70.309024,72.487243,73.880440,76.063116,77.734953,79.546109,80.869646,82.123524,83.586381,83.901777,85.132884,86.457034,88.198530,90.984925,92.053043,94.189279,96.209415,96.975628,97.503524,98.952430,101.204572,102.010738,103.821895,104.959672,106.120670,107.351328,108.628425,110.137722,110.611070,110.835707,111.740416,112.715654,114.132072,114.960283,115.564002,116.516020,118.002097,119.367055,120.951031,121.554750,123.609243,124.459918,126.720717,127.695955,128.056485,129.008503,129.474721,130.310639,132.005696,133.677533,135.488689,136.696127,138.158984,138.994902,139.847751,141.449928,142.634146,144.073783,144.418881,145.675960,146.535098,147.649656,150.296731,151.433063,152.988800,153.894378,154.235501,155.655056,156.684041,158.395011,159.166275,160.930461,163.089916,164.065154,165.086832,166.108510,166.944429,169.684383,170.613182,171.681300,173.260256,174.421254,175.210733,176.673590,178.528245,178.821979,180.926563,183.427030,184.022317,184.280649,185.102954,186.356832,187.355290,188.841367,190.606083,191.233022,191.836741,193.206718,194.878555,195.141829,196.298289,197.552167,198.448751,199.191789,200.399227,201.476582,202.745779,204.091200,204.857458,205.484397,206.297095,207.086574,208.201132,209.687209,211.242946,212.938002,213.371091,215.842094,217.882456,218.627588,220.459871,221,222.109455,223.927644,224.906181,225.913602,227.260360,228.398137,229.094736,230.743353,233.343988,234.597865,236.107162,236.769376,237.837494,238.859172,239.834410 diff --git a/data/torah/labels/vayakhel-4.txt b/data/torah/labels/vayakhel-4.txt deleted file mode 100644 index 18c020031..000000000 --- a/data/torah/labels/vayakhel-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.135757,2.587307,3.193398,4.563375,6.351312,8.673307,9.079269,10.352580,11.410689,12.415284,13.234141,15.114958,16.206295,17.576273,18.899810,20.130468,22.289923,23.218722,24.240400,25.122758,26.353416,28.157106,29.161702,30.961966,32.146184,33.307182,34.653939,36.000696,37.277794,38.578111,39.739109,41.039426,41.921785,42.571943,43.083879,44.592079,46.358776,46.683855,47.682313,49.075510,49.981089,50.389007,51.341025,52.478803,53.523701,54.731139,55.706377,56.124666,57.631559,59.653769,60.683255,62.347284,62.834606,63.786921,64.901479,66.225016,67.664653,69.382930,70.288508,71.217306,72.308644,73.725061,76.396645,77.481346,78.851323,80.466700,82.161757,84.590311,85.542329,87.469586,88.955663,90.604280,92.043917,93.112035,94.505232,95.550130,96.641468,97.872125,99.311763,101.494438,102.446456,102.790970,104.118293,107.252987,108.297885,109.180243,110.109041,111.292123,111.576443,113.424519,114.360423,114.755162,115.660740,117.594538,118.484480,119.390059,120.745910,122.408653,123.470474,124.660988,125.770643,126.048304,127.163841,128.095404,128.815681,130.235895,130.995463,132.256031,133.927868,134.879886,136.667822,137.947112,139.456409,141.290785,142.475003,143.380581,144.564799,145.841896,147.188654,148.465751,149.580309,150.393007,151.623665,154.247520,154.660322,155.418507,156.499889,157.544787,158.081633,158.564976,159.516526,160.770403,162.953079,163.682726,165.360211,166.280468,167.395026,168.834663,170.181421,171.597838,172.991035,174.662872,176.102509,176.185689,177.160927,178.647004,179.691902,181.270859,183.708954,184.451993,185.241471,186.588229,187.679567,188.010997,188.933168,189.727838,191.190695,192.746432,193.791330,195.068427,195.834686,196.693824,198.040581,200.246477,200.919856,202.289833 diff --git a/data/torah/labels/vayakhel-5.txt b/data/torah/labels/vayakhel-5.txt deleted file mode 100644 index 288cf8f40..000000000 --- a/data/torah/labels/vayakhel-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.766717,2.207897,3.484994,4.738872,5.589366,6.275782,7.761859,8.876417,9.456916,10.269614,11.500272,12.730929,13.868707,15.285124,16.167482,16.968513,18.280498,19.507011,21.062748,22.212718,23.500843,25.430590,26.289728,26.632994,27.657340,28.658163,29.935261,31.189138,31.862517,33.302154,34.509592,34.794358,35.921571,37.152229,38.579985,39.960625,40.983521,41.597351,43.022528,44.554094,45.081972,46.016951,48.355985,49.215124,50.213582,51.862199,52.854022,54.532493,55.135198,55.924677,57.248214,58.362772,59.895289,61.358146,63.164286,63.793795,64.629714,65.651392,66.301550,67.810847,70.109623,71.874340,72.988897,73.824816,74.846494,76.030711,76.680870,78.213387,79.745904,80.814022,81.835700,82.585746,84.141483,85.163161,86.231279,87.392276,88.971233,90.178671,90.944930,91.641528,93.174045,94.729782,95.635360,96.680258,97.655496,98.328875,99.605973,100.975950,101.951188,103.205066,104.691143,105.991460,108.335714,109.215218,111.397894,113.627009,115.600705,116.715263,117.610498,117.977927,119.037259,119.770532,120.952749,122.183407,123.178450,124.176908,125.570105,126.300497,128.134874,129.370013,130.515030,132.040308,133.387066,134.315864,135.244662,135.894821,136.962939,137.874733,138.872906,139.801704,141.032362,141.937940,142.611319,144.167056,145.444153,146.512271,147.208870,148.300208,150.854403,151.922521,152.344046,153.226404,154.735701,156.453978,157.800735,158.729533,159.235445,160.233903,161.534221,163.159618,164.367055,165.829912,167.130230,168.593087,169.614765,170.729323,170.887620,171.955453,173.302211,174.672188,175.670646,177.272823,177.746284,178.735680,178.982180,180.407517,181.030871,183.114576,183.917385,185.496342,186.323989,187.693967,188.947844,190.387481,191.455599,192.964896,193.986574,194.213758,195.117148,196.440686,197.996423,198.210934,199.661990,201.403486,203.353963,204.375641,205.118679,205.768838,206.999495,208.253373,209.901990,210.761128,211.364847,212.897364,214.104802,215.497999,216.937636,218.261173,219.491831,221.349427,222.417545,223.439223,224.553781,226.132738,227.200856,228.268974,228.849473,230.010470,231.357228,232.402126,233.470244,234.515142,236.256638,238.439314,239.577092,240.505890,241.295368,242.479586,243.501264,244.615822,245.367388,246.203306,247.248204,247.702429,249.706584,251.476726,253.589741,255.609877,256.631555,257.978313,258.758684,260.160989,262.342748,264.246784,264.826821,265.852972,266.665670,267.873108,268.871566,270.527528,272.400999,273.724536,274.558107,275.958534,276.701573,277.560711,279.348648,282.320802,283.087060,283.992638,285.037536,286.198534,287.359532,288.752729,289.403119,289.892365,291.192683,292.617771,293.979077,295.086894,296.294331,297.455329,298.351881,299.137553,300.437870,301.387327,303.059164,303.602080,304.670198,305.715096,306.420268,307.674145,308.138545,308.784621,310.065801,311.226718,312.016197,312.805675,313.973156,314.919465,315.639283,316.753841,318.100598,318.337760,319.400916,320.976564,321.573622,322.409541,323.849178,324.779319,324.988298,326.635572,327.797913,328.819591,329.562629,330.862947,332.023945,333.138502,334.415600,335.321178,336.087437,337.410974,339.849069,340.468351,341.606128,343.115425,344.694382,345.855380,346.969938,348.177376,348.850754,350.220732,350.990165,351.776469,352.731661,353.753339,354.480877,355.053657,356.005675,357.097013,357.574565,359.803680,360.420161,360.675580,361.883018,362.649276,364.112133,365.268391,367.734446,369.002339,371.115355,373.390911,374.853768,376.618484,376.870222,378.174221,379.539850,380.329328,380.635385,381.559986,382.539421,383.793299,384.652437,385.186496,386.881553,388.715929,388.948537,390.039466,390.736065,391.734523,392.871865,393.847103,394.892001,396.192318,397.074677,397.910595,399.280572,400.551320,401.509688,402.484926,403.506604,404.544307,406.076824,406.598522,407.330702,408.631019,409.986358,410.662503,412.622121,413.5,414.425860,416.202378,416.693047,418.806063,420.260178,421.778218,423.496494,424.471732,425.446970,426.329329,427.443886,428.581664,428.889179,430.408659,431.244577,432.173376,433.613013,434.588251,435.215190,436.654827,438.373103,439.743081,440.695099,441.879317,443.017094,444.572831,445.617729,445.815912,447.472150,448.641241,448.819388,449.966210,450.949914,452.404598,453.429229,454.172267,455.266086,456.239137,456.526723,458.049635,460.404455,460.632768,463.020617,463.868630,464.229113,466.306726,467.057199,468.507018,468.839906,470.233103,471.370881,473.391017,474.366255,476.130972,477.059770,477.872468,478.987026,480.357003 diff --git a/data/torah/labels/vayakhel-6.txt b/data/torah/labels/vayakhel-6.txt deleted file mode 100644 index f098771eb..000000000 --- a/data/torah/labels/vayakhel-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.727115,1.996987,3.227644,4.125940,5.124398,7.399954,8.414491,8.739570,10.086327,11.502745,13.012042,15.032178,16.264964,17.520072,18.180229,19.434106,21.454242,22.638460,23.915557,25.331975,27.584310,28.652428,30.370705,32.065761,33.621498,35.130795,36.106034,37.452791,38.567349,40.262405,41.423403,43.954378,46.757914,47.867183,50.328498,51.048316,53.068453,54.345550,56.272806,59.120122,60.211460,61.209918,62.092276,63.624793,64.692911,66.202208,67.572185,69.197582,69.559126,71.138083,72.926019,74.040577,75.085475,77.268151,78.614908,80.472504,84.535996,86.347153,87.275951,89.272867,91.293003,93.127380,93.834748,94.616004,95.777001,96.961219,99.422534,100.258453,101.024711,101.907069,103.021627,104.345165,105.599042,106.783260,108.106797,109.871514,111.195051,112.518589,113.540267,115.769382,116.814280,117.673418,118.486117,119.856094,121.109972,121.436835,122.568489,123.640920,126.085351,127.850067,128.685986,130.032743,132.505789,133.434587,134.409825,135.431503,136.360301,137.753499,138.113309,139.402115,141.909870,142.699349,143.326288,144.301526,145.114224,146.298442,147.104820,149.041494,150.063172,151.758229,153.917685,155.589522,156.959499,158.236597,158.933195,160.674692,162.160769,164.018365,165.109703,166.827980,167.465476,169.044433,169.601712,171.830828,172.806066,173.360368,174.823225,176.053883,177.725720,178.411953,179.062112,180.362429,182.429005,183.381023,185.029640,185.695694,187.490955,188.621408,190.595104,191.547123,192.661680,194.217417,195.122996,196.208345,197.305671,199.428926,200.868563,201.750922,202.401080,203.678178,204.932055,205.122192,206.209153,206.825324,208.089969,209.069584,209.742963,211.043281,212.784777,213.142014,213.727222,214.772120,215.793798,216.513617,217.163776,218.092574,218.974932,220.530669 diff --git a/data/torah/labels/vayakhel-7.txt b/data/torah/labels/vayakhel-7.txt deleted file mode 100644 index 137f9acfa..000000000 --- a/data/torah/labels/vayakhel-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.071876,3.368206,4.111245,5.132923,6.038501,7.176279,9.382175,10.218093,11.727390,12.888388,13.584986,14.583444,15.721222,16.575188,17.295006,18.757863,20.011741,22.147977,23.095077,24.423532,25.886390,26.861628,27.743986,28.974643,30.019541,30.692920,31.807478,34.084352,34.418593,34.659978,35.361591,37.451387,37.840574,38.946275,39.364234,40.734212,41.221831,42.847228,43.520606,44.867364,45.209902,46.573014,47.126779,47.999952,48.510791,49.764669,50.879226,51.993784,53.178002,54.385440,55.476777,56.614555,58.301462,60.747707,62.233784,62.504393,63.975281,66.320496,67.969113,70.151789,71.196687,72.613104,73.959861,75.167299,76.142537,77.767934,79.184351,79.372911,80.438229,81.181267,82.342265,83.363943,84.129607,85.569839,86.800496,86.969424,88.727752,91.003308,91.816006,92.884124,94.393421,95.322220,96.088478,97.040496,98.073956,98.886654,99.606614,101.162210,103.135906,103.786065,105.109602,106.317040,107.222618,108.058536,109.312414,110.961031,113.283026,114.861983,116.278400,117.114319,117.601938,118.948695,120.465077,120.734203,121.941641,123.823957,124.729535,126.447812,127.446270,128.816247,129.837925,131.022143,132.043821,133.344138,135.178515,136.316293,137.314751,138.104229,139.311667,140.913844,143.259059,145.093435,146.277653,147.740510,148.762188,149.771998,151.107404,152.980993,154.102778,155.674156,156.440415,157.903272,159.621549,161.850664,163.615381,164.869258,166.192796,167.446673,169.025630,170.581367,171.928125,173.507082,174.946719,176.339916,177.431254,179.178313,181.279778,183.004043,184.118601,186.417376,187.274137,188.388695,189.363933,190.594591,192.939806,193.574526,194.085365,195.153483,195.505766,196.689984,198.547581,200.010438,201.172703,202.564633,203.945883,205.826699,206.918037,208.079035,209.308781,210.941677,213.373185,214.371643,215.486201,216.206019,218.041222,219.526473,220.7,222.286749,222.745970,224.324927,226.484383,227.343521,228.094177,229.343697,230.911454,233.442429,235.346466,236.245298,238.427974,240.215910,241.214368,242.474691,243.728569,245.005666,246.422084,248.488660,249.579998,250.601676,251.465879,252.871589,255.266079,256.156264,257.448755,258.911612,260.142270,261.823387,263.913183,265.050961,265.747560,266.513818,267.651596,268.905474,269.857492,270.763070,271.900848,273.015406,274.129963,275.058762,276.080440,276.648386,278.064803,280.317139,282.012195,283.428613,284.194871,285.379089,286.958046,287.863624,289.860540,292.089656,293.575733,294.783171,295.854412,298.129968,300.335863,303.006158,304.352915 diff --git a/data/torah/labels/vayakhel-h.txt b/data/torah/labels/vayakhel-h.txt deleted file mode 100644 index 56d87d7e6..000000000 --- a/data/torah/labels/vayakhel-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.048128,4.051223,4.469182,6.187459,6.638203,7.743196,8.207595,9.949092,11.219498,12.851586,13.942924,14.152929,14.398356,15.625488,16.671464,18.505841,19.481079,20.340217,20.920716,22.313913,23.962530,25.193187,26.957904,29.256680,29.881444,30.229743,30.523458,31.846995,33.565272,35.422868,36.630306,38.743322,39.116312,40.066859,41.330370,42.961327,44.163204,44.422199,44.679313,46.373925,47.016708,49.342417,50.015778,51.006828,51.562942,53.534174,54.204199,54.932625,55.977523,57.997693,59.369843,61.294926,61.742299,62.734563,63.802681,65.428078,66.751616,67.053475,67.340361,68.881023,69.654383,70.877939,72.502309,73.030225,73.889363,75.073581,75.404375,77.186597,77.835266,78.765554,80.390951,80.815446,81.411481,81.806529,82.837293,83.292606,84.835766,85.618793,86.341076,86.642935,88.291552,88.802391,90.659987,91.774545,92.011570,93.288975,94.629452,95.763089,96.562989,98.559905,99.372603,100.278181,100.683306,102.574424,103.781861,105.476918,107.148755,108.263313,109.842270,110.956827,112.303585,114.230841,114.684305,115.763032,116.413190,117.899268,119.292465,120.360583,120.632976,120.995272,122.140596,123.472057,124.331195,125.770832,126.179670,127.363888,128.007459,129.267924,131.473820,132.750917,133.493956,133.769138,135.003253,136.350010,136.698310,138.393366,139.136405,140.390282,141.644160,142.074883,143.831625,144.721958,146.671561,147.508352,148.321051,149.598148,150.504889,153.429441,154.583644,156.471255,158.212751,160.486166,161.205386,162.412824,163.088375,164.783432,166.664248,168.986244,170.953865,172.579262,175.760395,178.059171,180.566926,181.674057,183.205051,183.810463,185.389420,190.822890,192.935906,193.779455,195.567391,196.472970,198.330566,199.607663,201.581360,202.881677 diff --git a/data/torah/labels/vayeilech-1.txt b/data/torah/labels/vayeilech-1.txt deleted file mode 100644 index 125f2e704..000000000 --- a/data/torah/labels/vayeilech-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.951271,4.437348,9.383198,9.870817,11.078255,12.378573,12.819752,13.260931,15.234627,16.999344,19.205239,19.971498,22.920432,24.801248,26.333765,27.541203,28.887960,29.584559,30.374037,31.279616,32.278074,33.624831,35.343108,36.550545,37.711543,38.802881,39.824559,40.312178,41.240976,42.982473,44.886509,46.465466,48.810681,50.180659,52.061475,53.315353,55.358709,56.055307,57.425285,58.841702,60.606418,62.440795,65.947008,67.665285,68.710183,70.149820,71.728777,72.936214 diff --git a/data/torah/labels/vayeilech-2.txt b/data/torah/labels/vayeilech-2.txt deleted file mode 100644 index 5ff1a18e7..000000000 --- a/data/torah/labels/vayeilech-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.729230,3.959888,5.399525,7.024922,9.045058,10.531135,12.365511,13.526509,14.919706,16.963062,18.216940,19.192178,20.794355,22.582291,24.254128,26.274264,27.876441,28.990999,30.198437,31.312994,32.172133,33.263471,34.842427,36.955443,38.511180,39.370319,40.275897,40.597892,42.130409,43.988006,45.868822,47.378119,49.328595,50.721793,51.929230,53.484967,54.506645,56.201702,57.107280 diff --git a/data/torah/labels/vayeilech-3.txt b/data/torah/labels/vayeilech-3.txt deleted file mode 100644 index bf782337a..000000000 --- a/data/torah/labels/vayeilech-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.205896,4.063492,6.106848,7.592925,8.916463,9.868481,11.006259,13.792653,14.860771,16.579048,17.531066,19.133243,20.572880,21.269478,22.082177,23.661134,24.752472,27.167347,29.024943,31.277279,32.995556,34.876372,35.758730,36.850068,38.196825,39.311383,41.308299,45.441451,47.345488,48.483265,50.642721,52.012698,52.825397,53.963175,54.984853,56.006531,56.772789,57.864127,58.839365,59.814603,60.604082,62.275918,64.412154,67.755828,68.173787,69.144399,70.676916,73.161451,74.067029,75.251247,76.435465,77.550023,79.686259,79.961814,80.797732,81.375147,82.861224,84.091882,84.556281,86.320998 diff --git a/data/torah/labels/vayeilech-4.txt b/data/torah/labels/vayeilech-4.txt deleted file mode 100644 index 49ceb328a..000000000 --- a/data/torah/labels/vayeilech-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.618935,3.640613,4.778391,5.916169,8.005965,8.981203,10.606600,12.557076,13.648414,14.902291,15.738210,17.131407,19.030817,19.495217,21.259933,22.746010,23.349729,24.278527,25.509185,26.623743,28.225920,28.992178,30.153176,33.055670,33.450409,34.448867,35.934944,37.188822,37.722881,38.790999,40.439616,41.852949,42.387008,44.337484,45.777121,47.054219,48.168777,49.571774,50.291593,51.847330,53.356627,54.912364,56.189462,57.930958,59.417035,59.951094,61.088872,62.435629,63.875267,65.129144,65.918623,66.336582,66.963521,67.915539,69.378396,72.800732,73.548253,73.882818,75.521949,76.938367,78.749523,79.980181,80.650475,81.320770,82.969387,83.503446,85.268162,86.522040,87.427618,88.449296,89.029795,90.655192,92.280589,93.511246,95.762020,96.013836,97.596396,99.175353 diff --git a/data/torah/labels/vayeilech-5.txt b/data/torah/labels/vayeilech-5.txt deleted file mode 100644 index f9b8d163a..000000000 --- a/data/torah/labels/vayeilech-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.414875,4.086712,4.876190,6.548027,7.778685,8.541859,11.026395,12.976871,14.044989,14.436644,16.619320,19.150295,20.311293,21.309751,23.283447,24.374785,25.303583,26.464580,28.229297,29.111655,30.737052,33.231746,34.996462,36.366439,37.272018,38.433015,40.290612,41.312290,42.148208,42.399002,43.118820,44.720997,47.042993,47.733424,47.925351,49.030657,49.933151,50.769070,51.303129,52.835646,54.786122,55.807800,57.177777,59.337233,60.683990,61.914648,63.052426,64.701043,66.210340,67.069478,67.252154,68.041632,69.385306,71.451882,73.188752,73.402358,74.814149,76.091247,76.766415,78.298932,80.815764,81.837442,82.320436,83.179574,85.664109,88.589823,90.424200,91.512454,92.394812,93.579030,94.740027,96.690504,98.037261,98.896399,100.219937,102.031093,103.215311,104.678168,107.530755,108.150289,108.470742,109.306084,110.397421,111.860279,113.207036,114.298374,115.691571,119.290664,120.892841,122.378918,123.586356,125.002773,126.372750,127.208669,127.626628,128.578646,129.472614,130.482682,131.837713,132.988379,133.171055,134.332052,136.166429,138.511644,139.719082,140.462120,141.135499,142.226837,143.318175,144.688152,145.175771,145.473005,146.634002,147.373957,148.952914,150.462211,150.897222,152.174320,153.285794,155.050510,156.350828,157.233940 diff --git a/data/torah/labels/vayeilech-6.txt b/data/torah/labels/vayeilech-6.txt deleted file mode 100644 index 78022adf1..000000000 --- a/data/torah/labels/vayeilech-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.721680,4.229435,4.690751,7.268166,7.818886,8.817344,11.232220,12.886576,13.924972,14.983338,16.361210,18.078558,19.656122,22.471773,22.911095,24.109244,25.307394,26.685266,28.841936,30.419499,30.918728,32.676015,36.969384,37.548490,38.546948,40.384111,41.377943,44.852577,47.049185,50.663603,52.101382,53.199686,55.016880,56.015338,57.632840,58.511483,59.949263,60.523742,61.686580,64.018346,64.878900,65.030605,67.406955,68.445351,69.863162,70.399245,71.677272,72.835483,74.173417,74.652677,75.551289,76.549747,78.566632,80.295226,82.072481,82.691525,83.849736,84.708410,85.344340,86.422674,88.159991,88.858912,89.497925,91.514810,94.629999,94.886515,96.004788,96.281272,97.918743,100.734395,101.792760,103.550047,104.427907,106.889222,108.302556,108.554891,109.382961,110.5,111.099696,111.954208,112.588814,113.590140,114.888135,116.166161,117.164619,119.021751,121.477958,123.115429,125.132315,127.169169,127.648429,128.384204,129.040102,130.298160,130.794305,131.972485,133.602247 diff --git a/data/torah/labels/vayeilech-7.txt b/data/torah/labels/vayeilech-7.txt deleted file mode 100644 index 34c597557..000000000 --- a/data/torah/labels/vayeilech-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.947039,4.010977,4.267260,6.064949,8.614732,9.384641,9.934424,11.108425,12.539238,15.144053,15.803899,16.831149,17.821713,18.922339,20.554934,21.765622,24.242030,25.342656,25.782906,26.975251,28.736252,29.891909,30.442222,31.487817,33.377225,34.495665,35.376165,36.466825,36.531822,38.052766,38.675924,39.895519,41.473083,42.454210,45.150213,46.122433,48.011841,50.286467,51.809000,53.625032,54.083626,55.496096,56.871879,57.367160,58.137598,60.027006,63.253145,64.922427,65.509428,65.839615,66.738460,68.407742,70.077025,71.956466,74.524593,75.680250,77.019345,78.138315,79.568599,80.742600,81.182850,82.283476,82.998883,84.869946,85.520885,87.538699,88.639325,89.207982,90.473702,91.500952,93.060172,94.542726,94.856589,95.902926,96.956393,97.891925,99.231020,100.331646,101.780803,102.771367,104.293899,105.522931,106.256682,107.137182,107.577433,108.567996,109.650278,111.026060,112.585280,113.557500,115.318501,117.336315,119.537567,121.096787,121.812194,122.747726,124.013446,124.637134,125.388698,126.131356,127.103575,128.681139 diff --git a/data/torah/labels/vayeilech-h.txt b/data/torah/labels/vayeilech-h.txt deleted file mode 100644 index 9900eb8a9..000000000 --- a/data/torah/labels/vayeilech-h.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.614251,2.788252,4.916129,6.181849,7.557631,8.291381,9.612132,10.664831,12.328867,13.404785,14.426463,15.982200,17.677257,18.954355,20.092132,21.740749,23.110727,24.271724,25.270182,26.547280,27.638618,28.938935,30.285693,31.794990,32.770228,34.116985,36.299661,38.134037,39.480795,42.359350,44.309826,44.887241,45.281980,47.812955,48.555994,49.484792,50.877989,52.573046,53.475540,54.517354,55.585472,56.862570,58.278987,59.509644,61.158261,62.760438,63.750472,65.144598,66.777193,68.593225,69.033476,70.280852,72.041853,74.444886,75.178637,77.765108,79.122546,79.911328,80.791829,81.507235,82.699580,84.240456,85.726301,87.597365,89.266648,89.945367,90.770836,91.944837,93.320620,94.512964,96.439059,97.961062,100.070595,101.078972,103.977287,106.577350,106.948870,107.413269,107.945786,110.221341,110.708960,112.729096,113.495355,114.467509,116.046466,117.456715,117.648643,118.014085,119.755582,121.218439,123.772634,125.165831,126.257169,127.046647,128.114765,130.111681,130.990956,132.148870,133.588507,134.746421,136.302158,137.227872,137.594765,138.825423,141.286738,141.980253,143.001931,144.279028,145.788325,146.647464,147.669142,148.388960,149.410638,149.967917,150.618076,152.237305,153.235763,154.303881,155.302339,156.254357,157.693994,158.762112,160.689369,161.966466,163.359663,165.403019,166.819437,167.139890,167.906149,169.694085,169.921659,171.288552,172.934085,174.629142,176.951137,178.437214,179.988325,181.404743,183.424879,184.517819,186.073555,187.629292,188.952830,190.067388,190.763986,191.948204,193.643261,194.455959,194.943578,196.034916,197.033374,198.681991,200.469927,202.327524,203.836821,205.230018,206.994735,207.946753,209.130970,210.082989,212.242444,213.635642,214.703760,215.655778,219.208431,219.649610,220.206889,221.135687,223.620222,224.456141,225.129519,225.988658,227.567614,228.264213,228.821492,229.703850,231.909746,234.812240,235.578499,236.367977,237.466427,238.666753,240.554681,241.469601,242.746699,243.512957,244.464976,245.022255,245.625973,246.248286 diff --git a/data/torah/labels/vayera-1.txt b/data/torah/labels/vayera-1.txt deleted file mode 100644 index 12a56e8dd..000000000 --- a/data/torah/labels/vayera-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,3.204354,3.900952,5.085170,5.921088,6.664127,7.964444,8.568163,8.903932,9.484431,9.947288,11.038626,12.181106,12.943882,13.893114,14.503334,15.469516,16.198391,16.910315,17.503584,19.215592,20.351280,21.164907,21.825979,22.520952,23.131173,24.165157,25.402549,27.267111,27.775628,28.199392,29.013019,29.453734,30.436867,30.674175,30.928600,31.555771,31.911817,32.894949,34.030637,34.522204,34.759679,35.369899,36.268279,37.200560,38.366816,38.892284,39.841515,40.672343,41.045256,42.265697,42.943719,43.791248,44.604875,45.621909,46.316882,46.452737,46.690128,47.452904,47.656478,48.622660,50.504173,50.945055,51.673929,52.250248,53.385936,55.408017,56.967469,57.967719,58.222061,58.933985,60.730745,62.578357,63.307231,63.934402,64.598500,65.276523,66.107267,66.768339,67.819275,69.840331,70.620057,71.128574,71.925251,72.721927,73.094840,74.247478,74.959402,75.739128,76.366466,76.569956,77.434435,78.197211,78.773530,79.943119,80.977104,82.417902,84.272287,84.780804,85.374074,85.865640,86.594515,87.119982,87.916659,88.696385,89.916826,91.425426,92.154300,92.628916,93.866308,95.493729,96.205653,96.477029,97.121150,98.070382,98.934861,99.375743,100.494480,102.750379,103.428402,104.055573,105.089557,105.631975,106.394751,107.174477,107.479754,108.140993,109.005472,109.785198,111.141243,111.988772,112.565091,113.022756,114.421238,115.980690,116.692614,117.506241,118.048659,118.845336,119.743716,120.303084,121.235366,121.676080,123.133829,124.447891,125.007260,125.651382,126.549762,127.617647,128.448225,129.058446,129.482377,130.431859,131.228702,132.042329,133.093265,133.754337,133.873158,134.551264,135.195469,136.907476,137.788905,139.229704,140.856958,141.450228,142.874075,143.467345,144.111467,145.213254,146.348942,147.026964,147.586333,149.535648,150.281473,151.552766,152.095184,153.298674,154.660163 diff --git a/data/torah/labels/vayikra-1.txt b/data/torah/labels/vayikra-1.txt deleted file mode 100644 index de8a5df97..000000000 --- a/data/torah/labels/vayikra-1.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.036288,2.194815,3.062080,4.276251,5.182062,5.933692,7.012955,7.571859,8.554760,10.385654,10.906013,11.599825,12.544181,13.584899,14.895433,16.552873,16.957597,17.863408,18.942671,19.829209,20.869927,21.390287,22.816456,23.471723,24.416079,24.878620,25.610978,26.426945,26.613151,28.242912,28.611264,29.285804,30.442158,30.619957,31.660676,32.470123,33.067573,34.243199,34.705741,35.611551,36.420999,37.095538,38.521708,39.254065,40.429692,41.142776,42.337675,43.706027,44.862381,45.498376,46.172915,47.117271,48.177262,48.697621,49.584159,50.528514,52.306087,52.942082,53.346806,54.136981,54.753703,55.698058,57.875858,59.070757,60.015112,61.113648,61.270002,61.963814,63.679072,64.066697,64.822673,64.972507,66.210298,67.000473,67.717904,68.315353,69.009166,70.069157,71.120491,71.353445,72.355618,73.171585,73.903943,75.349385,77.700637,78.779901,79.916982,81.574422,82.287507,82.634413,83.463134,84.792940,85.428935,85.589635,86.823079,88.769608,89.521238,90.311413,92.508485,92.913209,94.532104,95.303007,96.131727,96.555723,97.403716,98.078256,99.176792,100.048403,100.236783,101.050577,102.091295,102.367631,103.382557,104.635273,105.463993,106.427622,107.526158,109.010145,109.896683,110.262861,110.841038,111.978120,113.947430,114.448390,114.973095,115.724725,117.035259,117.519247,117.793409,118.602857,119.849153,120.292421,122.007680,122.528039,122.913490,123.742210,124.628748,125.399651,125.997100,127.288362,128.290535,129.389071,130.063611,131.046511,132.491953,133.513399,134.168666,135.151567,138.292995,139.776982,140.952608,142.398051,142.706411,143.804948,144.344579,145.211845,146.329653,147.370372,148.064184,148.969994,149.779442,150.453982,150.820160,151.668153,152.766689,153.672499,154.597582,155.214304,156.216478,157.237924,157.623375,158.336460,159.377178,159.839719,160.706985,161.998246,162.961875,163.983320,164.792768,165.968394,166.893477,167.317474,167.895651,168.917096,170.266176,171.268349,172.538596,173.933332,174.708581,175.652937 diff --git a/data/torah/labels/vayikra-2.txt b/data/torah/labels/vayikra-2.txt deleted file mode 100644 index 0b75d7839..000000000 --- a/data/torah/labels/vayikra-2.txt +++ /dev/null @@ -1 +0,0 @@ -0,2.712555,3.049709,4.643527,5.425110,6.237344,7.202830,8.214291,8.413518,9.639532,11.095423,11.482286,12.064642,12.815576,13.275331,14.210166,15.681382,16.432316,16.800120,17.535728,18.516539,19.252147,20.110356,21.091167,22.240555,23.543195,24.569981,25.336239,25.711641,26.815053,28.270944,28.700049,29.405007,30.293867,31.688457,33.006422,33.925932,34.891418,35.642351,36.117431,36.730438,37.910476,39.412343,40.209252,41.956321,42.515624,44.216718,45.258830,46.392893,47.373703,48.431140,48.952196,49.887031,50.637965,50.990444,51.634101,52.706863,53.718324,55.373442,56.078400,56.829333,58.024697,59.618514,60.200871,61.518835,62.468996,63.296555,64.231390,65.135576,65.809883,66.790694,67.940082,68.813616,69.518574,70.346133,71.127717,72.307755,74.867059,75.510716,76.093072,77.533638,79.403309,80.430095,81.640784,82.514318,83.878259,85.242199,86.881992,87.801502,88.123331,89.073491,89.962351,91.372267,91.801371,93.149986,94.376000,96.123069,96.736076,97.410384,98.559771,99.893061,100.214890,101.134400,102.115211,103.141997,103.877605,104.751140,105.655325,106.651461,107.708898,108.996212,109.731820,110.375478,111.172386,112.061246,112.965431,113.609088,114.283396,115.647336,116.505546,117.501682,118.038063,118.811918,119.777404,120.543663,121.095369,121.478498,122.275407,123.363494,125.003287,125.754220,126.382552,126.934259,127.976370,129.125758,129.769415,130.734901,132.267418,132.773148,133.309529,134.642819 diff --git a/data/torah/labels/vayikra-3.txt b/data/torah/labels/vayikra-3.txt deleted file mode 100644 index 9911cdede..000000000 --- a/data/torah/labels/vayikra-3.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.458231,2.015510,2.874649,4.128526,5.010884,5.962902,7.100680,8.444354,8.769433,10.348390,11.914459,13.470196,14.677634,15.815412,17.022849,17.696228,18.416047,19.716364,20.203983,21.202441,22.479539,23.524437,23.942396,24.662215,25.149834,27.007430,28.029108,28.911466,30.665569,31.478267,32.151646,33.521623,34.961261,35.213596,36.049515,37.326612,38.278630,39.044889,39.973687,40.647066,41.900943,42.551102,43.967519,44.896317,45.964435,46.893233,47.496952,48.472190,49.261669,50.144027,50.570543,51.421183,51.862362,52.837600,53.206036,54.204494,55.713791,56.689029,57.664267,59.266444,60.613201,61.681319,62.308258,63.190616,63.724675,64.653473,65.001773,65.628711,66.464630,67.416648,68.322226,69.134924,71.480140,72.447668,73.980185,74.839324,76.209301,77.161319,78.182997,79.088575,79.994154,81.085491,81.851750,82.455469,83.244947,84.498825,85.566943,86.237237,87.491115,88.234154,89.046852,89.905990,91.693927,92.413745,93.319324,94.387441,95.084040,96.802317,97.406036,98.241954,99.542271,100.619025,101.431724,102.151542,103.219660,103.823379,104.566418,105.471996,106.354354,107.329592,108.444150,109.047869,110.859025,112.089683,113.320341,114.086599,114.574218,115.317257,116.571134 diff --git a/data/torah/labels/vayikra-4.txt b/data/torah/labels/vayikra-4.txt deleted file mode 100644 index 7aab68466..000000000 --- a/data/torah/labels/vayikra-4.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.548027,2.128526,2.941224,3.846803,4.427302,4.914921,5.750839,6.540317,7.399456,8.049615,8.676553,9.117732,9.791111,10.789569,11.788027,12.554286,13.622404,14.969161,15.735420,16.246259,16.849977,17.848435,20.216871,21.006349,21.726168,22.585306,25.530206,27.271703,28.479141,29.779458,30.197417,31.288755,32.055014,32.774832,33.703630,35.143268,36.141726,37.116964,37.883222,38.904900,39.578279,40.437417,41.641771,42.036510,42.756329,43.615467,44.169662,44.982361,46.050478,46.256374,47.649571,48.833789,49.460728,50.877145,51.666624,52.316782,53.222361,54.104719,55.103177,55.307531,56.329209,57.281227,57.977825,58.253381,59.158959,59.901998,60.784356,62.154333,63.501091,64.337009,64.824628,65.614107,66.612565,67.355603,68.888120,69.863358,69.976374,70.742633,71.764311,72.344810,72.994968,74.202406,75.154424,75.920683,77.151340,78.291940,78.580272,79.829714,81.640871,82.685768,83.521687,84.427265,85.216744,86.122322,87.236880,88.188898,89.489215,90.066630,90.902549,91.294204,91.918059,92.153342,93.381351,94.209274,94.859433,95.504965,96.619523,97.943061,98.361020,99.196938,99.495714,100.076213,101.213990,102.800219,103.791405,104.657816,105.633054,106.468972,108.837408,110.021625,111.257979,111.629498,113.022695,113.463874,114.160473,115.391131,116.528908,117.222423,119.381879,120.191493,121.700790,123.047548,123.999566,125.090904,126.066142,126.994940,128.039838,128.898976,129.734895,130.849453,131.403648,132.169906,133.238024,133.748863,134.399022,135.118840,135.556935,136.323194,137.855711,138.640564,139.778341,140.405280,141.171539,141.937797,142.866595,143.795394,144.236573,145.072491,145.676210,146.581788,147.046187,147.742786,148.300065,149.135983,150.598840,151.620518,152.224237,153.129815,153.942514,154.453353,155.637570,157.239747,157.727366,158.400745,159.422423,160.026142,161.001380,162.069498,162.464237,163.160836,163.648455,164.391493,165.343511,166.434849,167.410087,168.083466,168.780065,171.481069,172.413098,173.713416,174.061715,175.222713,175.733552,176.476590,177.498268,178.961125,179.657724,180.516862,181.538540,182.304799,183.001398,183.930196,185.157769,185.479765,186.431783,187.035502,187.705797,188.541715,189.307973,189.560309,190.674867,191.603665,192.462803,193.554141,194.181080,194.831239,195.597497,196.456636,197.478314,197.896273,198.778631,199.475230,200.287928,200.821987,201.518586,202.029425,202.888563,203.979901,205.442758,206.116137,206.998495,208.182713,208.809651,209.715230,210.713688,211.270967,211.805026,212.803484,214.127021,214.777180,217.006295,217.935094,218.979992,219.606930,220.117769,220.370105,221.066704,222.088382 diff --git a/data/torah/labels/vayikra-5.txt b/data/torah/labels/vayikra-5.txt deleted file mode 100644 index b638a5f1d..000000000 --- a/data/torah/labels/vayikra-5.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.950476,2.670295,3.227574,3.784853,4.852971,6.543271,7.007670,7.588169,9.167126,11.001502,12.301820,12.975199,13.834337,14.948895,15.808033,16.620731,17.804949,18.826627,19.314246,20.266264,22.634700,23.656378,24.515516,26.024813,27.348350,29.113067,30.227625,31.249303,31.992341,34.783702,35.190527,36.583725,37.605403,39.068260,39.788078,40.089938,40.879416,42.086854,43.108532,44.176650,45.357784,45.593067,47.006400,47.447579,48.306718,49.119416,49.792795,50.442954,51.650391,52.764949,53.182908,53.786627,54.227806,54.877965,55.574564,56.480142,56.749530,57.469348,57.953883,59.254201,61.181457,62.087035,62.899734,63.573112,64.316151,65.268169,66.057647,66.328577,66.656196,67.875255,69.477432,70.824190,71.497568,72.426367,73.099745,73.982103,74.420199,75.511537,76.417115,77.136933,77.787092,78.994530,79.667908,80.225187,81.061106,81.966684,84.288679,85.124598,85.449677,86.494575,87.051854,89.048770,90.140108,91.022466,92.044144,92.740743,93.901741,94.853759,95.759337,96.479156,98.203935,99.063073,99.504252,100.824706,102.121939,102.470239,103.329377,104.327835,105.279853,105.976452,106.487291,106.878946,108.086384,108.561705,108.933224,110.094222,110.601977,111.484336,112.180934,112.923973,113.829551,114.595810,115.663927,116.267646,116.778485,117.544744,118.009143,118.733162,119.727420,119.823415,120.865197,121.946782,122.829140,123.757939,124.408097,125.151136,125.778075,126.660433,127.589231,127.771907,128.770365,129.559843,130.302882,130.531998,131.437576,131.948415,132.714673,134.223970,135.157536,136.245790,136.988829,137.662207,138.544566,139.844883,140.564702,141.191640,142.097219,142.956357,143.792275,144.372774,145.046153,145.444354,145.641527,146.764430,147.205609,148.018307,148.270643,149.199441,150.592638,152.032275,153.468829,153.817128,154.235087,156.092684,156.388375,156.829554,158.524611,159.035450,159.592729,160.402343,160.629917,161.566176,162.727174,163.770530,165.186947,165.915589,166.580144,167.587425,167.955861,168.606019,169.347516,170.717493,171.619988,172.061167,172.734545,173.616904,174.429602,175.637040,176.751598,177.866155,178.702074,180.993552,182.038450,182.618949,183.408427,184.964164,185.927067,186.061760,187.060219,188.499856,190.006897,191.028575,191.887713,192.746851,193.489890,195.042543,196.458960,197.434198,197.640094,198.476012,199.358371,201.030207,201.819686,202.493065,203.030575,204.234561,206.626216,207.647894,209.108154,209.386794,210.826431,211.402304,211.683006,212.349696,213.169083,214.237201,215.035739,215.314378,216.057417,216.495512,217.749389,219.710923,220.570061,221.429200,222.195458,223.031377,223.518996,223.942550,224.964228,226.672991,227.912937,229.256211,229.421537,230.310165,232.277991,232.840545,233.791170,234.535137,235.506428,236.147067,236.581048,237.820993,239.120381,240.566984,242.199579,243.232867,243.873506,245.154783,246.332731,247.180028,248.171984,249.184606,249.949239,250.651875,251.788492,252.284470,253.111101,254.144389,254.640367,255.363668,256.107636,257.140924,257.698899,258.256875,258.794184,259.579483,260.641244,260.909899,261.529872,262.191176,263.038472,263.947766,265.249709,266.300029,268.015287,268.944085,269.675912,270.535050,271.928247,272.485526,273.623304,274.110923,276.089107,277.575184,278.527202,279.432780,280.524118,281.564390,281.697542,283.044299,283.505615,284.202213,285.339991,286.431329,287.708426,288.846204,289.682122,290.169741,291.052100,292.166658,293.011221,293.908154,295.045932,296.127771,296.933736,297.760366,300.306635,300.993382,301.468695,302.853301,303.659265,305.105868,306.676466,307.048450,308.391724,309.611004,310.768287,311.491588,312.111561,312.814197,313.888816,314.715447,315.418083,316.058721,317.835976,318.290623,319.344577,320.357199,321.018503,321.462178,322.651098,323.789365,324.488536,324.677993,325.418495,326.513780,327.639051,328.631007,330.139608,330.842243,331.378838,331.622405,332.593696,333.135584,334.168872,335.062079,335.992038,337.169986,338.409932,339.381223,340.228519,341.323804,343.535040,344.031018,344.733654,345.477622,346.262920,346.944891,347.668192,348.536154,349.011467,349.610774,350.272078,351.450026,351.909252,352.177906,353.112444,354.001072,354.972363,356.026316,356.790949,357.968898,359.270841,360.606890,362.094825,363.475966,364.658493 diff --git a/data/torah/labels/vayikra-6.txt b/data/torah/labels/vayikra-6.txt deleted file mode 100644 index 6a868e660..000000000 --- a/data/torah/labels/vayikra-6.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.530975,2.622313,4.433469,5.687347,6.616145,7.591383,8.450522,11.144036,12.374694,13.814331,15.230748,16.298866,16.716825,17.529524,18.690522,19.572880,20.687438,21.616236,22.730794,23.682812,24.565170,25.679728,26.701406,28.141043,29.302041,30.393379,31.624036,32.158095,33.133333,33.922812,35.014150,36.523447,36.848526,37.661224,38.172063,39.170522,40.238639,41.446077,41.840816,43.442993,44.627211,45.556009,47.042086,47.854785,48.922902,50.292880,52.359456,52.800635,53.450794,54.426032,55.401270,56.051429,56.353288,57.669374,58.927805,59.296240,60.062499,61.339596,62.105855,62.523814,63.290073,64.729710,65.983587,66.889166,68.684559,69.148958,69.775897,71.540613,72.748051,73.607189,74.675307,75.696985,76.509684,77.368822,78.320840,79.876577,80.828595,81.757393,82.662972,83.240996,84.657413,85.470112,86.236370,87.211608,88.256506,89.069205,90.276642,91.693060,92.111019,92.807618,93.434556,94.200815,95.338593,96.569250,97.544488,98.751926,100.934602,101.770520,102.346393,102.513559,103.948570,105.084806,106.245803,107.244262,108.265940,109.287618,111.330974,112.027572,112.631291,113.722629,114.651427,115.112742,115.437822,116.761359,117.666937,118.108116,118.758275,119.988933,120.685531,121.010611,121.448706,123.097323,124.374420,124.834193,125.275373,127.272289,128.199545,129.871382,131.009159,131.953445,132.557164,133.555622,134.368320,134.948819,136.365236,137.665554,138.902878,140.435395,141.039114,141.828592,142.339431,142.989590,143.520565,144.704783,145.909136,146.254352,147.856529,149.389046,150.155304,151.107322,152.245100,153.034579,153.824057,154.567096,155.077935,156.169272,156.703331,157.057018,157.707177,158.471894,159.841871,160.584158,161.884475,162.949509,164.946425,165.526924,166.293183,167.709600,169.149237,170.333455,171.494453,173.328829,174.276221,175.551777,176.689555,177.757672,179.429509,180.520847,181.403205,182.355223,183.701981,184.561119,185.397038,186.023976,187.205110,188.038404,188.874323,189.687021,190.964119,191.892917,193.007475,194.122032,195.004391,195.677769,196.420808,197.697905,198.417724,199.253642,199.810921,201.041579,201.852735,203.896091,204.523030,206.148427,207.262985,208.772282,210.961709,211.635087,213.399804,215.605700,216.789917,218.275994,219.924611,220.992729,221.921527,222.734226,223.203902,223.928952,224.847242,225.379052,226.635178,227.610416,227.958716,228.701754,229.491233,230.280711,231.836448,232.556267,233.229645,234.274543,235.969600,236.430915,237.522253,240.192548,240.587287,242.143024,242.816403,244.256040,245.277718,245.834997,246.601255,247.878353,248.551731,249.410870,250.084248,251.191097,252.186471,253.417128,254.322706,255.832004,256.691142,257.248421,258.104475,259.613772,260.2,261.562706,262.418761,262.672638,264.067378,264.827468,266.336765,267.265564,268.356901,268.960620,269.534951,269.830204,270.364263,271.455601,272.268299,273.011338,273.563991,274.748209,275.836463,276.533061,276.881361,277.647619,279.319456,279.783855,280.294694,281.153832,282.036190,283.847347,284.149206,285.542404,286.424762,287.074921,287.794739,289.141497,290.952653,291.718912,292.740590,293.039365,293.570340,294.684898,296.124535,296.983673,298.028571,298.421769,298.901927,300.109364,300.963877,301.799795,302.330770,303.723967,304.699206,305.326144,306.251859,307.292131,308.578558,310.041415,311.084771,311.429986,312.382004,313.611120 diff --git a/data/torah/labels/vayikra-7.txt b/data/torah/labels/vayikra-7.txt deleted file mode 100644 index e54b75415..000000000 --- a/data/torah/labels/vayikra-7.txt +++ /dev/null @@ -1 +0,0 @@ -0,1.477030,2.916667,3.868686,4.960023,5.958481,7.189139,9.077867,9.609598,9.957898,11.513635,12.252047,12.456401,13.942478,14.589553,16.261390,17.933226,19.535403,20.278442,21.276900,21.927059,22.577217,23.529236,25.084973,25.897671,26.571050,27.360528,28.242886,29.052501,29.841979,30.654678,33.187414,33.673272,35.437988,36.627866,37.649544,39.855439,40.621698,41.968455,42.363195,43.733172,44.870950,46.078387,46.844646,47.564464,48.446823,49.375621,50.165099,52.180756,52.916952,54.101170,54.542349,55.749787,56.632145,57.816363,59.047020,59.859719,60.649197,61.531555,62.576453,63.226612,64.666249,65.777723,66.451102,66.845841,67.178479,68.197192,69.091396,69.363053,70.459832,71.435070,72.758607,73.919605,75.127043,76.125501,77.843777,78.261736,79.018191,80.643588,81.917601,82.773656,83.025991,84.326309,86.205583,86.620459,87.479597,88.080232,89.009030,90.518327,91.327942,92.860459,93.648486,93.900821,95.215732,97.142988,97.630607,98.977364,99.929382,100.881401,101.746815,102.369362,103.488312,105.291759,106.475976,107.404775,108.356793,109.192711,109.677246,111.000784,111.462099,112.298017,113.062734,114.154072,116.058108,117.195886,117.565863,118.425001,119.516339,120.349174,121.022552,122.229990,122.551985,123.071879,123.975916,124.534737,125.765394,127.630478,128.415330,129.785308,130.014423,131.245081,132.217235,133.053153,133.211067,134.139865,135.923176,136.666215,137.920092,138.709571,140.616385,140.955956,142.608939,143.203406,143.409302,144.152340,144.660095,145.821093,146.989844,147.663222,148.287077,149.053336,150.167893,151.116828,151.859866,152.048612,152.444778,153.466456,154.324052,154.855027,156.085685,157.014483,157.454120,158.703372,159.794710,161.304007,163.091944,163.765322,164.647681,165.294755,166.177114,167.222012,168.266910,168.819563,169.002238,170.418656,170.939820,172.425897,173.978550,175.232427,175.789706,176.927484,177.433697,178.408935,179.080772,180.311430,181.772745,182.280500,182.723200,184.023517,184.693812,186.203109,188.826964,189.032859,189.631952,191.419889,192.368823,192.557667,194.178438,195.153676,196.337893,197.415308,197.681567,198.634647,199.725985,200.608343,201.630021,201.811155,203.134692,203.947391,204.829749,205.874647,206.664125,206.823581,207.888615,208.419590,209.719908,211.879364,213.644080,214.267935,215.077549,216.819046,218.606983,219.767980,220.511019,221.532697,223.065214,223.853150,224.617867,225.613241,226.263400,227.285078,228.306756,228.839273,230.162810,230.788207,231.388842,231.848615,232.893513,233.681450,235.048343,235.393559,236.670656,237.666030,238.741109,239.137275,240.359545,242.081699,243.428456,244.728774,245.817028,246.676166,247.697844,248.580202,249.207141,250.275259,251.134397,251.502833,252.498207,253.956438 diff --git a/data/torah/labels/yitro-1.txt b/data/torah/labels/yitro-1.txt deleted file mode 100644 index ab030e869..000000000 --- a/data/torah/labels/yitro-1.txt +++ /dev/null @@ -1 +0,0 @@ -2.001285,4.684912,5.563093,6.275171,7.560009,8.782927,10.005844,11.414521,11.630323,12.266922,13.076058,14.113216,15.645733,17.178250,18.308288,18.804452,20.320684,22.069921,22.620235,23.790510,25.305234,27.704629,29.082347,30.150465,31.342423,31.948127,33.447698,34.097857,35.398175,36.553487,38.070525,39.277962,40.144841,41.274878,42.528756,43.070555,44.200593,45.903389,46.847667,47.993185,49.045823,50.175861,51.104659,52.776496,53.643374,54.726972,56.058249,56.634451,57.422305,58.227263,59.543061,61.201192,62.050815,63.397573,65.951768,67.050846,67.963628,69.790801,70.812479,72.004436,72.4,73.273793,74.348679,75.704149,76.576860,78.016497,78.929815,79.796694,80.428773,82.583089,84.160692,84.305547,85.625522,87.467638,88.656103,89.755180,90.328461,91.597297,93.644649,94.511528,95.409366,96.616804,98.040961,99.805677,100.889275,102.700432,104.418709,105.282625,106.226903,107.620101,107.959656,109.043253,110.436451,111.770797,113.501485,115.192659,116.307217,118.629212,120.061833,120.271492,121.106007,121.563321,122.770758,124.318755,125.804832,126.764591,127.755309,129.287825,130.216623,130.453266,131.841061,132.652576,134.469493,135.800771,137.488087,139.036085,140.831761,142.147559,143.122797,143.405681,144.675039,145.390093,145.960729,147.137207,148.778083,149.688471,151.034096,151.855428,153.341505,157.381777,159.874053,161.298210,162.753327,163.805965,164.839929,166.805885,167.734683,169.065961,170.474638,171.836875,172.858553,173.678992,173.895711,174.963829,176.295107,176.742027,178.251568,179.638780,181.031977,181.456310,182.152909,183.406786,184.023257,185.431935,186.515533,187.955170,188.867907,189.733224,191.376243,194.100718,195.215275,196.082154,197.877831,198.806629,200.106946,201.608503,202.723061,204.627097,206.794293,208.032691,209.936727,211.004845,212.568322,213.106175,213.725374,215.103091,215.951959 diff --git a/data/torah/labels/yitro-2.txt b/data/torah/labels/yitro-2.txt deleted file mode 100644 index 7e4302be7..000000000 --- a/data/torah/labels/yitro-2.txt +++ /dev/null @@ -1 +0,0 @@ -1.924933,3.195272,5.125914,6.224991,7.246669,8.206428,8.566717,9.862785,11.163102,12.014500,12.313461,13.371411,13.971886,14.971703,15.349815,16.634441,18.166958,19.188636,20.488953,22.005991,22.552291,23.032170,23.400924,24.371029,25.570885,27.923824,28.369881,29.345119,30.490637,31.342035,31.976714,32.941565,34.026412,36.193607,37.299400,38.151171,39.606289,40.419607,42.075964,43.128602,44.274120,44.901890,45.552049,45.815209,46.976206,48.257006,49.360121,51.202238,51.725379,52.499377,54.031895,55.007133,55.812091,57.329128,58.023829,58.735908,59.432507,60.624465,61.537783,62.574941,65.105475,65.754928,66.483192,67.302925,68.479403,71.033597,71.540983,72.206621,73.429539,74.087012,75.767015,77.980650,78.723689,79.621527,80.767045,81.493907,82.097625,83.413423,84.311261,85.025521,86.292617,88.661052,89.899449,90.502415,92.688748,93.335055,93.923293,94.759212,95.672530,96.818048,97.386063,98.020742,99.042420,100.265338,100.843757,101.555836,102.484634,103.815911,106.308187,107.283425,108.552782,110.824973,111.775982,112.745325,113.844403,115.779399,116.677237,118.441953,119.417191,120.949709,122.294367,123.906383,124.456097,125.624659,125.941810,127.458077,129.279889,130.559958,131.021495,132.247275,132.828029,134.275151,135.680107,137.445577,137.865701,139.147619,140.536852,141.604970,142.170066,143.460993,144.130419,145.601016,147.365733,148.526731,149.142978,152.020071,152.979765,154.684807,156.314762,158.048519,158.992797,159.921595,161.272472,162.417990,163.950507,165.436584,166.499083,167.843481,168.905979,169.974097,170.763575,171.924573,172.858237,174.561650,176.677549,176.971636,179.275135,180.027085,181.720970,184.098472,184.561857,185.475176,186.667133,187.978893,189.236809,189.852415,190.549014,191.818371,192.855205,193.845923,195.208161,196.384639,197.855236,199.279393,200.564231,200.931631,201.767549,202.649908,203.965705,205.769248,206.721140,208.300097,209.445615,210.885251,211.207948,212.025281,213.222727,213.744206,215.405403,216.410353 diff --git a/data/torah/labels/yitro-3.txt b/data/torah/labels/yitro-3.txt deleted file mode 100644 index 31e458b25..000000000 --- a/data/torah/labels/yitro-3.txt +++ /dev/null @@ -1 +0,0 @@ -1.919859,3.070771,4.185329,5.145087,6.476365,9.076999,9.939193,10.502405,11.601483,12.639695,13.379456,14.040370,14.838561,15.515454,16.939611,18.208780,19.896285,21.088243,21.420995,22.597563,23.478801,24.748159,25.692437,26.745075,27.503593,28.664591,29.328275,30.704080,32.148301,32.447112,33.332871,33.873933,34.702047,35.349311,36.184691,37.376648,38.785325,39.064315,40.132083,40.854899,41.632879,42.793876,44.238931,45.208751,46.601949,47.561707,47.824866,49.140664,50.210700,51.253513,51.645703 diff --git a/data/torah/labels/yitro-4.txt b/data/torah/labels/yitro-4.txt deleted file mode 100644 index c2fa90492..000000000 --- a/data/torah/labels/yitro-4.txt +++ /dev/null @@ -1 +0,0 @@ -2.159291,3.386221,4.980659,5.801097,6.266177,7.535535,8.448853,9.842050,11.095928,12.133086,13.077364,13.712043,14.842081,16.421037,18.572753,20.028022,21.003260,22.055898,23.415949,24.672013,25.8,26.134532,27.465809,28.239808,29.416286,30.376044,31.165523,31.449831,32.945719,33.886039,34.617556,35.778553,36.355937,37.269255,38.445733,39.235211,40.194969,41.092807,42.331205,43.724402,44.529361,46.015438,47.424115,48.708953,49.499160,50.505358,51.805675,53.046041,54.011953,54.311947,55.293778,56.547655,57.677693,58.281412,59.937769,62.508997,62.987671,63.622351,64.613069,65.851466,67.337543,67.683069,69.055820,70.247777,70.789577,71.997014,72.776221,74.479018,75.008897,75.581655,75.829335,76.974853,79.203968,79.798177,81.123485,82.224496,83.569320,84.637438,85.937755,87.036833,88.244271,89.328729,90.782986,91.201214,91.939659 diff --git a/data/torah/labels/yitro-5.txt b/data/torah/labels/yitro-5.txt deleted file mode 100644 index d20dfef04..000000000 --- a/data/torah/labels/yitro-5.txt +++ /dev/null @@ -1 +0,0 @@ -2.504311,3.816331,5.025234,6.194522,7.231680,8.346237,9.646555,11.442231,12.293630,12.503059,13.787897,14.948894,15.935390,16.837451,18.478327,19.747685,20.028827,20.740905,21.963823,24.316778,26.236295,26.966754,27.392630,28.739388,30.179025,32.083061,33.708458,34.281217,34.900416,35.581535,35.791293,37.100302,38.429641,40.101477,40.323451,41.886928,42.859851,44.640047,45.457044,48.213172,49.110317,51.509713,53.754308,54.862654,55.915292,57.385889,58.484967,59.167130,60.219768,61.427205,62.897803,63.965921,65.761597,66.220951,66.802013,67.591492,67.824043,69.249335,71.305847,72.126285,72.327525,73.333723,74.464089,74.814825,75.934687,77.229700,78.081098,79.350455,80.697213,82.322610,83.437167,84.675565,85.821083,87.477439,89.304076,90.434114,92.477470,94.381083,96.264281,97.409798,97.719398,98.710116,99.220101,99.749203,101.244884,102.669313,102.876935,103.938399,104.929117,106.136555,107.605370,109.139669,110.114907,111.059185,112.080863,113.474061,114.010893,114.908731,115.853010,116.499649,117.741566,119.440101,120.400942,121.793057,123.356534,123.759738,124.617018,125.984998,126.495666,127.570615,129.000531,129.457033,130.231031,130.547653,131.307819,131.901492,133.077970,134.238967,135.554765,136.622883,137.412361,138.604319,140.637436,142.257592,142.951422,143.882989,144.210551,145.347655,146.678933,147.004012,148.087609,149.651087,151.183603,152.468441,152.783351,153.830679,154.598373,155.787179,156.748270,157.870951,158.432691,159.304753,159.598872,160.930149,162.710346,163.360505,165.094261,166.410059,168.267655,170.140731,170.852810,172.741366,173.840444,174.707322,174.955421,176.081097,177.071815,178.155413,179.269971,180.430969,181.700326,181.974401,182.945538,183.863597,185.519953,187.609749,188.941027,189.235146,190.845063,191.773861,192.965819,193.517540,194.993695,197.253771,198.108548,199.254066,200.262295,201.469733,202.801010,203.884608,207.079976,207.893921,208.776279,210.479075,211.763913,213.311910,214.395507,215.649385,216.578183,218.048781,219.587556,220.140099,221.051895,222.089053,223.714449,224.596808,225.788765,227.073603,228.281041,229.488478,231.020995,232.398713,234.364669,235.943625 diff --git a/data/torah/labels/yitro-6.txt b/data/torah/labels/yitro-6.txt deleted file mode 100644 index fdb283704..000000000 --- a/data/torah/labels/yitro-6.txt +++ /dev/null @@ -1 +0,0 @@ -2.506835,4.273125,6.270041,6.765541,7.260900,8.329018,8.620441,9.143409,10.524726,11.707402,13.069639,14.973675,16.268845,17.095576,18.008895,18.725637,19.886635,21.043017,21.865168,22.132336,23.232274,24.095852,24.947251,26.247568,26.722009,27.526967,27.745713,28.723591,29.776229,30.797907,31.726705,32.810303,34.544293,36.510016,37.699255,37.869686,38.975308,40.865382,41.180361,41.876960,42.666439,43.904836,45.065834,45.870792,46.021162,47.433743,47.749229,48.763148,49.784826,50.976783,51.425703,51.998461,53.283299,53.732094,55.607455,56.830109,57.429817,58.595125,59.513161,59.841999,60.617517,62.611177,64.410109,65.069693,66.283186,66.891554,67.911909,68.974899,70.056265,71.170823,72.362781,74.112017,76.016054,76.516060,78.512976,79.488214,79.843991,80.834709,80.940628,81.688131,82.939624,84.045599,85.020837,85.357431,86.383075,87.412354,88.859870,90.593626,91.801064,93.302621,93.839671,94.644629,95.511508,96.811825,98.483662,99.582740,100.852097,102.028575,104.288651,105.217449,106.951205,108.001367,110.140079,111.177237,111.635041,113.183038,114.297596,116.015873,116.542226,118.399788,119.319071,120.225738,120.894477,121.962595,122.715519,126.111227,127.334144,128.557062,132.488974,134.393011,135.105089,136.916245,138.117185,140.160541,141.476339,143.442295,144.207241,145.708798,148.061753,149.006032,151.374467,153.309132,155.361212,156.357919,157.658237,158.819235,160.026672,163.401305,164.500383,165.909061,166.525437,168.339416,168.769012,169.852610,170.338271,171.530229,173.511665,174.765542,175.508581,177.072057,178.852254,180.148178,181.886328,183.093766,184.982322,185.379887,185.650709,186.306805,187.700002,189.418279,190.041932,190.707011,191.817674,193.056072,194.696949,195.442651,196.061851,196.355970,197.083529,198.677965,201.535296,201.782975,202.355735,204.120451,206.550806,207.510565,208.439363,210.947117,212.319221,212.555125,215.306805,216.436842,218.402798,220.446155,221.897489,224.324854,225.702571,226.940969,227.445495,231.055933,232.387210,233.548207,237.186001,238.563718,240.607074,243.470868,245.080785,246.443023,248.099379,249.415177,249.977824,251.788980,252.857098,254.838534,255.287453,256.603251,256.974770,258.940726,259.610854,260.730687,261.154362,261.353132,261.882395,262.857634,264.111511,265.102229,266.464467,267.212057,268.806494,270.617651,272.691967,273.233765,273.760085,274.859163,277.459797,279.301914,279.549593,280.757031,281.205950,282.537227,283.837545,285.277182,286.546539,287.506297,289.797333,290.389211,291.326029,292.579907,293.424698,294.483943,295.505621,296.914299,298.059816,299.267254,300.614011,302.007209,302.596631,303.341189,304.500667,304.972621,306.316990,306.908171,308.056426,308.609445,310.095522,310.625789,312.709133,313.646407,315.658803,316.897201,318.383278,319.776475,321.216113,322.872469,323.659025 diff --git a/data/torah/labels/yitro-7.txt b/data/torah/labels/yitro-7.txt deleted file mode 100644 index 10562a437..000000000 --- a/data/torah/labels/yitro-7.txt +++ /dev/null @@ -1 +0,0 @@ -2.170442,2.808153,4.557389,5.131387,5.343474,7.162231,7.781153,10.072189,11.310587,12.069105,13.400383,14.050541,14.901939,16.124857,17.254895,18.075333,19.391131,20.768848,22.223965,23.880322,24.089702,25.211599,25.939271,26.552107,27.768533,29.626130,30.292389,31.375987,33.140703,34.533901,35.209085,36.577257,38.136979,39.078395,39.372515,41.648071,42.188653,44.295145,46.261101,47.963898,49.078456,50.900548,51.922590,53.434587,55.911383,57.861859,59.781375,60.272467,61.387025,62.517063,64.157939,65.674976,66.665695,68.229171,69.715249,70.845286,71.200411,72.632683,73.324157,73.869393,75.921398,77.444563,78.376243,78.670363,79.800401,80.515683,81.391573,81.735869,82.498187,83.953305,85.331022,86.693259,87.591097,87.834039,89.077175,90.342135,91.910503,92.524193,93.669711,94.768789,95.937069,96.827625,98.367425,99.512942,100.104748,101.060514,102.525132,103.867215,106.364165,107.449836,109.214553,110.778029,112.465346,112.948366,114.230063,114.760740,116.131133,116.641973,117.815334,118.208952,119.756949,120.511860,121.883535,122.605692,123.782170,124.098047,125.330167,125.980325,127.017677,129.277559,130.222673,131.074071,132.173149,132.892744,133.663967,134.143675,134.793834,135.676193,136.852670,138.493547,140.490463,141.588283,142.566340,144.547776,145.241857,146.139695,147.455492,147.853211,149.463128,152.172123,152.621299,153.457218,155.547013 diff --git a/data/torah/labels/yitro-h.txt b/data/torah/labels/yitro-h.txt deleted file mode 100644 index db178b367..000000000 --- a/data/torah/labels/yitro-h.txt +++ /dev/null @@ -1 +0,0 @@ -2.626452,3.443667,4.542377,6.167773,7.653851,9.837177,10.129977,12.255005,13.462442,13.820643,14.950681,15.693719,17.829955,19.269593,20.237693,20.531813,22.327489,23.798086,25.005524,26.352281,27.482319,29.123196,31.104632,31.940550,33.256347,35.609303,38.101578,39.556695,42.064451,44.804405,46.120203,47.219280,48.519598,50.485554,52.175060,52.712587,53.135441,53.848823,55.194277,57.535932,59.796008,61.080845,62.396643,64.223279,65.291397,65.538938,66.560755,68.650551,70.987679,72.349917,73.743114,74.966031,76.947468,78.247785,79.238503,80.538821,83.650295,84.295466,85.105412,85.388098,87.910284,88.823602,89.520201,90.265170,91.362247,92.786405,94.055762,94.760623,96.060940,97.516057,98.971174,101.107410,102.841167,103.371210,105.355252,106.540879,107.438718,108.335005,110.300961,111.980379,114.480553,115.718950,116.068728,117.616725,119.365961,121.672477,124.401160,125.453798,126.181357,127.837713,130.066829,130.409245,131.449337,134.772740,136.908976,138.224773,138.983292,139.587696,142.049011,143.984007,145.547484,147.436041,149.107877,152.153078,152.762493,153.288443,154.433961,155.827158,156.437778,157.055559,158.201076,159.315634,160.151553,162.127695,163.521049,164.682046,166.725402,170.332235,171.291993,172.685191,173.644949,175.703785,176.833823,177.932901,178.496497,179.843255,180.948825,181.877623,182.465861,183.982899,185.608295,186.291559,187.653796,188.876713,190.075515,191.214189,192.508320,194.706475,195.091635,195.888436,198.102072,199.719103,202.381023,203.960615,205.988491,207.412648,208.668871,210.495508,214.267795,214.910205,216.083777,218.312893,222.007307,222.670731,225.317806,226.412404,227.249216,229.215173,230.360690,233.133674,234.586722,236.212119,237.682716,239.555792,241.010909,242.791106,244.292663,245.608461,246.152311,248.518695,249.865452,251.305089,252.373207,254.106964,255.186392,256.011000,258.992758,260.602675,261.801361,264.278156,265.903553,268.922147,270.240503,271.507302,273.605509,274.584881,276.109597,276.920205,279.242201,284.412511,285.603649,288.947323,289.597481,290.619159,290.819477,293.093769,293.976128,296.886362,298.372439,299.564397,300.175939,303.480829,304.827587,305.195127,306.402565,306.897924,308.306601,311.284826,313.229231,315.613147,316.665785,317.795823,318.972301,320.427417,323.925891,325.117849,326.062127,327.377924,328.497589,329.581187,329.917514,331.929911,333.400507,334.840145,336.403621,337.781339,338.875401,339.577090,340.500797,341.461103,342.931700,345.160816,347.916251,348.426674,351.136101,351.706491,352.668186,354.322605,355.622923,358.718288,360.174034,361.334172,363.485888,364.159535,366.574410,367.967607,370.026443,371.528000,372.126663,373.194781,374.092619,375.315537,378.922369,382.126723,383.531923,385.779996,386.297015,389.036969,391.018405,391.516589,392.956227,394.380384,396.207020,398.730255,400.727171,402.944070,404.148769,405.603886,406.780364,407.894922,408.647098,410.825675,414.587307,415.540493,416.438331,418.435247,419.425965,421.763441,422.926139,423.271633,424.463591,425.934188,427.466705,428.627703,430.810379,432.575095,434.541051,435.657338,436.522487,437.963853,438.753332,439.480891,441.462327,442.337645,443.235483,443.933131,446.301567,447.462565,448.139769,449.099527,450.260524,451.498922,451.971427,454.014783,455.222221,457.203657,460.253211,461.661888,463.086045,464.216083,465.764080,466.507821,468.238280,470.130549,472.496632,473.899509,474.317469,476.469185,477.202652,478.044867,479.013809,479.7,481.410217,482.803945,483.498797,485.326650,486.750807,489.351442,490.945879,491.402644,492.641042,494.769707,496.008105,497.060743,498.291709 diff --git a/data/torah/translation/Ecclesiastes.json b/data/torah/translation/Ecclesiastes.json new file mode 100644 index 000000000..a699ad7f3 --- /dev/null +++ b/data/torah/translation/Ecclesiastes.json @@ -0,0 +1,253 @@ +{ + "text": [ + [ + "THE WORDs OF the Koheleth, the son of David, king in Jerusalem.", + "Vanity of vanities, saith Koheleth; Vanity of vanities, all is vanity.", + "What profit hath man of all his labour Wherein he laboureth under the sun?", + "One generation passeth away, and another generation cometh; And the earth abideth for ever.", + "The sun also ariseth, And the sun goeth down, And hasteth to his place where he ariseth.", + "The wind goeth toward the south, And turneth about unto the north; It turneth about continually in its circuit, And the wind returneth again to its circuits.", + "All the rivers run into the sea, Yet the sea is not full; Unto the place whither the rivers go, Thither they go again.", + "All things toil to weariness; Man cannot utter it, The eye is not satisfied with seeing, Nor the ear filled with hearing.", + "That which hath been is that which shall be, And that which hath been done is that which shall be done; And there is nothing new under the sun.", + "Is there a thing whereof it is said: \u2018See, this is new\u2019?\u2014it hath been already, in the ages which were before us.", + "There is no remembrance of them of former times; neither shall there be any remembrance of them of latter times that are to come, among those that shall come after.", + "I Koheleth have been king over Israel in Jerusalem.", + "And I applied my heart to seek and to search out by wisdom concerning all things that are done under heaven; it is a sore task that God hath given to the sons of men to be exercised therewith.", + "I have seen all the works that are done under the sun; and, behold, all is vanity and a striving after wind.", + "That which is crooked cannot be made straight; And that which is wanting cannot be numbered.", + "I spoke with my own heart, saying: \u2018Lo, I have gotten great wisdom, more also than all that were before me over Jerusalem\u2019; yea, my heart hath had great experience of wisdom and knowledge.", + "And I applied my heart to know wisdom, and to know madness and folly\u2014I perceived that this also was a striving after wind.", + "For in much wisdom is much vexation; And he that increaseth knowledge increaseth sorrow." + ], + [ + "I said in my heart: \u2018Come now, I will try thee with mirth, and enjoy pleasure\u2019; and, behold, this also was vanity.", + "I said of laughter: \u2018It is mad\u2019; and of mirth: \u2018What doth it accomplish?\u2019", + "I searched in my heart how to pamper my flesh with wine, and, my heart conducting itself with wisdom, how yet to lay hold on folly, till I might see which it was best for the sons of men that they should do under the heaven the few days of their life.", + "I made me great works; I builded me houses; I planted me vineyards;", + "I made me gardens and parks, and I planted trees in them of all kinds of fruit;", + "I made me pools of water, to water therefrom the wood springing up with trees;", + "I acquired men-servants and maid-servants, and had servants born in my house; also I had great possessions of herds and flocks, above all that were before me in Jerusalem;", + "I gathered me also silver and gold, and treasure such as kings and the provinces have as their own; I got me men-singers and women-singers, and the delights of the sons of men, women very many.", + "So I was great, and increased more than all that were before me in Jerusalem; also my wisdom stood me in stead.", + "And whatsoever mine eyes desired I kept not from them; I withheld not my heart from any joy, for my heart had joy of all my labour; and this was my portion from all my labour.", + "Then I looked on all the works that my hands had wrought, and on the labour that I had laboured to do; and, behold, all was vanity and a striving after wind, and there was no profit under the sun.", + "And I turned myself to behold wisdom, and madness and folly; for what can the man do that cometh after the king? even that which hath been already done.", + "Then I saw that wisdom excelleth folly, as far as light excelleth darkness.", + "The wise man, his eyes are in his head; But the fool walketh in darkness. And I also perceived that one event happeneth to them all.", + "Then said I in my heart: \u2018As it happeneth to the fool, so will it happen even to me; and why was I then more wise?\u2019 Then I said in my heart, that this also is vanity.", + "For of the wise man, even as of the fool, there is no remembrance for ever; seeing that in the days to come all will long ago have been forgotten. And how must the wise man die even as the fool!", + "So I hated life; because the work that is wrought under the sun was grievous unto me; for all is vanity and a striving after wind.", + "And I hated all my labour wherein I laboured under the sun, seeing that I must leave it unto the man that shall be after me.", + "And who knoweth whether he will be a wise man or a fool? yet will he have rule over all my labour wherein I have laboured, and wherein I have shown myself wise under the sun. This also is vanity.", + "Therefore I turned about to cause my heart to despair concerning all the labour wherein I had laboured under the sun.", + "For there is a man whose labour is with wisdom, and with knowledge, and with skill; yet to a man that hath not laboured therein shall he leave it for his portion. This also is vanity and a great evil.", + "For what hath a man of all his labour, and of the striving of his heart, wherein he laboureth under the sun?", + "For all his days are pains, and his occupation vexation; yea, even in the night his heart taketh not rest. This also is vanity.", + "There is nothing better for a man than that he should eat and drink, and make his soul enjoy pleasure for his labour. This also I saw, that it is from the hand of God.", + "For who will eat, or who will enjoy, if not I?", + "For to the man that is good in His sight He giveth wisdom, and knowledge, and joy; but to the sinner He giveth the task, to gather and to heap up, that he may leave to him that is good in the sight of God. This also is vanity and a striving after wind." + ], + [ + "To every thing there is a season, and a time to every purpose under the heaven:", + "A time to be born, and a time to die; A time to plant, and a time to pluck up that which is planted;", + "A time to kill, and a time to heal; A time to break down, and a time to build up;", + "A time to weep, and a time to laugh; A time to mourn, and a time to dance;", + "A time to cast away stones, and a time to gather stones together; A time to embrace, and a time to refrain from embracing;", + "A time to seek, and a time to lose; A time to keep, and a time to cast away;", + "A time to rend, and a time to sew; A time to keep silence, and a time to speak;", + "A time to love, and a time to hate; A time for war, and a time for peace.", + "What profit hath he that worketh in that he laboureth?", + "I have seen the task which God hath given to the sons of men to be exercised therewith.", + "He hath made every thing beautiful in its time; also He hath set the world in their heart, yet so that man cannot find out the work that God hath done from the beginning even to the end.", + "I know that there is nothing better for them, than to rejoice, and to get pleasure so long as they live.", + "But also that every man should eat and drink, and enjoy pleasure for all his labour, is the gift of God.", + "I know that, whatsoever God doeth, it shall be for ever; nothing can be added to it, nor any thing taken from it; and God hath so made it, that men should fear before Him.", + "That which is hath been long ago, and that which is to be hath already been; and God seeketh that which is pursued.", + "And moreover I saw under the sun, in the place of justice, that wickedness was there; and in the place of righteousness, that wickedness was there.", + "I said in my heart: \u2018The righteous and the wicked God will judge; for there is a time there for every purpose and for every work.\u2019", + "I said in my heart: \u2018It is because of the sons of men, that God may sift them, and that they may see that they themselves are but as beasts.\u2019", + "For that which befalleth the sons of men befalleth beasts; even one thing befalleth them; as the one dieth, so dieth the other; yea, they have all one breath; so that man hath no pre-eminence above a beast; for all is vanity.", + "All go unto one place; all are of the dust, and all return to dust.", + "Who knoweth the spirit of man whether it goeth upward, and the spirit of the beast whether it goeth downward to the earth?", + "Wherefore I perceived that there is nothing better, than that a man should rejoice in his works; for that is his portion; for who shall bring him to see what shall be after him?" + ], + [ + "But I returned and considered all the oppressions that are done under the sun; and behold the tears of such as were oppressed, and they had no comforter; and on the side of their oppressors there was power, but they had no comforter.", + "Wherefore I praised the dead that are already dead more than the living that are yet alive;", + "but better than they both is he that hath not yet been, who hath not seen the evil work that is done under the sun.", + "Again, I considered all labour and all excelling in work, that it is a man\u2019s rivalry with his neighbour. This also is vanity and a striving after wind.", + "The fool foldeth his hands together, And eateth his own flesh.", + "Better is a handful of quietness, Than both the hands full of labour and striving after wind.", + "Then I returned and saw vanity under the sun.", + "There is one that is alone, and he hath not a second; yea, he hath neither son nor brother; yet is there no end of all his labour, neither is his eye satisfied with riches: \u2018for whom then do I labour, and bereave my soul of pleasure?\u2019 This also is vanity, yea, it is a grievous business.", + "Two are better than one; because they have a good reward for their labour.", + "For if they fall, the one will lift up his fellow; but woe to him that is alone when he falleth, and hath not another to lift him up.", + "Again, if two lie together, then they have warmth; but how can one be warm alone?", + "And if a man prevail against him that is alone, two shall withstand him; and a threefold cord is not quickly broken.", + "Better is a poor and wise child than an old and foolish king, who knoweth not how to receive admonition any more.", + "For out of prison he came forth to be king; although in his kingdom he was born poor.", + "I saw all the living that walk under the sun, that they were with the child, the second, that was to stand up in his stead.", + "There was no end of all the people, even of all them whom he did lead; yet they that come after shall not rejoice in him. Surely this also is vanity and a striving after wind.", + "Guard thy foot when thou goest to the house of God, and be ready to hearken: it is better than when fools give sacrifices; for they know not that they do evil." + ], + [ + "Be not rash with thy mouth, and let not thy heart be hasty to utter a word before God; for God is in heaven, and thou upon earth; therefore let thy words be few.", + "For a dream cometh through a multitude of business; And a fool\u2019s voice through a multitude of words.", + "When thou vowest a vow unto God, defer not to pay it; for He hath no pleasure in fools; pay that which thou vowest.", + "Better is it that thou shouldest not vow, than that thou shouldest vow and not pay.", + "Suffer not thy mouth to bring thy flesh into guilt, neither say thou before the messenger, that it was an error; wherefore should God be angry at thy voice, and destroy the work of thy hands?", + "For through the multitude of dreams and vanities there are also many words; but fear thou God.", + "If thou seest the oppression of the poor, and the violent perverting of justice and righteousness in the state, marvel not at the matter; for one higher than the high watcheth, and there are higher than they.", + "But the profit of a land every way is a king that maketh himself servant to the field.", + "He that loveth silver shall not be satisfied with silver; nor he that loveth abundance, with increase; this also is vanity.", + "When goods increase, they are increased that eat them; and what advantage is there to the owner thereof, saving the beholding of them with his eyes?", + "Sweet is the sleep of a labouring man, whether he eat little or much; but the satiety of the rich will not suffer him to sleep.", + "There is a grievous evil which I have seen under the sun, namely, riches kept by the owner thereof to his hurt;", + "and those riches perish by evil adventure; and if he hath begotten a son, there is nothing in his hand.", + "As he came forth of his mother\u2019s womb, naked shall he go back as he came, and shall take nothing for his labour, which he may carry away in his hand.", + "And this also is a grievous evil, that in all points as he came, so shall he go; and what profit hath he that he laboureth for the wind?", + "All his days also he eateth in darkness, and he hath much vexation and sickness and wrath. .", + "Behold that which I have seen: it is good, yea, it is comely for one to eat and to drink, and to enjoy pleasure for all his labour, wherein he laboureth under the sun, all the days of his life which God hath given him; for this is his portion.", + "Every man also to whom God hath given riches and wealth, and hath given him power to eat thereof, and to take his portion, and to rejoice in his labour\u2014this is the gift of God.", + "For let him remember the days of his life that they are not many; for God answereth him in the joy of his heart." + ], + [ + "There is an evil which I have seen under the sun, and it is heavy upon men:", + "a man to whom God giveth riches, wealth, and honour, so that he wanteth nothing for his soul of all that he desireth, yet God giveth him not power to eat thereof, but a stranger eateth it; this is vanity, and it is an evil disease.", + "If a man beget a hundred children, and live many years, so that the days of his years are many, but his soul have not enough of good, and moreover he have no burial; I say, that an untimely birth is better than he;", + "for it cometh in vanity, and departeth in darkness, and the name thereof is covered with darkness;", + "moreover it hath not seen the sun nor known it; this hath gratification rather than the other;", + "yea, though he live a thousand years twice told, and enjoy no good; do not all go to one place?", + "All the labour of man is for his mouth, And yet the appetite is not filled.", + "For what advantage hath the wise more than the fool? or the poor man that hath understanding, in walking before the living?", + "Better is the seeing of the eyes than the wandering of the desire; this also is vanity and a striving after wind.", + "Whatsoever cometh into being, the name thereof was given long ago, and it is foreknown what man is; neither can he contend with Him that is mightier than he.", + "Seeing there are many words that increase vanity, what is man the better?", + "For who knoweth what is good for man in his life, all the days of his vain life which he spendeth as a shadow? for who can tell a man what shall be after him under the sun?" + ], + [ + "A good name is better than precious oil; And the day of death than the day of one\u2019s birth.", + "It is better to go to the house of mourning, Than to go to the house of feasting; For that is the end of all men, And the living will lay it to his heart.", + "Vexation is better than laughter; For by the sadness of the countenance the heart may be gladdened.", + "The heart of the wise is in the house of mourning; But the heart of fools is in the house of mirth.", + "It is better to hear the rebuke of the wise, Than for a man to hear the song of fools.", + "For as the crackling of thorns under a pot, so is the laughter of the fool; this also is vanity.", + "Surely oppression turneth a wise man into a fool; And a gift destroyeth the understanding.", + "Better is the end of a thing than the beginning thereof; And the patient in spirit is better than the proud in spirit.", + "Be not hasty in thy spirit to be angry; For anger resteth in the bosom of fools.", + "Say not thou: \u2018How was it that the former days were better than these?\u2019 for it is not out of wisdom that thou inquirest concerning this.", + "Wisdom is good with an inheritance, Yea, a profit to them that see the sun.", + "For wisdom is a defence, even as money is a defence; but the excellency of knowledge is, that wisdom preserveth the life of him that hath it.", + "Consider the work of God; for who can make that straight, which He hath made crooked?", + "In the day of prosperity be joyful, and in the day of adversity consider; God hath made even the one as well as the other, to the end that man should find nothing after him.", + "All things have I seen in the days of my vanity; there is a righteous man that perisheth in his righteousness, and there is a wicked man that prolongeth his life in his evil-doing.", + "Be not righteous overmuch; neither make thyself overwise; why shouldest thou destroy thyself?", + "Be not overmuch wicked, neither be thou foolish; why shouldest thou die before thy time?", + "It is good that thou shouldest take hold of the one; yea, also from the other withdraw not thy hand; for he that feareth God shall discharge himself of them all.", + "Wisdom is a stronghold to the wise man more than ten rulers that are in a city.", + "For there is not a righteous man upon earth, that doeth good, and sinneth not.", + "Also take not heed unto all words that are spoken, lest thou hear thy servant curse thee;", + "for oftentimes also thine own heart knoweth that thou thyself likewise hast cursed others.", + "All this have I tried by wisdom; I said: \u2018I will get wisdom\u2019; but it was far from me.", + "That which is is far off, and exceeding deep; who can find it out?", + "I turned about, and applied my heart to know and to search out, and to seek wisdom and the reason of things, and to know wickedness to be folly, and foolishness to be madness;", + "and I find more bitter than death the woman, whose heart is snares and nets, and her hands as bands; whoso pleaseth God shall escape from her; but the sinner shall be taken by her.", + "Behold, this have I found, saith Koheleth, adding one thing to another, to find out the account;", + "which yet my soul sought, but I found not; one man among a thousand have I found; but a woman among all those have I not found.", + "Behold, this only have I found, that God made man upright; but they have sought out many inventions." + ], + [ + "Who is as the wise man? and who knoweth the interpretation of a thing? A man\u2019s wisdom maketh his face to shine, And the boldness of his face is changed.", + "I [counsel thee]: keep the king\u2019s command, and that in regard of the oath of God.", + "Be not hasty to go out of his presence; stand not in an evil thing; for he doeth whatsoever pleaseth him.", + "Forasmuch as the king\u2019s word hath power; and who may say unto him: \u2018What doest thou?\u2019", + "Whoso keepeth the commandment shall know no evil thing; And a wise man\u2019s heart discerneth time and judgment.", + "For to every matter there is a time and judgment; for the evil of man is great upon him.", + "For he knoweth not that which shall be; for even when it cometh to pass, who shall declare it unto him?", + "There is no man that hath power over the wind to retain the wind; neither hath he power over the day of death; and there is no discharge in war; neither shall wickedness deliver him that is given to it.", + "All this have I seen, even applied my heart thereto, whatever the work that is done under the sun; what time one man had power over another to his hurt.", + "And so I saw the wicked buried, and they entered into their rest; but they that had done right went away from the holy place, and were forgotten in the city; this also is vanity.", + "Because sentence against an evil work is not executed speedily, therefore the heart of the sons of men is fully set in them to do evil;", + "because a sinner doeth evil a hundred times, and prolongeth his days\u2014though yet I know that it shall be well with them that fear God, that fear before Him;", + "but it shall not be well with the wicked, neither shall he prolong his days, which are as a shadow, because he feareth not before God.", + "There is a vanity which is done upon the earth: that there are righteous men, unto whom it happeneth according to the work of the wicked; again, there are wicked men, to whom it happeneth according to the work of the righteous\u2014I said that this also is vanity.", + "So I commended mirth, that a man hath no better thing under the sun, than to eat, and to drink, and to be merry, and that this should accompany him in his labour all the days of his life which God hath given him under the sun.", + "When I applied my heart to know wisdom, and to see the business that is done upon the earth\u2014for neither day nor night do men see sleep with their eyes\u2014", + "then I beheld all the work of God, that man cannot find out the work that is done under the sun; because though a man labour to seek it out, yet he shall not find it; yea further, though a wise man think to know it, yet shall he not be able to find it." + ], + [ + "For all this I laid to my heart, even to make clear all this: that the righteous, and the wise, and their works, are in the hand of God; whether it be love or hatred, man knoweth it not; all is before them.", + "All things come alike to all; there is one event to the righteous and to the wicked; to the good and to the clean and to the unclean; to him that sacrificeth and to him that sacrificeth not; as is the good, so is the sinner, and he that sweareth, as he that feareth an oath.", + "This is an evil in all that is done under the sun, that there is one event unto all; yea also, the heart of the sons of men is full of evil, and madness is in their heart while they live, and after that they go to the dead.", + "For to him that is joined to all the living there is hope; for a living dog is better than a dead lion.", + "For the living know that they shall die; but the dead know not any thing, neither have they any more a reward; for the memory of them is forgotten.", + "As well their love, as their hatred and their envy, is long ago perished; neither have they any more a portion for ever in any thing that is done under the sun.", + "Go thy way, eat thy bread with joy, And drink thy wine with a merry heart; For God hath already accepted thy works.", + "Let thy garments be always white; And let thy head lack no oil.", + "Enjoy life with the wife whom thou lovest all the days of the life of thy vanity, which He hath given thee under the sun, all the days of thy vanity; for that is thy portion in life, and in thy labour wherein thou labourest under the sun.", + "Whatsoever thy hand attaineth to do by thy strength, that do; for there is no work, nor device, nor knowledge, nor wisdom, in the grave, whither thou goest.", + "I returned, and saw under the sun, that the race is not to the swift, nor the battle to the strong, neither yet bread to the wise, nor yet riches to men of understanding, nor yet favour to men of skill; but time and chance happeneth to them all.", + "For man also knoweth not his time; as the fishes that are taken in an evil net, and as the birds that are caught in the snare, even so are the sons of men snared in an evil time, when it falleth suddenly upon them.", + "This also have I seen as wisdom under the sun, and it seemed great unto me:", + "there was a little city, and few men within it; and there came a great king against it, and besieged it, and built great bulwarks against it;", + "now there was found in it a man poor and wise, and he by his wisdom delivered the city; yet no man remembered that same poor man.", + "Then said I: \u2018Wisdom is better than strength; nevertheless the poor man\u2019s wisdom is despised, and his words are not heard.\u2019", + "The words of the wise spoken in quiet Are more acceptable than the cry of a ruler among fools.", + "Wisdom is better than weapons of war; But one sinner destroyeth much good." + ], + [ + "Dead flies make the ointment of the perfumer fetid and putrid; So doth a little folly outweigh wisdom and honour.", + "A wise man\u2019s understanding is at his right hand; But a fool\u2019s understanding at his left.", + "Yea also, when a fool walketh by the way, his understanding faileth him, and he saith to every one that he is a fool.", + "If the spirit of the ruler rise up against thee, Leave not thy place; For gentleness allayeth great offences.", + "There is an evil which I have seen under the sun, Like an error which proceedeth from a ruler:", + "Folly is set on great heights, And the rich sit in low place.", + "I have seen servants upon horses, And princes walking as servants upon the earth.", + "He that diggeth a pit shall fall into it; And whoso breaketh through a fence, a serpent shall bite him.", + "Whoso quarrieth stones shall be hurt therewith; And he that cleaveth wood is endangered thereby.", + "If the iron be blunt, And one do not whet the edge, Then must he put to more strength; But wisdom is profitable to direct.", + "If the serpent bite before it is charmed, Then the charmer hath no advantage.", + "The words of a wise man\u2019s mouth are gracious; But the lips of a fool will swallow up himself.", + "The beginning of the words of his mouth is foolishness; And the end of his talk is grievous madness.", + "A fool also multiplieth words; Yet man knoweth not what shall be; And that which shall be after him, Who can tell him?", + "The labour of fools wearieth every one of them, For he knoweth not how to go to the city.", + "Woe to thee, O land, when thy king is a boy, And thy princes feast in the morning! .", + "Happy art thou, O land, when thy king is a free man, And thy princes eat in due season, In strength, and not in drunkenness!", + "By slothfulness the rafters sink in; And through idleness of the hands the house leaketh.", + "A feast is made for laughter, And wine maketh glad the life; And money answereth all things.", + "Curse not the king, no, not in thy thought, And curse not the rich in thy bedchamber; For a bird of the air shall carry the voice, And that which hath wings shall tell the matter." + ], + [ + "Cast thy bread upon the waters, For thou shalt find it after many days.", + "Divide a portion into seven, yea, even into eight; For thou knowest not what evil shall be upon the earth.", + "If the clouds be full of rain, They empty themselves upon the earth; And if a tree fall in the south, or in the north, In the place where the tree falleth, there shall it be.", + "He that observeth the wind shall not sow; And he that regardeth the clouds shall not reap.", + "As thou knowest not what is the way of the wind, Nor how the bones do grow in the womb of her that is with child; Even so thou knowest not the work of God Who doeth all things.", + "In the morning sow thy seed, And in the evening withhold not thy hand; For thou knowest not which shall prosper, whether this or that, Or whether they both shall be alike good.", + "And the light is sweet, And a pleasant thing it is for the eyes to behold the sun.", + "For if a man live many years, Let him rejoice in them all, And remember the days of darkness, For they shall be many. All that cometh is vanity.", + "Rejoice, O young man, in thy youth; And let thy heart cheer thee in the days of thy youth, And walk in the ways of thy heart, And in the sight of thine eyes; But know thou, that for all these things God will bring thee into judgment.", + "Therefore remove vexation from thy heart, And put away evil from thy flesh; For childhood and youth are vanity." + ], + [ + "Remember then thy Creator in the days of thy youth, And the years draw nigh, when thou shalt say: 'I have no pleasure in them';", + "Before the sun, and the light, and the moon, And the stars, are darkened, And the clouds return after the rain;", + "In the day when the keepers of the house shall tremble, And the strong men shall bow themselves, And the grinders cease because they are few, And those that look out shall be darkened in the windows,", + "And the doors shall be shut in the street, When the sound of the grinding is low; And one shall start up at the voice of a bird, And all the daughters of music shall be brought low;", + "Also when they shall be afraid of that which is high, And terrors shall be in the way; And the almond-tree shall blossom, And the grasshopper shall drag itself along, And the caperberry shall fail; Because man goeth to his long home, And the mourners go about the streets;", + "Before the silver cord is snapped asunder, And the golden bowl is shattered, And the pitcher is broken at the fountain, And the wheel falleth shattered, into the pit;", + "And the dust returneth to the earth as it was, And the spirit returneth unto God who gave it.", + "Vanity of vanities, saith Koheleth; all is vanity.", + "And besides that Koheleth was wise, he also taught the people knowledge; yea, he pondered, and sought out, and set in order many proverbs.", + "Koheleth sought to find out words of delight, and that which was written uprightly, even words of truth.", + "The words of the wise are as goads, and as nails well fastened are those that are composed in collections; they are given from one shepherd.", + "And furthermore, my son, be admonished: of making many books there is no end; and much study is a weariness of the flesh.", + "The end of the matter, all having been heard: fear God, and keep His commandments; for this is the whole man.", + "For God shall bring every work into the judgment concerning every hidden thing, whether it be good or whether it be evil. The end of the matter, all having been heard: fear God, and keep His Commandments; for this is the whole man." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Esther.json b/data/torah/translation/Esther.json new file mode 100644 index 000000000..5d49cdf2e --- /dev/null +++ b/data/torah/translation/Esther.json @@ -0,0 +1,194 @@ +{ + "text": [ + [ + "NOW IT came to pass in the days of Ahasuerus\u2014this is Ahasuerus who reigned, from India even unto Ethiopia, over a hundred and seven and twenty provinces\u2014", + "that in those days, when the king Ahasuerus sat on the throne of his kingdom, which was in Shushan the castle,", + "in the third year of his reign, he made a feast unto all his princes and his servants; the army of Persia and Media, the nobles and princes of the provinces, being before him;", + "when he showed the riches of his glorious kingdom and the honour of his excellent majesty, many days, even a hundred and fourscore days.", + "And when these days were fulfilled, the king made a feast unto all the people that were present in Shushan the castle, both great and small, seven days, in the court of the garden of the king\u2019s palace;", + "there were hangings of white, fine cotton, and blue, bordered with cords of fine linen and purple, upon silver rods and pillars of marble; the couches were of gold and silver, upon a pavement of green, and white, and shell, and onyx marble.", + "And they gave them drink in vessels of gold\u2014the vessels being diverse one from another\u2014and royal wine in abundance, according to the bounty of the king.", + "And the drinking was according to the law; none did compel; for so the king had appointed to all the officers of his house, that they should do according to every man\u2019s pleasure.", + "Also Vashti the queen made a feast for the women in the royal house which belonged to king Ahasuerus.", + "On the seventh day, when the heart of the king was merry with wine, he commanded Mehuman, Bizzetha, Harbona, Bigtha, and Abagtha, Zethar, and Carcas, the seven chamberlains that ministered in the presence of Ahasuerus the king,", + "to bring Vashti the queen before the king with the crown royal, to show the peoples and the princes her beauty; for she was fair to look on.", + "But the queen Vashti refused to come at the king\u2019s commandment by the chamberlains; therefore was the king very wroth, and his anger burned in him.", + "Then the king said to the wise men, who knew the times\u2014for so was the king\u2019s manner toward all that knew law and judgment;", + "and the next unto him was Carshena, Shethar, Admatha, Tarshish, Meres, Marsena, and Memucan, the seven princes of Persia and Media, who saw the king\u2019s face, and sat the first in the kingdom:", + "\u2019What shall we do unto the queen Vashti according to law, forasmuch as she hath not done the bidding of the king Ahasuerus by the chamberlains?\u2019", + "And Memucan answered before the king and the princes: \u2018Vashti the queen hath not done wrong to the king only, but also to all the princes, and to all the peoples, that are in all the provinces of the king Ahasuerus.", + "For this deed of the queen will come abroad unto all women, to make their husbands contemptible in their eyes, when it will be said: The king Ahasuerus commanded Vashti the queen to be brought in before him, but she came not.", + "And this day will the princesses of Persia and Media who have heard of the deed of the queen say the like unto all the king\u2019s princes. So will there arise enough contempt and wrath.", + "If it please the king, let there go forth a royal commandment from him, and let it be written among the laws of the Persians and the Medes, that it be not altered, that Vashti come no more before king Ahasuerus, and that the king give her royal estate unto another that is better than she.", + "And when the king\u2019s decree which he shall make shall be published throughout all his kingdom, great though it be, all the wives will give to their husbands honour, both to great and small.\u2019", + "And the word pleased the king and the princes; and the king did according to the word of Memucan;", + "for he sent letters into all the king\u2019s provinces, into every province according to the writing thereof, and to every people after their language, that every man should bear rule in his own house, and speak according to the language of his people." + ], + [ + "After these things, when the wrath of king Ahasuerus was assuaged, he remembered Vashti, and what she had done, and what was decreed against her.", + "Then said the king\u2019s servants that ministered unto him: \u2018Let there be sought for the king young virgins fair to look on;", + "and let the king appoint officers in all the provinces of his kingdom, that they may gather together all the fair young virgins unto Shushan the castle, to the house of the women, unto the custody of Hegai the king\u2019s chamberlain, keeper of the women; and let their ointments be given them;", + "and let the maiden that pleaseth the king be queen instead of Vashti.\u2019 And the thing pleased the king; and he did so.", + "There was a certain Jew in Shushan the castle, whose name was Mordecai the son of Jair the son of Shimei the son of Kish, a Benjamite,", + "who had been carried away from Jerusalem with the captives that had been carried away with Jeconiah king of Judah, whom Nebuchadnezzar the king of Babylon had carried away.", + "And he brought up Hadassah, that is, Esther, his uncle\u2019s daughter; for she had neither father nor mother, and the maiden was of beautiful form and fair to look on; and when her father and mother were dead, Mordecai took her for his own daughter.", + "So it came to pass, when the king\u2019s commandment and his decree was published, and when many maidens were gathered together unto Shushan the castle, to the custody of Hegai, that Esther was taken into the king\u2019s house, to the custody of Hegai, keeper of the women.", + "And the maiden pleased him, and she obtained kindness of him; and he speedily gave her her ointments, with her portions, and the seven maidens, who were meet to be given her out of the king\u2019s house; and he advanced her and her maidens to the best place in the house of the women.", + "Esther had not made known her people nor her kindred; for Mordecai had charged her that she should not tell it.", + "And Mordecai walked every day before the court of the women\u2019s house, to know how Esther did, and what would become of her.", + "Now when the turn of every maiden was come to go in to king Ahasuerus, after that it had been done to her according to the law for the women, twelve months\u2014for so were the days of their anointing accomplished, to wit, six months with oil of myrrh, and six month with sweet odours, and with other ointments of the women \u2014", + "when then the maiden came unto the king, whatsoever she desired was given her to go with her out of the house of the women unto the king\u2019s house.", + "In the evening she went, and on the morrow she returned into the second house of the women, to the custody of Shaashgaz, the king\u2019s chamberlain, who kept the concubines; she came in unto the king no more, except the king delighted in her, and she were called by name.", + "Now when the turn of Esther, the daughter of Abihail the uncle of Mordecai, who had taken her for his daughter, was come to go in unto the king, she required nothing but what Hegai the king\u2019s chamberlain, the keeper of the women, appointed. And Esther obtained favour in the sight of all them that looked upon her.", + "So Esther was taken unto king Ahasuerus into his house royal in the tenth month, which is the month Tebeth, in the seventh year of his reign.", + "And the king loved Esther above all the women, and she obtained grace and favour in his sight more than all the virgins; so that he set the royal crown upon her head, and made her queen instead of Vashti.", + "Then the king made a great feast unto all his princes and his servants, even Esther\u2019s feast; and he made a release to the provinces, and gave gifts, according to the bounty of the king.", + "And when the virgins were gathered together the second time, and Mordecai sat in the king\u2019s gate\u2014", + "Esther had not yet made known her kindred nor her people; as Mordecai had charged her; for Esther did the commandment of Mordecai, like as when she was brought up with him\u2014", + "in those days, while Mordecai sat in the king\u2019s gate, two of the king\u2019s chamberlains, Bigthan and Teresh, of those that kept the door, were wroth, and sought to lay hands on the king Ahasuerus.", + "And the thing became known to Mordecai, who told it unto Esther the queen; and Esther told the king thereof in Mordecai\u2019s name.", + "And when inquisition was made of the matter, and it was found to be so, they were both hanged on a tree; and it was written in the book of the chronicles before the king." + ], + [ + "After these things did king Ahasuerus promote Haman the son of Hammedatha the Agagite, and advanced him, and set his seat above all the princes that were with him.", + "And all the king\u2019s servants, that were in the king\u2019s gate, bowed down, and prostrated themselves before Haman; for the king had so commanded concerning him. But Mordecai bowed not down, nor prostrated himself before him.", + "Then the king\u2019s servants, that were in the king\u2019s gate, said unto Mordecai: \u2018Why transgressest thou the king\u2019s commandment?\u2019", + "Now it came to pass, when they spoke daily unto him, and he hearkened not unto them, that they told Haman, to see whether Mordecai\u2019s words would stand; for he had told them that he was a Jew.", + "And when Haman saw that Mordecai bowed not down, nor prostrated himself before him, then was Haman full of wrath.", + "But it seemed contemptible in his eyes to lay hands on Mordecai alone; for they had made known to him the people of Mordecai; wherefore Haman sought to destroy all the Jews that were throughout the whole kingdom of Ahasuerus, even the people of Mordecai.", + "In the first month, which is the month Nisan, in the twelfth year of king Ahasuerus, they cast pur, that is, the lot, before Haman from day to day, and from month to month, to the twelfth month, which is the month Adar.", + "And Haman said unto king Ahasuerus: \u2018There is a certain people scattered abroad and dispersed among the peoples in all the provinces of thy kingdom; and their laws are diverse from those of every people; neither keep they the king\u2019s laws; therefore it profiteth not the king to suffer them.", + "If it please the king, let it be written that they be destroyed; and I will pay ten thousand talents of silver into the hands of those that have the charge of the king\u2019s business, to bring it into the king\u2019s treasuries.\u2019", + "And the king took his ring from his hand, and gave it unto Haman the son of Hammedatha the Agagite, the Jews\u2019enemy.", + "And the king said unto Haman: \u2018The silver is given to thee, the people also, to do with them as it seemeth good to thee.\u2019", + "Then were the king\u2019s scribes called in the first month, on the thirteenth day thereof, and there was written, according to all that Haman commanded, unto the king\u2019s satraps, and to the governors that were over every province, and to the princes of every people; to every province according to the writing thereof, and to every people after their language; in the name of king Ahasuerus was it written, and it was sealed with the king\u2019s ring.", + "And letters were sent by posts into all the king\u2019s provinces, to destroy, to slay, and to cause to perish, all Jews, both young and old, little children and women, in one day, even upon the thirteenth day of the twelfth month, which is the month Adar, and to take the spoil of them for a prey.", + "The copy of the writing, to be given out for a decree in every province, was to be published unto all peoples, that they should be ready against that day.", + "The posts went forth in haste by the king\u2019s commandment, and the decree was given out in Shushan the castle; and the king and Haman sat down to drink; but the city of Shushan was perplexed." + ], + [ + "Now when Mordecai knew all that was done, Mordecai rent his clothes, and put on sackcloth with ashes, and went out into the midst of the city, and cried with a loud and a bitter cry;", + "and he came even before the king\u2019s gate; for none might enter within the king\u2019s gate clothed with sackcloth.", + "And in every province, whithersoever the king\u2019s commandment and his decree came, there was great mourning among the Jews, and fasting, and weeping, and wailing; and many lay in sackcloth and ashes.", + "And Esther\u2019s maidens and her chamberlains came and told it her; and the queen was exceedingly pained; and she sent raiment to clothe Mordecai; and to take his sackcloth from off him; but he accepted it not.", + "Then called Esther for Hathach, one of the king\u2019s chamberlains, whom he had appointed to attend upon her, and charged him to go to Mordecai, to know what this was, and why it was.", + "So Hathach went forth to Mordecai unto the broad place of the city, which was before the king\u2019s gate.", + "And Mordecai told him of all that had happened unto him, and the exact sum of the money that Haman had promised to pay to the king\u2019s treasuries for the Jews, to destroy them.", + "Also he gave him the copy of the writing of the decree that was given out in Shushan to destroy them, to show it unto Esther, and to declare it unto her; and to charge her that she should go in unto the king, to make supplication unto him, and to make request before him, for her people.", + "And Hathach came and told Esther the words of Mordecai.", + "Then Esther spoke unto Hathach, and gave him a message unto Mordecai:", + "\u2019All the king\u2019s servants, and the people of the king\u2019s provinces, do know, that whosoever, whether man or woman, shall come unto the king into the inner court, who is not called, there is one law for him, that he be put to death, except such to whom the king shall hold out the golden sceptre, that he may live; but I have not been called to come in unto the king these thirty days.\u2019", + "And they told to Mordecai Esther\u2019s words.", + "Then Mordecai bade them to return answer unto Esther: \u2018Think not with thyself that thou shalt escape in the king\u2019s house, more than all the Jews.", + "For if thou altogether holdest thy peace at this time, then will relief and deliverance arise to the Jews from another place, but thou and thy father\u2019s house will perish; and who knoweth whether thou art not come to royal estate for such a time as this?\u2019", + "Then Esther bade them return answer unto Mordecai:", + "\u2019Go, gather together all the Jews that are present in Shushan, and fast ye for me, and neither eat nor drink three days, night or day; I also and my maidens will fast in like manner; and so will I go in unto the king, which is not according to the law; and if I perish, I perish.\u2019", + "So Mordecai went his way, and did according to all that Esther had commanded him." + ], + [ + "Now it came to pass on the third day, that Esther put on her royal apparel, and stood in the inner court of the king\u2019s house, over against the king\u2019s house; and the king sat upon his royal throne in the royal house, over against the entrance of the house.", + "And it was so, when the king saw Esther the queen standing in the court, that she obtained favour in his sight; and the king held out to Esther the golden sceptre that was in his hand. So Esther drew near, and touched the top of the sceptre.", + "Then said the king unto her: \u2018What wilt thou, queen Esther? for whatever thy request, even to the half of the kingdom, it shall be given thee.\u2019", + "And Esther said: \u2018If it seem good unto the king, let the king and Haman come this day unto the banquet that I have prepared for him.\u2019", + "Then the king said: \u2018Cause Haman to make haste, that it may be done as Esther hath said.\u2019 So the king and Haman came to the banquet that Esther had prepared.", + "And the king said unto Esther at the banquet of wine: \u2018Whatever thy petition, it shall be granted thee; and whatever thy request, even to the half of the kingdom, it shall be performed.\u2019", + "Then answered Esther, and said: \u2018My petition and my request is\u2014", + "if I have found favour in the sight of the king, and if it please the king to grant my petition, and to perform my request\u2014let the king and Haman come to the banquet that I shall prepare for them, and I will do to-morrow as the king hath said.\u2019", + "Then went Haman forth that day joyful and glad of heart; but when Haman saw Mordecai in the king\u2019s gate, that he stood not up, nor moved for him, Haman was filled with wrath against Mordecai.", + "Nevertheless Haman refrained himself, and went home; and he sent and fetched his friends and Zeresh his wife.", + "And Haman recounted unto them the glory of his riches, and the multitude of his children, and everything as to how the king had promoted him, and how he had advanced him above the princes and servants of the king.", + "Haman said moreover: \u2018Yea, Esther the queen did let no man come in with the king unto the banquet that she had prepared but myself; and to-morrow also am I invited by her together with the king.", + "Yet all this availeth me nothing, so long as I see Mordecai the Jew sitting at the king\u2019s gate.\u2019", + "Then said Zeresh his wife and all his friends unto him: \u2018Let a gallows be made of fifty cubits high, and in the morning speak thou unto the king that Mordecai may be hanged thereon; then go thou in merrily with the king unto the banquet.\u2019 And the thing pleased Haman; and he caused the gallows to be made." + ], + [ + "On that night could not the king sleep; and he commanded to bring the book of records of the chronicles, and they were read before the king.", + "And it was found written, that Mordecai had told of Bigthana and Teresh, two of the king\u2019s chamberlains, of those that kept the door, who had sought to lay hands on the king Ahasuerus.", + "And the king said: \u2018What honour and dignity hath been done to Mordecai for this?\u2019 Then said the king\u2019s servants that ministered unto him: \u2018There is nothing done for him.\u2019", + "And the king said: \u2018Who is in the court?\u2019\u2014Now Haman was come into the outer court of the king\u2019s house, to speak unto the king to hang Mordecai on the gallows that he had prepared for him.\u2014", + "And the king\u2019s servants said unto him: \u2018Behold, Haman standeth in the court.\u2019 And the king said: \u2018Let him come in.\u2019", + "So Haman came in. And the king said unto him: \u2018What shall be done unto the man whom the king delighteth to honour?\u2019\u2014Now Haman said in his heart: \u2018Whom would the king delight to honour besides myself?\u2019\u2014", + "And Haman said unto the king: \u2018For the man whom the king delighteth to honour,", + "let royal apparel be brought which the king useth to wear, and the horse that the king rideth upon, and on whose head a crown royal is set;", + "and let the apparel and the horse be delivered to the hand of one of the king\u2019s most noble princes, that they may array the man therewith whom the king delighteth to honour, and cause him to ride on horseback through the street of the city, and proclaim before him: Thus shall it be done to the man whom the king delighteth to honour.\u2019", + "Then the king said to Haman: \u2018Make haste, and take the apparel and the horse, as thou hast said, and do even so to Mordecai the Jew, that sitteth at the king\u2019s gate; let nothing fail of all that thou hast spoken.\u2019", + "Then took Haman the apparel and the horse, and arrayed Mordecai, and caused him to ride through the street of the city, and proclaimed before him: \u2018Thus shall it be done unto the man whom the king delighteth to honour.\u2019", + "And Mordecai returned to the king\u2019s gate. But Haman hasted to his house, mourning and having his head covered.", + "And Haman recounted unto Zeresh his wife and all his friends every thing that had befallen him. Then said his wise men and Zeresh his wife unto him: \u2018If Mordecai, before whom thou hast begun to fall, be of the seed of the Jews, thou shalt not prevail against him, but shalt surely fall before him.\u2019", + "While they were yet talking with him, came the king\u2019s chamberlains, and hastened to bring Haman unto the banquet that Esther had prepared." + ], + [ + "So the king and Haman came to banquet with Esther the queen.", + "And the king said again unto Esther on the second day at the banquet of wine: \u2018Whatever thy petition, queen Esther, it shall be granted thee; and whatever thy request, even to the half of the kingdom, it shall be performed.\u2019", + "Then Esther the queen answered and said: \u2018If I have found favour in thy sight, O king, and if it please the king, let my life be given me at my petition, and my people at my request;", + "for we are sold, I and my people, to be destroyed, to be slain, and to perish. But if we had been sold for bondmen and bondwomen, I had held my peace, for the adversary is not worthy that the king be endamaged.\u2019", + "Then spoke the king Ahasuerus and said unto Esther the queen: \u2018Who is he, and where is he, that durst presume in his heart to do so?\u2019", + "And Esther said: \u2018An adversary and an enemy, even this wicked Haman.\u2019 Then Haman was terrified before the king and the queen.", + "And the king arose in his wrath from the banquet of wine and went into the palace garden; but Haman remained to make request for his life to Esther the queen; for he saw that there was evil determined against him by the king.", + "Then the king returned out of the palace garden into the place of the banquet of wine; and Haman was fallen upon the couch whereon Esther was. Then said the king: \u2018Will he even force the queen before me in the house?\u2019 As the word went out of the king\u2019s mouth, they covered Haman\u2019s face.", + "Then said Harbonah, one of the chamberlains that were before the king: \u2018Behold also, the gallows fifty cubits high, which Haman hath made for Mordecai, who spoke good for the king, standeth in the house of Haman.\u2019 And the king said: \u2018Hang him thereon.\u2019", + "So they hanged Haman on the gallows that he had prepared for Mordecai. Then was the king\u2019s wrath assuaged." + ], + [ + "On that day did the king Ahasuerus give the house of Haman the Jews\u2019enemy unto Esther the queen. And Mordecai came before the king; for Esther had told what he was unto her.", + "And the king took off his ring, which he had taken from Haman, and gave it unto Mordecai. And Esther set Mordecai over the house of Haman.", + "And Esther spoke yet again before the king, and fell down at his feet, and besought him with tears to put away the mischief of Haman the Agagite, and his device that he had devised against the Jews.", + "Then the king held out to Esther the golden sceptre. So Esther arose, and stood before the king.", + "And she said: \u2018If it please the king, and if I have found favour in his sight, and the thing seem right before the king, and I be pleasing in his eyes, let it be written to reverse the letters devised by Haman the son of Hammedatha the Agagite, which he wrote to destroy the Jews that are in all the king\u2019s provinces;", + "for how can I endure to see the evil that shall come unto my people? or how can I endure to see the destruction of my kindred?\u2019", + "Then the king Ahasuerus said unto Esther the queen and to Mordecai the Jew: \u2018Behold, I have given Esther the house of Haman, and him they have hanged upon the gallows, because he laid his hand upon the Jews.", + "Write ye also concerning the Jews, as it liketh you, in the king\u2019s name, and seal it with the king\u2019s ring; for the writing which is written in the king\u2019s name, and sealed with the king\u2019s ring, may no man reverse.\u2019", + "Then were the king\u2019s scribes called at that time, in the third month, which is the month Sivan, on the three and twentieth day thereof; and it was written according to all that Mordecai commanded concerning the Jews, even to the satraps, and the governors and princes of the provinces which are from India unto Ethiopia, a hundred twenty and seven provinces, unto every province according to the writing thereof, and unto every people after their language, and to the Jews according to their writing, and according to their language.", + "And they wrote in the name of king Ahasuerus, and sealed it with the king\u2019s ring, and sent letters by posts on horseback, riding on swift steeds that were used in the king\u2019s service, bred of the stud;", + "that the king had granted the Jews that were in every city to gather themselves together, and to stand for their life, to destroy, and to slay, and to cause to perish, all the forces of the people and province that would assault them, their little ones and women, and to take the spoil of them for a prey,", + "upon one day in all the provinces of king Ahasuerus, namely, upon the thirteenth day of the twelfth month, which is the month Adar.", + "The copy of the writing, to be given out for a decree in every province, was to be published unto all the peoples, and that the Jews should be ready against that day to avenge themselves on their enemies.", + "So the posts that rode upon swift steeds that were used in the king\u2019s service went out, being hastened and pressed on by the king\u2019s commandment; and the decree was given out in Shushan the castle.", + "And Mordecai went forth from the presence of the king in royal apparel of blue and white, and with a great crown of gold, and with a rob of fine linen and purple; and the city of Shushan shouted and was glad.", + "The Jews had light and gladness, and joy and honour.", + "And in every province, and in every city, whithersoever the king\u2019s commandment and his decree came, the Jews had gladness and joy, a feast and a good day. And many from among the peoples of the land became Jews; for the fear of the Jews was fallen upon them." + ], + [ + "Now in the twelfth month, which is the month Adar, on the thirteenth day of the same, when the king\u2019s commandment and his decree drew near to be put in execution, in the day that the enemies of the Jews hoped to have rule over them; whereas it was turned to the contrary, that the Jews had rule over them that hated them;", + "the Jews gathered themselves together in their cities throughout all the provinces of the king Ahasuerus, to lay hand on such as sought their hurt; and no man could withstand them; for the fear of them was fallen upon all the peoples.", + "And all the princes of the provinces, and the satraps, and the governors, and they that did the king\u2019s business, helped the Jews; because the fear of Mordecai was fallen upon them.", + "For Mordecai was great in the king\u2019s house, and his fame went forth throughout all the provinces; for the man Mordecai waxed greater and greater.", + "And the Jews smote all their enemies with the stroke of the sword, and with slaughter and destruction, and did what they would unto them that hated them.", + "And in Shushan the castle the Jews slew and destroyed five hundred men.", + "And Parshandatha, and Dalphon, and Aspatha,", + "and Poratha, and Adalia, and Aridatha,", + "and Parmashta, and Arisai, and Aridai, and Vaizatha,", + "the ten sons of Haman the son of Hammedatha, the Jews\u2019enemy, slew they; but on the spoil they laid not their hand.", + "On that day the number of those that were slain in Shushan the castle was brought before the king.", + "And the king said unto Esther the queen: \u2018The Jews have slain and destroyed five hundred men in Shushan the castle, and the ten sons of Haman; what then have they done in the rest of the king\u2019s provinces! Now whatever thy petition, it shall be granted thee; and whatever thy request further, it shall be done.\u2019", + "Then said Esther: \u2018If it please the king, let it be granted to the Jews that are in Shushan to do to-morrow also according unto this day\u2019s decree, and let Haman\u2019s ten sons be hanged upon the gallows.\u2019", + "And the king commanded it so to be done; and a decree was given out in Shushan; and they hanged Haman\u2019s ten sons.", + "And the Jews that were in Shushan gathered themselves together on the fourteenth day also of the month Adar, and slew three hundred men in Shushan; but on the spoil they laid not their hand.", + "And the other Jews that were in the king\u2019s provinces gathered themselves together, and stood for their lives, and had rest from their enemies, and slew of them that hated them seventy and five thousand\u2014but on the spoil they laid not their hand\u2014.", + "on the thirteenth day of the month Adar, and on the fourteenth day of the same they rested, and made it a day of feasting and gladness.", + "But the Jews that were in Shushan assembled together on the thirteenth day thereof, and on the fourteenth thereof; and on the fifteenth day of the same they rested, and made it a day of feasting and gladness.", + "Therefore do the Jews of the villages, that dwell in the unwalled towns, make the fourteenth day of the month Adar a day of gladness and feasting, and a good day, and of sending portions one to another.", + "And Mordecai wrote these things, and sent letters unto all the Jews that were in all the provinces of the king Ahasuerus, both nigh and far,", + "to enjoin them that they should keep the fourteenth day of the month Adar, and the fifteenth day of the same, yearly,", + "the days wherein the Jews had rest from their enemies, and the month which was turned unto them from sorrow to gladness, and from mourning into a good day; that they should make them days of feasting and gladness, and of sending portions one to another, and gifts to the poor.", + "And the Jews took upon them to do as they had begun, and as Mordecai had written unto them;", + "because Haman the son of Hammedatha, the Agagite, the enemy of all the Jews, had devised against the Jews to destroy them, and had cast pur, that is, the lot, to discomfit them, and to destroy them;", + "but when ashe came before the king, he commanded by letters that his wicked device, which he had devised against the Jews, should return upon his own head; and that he and his sons should be hanged on the gallows.", + "Wherefore they called these days Purim, after the name of pur. Therefore because of all the words of this letter, and of that which they had seen concerning this matter, and that which had come unto them,", + "the Jews ordained, and took upon them, and upon their seed, and upon all such as joined themselves unto them, so as it should not fail, that they would keep these two days according to the writing thereof, and according to the appointed time thereof, every year;", + "and that these days should be remembered and kept throughout every generation, every family, every province, and every city; and that these days of Purim should not fail from among the Jews, nor the memorial of them perish from their seed.", + "Then Esther the queen, the daughter of Abihail, and Mordecai the Jew, wrote down all the acts of power, to confirm this second letter of Purim.", + "And he sent letters unto all the Jews, to the hundred twenty and seven provinces of the kingdom of Ahasuerus, with words of peace and truth,", + "to confirm these days of Purim in their appointed times, according as Mordecai the Jew and Esther the queen had enjoined them, and as they had ordained for themselves and for their seed, the matters of the fastings and their cry.", + "And the commandment of Esther confirmed these matters of Purim; and it was written in the book." + ], + [ + "And the king Ahasuerus laid a tribute upon the land, and upon the isles of the sea.", + "And all the acts of his power and of his might, and the full account of the greatness of Mordecai, how the king advanced him, are they not written in the book of the chronicles of the kings of Media and Persia?", + "For Mordecai the Jew was next unto king Ahasuerus, and great among the Jews, and accepted of the multitude of his brethren; seeking the good of his people and speaking peace to all his seed." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Habakkuk.json b/data/torah/translation/Habakkuk.json new file mode 100644 index 000000000..a13c934bf --- /dev/null +++ b/data/torah/translation/Habakkuk.json @@ -0,0 +1,69 @@ +{ + "text": [ + [ + "THE burden which Habakkuk the prophet did see.", + "How long, O LORD, shall I cry, And Thou wilt not hear? I cry out unto Thee of violence, And Thou wilt not save.", + "Why dost Thou show me iniquity, And beholdest mischief? And why are spoiling and violence before me? So that there is strife, and contention ariseth.", + "Therefore the law is slacked, And right doth never go forth; For the wicked doth beset the righteous; Therefore right goeth forth perverted.", + "Look ye among the nations, and behold, And wonder marvellously; For, behold, a work shall be wrought in your days, Which ye will not believe though it be told you.", + "For, lo, I raise up the Chaldeans, That bitter and impetuous nation, That march through the breadth of the earth, To possess dwelling-places that are not theirs.", + "They are terrible and dreadful; Their law and their majesty proceed from themselves.", + "Their horses also are swifter than leopards, And are more fierce than the wolves of the desert; And their horsemen spread themselves; Yea, their horsemen come from far, They fly as a vulture that hasteth to devour.", + "They come all of them for violence; Their faces are set eagerly as the east wind; And they gather captives as the sand.", + "And they scoff at kings, And princes are a derision unto them; They deride every stronghold, For they heap up earth, and take it.", + "Then their spirit doth pass over and transgress, And they become guilty: Even they who impute their might unto their god.", + "Art not Thou from everlasting, O LORD my God, my Holy One? We shall not die. O LORD, Thou hast ordained them for judgment, And Thou, O Rock, hast established them for correction. .", + "Thou that art of eyes too pure to behold evil, And that canst not look on mischief, Wherefore lookest Thou, when they deal treacherously, And holdest Thy peace, when the wicked swalloweth up The man that is more righteous than he;", + "And makest men as the fishes of the sea, As the creeping things, that have no ruler over them?", + "They take up all of them with the angle, They catch them in their net, And gather them in their drag; Therefore they rejoice and exult.", + "Therefore they sacrifice unto their net, And offer unto their drag; Because by them their portion is fat, And their food plenteous.", + "Shall they therefore empty their net, And not spare to slay the nations continually?" + ], + [ + "I will stand upon my watch, And set me upon the tower, And will look out to see what He will speak by me, And what I shall answer when I am reproved.", + "And the LORD answered me, and said: \u2018Write the vision, and make it plain upon tables, That a man may read it swiftly.", + "For the vision is yet for the appointed time, And it declareth of the end, and doth not lie; Though it tarry, wait for it; Because it will surely come, it will not delay.\u2019", + "Behold, his soul is puffed up, it is not upright in him; But the righteous shall live by his faith.", + "Yea, moreover, wine is a treacherous dealer; The haughty man abideth not; He who enlargeth his desire as the nether-world, And is as death, and cannot be satisfied, But gathereth unto him all nations, And heapeth unto him all peoples.", + "Shall not all these take up a parable against him, And a taunting riddle against him, And say: \u2018Woe to him that increaseth that which is not his! How long? and that ladeth himself with many pledges! \u2019", + "Shall they not rise up suddenly that shall exact interest of thee, And awake that shall violently shake thee, And thou shalt be for booties unto them?", + "Because thou hast spoiled many nations, All the remnant of the peoples shall spoil thee; Because of men\u2019s blood, and for the violence done to the land, To the city and to all that dwell therein.", + "Woe to him that gaineth evil gains for his house, That he may set his nest on high, That he may be delivered from the power of evil!", + "Thou hast devised shame to thy house, By cutting off many peoples, And hast forfeited thy life.", + "For the stone shall cry out of the wall, And the beam out of the timber shall answer it.", + "Woe to him that buildeth a town with blood, And establisheth a city by iniquity!", + "Behold, is it not of the LORD of hosts That the peoples labour for the fire, And the nations weary themselves for vanity?", + "For the earth shall be filled With the knowledge of the glory of the LORD, As the waters cover the sea.", + "Woe unto him that giveth his neighbour drink, That puttest thy venom thereto, and makest him drunken also, That thou mayest look on their nakedness!", + "Thou art filled with shame instead of glory, Drink thou also, and be uncovered; The cup of the LORD\u2019S right hand shall be turned unto thee, And filthiness shall be upon thy glory.", + "For the violence done to Lebanon shall cover thee, And the destruction of the beasts, which made them afraid; Because of men\u2019s blood, and for the violence done to the land, To the city and to all that dwell therein.", + "What profiteth the graven image, That the maker thereof hath graven it, Even the molten image, and the teacher of lies; That the maker of his work trusteth therein, To make dumb idols?", + "Woe unto him that saith to the wood: \u2018Awake\u2019, To the dumb stone: \u2018Arise! \u2019 Can this teach? Behold, it is overlaid with gold and silver, And there is no breath at all in the midst of it.", + "But the LORD is in His holy temple; Let all the earth keep silence before Him." + ], + [ + "A prayer of Habakkuk the prophet. Upon Shigionoth. .", + "O LORD, I have heard the report of Thee, and am afraid; O LORD, revive Thy work in the midst of the years, In the midst of the years make it known; In wrath remember compassion.", + "God cometh from Teman, And the Holy One from mount Paran. Selah His glory covereth the heavens, And the earth is full of His praise.", + "And a brightness appeareth as the light; Rays hath He at His side; And there is the hiding of His power.", + "Before him goeth the pestilence, And fiery bolts go forth at His feet.", + "He standeth, and shaketh the earth, He beholdeth, and maketh the nations to tremble; And the everlasting mountains are dashed in pieces, The ancient hills do bow; His goings are as of old.", + "I see the tents of Cushan in affliction; The curtains of the land of Midian do tremble.", + "Is it, O LORD, that against the rivers, Is it that Thine anger is kindled against the rivers, Or Thy wrath against the sea? That Thou dost ride upon Thy horses, Upon Thy chariots of victory?", + "Thy bow is made quite bare; Sworn are the rods of the word. Selah. Thou dost cleave the earth with rivers.", + "The mountains have seen Thee, and they tremble; The tempest of waters floweth over; the deep uttereth its voice, And lifteth up its hands on high.", + "The sun and moon stand still in their habitation; At the light of Thine arrows as they go, At the shining of Thy glittering spear.", + "Thou marchest through the earth in indignation, Thou threshest the nations in anger.", + "Thou art come forth for the deliverance of Thy people, For the deliverance of Thine anointed; Thou woundest the head out of the house of the wicked, Uncovering the foundation even unto the neck. Selah", + "Thou hast stricken through with his own rods the head of his rulers, That come as a whirlwind to scatter me; Whose rejoicing is as to devour the poor secretly.", + "Thou hast trodden the sea with Thy horses, The foaming of mighty waters.", + "When I heard, mine inward parts trembled, My lips quivered at the voice; Rottenness entereth into my bones, And I tremble where I stand; That I should wait for the day of trouble, When he cometh up against the people that he invadeth.", + "For though the fig-tree shall not blossom, Neither shall fruit be in the vines; The labour of the olive shall fail, And the fields shall yield no food; The flock shall be cut off from the fold, And there shall be no herd in the stalls;", + "Yet I will rejoice in the LORD, I will exult in the God of my salvation.", + "God, the Lord, is my strength, And He maketh my feet like hinds\u2019feet, And He maketh me to walk upon my high places. For the Leader. With my string-music." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Kings_1.json b/data/torah/translation/I Kings.json similarity index 100% rename from data/torah/translation/Kings_1.json rename to data/torah/translation/I Kings.json diff --git a/data/torah/translation/Samuel_1.json b/data/torah/translation/I Samuel.json similarity index 100% rename from data/torah/translation/Samuel_1.json rename to data/torah/translation/I Samuel.json diff --git a/data/torah/translation/Kings_2.json b/data/torah/translation/II Kings.json similarity index 100% rename from data/torah/translation/Kings_2.json rename to data/torah/translation/II Kings.json diff --git a/data/torah/translation/Samuel_2.json b/data/torah/translation/II Samuel.json similarity index 100% rename from data/torah/translation/Samuel_2.json rename to data/torah/translation/II Samuel.json diff --git a/data/torah/translation/Jonah.json b/data/torah/translation/Jonah.json new file mode 100644 index 000000000..187258a3c --- /dev/null +++ b/data/torah/translation/Jonah.json @@ -0,0 +1,63 @@ +{ + "text": [ + [ + "Now the word of the LORD came unto Jonah the son of Amittai, saying:", + "\u2019Arise, go to Nineveh, that great city, and proclaim against it; for their wickedness is come up before Me.\u2019", + "But Jonah rose up to flee unto Tarshish from the presence of the LORD; and he went down to Joppa, and found a ship going to Tarshish; so he paid the fare thereof, and went down into it, to go with them unto Tarshish, from the presence of the LORD.", + "But the LORD hurled a great wind into the sea, and there was a mighty tempest in the sea, so that the ship was like to be broken.", + "And the mariners were afraid, and cried every man unto his god; and they cast forth the wares that were in the ship into the sea, to lighten it unto them. But Jonah was gone down into the innermost parts of the ship; and he lay, and was fast asleep.", + "So the shipmaster came to him, and said unto him: \u2018What meanest thou that thou sleepest? arise, call upon thy God, if so be that God will think upon us, that we perish not.\u2019", + "And they said every one to his fellow: \u2018Come, and let us cast lots, that we may know for whose cause this evil is upon us.\u2019 So they cast lots, and the lot fell upon Jonah.", + "Then said they unto him: \u2018Tell us, we pray thee, for whose cause this evil is upon us: what is thine occupation? and whence comest thou? what is thy country? and of what people art thou?\u2019", + "And he said unto them: \u2018I am an Hebrew; and I fear the LORD, the God of heaven, who hath made the sea and the dry land.\u2019", + "Then were the men exceedingly afraid, and said unto him: \u2018What is this that thou hast done?\u2019 For the men knew that he fled from the presence of the LORD, because he had told them.", + "Then said they unto him: \u2018What shall we do unto thee, that the sea may be calm unto us?\u2019 for the sea grew more and more tempestuous.", + "And he said unto them: \u2018Take me up, and cast me forth into the sea; so shall the sea be calm unto you; for I know that for my sake this great tempest is upon you.\u2019", + "Nevertheless the men rowed hard to bring it to the land; but they could not; for the sea grew more and more tempestuous against them.", + "Wherefore they cried unto the LORD, and said: \u2018We beseech Thee, O LORD, we beseech Thee, let us not perish for this man\u2019s life, and lay not upon us innocent blood; for Thou, O LORD, hast done as it pleased Thee.\u2019", + "So they took up Jonah, and cast him forth into the sea; and the sea ceased from its raging.", + "Then the men feared the LORD exceedingly; and they offered a sacrifice unto the LORD, and made vows." + ], + [ + "And the LORD prepared a great fish to swallow up Jonah; and Jonah was in the belly of the fish three days and three nights.", + "Then Jonah prayed unto the LORD his God out of the fish\u2019s belly.", + "And he said: I called out of mine affliction Unto the LORD, and He answered me; Out of the belly of the nether-world cried I, And Thou heardest my voice.", + "For Thou didst cast me into the depth, In the heart of the seas, And the flood was round about me; All Thy waves and Thy billows Passed over me.", + "And I said: \u2018I am cast out From before Thine eyes\u2019; Yet I will look again Toward Thy holy temple.", + "The waters compassed me about, even to the soul; The deep was round about me; The weeds were wrapped about my head.", + "I went down to the bottoms of the mountains; The earth with her bars closed upon me for ever; Yet hast Thou brought up my life from the pit, O LORD my God.", + "When my soul fainted within me, I remembered the LORD; And my prayer came in unto Thee, Into Thy holy temple.", + "They that regard lying vanities Forsake their own mercy.", + "But I will sacrifice unto Thee With the voice of thanksgiving; That which I have vowed I will pay. Salvation is of the LORD.", + "And the LORD spoke unto the fish, and it vomited out Jonah upon the dry land." + ], + [ + "And the word of the LORD came unto Jonah the second time, saying:", + "\u2019Arise, go unto Nineveh, that great city, and make unto it the proclamation that I bid thee.\u2019", + "So Jonah arose, and went unto Nineveh, according to the word of the LORD. Now Nineveh was an exceeding great city, of three days\u2019journey.", + "And Jonah began to enter into the city a day\u2019s journey, and he proclaimed, and said: \u2018Yet forty days, and Nineveh shall be overthrown.\u2019", + "And the people of Nineveh believed God; and they proclaimed a fast, and put on sackcloth, from the greatest of them even to the least of them.", + "And the tidings reached the king of Nineveh, and he arose from his throne, and laid his robe from him, and covered him with sackcloth, and sat in ashes.", + "And he caused it to be proclaimed and published through Nineveh by the decree of the king and his nobles, saying: \u2018Let neither man nor beast, herd nor flock, taste any thing; let them not feed, nor drink water;", + "but let them be covered with sackcloth, both man and beast, and let them cry mightily unto God; yea, let them turn every one from his evil way, and from the violence that is in their hands.", + "Who knoweth whether God will not turn and repent, and turn away from His fierce anger, that we perish not?\u2019", + "And God saw their works, that they turned from their evil way; and God repented of the evil, which He said He would do unto them; and He did it not." + ], + [ + "But it displeased Jonah exceedingly, and he was angry.", + "And he prayed unto the LORD, and said: \u2018I pray Thee, O LORD, was not this my saying, when I was yet in mine own country? Therefore I fled beforehand unto Tarshish; for I knew that Thou art a gracious God, and compassionate, long-suffering, and abundant in mercy, and repentest Thee of the evil.", + "Therefore now, O LORD, take, I beseech Thee, my life from me; for it is better for me to die than to live.\u2019", + "And the LORD said: \u2018Art thou greatly angry?\u2019", + "Then Jonah went out of the city, and sat on the east side of the city, and there made him a booth, and sat under it in the shadow, till he might see what would become of the city.", + "And the LORD God prepared a gourd, and made it to come up over Jonah, that it might be a shadow over his head, to deliver him from his evil. So Jonah was exceeding glad because of the gourd.", + "But God prepared a worm when the morning rose the next day, and it smote the gourd, that it withered.", + "And it came to pass, when the sun arose, that God prepared a vehement east wind; and the sun beat upon the head of Jonah, that he fainted, and requested for himself that he might die, and said: \u2018It is better for me to die than to live.\u2019", + "And God said to Jonah: \u2018Art thou greatly angry for the gourd?\u2019 And he said: \u2018I am greatly angry, even unto death.\u2019", + "And the LORD said: \u2018Thou hast had pity on the gourd, for which thou hast not laboured, neither madest it grow, which came up in a night, and perished in a night;", + "and should not I have pity on Nineveh, that great city, wherein are more than sixscore thousand persons that cannot discern between their right hand and their left hand, and also much cattle?\u2019" + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Lamentations.json b/data/torah/translation/Lamentations.json new file mode 100644 index 000000000..3a8b86a73 --- /dev/null +++ b/data/torah/translation/Lamentations.json @@ -0,0 +1,171 @@ +{ + "text": [ + [ + "HOW DOTH the city sit solitary, That was full of people! How is she become as a widow! She that was great among the nations, And princess among the provinces, How is she become tributary!", + "She weepeth sore in the night, And her tears are on her cheeks; She hath none to comfort her Among all her lovers; All her friends have dealt treacherously with her, They are become her enemies.", + "Judah is gone into exile because of affliction, And because of great servitude; She dwelleth among the nations, She findeth no rest; All her pursuers overtook her Within the straits.", + "The ways of Zion do mourn, Because none come to the solemn assembly; All her gates are desolate, Her priests sigh; Her virgins are afflicted, And she herself is in bitterness.", + "Her adversaries are become the head, Her enemies are at ease; For the LORD hath afflicted her For the multitude of her transgressions; Her young children are gone into captivity Before the adversary.", + "And gone is from the daughter of Zion All her splendour; Her princes are become like harts That find no pasture, And they are gone without strength Before the pursuer.", + "Jerusalem remembereth In the days of her affliction and of her anguish All her treasures that she had From the days of old; Now that her people fall by the hand of the adversary, And none doth help her, The adversaries have seen her, They have mocked at her desolations.", + "Jerusalem hath grievously sinned, Therefore she is become as one unclean; All that honoured her despise her, Because they have seen her nakedness; She herself also sigheth, And turneth backward.", + "Her filthiness was in her skirts, She was not mindful of her end; Therefore is she come down wonderfully, She hath no comforter. \u2019Behold, O LORD, my affliction, For the enemy hath magnified himself.\u2019", + "The adversary hath spread out his hand Upon all her treasures; For she hath seen that the heathen Are entered into her sanctuary, Concerning whom Thou didst command That they should not enter into Thy congregation.", + "All her people sigh, They seek bread; They have given their pleasant things for food To refresh the soul. \u2018See, O LORD, and behold, How abject I am become.\u2019", + "\u2019Let it not come unto you, all ye that pass by! Behold, and see If there be any pain like unto my pain, Which is done unto me, Wherewith the LORD hath afflicted me In the day of His fierce anger.", + "From on high hath He sent fire Into my bones, and it prevaileth against them; He hath spread a net for my feet, He hath turned me back; He hath made me desolate And faint all the day.", + "The yoke of my transgressions is impressed by His hand; They are knit together, They are come up upon my neck; He hath made my strength to fail; The Lord hath delivered me into their hands, Against whom I am not able to stand.", + "The Lord hath set at nought All my mighty men in the midst of me; He hath called a solemn assembly against me To crush my young men; The Lord hath trodden as in a winepress The virgin the daughter of Judah.\u2019", + "\u2019For these things I weep; Mine eye, mine eye runneth down with water; Because the comforter is far from me, Even he that should refresh my soul; My children are desolate, Because the enemy hath prevailed.\u2019", + "Zion spreadeth forth her hands; There is none to comfort her; The LORD hath commanded concerning Jacob, That they that are round about him should be his adversaries; Jerusalem is among them As one unclean.", + "\u2019The LORD is righteous; For I have rebelled against His word; Hear, I pray you, all ye peoples, And behold my pain: My virgins and my young men Are gone into captivity. .", + "I called for my lovers, But they deceived me; My priests and mine elders Perished in the city, While they sought them food To refresh their souls.", + "Behold, O LORD, for I am in distress, Mine inwards burn; My heart is turned within me, For I have grievously rebelled. Abroad the sword bereaveth, At home there is the like of death.", + "They have heard that I sigh, There is none to comfort me; All mine enemies have heard of my trouble, and are glad, For Thou hast done it; Thou wilt bring the day that Thou hast proclaimed, And they shall be like unto me.", + "Let all their wickedness come before Thee; And do unto them, As Thou hast done unto me For all my transgressions; For my sighs are many And my heart is faint.\u2019" + ], + [ + "How hath the Lord covered with a cloud The daughter of Zion in His anger! He hath cast down from heaven unto the earth The beauty of Israel, And hath not remembered His footstool In the day of His anger.", + "The Lord hath swallowed up unsparingly All the habitations of Jacob; He hath thrown down in His wrath The strongholds of the daughter of Judah; He hath brought them down to the ground; He hath profaned the kingdom and the princes thereof.", + "He hath cut off in fierce anger All the horn of Israel; He hath drawn back His right hand From before the enemy; And He hath burned in Jacob like a flaming fire, Which devoureth round about.", + "He hath bent His bow like an enemy, Standing with His right hand as an adversary, And hath slain all that were pleasant to the eye; In the tent of the daughter of Zion He hath poured out His fury like fire.", + "The Lord is become as an enemy, He hath swallowed up Israel; He hath swallowed up all her palaces, He hath destroyed his strongholds; And He hath multiplied in the daughter of Judah Mourning and moaning.", + "And He hath stripped His tabernacle, as if it were a garden, He hath destroyed His place of assembly; The LORD hath caused to be forgotten in Zion Appointed season and sabbath, And hath rejected in the indignation of His anger The king and the priest.", + "The Lord hath cast off His altar, He hath abhorred His sanctuary, He hath given up into the hand of the enemy The walls of her palaces; They have made a noise in the house of the LORD, As in the day of a solemn assembly.", + "The LORD hath purposed to destroy The wall of the daughter of Zion; He hath stretched out the line, He hath not withdrawn His hand from destroying; But He hath made the rampart and wall to mourn, They languish together.", + "Her gates are sunk into the ground; He hath destroyed and broken her bars; Her king and her princes are among the nations, Instruction is no more; Yea, her prophets find No vision from the LORD.", + "They sit upon the ground, and keep silence, The elders of the daughter of Zion; They have cast up dust upon their heads, They have girded themselves with sackcloth; The virgins of Jerusalem hang down Their heads to the ground.", + "Mine eyes do fail with tears, Mine inwards burn, My liver is poured upon the earth, For the breach of the daughter of my people; Because the young children and the sucklings swoon In the broad places of the city.", + "They say to their mothers: \u2018Where is corn and wine?\u2019 When they swoon as the wounded In the broad places of the city, When their soul is poured out Into their mothers\u2019bosom.", + "What shall I take to witness for thee? What shall I liken to thee, O daughter of Jerusalem? What shall I equal to thee, that I may comfort thee, O virgin daughter of Zion? For thy breach is great like the sea; Who can heal thee?", + "Thy prophets have seen visions for thee Of vanity and delusion; And they have not uncovered thine iniquity, To bring back thy captivity; But have prophesied for thee burdens Of vanity and seduction.", + "All that pass by clap Their hands at thee; They hiss and wag their head At the daughter of Jerusalem: \u2018Is this the city that men called The perfection of beauty, The joy of the whole earth?\u2019 .", + "All thine enemies have opened Their mouth wide against thee; They hiss and gnash the teeth; They say: \u2018We have swallowed her up; Certainly this is the day that we looked for; We have found, we have seen it.\u2019", + "The LORD hath done that which He devised; He hath performed His word That He commanded in the days of old; He hath thrown down unsparingly; And He hath caused the enemy to rejoice over thee, He hath exalted the horn of thine adversaries.", + "Their heart cried unto the Lord: \u2018O wall of the daughter of Zion, Let tears run down like a river Day and night; Give thyself no respite; Let not the apple of thine eye cease.", + "Arise, cry out in the night, At the beginning of the watches; Pour out thy heart like water Before the face of the Lord; Lift up thy hands toward Him For the life of thy young children, That faint for hunger At the head of every street.\u2019", + "\u2019See, O LORD, and consider, To whom Thou hast done thus! Shall the women eat their fruit, The children that are dandled in the hands? Shall the priest and the prophet be slain In the sanctuary of the Lord?", + "The youth and the old man lie On the ground in the streets; My virgins and my young men Are fallen by the sword; Thou hast slain them in the day of Thine anger; Thou hast slaughtered unsparingly.", + "Thou hast called, as in the day of a solemn assembly, My terrors on every side, And there was none in the day of the LORD\u2019S anger That escaped or remained; Those that I have dandled and brought up Hath mine enemy consumed.\u2019" + ], + [ + "I am the man that hath seen affliction By the rod of His wrath.", + "He hath led me and caused me to walk in darkness and not in light.", + "Surely against me He turneth His hand again and again all the day.", + "My flesh and my skin hath He worn out; He hath broken my bones.", + "He hath builded against me, and compassed me With gall and travail.", + "He hath made me to dwell in dark places, As those that have been long dead. .", + "He hath hedged me about, that I cannot go forth; He hath made my chain heavy.", + "Yea, when I cry and call for help, He shutteth out my prayer.", + "He hath enclosed my ways with hewn stone, He hath made my paths crooked.", + "He is unto me as a bear lying in wait, As a lion in secret places.", + "He hath turned aside my ways, and pulled me in pieces; He hath made me desolate.", + "He hath bent His bow, and set me As a mark for the arrow.", + "He hath caused the arrows of His quiver To enter into my reins.", + "I am become a derision to all my people, And their song all the day.", + "He hath filled me with bitterness, He hath sated me with wormwood.", + "He hath also broken my teeth with gravel stones, He hath made me to wallow in ashes.", + "And my soul is removed far off from peace, I forgot prosperity.", + "And I said: \u2018My strength is perished, And mine expectation from the LORD.\u2019", + "Remember mine affliction and mine anguish, The wormwood and the gall.", + "My soul hath them still in remembrance, And is bowed down within me.", + "This I recall to my mind, Therefore have I hope.", + "Surely the LORD\u2019S mercies are not consumed, Surely His compassions fail not.", + "They are new every morning; Great is Thy faithfulness.", + "\u2019The LORD is my portion\u2019, saith my soul; \u2018Therefore will I hope in Him.\u2019", + "The LORD is good unto them that wait for Him, To the soul that seeketh Him.", + "It is good that a man should quietly wait For the salvation of the LORD.", + "It is good for a man that he bear The yoke in his youth.", + "Let him sit alone and keep silence, Because He hath laid it upon him.", + "Let him put his mouth in the dust, If so be there may be hope.", + "Let him give his cheek to him that smiteth him Let him be filled full with reproach.", + "For the Lord will not cast off For ever.", + "For though He cause grief, yet will He have compassion According to the multitude of His mercies.", + "For He doth not afflict willingly, Nor grieve the children of men.", + "To crush under foot All the prisoners of the earth,", + "To turn aside the right of a man Before the face of the Most High,", + "To subvert a man in his cause, The Lord approveth not.", + "Who is he that saith, and it cometh to pass, When the Lord commandeth it not?", + "Out of the mouth of the Most High proceedeth not Evil and good?", + "Wherefore doth a living man complain, A strong man because of his sins?", + "Let us search and try our ways, And return to the LORD.", + "Let us lift up our heart with our hands Unto God in the heavens.", + "We have transgressed and have rebelled; Thou hast not pardoned.", + "Thou hast covered with anger and pursued us; Thou hast slain unsparingly.", + "Thou hast covered Thyself with a cloud, So that no prayer can pass through.", + "Thou hast made us as the offscouring and refuse In the midst of the peoples.", + "All our enemies have opened their mouth Wide against us.", + "Terror and the pit are come upon us, Desolation and destruction.", + "Mine eye runneth down with rivers of water, For the breach of the daughter of my people.", + "Mine eye is poured out, and ceaseth not, Without any intermission,", + "Till the LORD look forth, And behold from heaven.", + "Mine eye affected my soul, Because of all the daughters of my city.", + "They have chased me sore like a bird, That are mine enemies without cause.", + "They have cut off my life in the dungeon, And have cast stones upon me.", + "Waters flowed over my head; I said: \u2018I am cut off.\u2019", + "I called upon Thy name, O LORD, Out of the lowest dungeon.", + "Thou heardest my voice; hide not Thine ear at my sighing, at my cry.", + "Thou drewest near in the day that I called upon Thee; Thou saidst: \u2018Fear not.\u2019 .", + "O Lord, Thou hast pleaded the causes of my soul; Thou hast redeemed my life.", + "O LORD, Thou hast seen my wrong; Judge Thou my cause.", + "Thou hast seen all their vengeance And all their devices against me.", + "Thou hast heard their taunt, O LORD, And all their devices against me;", + "The lips of those that rose up against me, And their muttering against me all the day.", + "Behold Thou their sitting down, and their rising up; I am their song.", + "Thou wilt render unto them a recompense, O LORD, According to the work of their hands.", + "Thou wilt give them hardness of heart, Thy curse unto them.", + "Thou wilt pursue them in anger, and destroy them From under the heavens of the LORD." + ], + [ + "How is the gold become dim! How is the most fine gold changed! The hallowed stones are poured out At the head of every street.", + "The precious sons of Zion, Comparable to fine gold, How are they esteemed as earthen pitchers, The work of the hands of the potter!", + "Even the jackals draw out the breast, They give suck to their young ones; The daughter of my people is become cruel, Like the ostriches in the wilderness.", + "The tongue of the sucking child cleaveth To the roof of his mouth for thirst; The young children ask bread, And none breaketh it unto them.", + "They that did feed on dainties Are desolate in the streets; They that were brought up in scarlet Embrace dunghills.", + "For the iniquity of the daughter of my people is greater Than the sin of Sodom, That was overthrown as in a moment, And no hands fell upon her.", + "Her princes were purer than snow, They were whiter than milk, They were more ruddy in body than rubies, Their polishing was as of sapphire;", + "Their visage is blacker than a coal; They are not known in the streets; Their skin is shrivelled upon their bones; It is withered, it is become like a stick.", + "They that are slain with the sword are better Than they that are slain with hunger; For these pine away, stricken through, For want of the fruits of the field.", + "The hands of women full of compassion Have sodden their own children; They were their food In the destruction of the daughter of my people.", + "The LORD hath accomplished His fury, He hath poured out His fierce anger; And He hath kindled a fire in Zion, Which hath devoured the foundations thereof.", + "The kings of the earth believed not, Neither all the inhabitants of the world, That the adversary and the enemy would enter Into the gates of Jerusalem.", + "It is because of the sins of her prophets, And the iniquities of her priests, That have shed the blood of the just In the midst of her.", + "They wander as blind men in the streets, They are polluted with blood, So that men cannot Touch their garments.", + "\u2019Depart ye! unclean! \u2019 men cried unto them, \u2018Depart, depart, touch not\u2019; Yea, they fled away and wandered; Men said among the nations: \u2018They shall no more sojourn here.\u2019", + "The anger of the LORD hath divided them; He will no more regard them; They respected not the persons of the priests, They were not gracious unto the elders.", + "As for us, our eyes do yet fail For our vain help; In our watching we have watched For a nation that could not save.", + "They hunt our steps, That we cannot go in our broad places; Our end is near, our days are fulfilled; For our end is come.", + "Our pursuers were swifter Than the eagles of the heaven; They chased us upon the mountains, They lay in wait for us in the wilderness.", + "The breath of our nostrils, the anointed of the LORD, Was taken in their pits; Of whom we said: \u2018Under his shadow We shall live among the nations.\u2019", + "Rejoice and be glad, O daughter of Edom, That dwellest in the land of Uz: The cup shall pass over unto thee also; Thou shalt be drunken, and shalt make thyself naked.", + "The punishment of thine iniquity is accomplished, O daughter of Zion, He will no more carry thee away into captivity; He will punish thine iniquity, O daughter of Edom, He will uncover thy sins." + ], + [ + "Remember, O LORD, what is come upon us; Behold, and see our reproach.", + "Our inheritance is turned unto strangers, Our houses unto aliens.", + "We are become orphans and fatherless, Our mothers are as widows.", + "We have drunk our water for money; Our wood cometh to us for price.", + "To our very necks we are pursued; We labour, and have no rest.", + "We have given the hand to Egypt, And to Assyria, to have bread enough;", + "Our fathers have sinned, and are not; And we have borne their iniquities.", + "Servants rule over us; There is none to deliver us out of their hand.", + "We get our bread with the peril of our lives Because of the sword of the wilderness.", + "Our skin is hot like an oven Because of the burning heat of famine.", + "They have ravished the women in Zion, The maidens in the cities of Judah.", + "Princes are hanged up by their hand; The faces of elders are not honoured.", + "The young men have borne the mill, And the children have stumbled under the wood.", + "The elders have ceased from the gate, The young men from their music.", + "The joy of our heart is ceased; Our dance is turned into mourning.", + "The crown is fallen from our head; Woe unto us! for we have sinned.", + "For this our heart is faint, For these things our eyes are dim;", + "For the mountain of Zion, which is desolate, The foxes walk upon it.", + "Thou, O LORD, art enthroned for ever, Thy throne is from generation to generation.", + "Wherefore dost Thou forget us for ever, And forsake us so long time?", + "Turn Thou us unto Thee, O LORD, and we shall be turned; Renew our days as of old.", + "Thou canst not have utterly rejected us, And be exceeding wroth against us! Turn us unto Thee, O Lord, and we shall be turned; Renew our days as of old." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Micah.json b/data/torah/translation/Micah.json new file mode 100644 index 000000000..b3bb8eef9 --- /dev/null +++ b/data/torah/translation/Micah.json @@ -0,0 +1,145 @@ +{ + "language": "en", + "title": "Micah", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/", + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "status": "locked", + "priority": 1.0, + "license": "Public Domain", + "versionNotes": "This 1917 translation by the Jewish Publication Society is in the public domain. JPS graciously shared digital images of this text with the Open Siddur Project, from which the text was imported by Sefaria.", + "versionTitleInHebrew": "כתבי הקודש: תרגום חדש (1917 JPS)", + "versionNotesInHebrew": "תרגום JPS 1917 קיים בנחלת הכלל. הסריקות באדיבות JPS. שעתוק הטקסט תודות לפרויקט Open Siddur, משם יובא הטקסט למאגר ספריא", + "shortVersionTitle": "JPS 1917", + "actualLanguage": "en", + "isBaseText": false, + "heTitle": "מיכה", + "categories": [ + "Tanakh", + "Prophets" + ], + "text": [ + [ + "The word of the LORD that came to Micah the Morashtite in the days of Jotham, Ahaz, and Hezekiah, kings of Judah, which he saw concerning Samaria and Jerusalem.", + "Hear, ye peoples, all of you; Hearken, O earth, and all that therein is; And let the Lord GOD be witness against you, The Lord from His holy temple.", + "For, behold, the LORD cometh forth out of His place, And will come down, and tread upon the high places of the earth.", + "And the mountains shall be molten under Him, And the valleys shall be cleft, As wax before the fire, As waters that are poured down a steep place.", + "For the transgression of Jacob is all this, And for the sins of the house of Israel. What is the transgression of Jacob? Is it not Samaria? And what are the high places of Judah? are they not Jerusalem?", + "Therefore I will make Samaria a heap in the field, A place for the planting of vineyards; And I will pour down the stones thereof into the valley, And I will uncover the foundations thereof.", + "And all her graven images shall be beaten to pieces, And all her hires shall be burned with fire, And all her idols will I lay desolate; For of the hire of a harlot hath she gathered them, And unto the hire of a harlot shall they return.", + "For this will I wail and howl, I will go stripped and naked; I will make a wailing like the jackals, And a mourning like the ostriches.", + "For her wound is incurable; For it is come even unto Judah; It reacheth unto the gate of my people, even to Jerusalem.", + "Tell it not in Gath, Weep not at all; At Beth-le-aphrah roll thyself in the dust.", + "Pass ye away, O inhabitant of Saphir, in nakedness and shame; The inhabitant of Zaanan is not come forth; The wailing of Beth-ezel shall take from you the standing-place thereof.", + "For the inhabitant of Maroth waiteth anxiously for good; Because evil is come down from the LORD unto the gate of Jerusalem.", + "Bind the chariots to the swift steeds, O inhabitant of Lachish; She was the beginning of sin to the daughter of Zion; For the transgressions of Israel are found in thee.", + "Therefore shalt thou give a parting gift to Moresheth-gath; The houses of Achzib shall be a deceitful thing unto the kings of Israel.", + "I will yet bring unto thee, O inhabitant of Mareshah, him that shall possess thee; The glory of Israel shall come even unto Adullam.", + "Make thee bald, and poll thee for the children of thy delight; Enlarge thy baldness as the vulture; For they are gone into captivity from thee." + ], + [ + "Woe to them that devise iniquity And work evil upon their beds! When the morning is light, they execute it, Because it is in the power of their hand.", + "And they covet fields, and seize them; And houses, and take them away; Thus they oppress a man and his house, Even a man and his heritage.", + "Therefore thus saith the LORD: Behold, against this family do I devise an evil, From which ye shall not remove your necks, Neither shall ye walk upright; for it shall be an evil time.", + "In that day shall they take up a parable against you, And lament with a doleful lamentation, and say: ‘We are utterly ruined; He changeth the portion of my people; How doth he remove it from me! Instead of restoring our fields, he divideth them.’", + "Therefore thou shalt have none that shall cast the line by lot In the congregation of the LORD.", + "’Preach ye not’, they preach; ‘They shall not preach of these things, That they shall not take shame.’", + "Do I change, O house of Jacob? Is the spirit of the LORD straitened? Are these His doings? Do not My words do good to him that walketh uprightly?", + "But of late My people is risen up as an enemy; With the garment ye strip also the mantle From them that pass by securely, so that they are as men returning from war.", + "The women of My people ye cast out from their pleasant houses; From their young children ye take away My glory for ever.", + "Arise ye, and depart; for this is not your resting-place; Because of the uncleanness thereof, it shall destroy you, even with a sore destruction.", + "If a man walking in wind and falsehood do lie: ‘I will preach unto thee of wine and of strong drink’; He shall even be the preacher of this people.", + "I will surely assemble, O Jacob, all of thee; I will surely gather the remnant of Israel; I will render them all as sheep in a fold; As a flock in the midst of their pasture; They shall make great noise by reason of the multitude of men.", + "The breaker is gone up before them; They have broken forth and passed on, By the gate, and are gone out thereat; And their king is passed on before them, And the LORD at the head of them." + ], + [ + "And I said: Hear, I pray you, ye heads of Jacob, and rulers of the house of Israel: Is it not for you to know justice?", + "Who hate the good, and love the evil; who rob their skin from off them, and their flesh from off their bones;", + "Who also eat the flesh of my people, and flay their skin from off them, and break their bones; yea, they chop them in pieces, as that which is in the pot, and as flesh within the caldron.", + "Then shall they cry unto the LORD, But He will not answer them; yea, He will hide His face from them at that time, According as they have wrought evil in their doings.", + "Thus saith the LORD concerning the prophets that make my people to err; that cry: ‘Peace’, when their teeth have any thing to bite; and whoso putteth not into their mouths, they even prepare war against him:", + "Therefore it shall be night unto you, that ye shall have no vision; and it shall be dark unto you, that ye shall not divine; and the sun shall go down upon the prophets, and the day shall be black over them.", + "And the seers shall be put to shame, and the diviners confounded; yea, they shall all cover their upper lips; for there shall be no answer of God.", + "But I truly am full of power by the spirit of the LORD, and of justice, and of might, to declare unto Jacob his transgression, and to Israel his sin.", + "Hear this, I pray you, ye heads of the house of Jacob, and rulers of the house of Israel, that abhor justice, and pervert all equity;", + "That build up Zion with blood, and Jerusalem with iniquity.", + "The heads thereof judge for reward, and the priests thereof teach for hire, and the prophets thereof divine for money; yet will they lean upon the LORD, and say: ‘Is not the LORD in the midst of us? No evil shall come upon us’?", + "Therefore shall Zion for your sake be plowed as a field, and Jerusalem shall become heaps, and the mountain of the house as the high places of a forest." + ], + [ + "But in the end of days it shall come to pass, That the mountain of the LORD’S house shall be established as the top of the mountains, And it shall be exalted above the hills; And peoples shall flow unto it.", + "And many nations shall go and say: ‘Come ye, and let us go up to the mountain of the LORD, And to the house of the God of Jacob; And He will teach us of His ways, And we will walk in His paths’; For out of Zion shall go forth the law, And the word of the LORD from Jerusalem.", + "And He shall judge between many peoples, And shall decide concerning mighty nations afar off; And they shall beat their swords into plowshares, And their spears into pruninghooks; Nation shall not lift up sword against nation, Neither shall they learn war any more.", + "But they shall sit every man under his vine and under his fig-tree; And none shall make them afraid; For the mouth of the LORD of hosts hath spoken.", + "For let all the peoples walk each one in the name of its god, But we will walk in the name of the LORD our God for ever and ever.", + "In that day, saith the LORD, will I assemble her that halteth, And I will gather her that is driven away, And her that I have afflicted;", + "And I will make her that halted a remnant, And her that was cast far off a mighty nation; And the LORD shall reign over them in mount Zion from thenceforth even for ever.", + "And thou, Migdal-eder, the hill of the daughter of Zion, Unto thee shall it come; Yea, the former dominion shall come, The kingdom of the daughter of Jerusalem.", + "Now why dost thou cry out aloud? Is there no King in thee, Is thy Counsellor perished, That pangs have taken hold of thee as of a woman in travail?", + "Be in pain, and labour to bring forth, O daughter of Zion, Like a woman in travail; For now shalt thou go forth out of the city, And shalt dwell in the field, And shalt come even unto Babylon; There shalt thou be rescued; There shall the LORD redeem thee from the hand of thine enemies.", + "And now many nations are assembled against thee, That say: ‘Let her be defiled, and let our eye gaze upon Zion.’", + "But they know not the thoughts of the LORD, Neither understand they His counsel; For He hath gathered them as the sheaves to the threshing-floor.", + "Arise and thresh, O daughter of Zion; For I will make thy horn iron, And I will make thy hoofs brass; And thou shalt beat in pieces many peoples; And thou shalt devote their gain unto the LORD, And their substance unto the Lord of the whole earth.", + "Now shalt thou gather thyself in troops, O daughter of troops; They have laid siege against us; They smite the judge of Israel with a rod upon the cheek." + ], + [ + "But thou, Beth-lehem Ephrathah, Which art little to be among the thousands of Judah, Out of thee shall one come forth unto Me that is to be ruler in Israel; Whose goings forth are from of old, from ancient days.", + "Therefore will He give them up, Until the time that she who travaileth hath brought forth; Then the residue of his brethren shall return with the children of Israel.", + "And he shall stand, and shall feed his flock in the strength of the LORD, In the majesty of the name of the LORD his God; And they shall abide, for then shall he be great unto the ends of the earth.", + "And this shall be peace: When the Assyrian shall come into our land, And when he shall tread in our palaces, Then shall we raise against him seven shepherds, And eight princes among men.", + "And they shall waste the land of Assyria with the sword, And the land of Nimrod with the keen-edged sword; And he shall deliver us from the Assyrian, when he cometh into our land, And when he treadeth within our border.", + "And the remnant of Jacob shall be in the midst of many peoples, As dew from the LORD, as showers upon the grass, That are not looked for from man, Nor awaited at the hands of the sons of men.", + "And the remnant of Jacob shall be among the nations, in the midst of many peoples, As a lion among the beasts of the forest, As a young lion among the flocks of sheep, Who, if he go through, treadeth down and teareth in pieces, And there is none to deliver.", + "Let Thy hand be lifted up above Thine adversaries, And let all Thine enemies be cut off. .", + "And it shall come to pass in that day, saith the LORD, That I will cut off thy horses out of the midst of thee, And will destroy thy chariots;", + "And I will cut off the cities of thy land, And will throw down all thy strongholds;", + "And I will cut off witchcrafts out of thy hand; And thou shalt have no more soothsayers;", + "And I will cut off thy graven images and thy pillars out of the midst of thee; And thou shalt no more worship the work of thy hands.", + "And I will pluck up thy Asherim out of the midst of thee; And I will destroy thine enemies.", + "And I will execute vengeance in anger and fury upon the nations, Because they hearkened not." + ], + [ + "Hear ye now what the LORD saith: Arise, contend thou before the mountains, And let the hills hear thy voice.", + "Hear, O ye mountains, the LORD’S controversy, And ye enduring rocks, the foundations of the earth; For the LORD hath a controversy with His people, And He will plead with Israel.", + "O My people, what have I done unto thee? And wherein have I wearied thee? Testify against Me.", + "For I brought thee up out of the land of Egypt, And redeemed thee out of the house of bondage, And I sent before thee Moses, Aaron, and Miriam.", + "O My people, remember now what Balak king of Moab devised, And what Balaam the son of Beor answered him; From Shittim unto Gilgal, That ye may know the righteous acts of the LORD.", + "’Wherewith shall I come before the LORD, And bow myself before God on high? Shall I come before Him with burnt-offerings, With calves of a year old?", + "Will the LORD be pleased with thousands of rams, With ten thousands of rivers of oil? Shall I give my first-born for my transgression, The fruit of my body for the sin of my soul?’", + "It hath been told thee, O man, what is good, And what the LORD doth require of thee: Only to do justly, and to love mercy, and to walk humbly with thy God.", + "Hark! the LORD crieth unto the city— And it is wisdom to have regard for Thy name— Hear ye the rod, and who hath appointed it.", + "Are there yet the treasures of wickedness in the house of the wicked, And the scant measure that is abominable?", + "’Shall I be pure with wicked balances, And with a bag of deceitful weights?’", + "For the rich men thereof are full of violence, And the inhabitants thereof have spoken lies, And their tongue is deceitful in their mouth.", + "Therefore I also do smite thee with a grievous wound; I do make thee desolate because of thy sins.", + "Thou shalt eat, but not be satisfied; And thy sickness shall be in thine inward parts; And thou shalt conceive, but shalt not bring forth; And whomsoever thou bringest forth will I give up to the sword.", + "Thou shalt sow, but shalt not reap; Thou shalt tread the olives, but shalt not anoint thee with oil; And the vintage, but shalt not drink wine.", + "For the statutes of Omri are kept, And all the works of the house of Ahab, And ye walk in their counsels; That I may make thee an astonishment, And the inhabitants thereof a hissing; And ye shall bear the reproach of My people." + ], + [ + "Woe is me! for I am as the last of the summer fruits, As the grape gleanings of the vintage; There is no cluster to eat; Nor first-ripe fig which my soul desireth.", + "The godly man is perished out of the earth, And the upright among men is no more; They all lie in wait for blood; They hunt every man his brother with a net.", + "Their hands are upon that which is evil to do it diligently; The prince asketh, and the judge is ready for a reward; And the great man, he uttereth the evil desire of his soul; Thus they weave it together.", + "The best of them is as a brier; The most upright is worse than a thorn hedge; The day of thy watchmen, even thy visitation, is come; Now shall be their perplexity.", + "Trust ye not in a friend, Put ye not confidence in a familiar friend; Keep the doors of thy mouth from her that lieth in thy bosom. .", + "For the son dishonoureth the father, The daughter riseth up against her mother, The daughter-in-law against her mother-in-law; A man’s enemies are the men of his own house.", + "’But as for me, I will look unto the LORD; I will wait for the God of my salvation; My God will hear me.", + "Rejoice not against me, O mine enemy; Though I am fallen, I shall arise; Though I sit in darkness, the LORD is a light unto me.", + "I will bear the indignation of the LORD, Because I have sinned against Him; Until He plead my cause, and execute judgment for me; He will bring me forth to the light, And I shall behold His righteousness.", + "Then mine enemy shall see it, and shame shall cover her; Who said unto me: Where is the LORD thy God? Mine eyes shall gaze upon her; Now shall she be trodden down as the mire of the streets.’", + "’The day for building thy walls, even that day, shall be far removed.’", + "There shall be a day when they shall come unto thee, From Assyria even to the cities of Egypt, And from Egypt even to the River, And from sea to sea, and from mountain to mountain.", + "And the land shall be desolate for them that dwell therein, Because of the fruit of their doings.", + "Tend Thy people with Thy staff, the flock of Thy heritage, That dwell solitarily, as a forest in the midst of the fruitful field; Let them feed in Bashan and Gilead, as in the days of old.", + "’As in the days of thy coming forth out of the land of Egypt Will I show unto him marvellous things.’", + "The nations shall see and be put to shame for all their might; They shall lay their hand upon their mouth, Their ears shall be deaf.", + "They shall lick the dust like a serpent; Like crawling things of the earth they shall come trembling out of their close places; They shall come with fear unto the LORD our God, And shall be afraid because of Thee.", + "Who is a God like unto Thee, that pardoneth the iniquity, And passeth by the transgression of the remnant of His heritage? He retaineth not His anger for ever, Because He delighteth in mercy. .", + "He will again have compassion upon us; He will subdue our iniquities; And Thou wilt cast all their sins into the depths of the sea.", + "Thou wilt show faithfulness to Jacob, mercy to Abraham, As Thou hast sworn unto our fathers from the days of old." + ] + ], + "sectionNames": [ + "Chapter", + "Verse" + ] +} \ No newline at end of file diff --git a/data/torah/translation/Ruth.json b/data/torah/translation/Ruth.json new file mode 100644 index 000000000..0fcafcad9 --- /dev/null +++ b/data/torah/translation/Ruth.json @@ -0,0 +1,100 @@ +{ + "text": [ + [ + "AND IT came to pass in the days when the judges judged, that there was a famine in the land. And a certain man of Beth-lehem in Judah went to sojourn in the field of Moab, he, and his wife, and his two sons.", + "And the name of the man was Elimelech, and the name of his wife Naomi, and the name of his two sons Mahlon and Chilion, Ephrathites of Beth-lehem in Judah. And they came into the field of Moab, and continued there.", + "And Elimelech Naomi\u2019s husband died; and she was left, and her two sons.", + "And they took them wives of the women of Moab: the name of the one was Orpah, and the name of the other Ruth; and they dwelt there about ten years.", + "And Mahlon and Chilion died both of them; and the woman was left of her two children and of her husband.", + "Then she arose with her daughters-in-law, that she might return from the field of Moab; for she had heard in the field of Moab how that the LORD had remembered His people in giving them bread.", + "And she went forth out of the place where she was, and her two daughters-in-law with her; and they went on the way to return unto the land of Judah.", + "And Naomi said unto her two daughters-in-law: \u2018Go, return each of you to her mother\u2019s house; the LORD deal kindly with you, as ye have dealt with the dead, and with me.", + "TheLORD grant you that ye may find rest, each of you in the house of her husband.\u2019 Then she kissed them; and they lifted up their voice, and wept.", + "And they said unto her: \u2018Nay, but we will return with thee unto thy people.\u2019", + "And Naomi said: \u2018Turn back, my daughters; why will ye go with me? have I yet sons in my womb, that they may be your husbands?", + "Turn back, my daughters, go your way; for I am too old to have a husband. If I should say: I have hope, should I even have an husband to-night, and also bear sons;", + "would ye tarry for them till they were grown? would ye shut yourselves off for them and have no husbands? nay, my daughters; for it grieveth me much for your sakes, for the hand of the LORD is gone forth against me.\u2019", + "And they lifted up their voice, and wept again; and Orpah kissed her mother-in-law; but Ruth cleaved unto her.", + "And she said: \u2018Behold, thy sister-in-law is gone back unto her people, and unto her god; return thou after thy sister-in-law.\u2019", + "And Ruth said: \u2018Entreat me not to leave thee, and to return from following after thee; for whither thou goest, I will go; and where thou lodgest, I will lodge; thy people shall be my people, and thy God my God;", + "where thou diest, will I die, and there will I be buried; the LORD do so to me,and more also, if aught but death part thee and me.\u2019", + "And when she saw that she was stedfastly minded to go with her, she left off speaking unto her.", + "So they two went until they came to Beth-lehem. And it came to pass, when they were come to Beth-lehem, that all the city was astir concerning them, and the women said: \u2018Is this Naomi?\u2019", + "And she said unto them: \u2018Call me not Naomi, call me Marah; for the Almighty hath dealt very bitterly with me.", + "I went out full, and the LORD hath brought me back home empty; why call ye me Naomi, seeing the LORD hath testified against me, and the Almighty hath afflicted me?\u2019", + "So Naomi returned, and Ruth the Moabitess, her daughter-in-law, with her, who returned out of the field of Moab\u2014and they came to Beth-lehem in the beginning of barley harvest." + ], + [ + "And Naomi had a kinsman of her husband\u2019s, a mighty man of valour, of the family of Elimelech, and his name was Boaz.", + "And Ruth the Moabitess said unto Naomi: \u2018Let me now go to the field, and glean among the ears of corn after him in whose sight I shall find favour.\u2019 And she said unto her: \u2018Go, my daughter.\u2019", + "And she went, and came and gleaned in the field after the reapers; and her hap was to light on the portion of the field belonging unto Boaz, who was of the family of Elimelech.", + "And, behold, Boaz came from Beth-lehem, and said unto the reapers: \u2018The LORD be with you.\u2019 And they answered him: \u2018The LORD bless thee.\u2019", + "Then said Boaz unto his servant that was set over the reapers: \u2018Whose damsel is this?\u2019", + "And the servant that was set over the reapers answered and said: \u2018It is a Moabitish damsel that came back with Naomi out of the field of Moab;", + "and she said: Let me glean, I pray you, and gather after the reapers among the sheaves; so she came, and hath continued even from the morning until now, save that she tarried a little in the house.\u2019", + "Then said Boaz unto Ruth: \u2018Hearest thou not, my daughter? Go not to glean in another field, neither pass from hence, but abide here fast by my maidens.", + "Let thine eyes be on the field that they do reap, and go thou after them; have I not charged the young men that they shall not touch thee? and when thou art athirst, go unto the vessels, and drink of that which the young men have drawn.\u2019", + "Then she fell on her face, and bowed down to the ground, and said unto him: \u2018Why have I found favour in thy sight, that thou shouldest take cognizance of me, seeing I am a foreigner?\u2019", + "And Boaz answered and said unto her: \u2018It hath fully been told me, all that thou hast done unto thy mother-in-law since the death of thy husband; and how thou hast left thy father and thy mother, and the land of thy nativity, and art come unto a people that thou knewest not heretofore.", + "The LORD recompense thy work, and be thy reward complete from the LORD, the God of Israel, under whose wings thou art come to take refuge.\u2019", + "Then she said: \u2018Let me find favour in thy sight, my LORD; for that thou hast comforted me, and for that thou hast spoken to the heart of thy handmaid, though I be not as one of thy handmaidens.\u2019", + "And Boaz said unto her at meal-time: \u2018Come hither, and eat of the bread, and dip thy morsel in the vinegar.\u2019 And she sat beside the reapers; and they reached her parched corn, and she did eat and was satisfied, and left thereof.", + "And when she was risen up to glean, Boaz commanded his young men, saying: \u2018Let her glean even among the sheaves, and put her not to shame.", + "And also pull out some for her of purpose from the bundles, and leave it, and let her glean, and rebuke her not.\u2019", + "So she gleaned in the field until even; and she beat out that which she had gleaned, and it was about an ephah of barley.", + "And she took it up, and went into the city; and her mother-in-law saw what she had gleaned; and she brought forth and gave to her that which she had left after she was satisfied.", + "And her mother-in-law said unto her: \u2018Where hast thou gleaned to-day? and where wroughtest thou? blessed be he that did take knowledge of thee.\u2019 And she told her mother-in-law with whom she had wrought, and said: \u2018The man\u2019s name with whom I wrought to-day is Boaz.\u2019", + "And Naomi said unto her daughter-in-law: \u2018Blessed be he of the LORD, who hath not left off His kindness to the living and to the dead.\u2019 And Naomi said unto her: \u2018The man is nigh of kin unto us, one of our near kinsmen.\u2019", + "And Ruth the Moabitess said: \u2018Yea, he said unto me: Thou shalt keep fast by my young men, until they have ended all my harvest.\u2019", + "And Naomi said unto Ruth her daughter-in-law: \u2018It is good, my daughter, that thou go out with his maidens, and that thou be not met in any other field.\u2019", + "So she kept fast by the maidens of Boaz to glean unto the end of barley harvest and of wheat harvest; and she dwelt with her mother-in-law." + ], + [ + "And Naomi her mother-in-law said unto her: \u2018My daughter, shall I not seek rest for thee, that it may be well with thee?", + "And now is there not Boaz our kinsman, with whose maidens thou wast? Behold, he winnoweth barley to-night in the threshing-floor.", + "Wash thyself therefore, and anoint thee, and put thy raiment upon thee, and get thee down to the threshing-floor; but make not thyself known unto the man, until he shall have done eating and drinking.", + "And it shall be, when he lieth down, that thou shalt mark the place where he shall lie, and thou shalt go in, and uncover his feet, and lay thee down; and he will tell thee what thou shalt do.\u2019", + "And she said unto her: \u2018All that thou sayest unto me I will do.\u2019", + "And she went down unto the threshing-floor, and did according to all that her mother-in-law bade her.", + "And when Boaz had eaten and drunk, and his heart was merry, he went to lie down at the end of the heap of corn; and she came softly, and uncovered his feet, and laid her down.", + "And it came to pass at midnight, that the man was startled, and turned himself; and, behold, a woman lay at his feet.", + "And he said: \u2018Who art thou?\u2019 And she answered: \u2018I am Ruth thine handmaid; spread therefore thy skirt over thy handmaid; for thou art a near kinsman.\u2019", + "And he said: \u2018Blessed be thou of the LORD, my daughter; thou hast shown more kindness in the end than at the beginning, inasmuch as thou didst not follow the young men, whether poor or rich.", + "And now, my daughter, fear not; I will do to thee all that thou sayest; for all the men in the gate of my people do know that thou art a virtuous woman.", + "And now it is true that I am a near kinsman; howbeit there is a kinsman nearer than I.", + "Tarry this night, and it shall be in the morning, that if he will perform unto thee the part of a kinsman, well; let him do the kinsman\u2019s part; but if he be not willing to do the part of a kinsman to thee, then will I do the part of a kinsman to thee, as the LORD liveth; lie down until the morning.\u2019", + "And she lay at his feet until the morning; and she rose up before one could discern another. For he said: \u2018Let it not be known that the woman came to the threshing-floor.\u2019", + "And he said: \u2018Bring the mantle that is upon thee, and hold it\u2019; and she held it; and he measured six measures of barley, and laid it on her; and he went into the city.", + "And when she came to her mother-in-law, she said: \u2018Who art thou, my daughter?\u2019 And she told her all that the man had done to her.", + "And she said: \u2018These six measures of barley gave he me; for he said to me: Go not empty unto thy mother-in-law.\u2019", + "Then said she: \u2018Sit still, my daughter, until thou know how the matter will fall; for the man will not rest, until he have finished the thing this day.\u2019" + ], + [ + "Now Boaz went up to the gate, and sat him down there; and, behold, the near kinsman of whom Boaz spoke came by; unto whom he said: \u2018Ho, such a one! turn aside, sit down here.\u2019 And he turned aside, and sat down.", + "And he took ten men of the elders of the city, and said: \u2018Sit ye down here.\u2019 And they sat down.", + "And he said unto the near kinsman: \u2018Naomi, that is come back out of the field of Moab, selleth the parcel of land, which was our brother Elimelech\u2019s;", + "and I thought to disclose it unto thee, saying: Buy it before them that sit here, and before the elders of my people. If thou wilt redeem it, redeem it; but if it will not be redeemed, then tell me, that I may know; for there is none to redeem it beside thee; and I am after thee.\u2019 And he said: \u2018I will redeem it.\u2019", + "Then said Boaz: \u2018What day thou buyest the field of the hand of Naomi\u2014hast thou also bought of Ruth the Moabitess, the wife of the dead, to raise up the name of the dead upon his inheritance?\u2019", + "And the near kinsman said: \u2018I cannot redeem it for myself, lest I mar mine own inheritance; take thou my right of redemption on thee; for I cannot redeem it.\u2019\u2014", + "Now this was the custom in former time in Israel concerning redeeming and concerning exchanging, to confirm all things: a man drew off his shoe, and gave it to his neighbour; and this was the attestation in Israel.\u2014", + "So the near kinsman said unto Boaz: \u2018Buy it for thyself.\u2019 And he drew off his shoe.", + "And Boaz said unto the elders, and unto all the people: \u2018Ye are witnesses this day, that I have bought all that was Elimelech\u2019s, and all that was Chilion\u2019s and Mahlon\u2019s, of the hand of Naomi.", + "Moreover Ruth the Moabitess, the wife of Mahlon, have I acquired to be my wife, to raise up the name of the dead upon his inheritance, that the name of the dead be not cut off from among his brethren, and from the gate of his place; ye are witnesses this day.\u2019", + "And all the people that were in the gate, and the elders, said: \u2018We are witnesses. The LORD make the woman that is come into thy house like Rachel and like Leah, which two did build the house of Israel; and do thou worthily in Ephrath, and be famous in Beth-lehem;", + "and let thy house be like the house of Perez, whom Tamar bore unto Judah, of the seed which the LORD shall give thee of this young woman.\u2019", + "So Boaz took Ruth, and she became his wife; and he went in unto her, and the LORD gave her conception, and she bore a son.", + "And the women said unto Naomi: \u2018Blessed be the LORD, who hath not left thee this day without a near kinsman, and let his name be famous in Israel.", + "And he shall be unto thee a restorer of life, and a nourisher of thine old age; for thy daughter-in-law, who loveth thee, who is better to thee than seven sons, hath borne him.\u2019", + "And Naomi took the child, and laid it in her bosom, and became nurse unto it.", + "And the women her neighbours gave it a name, saying: \u2018There is a son born to Naomi\u2019; and they called his name Obed; he is the father of Jesse, the father of David.", + "Now these are the generations of Perez: Perez begot Hezron;", + "and Hezron begot Ram, and Ram begot Amminadab;", + "and Amminadab begot Nahshon, and Nahshon begot Salmon;", + "and Salmon begot Boaz, and Boaz begot Obed;", + "and Obed begot Jesse, and Jesse begot David." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/torah/translation/Song of Songs.json b/data/torah/translation/Song of Songs.json new file mode 100644 index 000000000..12b74e028 --- /dev/null +++ b/data/torah/translation/Song of Songs.json @@ -0,0 +1,140 @@ +{ + "text": [ + [ + "THE song of songs, which is Solomon\u2019s.", + "Let him kiss me with the kisses of his mouth\u2014 For thy love is better than wine.", + "Thine ointments have a goodly fragrance; Thy name is as ointment poured forth; Therefore do the maidens love thee.", + "Draw me, we will run after thee; The king hath brought me into his chambers; We will be glad and rejoice in thee, We will find thy love more fragrant than wine! Sincerely do they love thee.", + "\u2019I am black, but comely, O ye daughters of Jerusalem, As the tents of Kedar, As the curtains of Solomon.", + "Look not upon me, that I am swarthy, That the sun hath tanned me; My mother\u2019s sons were incensed against me, They made me keeper of the vineyards; But mine own vineyard have I not kept.\u2019", + "Tell me, O thou whom my soul loveth, Where thou feedest, where thou makest thy flock to rest at noon; For why should I be as one that veileth herself Beside the flocks of thy companions?", + "If thou know not, O thou fairest among women, Go thy way forth by the footsteps of the flock And feed thy kids, beside the shepherds\u2019tents.", + "I have compared thee, O my love, To a steed in Pharaoh\u2019s chariots.", + "Thy cheeks are comely with circlets, Thy neck with beads.", + "We will make thee circlets of gold With studs of silver.", + "While the king sat at his table, My spikenard sent forth its fragrance.", + "My beloved is unto me as a bag of myrrh, That lieth betwixt my breasts.", + "My beloved is unto me as a cluster of henna In the vineyards of En-gedi.", + "Behold, thou art fair, my love; behold, thou art fair; Thine eyes are as doves. .", + "Behold, thou art fair, my beloved, yea, pleasant; Also our couch is leafy.", + "The beams of our houses are cedars, And our panels are cypresses." + ], + [ + "I am a rose of Sharon, A lily of the valleys.", + "As a lily among thorns, So is my love among the daughters.", + "As an apple-tree among the trees of the wood, So is my beloved among the sons. Under its shadow I delighted to sit, And its fruit was sweet to my taste.", + "He hath brought me to the banqueting-house, And his banner over me is love.", + "\u2019Stay ye me with dainties, refresh me with apples; For I am love-sick.\u2019", + "Let his left hand be under my head, And his right hand embrace me.", + "\u2019I adjure you, O daughters of Jerusalem, By the gazelles, and by the hinds of the field, That ye awaken not, nor stir up love, until it please.\u2019", + "Hark! my beloved! behold, he cometh, Leaping upon the mountains, skipping upon the hills.", + "My beloved is like a gazelle or a young hart; Behold, he standeth behind our wall, He looketh in through the windows, He peereth through the lattice.", + "My beloved spoke, and said unto me: \u2018Rise up, my love, my fair one, and come away.", + "For, lo, the winter is past, The rain is over and gone;", + "The flowers appear on the earth; The time of singing is come, And the voice of the turtle is heard in our land;", + "The fig-tree putteth forth her green figs, And the vines in blossom give forth their fragrance. Arise, my love, my fair one, and come away.", + "O my dove, that art in the clefts of the rock, in the covert of the cliff, Let me see thy countenance, let me hear thy voice; For sweet is thy voice, and thy countenance is comely.\u2019", + "\u2019Take us the foxes, the little foxes, that spoil the vineyards; For our vineyards are in blossom.\u2019", + "My beloved is mine, and I am his, That feedeth among the lilies.", + "Until the day breathe, and the shadows flee away, Turn, my beloved, and be thou like a gazelle or a young hart Upon the mountains of spices." + ], + [ + "By night on my bed I sought him whom my soul loveth; I sought him, but I found him not.", + "\u2019I will rise now, and go about the city, In the streets and in the broad ways, I will seek him whom my soul loveth.\u2019 I sought him, but I found him not.", + "The watchmen that go about the city found me: \u2018Saw ye him whom my soul loveth?\u2019", + "Scarce had I passed from them, When I found him whom my soul loveth: I held him, and would not let him go, Until I had brought him into my mother\u2019s house, And into the chamber of her that conceived me.", + "\u2019I adjure you, O daughters of Jerusalem, By the gazelles, and by the hinds of the field, That ye awaken not, nor stir up love, Until it please.\u2019", + "Who is this that cometh up out of the wilderness Like pillars of smoke, Perfumed with myrrh and frankincense, With all powders of the merchant?", + "Behold, it is the litter of Solomon; Threescore mighty men are about it, Of the mighty men of Israel.", + "They all handle the sword, And are expert in war; Every man hath his sword upon his thigh, Because of dread in the night.", + "King Solomon made himself a palanquin Of the wood of Lebanon.", + "He made the pillars thereof of silver, The top thereof of gold, The seat of it of purple, The inside thereof being inlaid with love, From the daughters of Jerusalem.", + "Go forth, O ye daughters of Zion, And gaze upon king Solomon, Even upon the crown wherewith his mother hath crowned him in the day of his espousals, And in the day of the gladness of his heart." + ], + [ + "Behold, thou art fair, my love; behold, thou art fair; Thine eyes are as doves behind thy veil; Thy hair is as a flock of goats, that trail down from mount Gilead.", + "Thy teeth are like a flock of ewes all shaped alike, Which are come up from the washing; Whereof all are paired, and none faileth among them.", + "Thy lips are like a thread of scarlet, And thy mouth is comely; Thy temples are like a pomegranate split open Behind thy veil.", + "Thy neck is like the tower of David Builded with turrets, Whereon there hang a thousand shields, All the armour of the mighty men.", + "Thy two breasts are like two fawns That are twins of a gazelle, Which feed among the lilies.", + "Until the day breathe, And the shadows flee away, I will get me to the mountain of myrrh, And to the hill of frankincense.", + "Thou art all fair, my love; And there is no spot in thee.", + "Come with me from Lebanon, my bride, With me from Lebanon; Look from the top of Amana, From the top of Senir and Hermon, From the lions\u2019dens, From the mountains of the leopards.", + "Thou hast ravished my heart, my sister, my bride; Thou hast ravished my heart with one of thine eyes, With one bead of thy necklace.", + "How fair is thy love, my sister, my bride! How much better is thy love than wine! And the smell of thine ointments than all manner of spices!", + "Thy lips, O my bride, drop honey\u2014 Honey and milk are under thy tongue; And the smell of thy garments is like the smell of Lebanon.", + "A garden shut up is my sister, my bride; A spring shut up, a fountain sealed.", + "Thy shoots are a park of pomegranates, With precious fruits; Henna with spikenard plants,", + "Spikenard and saffron, calamus and cinnamon, With all trees of frankincense; Myrrh and aloes, with all the chief spices.", + "Thou art a fountain of gardens, A well of living waters, And flowing streams from Lebanon.", + "Awake, O north wind; And come, thou south; Blow upon my garden, That the spices thereof may flow out. Let my beloved come into his garden, And eat his precious fruits." + ], + [ + "I am come into my garden, my sister, my bride; I have gathered my myrrh with my spice; I have eaten my honeycomb with my honey; I have drunk my wine with my milk. Eat, O friends; Drink, yea, drink abundantly, O beloved.", + "I sleep, but my heart waketh; Hark! my beloved knocketh: \u2018Open to me, my sister, my love, my dove, my undefiled; For my head is filled with dew, My locks with the drops of the night.\u2019", + "I have put off my coat; How shall I put it on? I have washed my feet; How shall I defile them?", + "My beloved put in his hand by the hole of the door, And my heart was moved for him.", + "I rose up to open to my beloved; And my hands dropped with myrrh, And my fingers with flowing myrrh, Upon the handles of the bar.", + "I opened to my beloved; But my beloved had turned away, and was gone. My soul failed me when he spoke. I sought him, but I could not find him; I called him, but he gave me no answer.", + "The watchmen that go about the city found me, They smote me, they wounded me; The keepers of the walls took away my mantle from me.", + "\u2019I adjure you, O daughters of Jerusalem, If ye find my beloved, what will ye tell him? That I am love-sick.\u2019", + "\u2019What is thy beloved more than another beloved, O thou fairest among women? What is thy beloved more than another beloved, That thou dost so adjure us?\u2019", + "\u2019My beloved is white and ruddy, Pre-eminent above ten thousand.", + "His head is as the most fine gold, His locks are curled, And black as a raven.", + "His eyes are like doves Beside the water-brooks; Washed with milk, And fitly set.", + "His cheeks are as a bed of spices, As banks of sweet herbs; His lips are as lilies, Dropping with flowing myrrh.", + "His hands are as rods of gold Set with beryl; His body is as polished ivory Overlaid with sapphires.", + "His legs are as pillars of marble, Set upon sockets of fine gold; His aspect is like Lebanon, Excellent as the cedars.", + "His mouth is most sweet; Yea, he is altogether lovely. This is my beloved, and this is my friend, O daughters of Jerusalem.\u2019" + ], + [ + "\u2019Whither is thy beloved gone, O thou fairest among women? Whither hath thy beloved turned him, That we may seek him with thee?\u2019", + "\u2019My beloved is gone down into his garden, To the beds of spices, To feed in the gardens, And to gather lilies.", + "I am my beloved\u2019s, and my beloved is mine, That feedeth among the lilies.\u2019", + "Thou art beautiful, O my love, as Tirzah, Comely as Jerusalem, Terrible as an army with banners.", + "Turn away thine eyes from me, For they have overcome me. Thy hair is as a flock of goats, That trail down from Gilead.", + "Thy teeth are like a flock of ewes, Which are come up from the washing; Whereof all are paired, And none faileth among them.", + "Thy temples are like a pomegranate split open Behind thy veil.", + "There are threescore queens, And fourscore concubines, And maidens without number.", + "My dove, my undefiled, is but one; She is the only one of her mother; She is the choice one of her that bore her. The daughters saw her, and called her happy; Yea, the queens and the concubines, and they praised her.", + "Who is she that looketh forth as the dawn, Fair as the moon, Clear as the sun, Terrible as an army with banners?", + "I went down into the garden of nuts, To look at the green plants of the valley, To see whether the vine budded, And the pomegranates were in flower.", + "Before I was aware, my soul set me Upon the chariots of my princely people." + ], + [ + "Return, return, O Shulammite; Return, return, that we may look upon thee. What will ye see in the Shulammite? As it were a dance of two companies.", + "How beautiful are thy steps in sandals, O prince\u2019s daughter! The roundings of thy thighs are like the links of a chain, The work of the hands of a skilled workman.", + "Thy navel is like a round goblet, Wherein no mingled wine is wanting; Thy belly is like a heap of wheat Set about with lilies.", + "Thy two breasts are like two fawns That are twins of a gazelle.", + "Thy neck is as a tower of ivory; Thine eyes as the pools in Heshbon, By the gate of Bath-rabbim; Thy nose is like the tower of Lebanon Which looketh toward Damascus.", + "Thy head upon thee is like Carmel, And the hair of thy head like purple; The king is held captive in the tresses thereof.", + "How fair and how pleasant art thou, O love, for delights! .", + "This thy stature is like to a palm-tree, And thy breasts to clusters of grapes.", + "I said: \u2018I will climb up into the palm-tree, I will take hold of the branches thereof; And let thy breasts be as clusters of the vine, And the smell of thy countenance like apples;", + "And the roof of thy mouth like the best wine, That glideth down smoothly for my beloved, Moving gently the lips of those that are asleep.\u2019", + "I am my beloved\u2019s, And his desire is toward me. :", + "Come, my beloved, let us go forth into the field; Let us lodge in the villages.", + "Let us get up early to the vineyards; Let us see whether the vine hath budded, Whether the vine-blossom be opened, And the pomegranates be in flower; There will I give thee my love.", + "The mandrakes give forth fragrance, And at our doors are all manner of precious fruits, New and old, Which I have laid up for thee, O my beloved." + ], + [ + "Oh that thou wert as my brother, That sucked the breasts of my mother! When I should find thee without, I would kiss thee; Yea, and none would despise me.", + "I would lead thee, and bring thee into my mother\u2019s house, That thou mightest instruct me; I would cause thee to drink of spiced wine, Of the juice of my pomegranate.", + "His left hand should be under my head, And his right hand should embrace me.", + "\u2019I adjure you, O daughters of Jerusalem: Why should ye awaken, or stir up love, Until it please?\u2019", + "Who is this that cometh up from the wilderness, Leaning upon her beloved? Under the apple-tree I awakened thee; There thy mother was in travail with thee; There was she in travail and brought thee forth.", + "Set me as a seal upon thy heart, As a seal upon thine arm; For love is strong as death, Jealousy is cruel as the grave; The flashes thereof are flashes of fire, A very flame of the LORD.", + "Many waters cannot quench love, Neither can the floods drown it; If a man would give all the substance of his house for love, He would utterly be contemned.", + "We have a little sister, And she hath no breasts; What shall we do for our sister In the day when she shall be spoken for?", + "If she be a wall, We will build upon her a turret of silver; And if she be a door, We will enclose her with boards of cedar.", + "I am a wall, And my breasts like the towers thereof; Then was I in his eyes As one that found peace.", + "Solomon had a vineyard at Baal-hamon; He gave over the vineyard unto keepers; Every one for the fruit thereof Brought in a thousand pieces of silver.", + "My vineyard, which is mine, is before me; Thou, O Solomon, shalt have the thousand, And those that keep the fruit thereof two hundred.", + "Thou that dwellest in the gardens, The companions hearken for thy voice: \u2018Cause me to hear it.\u2019", + "Make haste, my beloved, And be thou like to a gazelle or to a young hart Upon the mountains of spices." + ] + ], + "versionTitle": "The Holy Scriptures: A New Translation (JPS 1917)", + "language": "en", + "versionSource": "http://opensiddur.org/2010/08/%D7%AA%D7%A0%D7%B4%D7%9A-the-holy-scriptures-a-new-translation-jps-1917/" +} \ No newline at end of file diff --git a/data/trope/audio/3megillot-etnachta.mp3 b/data/trope/audio/3megillot-etnachta.mp3 new file mode 100644 index 000000000..8ddaccf74 Binary files /dev/null and b/data/trope/audio/3megillot-etnachta.mp3 differ diff --git a/data/trope/audio/3megillot-geresh.mp3 b/data/trope/audio/3megillot-geresh.mp3 new file mode 100644 index 000000000..e6f0fa4b7 Binary files /dev/null and b/data/trope/audio/3megillot-geresh.mp3 differ diff --git a/data/trope/audio/3megillot-gershayim.mp3 b/data/trope/audio/3megillot-gershayim.mp3 new file mode 100644 index 000000000..d0e4aa925 Binary files /dev/null and b/data/trope/audio/3megillot-gershayim.mp3 differ diff --git a/data/trope/audio/3megillot-kadma_vazlan.mp3 b/data/trope/audio/3megillot-kadma_vazlan.mp3 new file mode 100644 index 000000000..56d89d2ce Binary files /dev/null and b/data/trope/audio/3megillot-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/3megillot-katon.mp3 b/data/trope/audio/3megillot-katon.mp3 new file mode 100644 index 000000000..abdffbc8c Binary files /dev/null and b/data/trope/audio/3megillot-katon.mp3 differ diff --git a/data/trope/audio/3megillot-pazer.mp3 b/data/trope/audio/3megillot-pazer.mp3 new file mode 100644 index 000000000..341e34d6c Binary files /dev/null and b/data/trope/audio/3megillot-pazer.mp3 differ diff --git a/data/trope/audio/3megillot-revii.mp3 b/data/trope/audio/3megillot-revii.mp3 new file mode 100644 index 000000000..580278d13 Binary files /dev/null and b/data/trope/audio/3megillot-revii.mp3 differ diff --git a/data/trope/audio/3megillot-sof_pasuk.mp3 b/data/trope/audio/3megillot-sof_pasuk.mp3 new file mode 100644 index 000000000..0e9570cd3 Binary files /dev/null and b/data/trope/audio/3megillot-sof_pasuk.mp3 differ diff --git a/data/trope/audio/3megillot-sof_perek.mp3 b/data/trope/audio/3megillot-sof_perek.mp3 new file mode 100644 index 000000000..d62c85682 Binary files /dev/null and b/data/trope/audio/3megillot-sof_perek.mp3 differ diff --git a/data/trope/audio/3megillot-telisha.mp3 b/data/trope/audio/3megillot-telisha.mp3 new file mode 100644 index 000000000..f6e7c22f5 Binary files /dev/null and b/data/trope/audio/3megillot-telisha.mp3 differ diff --git a/data/trope/audio/3megillot-tevir.mp3 b/data/trope/audio/3megillot-tevir.mp3 new file mode 100644 index 000000000..bde1e7a5f Binary files /dev/null and b/data/trope/audio/3megillot-tevir.mp3 differ diff --git a/data/trope/audio/3megillot-yetiv_katom.mp3 b/data/trope/audio/3megillot-yetiv_katom.mp3 new file mode 100644 index 000000000..e7988b2f3 Binary files /dev/null and b/data/trope/audio/3megillot-yetiv_katom.mp3 differ diff --git a/data/trope/audio/3megillot-zakef_gadol.mp3 b/data/trope/audio/3megillot-zakef_gadol.mp3 new file mode 100644 index 000000000..4aa97dc7d Binary files /dev/null and b/data/trope/audio/3megillot-zakef_gadol.mp3 differ diff --git a/data/trope/audio/3megillot-zarka.mp3 b/data/trope/audio/3megillot-zarka.mp3 new file mode 100644 index 000000000..09a9aad81 Binary files /dev/null and b/data/trope/audio/3megillot-zarka.mp3 differ diff --git a/data/trope/audio/eicha-end_of_chapter.mp3 b/data/trope/audio/eicha-end_of_chapter.mp3 new file mode 100644 index 000000000..c2d141587 Binary files /dev/null and b/data/trope/audio/eicha-end_of_chapter.mp3 differ diff --git a/data/trope/audio/eicha-etnachta.mp3 b/data/trope/audio/eicha-etnachta.mp3 new file mode 100644 index 000000000..9f7fde44e Binary files /dev/null and b/data/trope/audio/eicha-etnachta.mp3 differ diff --git a/data/trope/audio/eicha-geresh.mp3 b/data/trope/audio/eicha-geresh.mp3 new file mode 100644 index 000000000..b6b57b318 Binary files /dev/null and b/data/trope/audio/eicha-geresh.mp3 differ diff --git a/data/trope/audio/eicha-gershayim.mp3 b/data/trope/audio/eicha-gershayim.mp3 new file mode 100644 index 000000000..2829f4b59 Binary files /dev/null and b/data/trope/audio/eicha-gershayim.mp3 differ diff --git a/data/trope/audio/eicha-pashta_katon.mp3 b/data/trope/audio/eicha-pashta_katon.mp3 new file mode 100644 index 000000000..5dadad4a9 Binary files /dev/null and b/data/trope/audio/eicha-pashta_katon.mp3 differ diff --git a/data/trope/audio/eicha-revii.mp3 b/data/trope/audio/eicha-revii.mp3 new file mode 100644 index 000000000..de3dd7baa Binary files /dev/null and b/data/trope/audio/eicha-revii.mp3 differ diff --git a/data/trope/audio/eicha-sof_pasuk.mp3 b/data/trope/audio/eicha-sof_pasuk.mp3 new file mode 100644 index 000000000..e8aa333c1 Binary files /dev/null and b/data/trope/audio/eicha-sof_pasuk.mp3 differ diff --git a/data/trope/audio/eicha-telisha.mp3 b/data/trope/audio/eicha-telisha.mp3 new file mode 100644 index 000000000..d83e1e463 Binary files /dev/null and b/data/trope/audio/eicha-telisha.mp3 differ diff --git a/data/trope/audio/eicha-tevir.mp3 b/data/trope/audio/eicha-tevir.mp3 new file mode 100644 index 000000000..60a71d391 Binary files /dev/null and b/data/trope/audio/eicha-tevir.mp3 differ diff --git a/data/trope/audio/eicha-yetiv_katom.mp3 b/data/trope/audio/eicha-yetiv_katom.mp3 new file mode 100644 index 000000000..39fc12efb Binary files /dev/null and b/data/trope/audio/eicha-yetiv_katom.mp3 differ diff --git a/data/trope/audio/eicha-zakef_gadol.mp3 b/data/trope/audio/eicha-zakef_gadol.mp3 new file mode 100644 index 000000000..c3623de71 Binary files /dev/null and b/data/trope/audio/eicha-zakef_gadol.mp3 differ diff --git a/data/trope/audio/eicha-zarka.mp3 b/data/trope/audio/eicha-zarka.mp3 new file mode 100644 index 000000000..f54aca67b Binary files /dev/null and b/data/trope/audio/eicha-zarka.mp3 differ diff --git a/data/trope/audio/esther-etnachta.mp3 b/data/trope/audio/esther-etnachta.mp3 new file mode 100644 index 000000000..53ea2155c Binary files /dev/null and b/data/trope/audio/esther-etnachta.mp3 differ diff --git a/data/trope/audio/esther-geresh.mp3 b/data/trope/audio/esther-geresh.mp3 new file mode 100644 index 000000000..8a2fdc3ba Binary files /dev/null and b/data/trope/audio/esther-geresh.mp3 differ diff --git a/data/trope/audio/esther-gershayim.mp3 b/data/trope/audio/esther-gershayim.mp3 new file mode 100644 index 000000000..6b08211f9 Binary files /dev/null and b/data/trope/audio/esther-gershayim.mp3 differ diff --git a/data/trope/audio/esther-kadma_vazlan.mp3 b/data/trope/audio/esther-kadma_vazlan.mp3 new file mode 100644 index 000000000..348252566 Binary files /dev/null and b/data/trope/audio/esther-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/esther-karnei_parah.mp3 b/data/trope/audio/esther-karnei_parah.mp3 new file mode 100644 index 000000000..1efb670eb Binary files /dev/null and b/data/trope/audio/esther-karnei_parah.mp3 differ diff --git a/data/trope/audio/esther-katon.mp3 b/data/trope/audio/esther-katon.mp3 new file mode 100644 index 000000000..681a22772 Binary files /dev/null and b/data/trope/audio/esther-katon.mp3 differ diff --git a/data/trope/audio/esther-pazer.mp3 b/data/trope/audio/esther-pazer.mp3 new file mode 100644 index 000000000..aaadd17a6 Binary files /dev/null and b/data/trope/audio/esther-pazer.mp3 differ diff --git a/data/trope/audio/esther-revii.mp3 b/data/trope/audio/esther-revii.mp3 new file mode 100644 index 000000000..843ee7cc0 Binary files /dev/null and b/data/trope/audio/esther-revii.mp3 differ diff --git a/data/trope/audio/esther-sof_pasuk.mp3 b/data/trope/audio/esther-sof_pasuk.mp3 new file mode 100644 index 000000000..f7bd4a190 Binary files /dev/null and b/data/trope/audio/esther-sof_pasuk.mp3 differ diff --git a/data/trope/audio/esther-sof_perek.mp3 b/data/trope/audio/esther-sof_perek.mp3 new file mode 100644 index 000000000..edba32400 Binary files /dev/null and b/data/trope/audio/esther-sof_perek.mp3 differ diff --git a/data/trope/audio/esther-telisha.mp3 b/data/trope/audio/esther-telisha.mp3 new file mode 100644 index 000000000..c1dba1976 Binary files /dev/null and b/data/trope/audio/esther-telisha.mp3 differ diff --git a/data/trope/audio/esther-tevir.mp3 b/data/trope/audio/esther-tevir.mp3 new file mode 100644 index 000000000..a406edcf7 Binary files /dev/null and b/data/trope/audio/esther-tevir.mp3 differ diff --git a/data/trope/audio/esther-yerech_ben_yomo.mp3 b/data/trope/audio/esther-yerech_ben_yomo.mp3 new file mode 100644 index 000000000..1059081f3 Binary files /dev/null and b/data/trope/audio/esther-yerech_ben_yomo.mp3 differ diff --git a/data/trope/audio/esther-yetiv_katom.mp3 b/data/trope/audio/esther-yetiv_katom.mp3 new file mode 100644 index 000000000..0125f2e27 Binary files /dev/null and b/data/trope/audio/esther-yetiv_katom.mp3 differ diff --git a/data/trope/audio/esther-zakef_gadol.mp3 b/data/trope/audio/esther-zakef_gadol.mp3 new file mode 100644 index 000000000..71c909ae9 Binary files /dev/null and b/data/trope/audio/esther-zakef_gadol.mp3 differ diff --git a/data/trope/audio/esther-zarka.mp3 b/data/trope/audio/esther-zarka.mp3 new file mode 100644 index 000000000..93e7b6b1b Binary files /dev/null and b/data/trope/audio/esther-zarka.mp3 differ diff --git a/data/trope/audio/haftarah-etnachta.mp3 b/data/trope/audio/haftarah-etnachta.mp3 new file mode 100644 index 000000000..b627ca3ca Binary files /dev/null and b/data/trope/audio/haftarah-etnachta.mp3 differ diff --git a/data/trope/audio/haftarah-geresh.mp3 b/data/trope/audio/haftarah-geresh.mp3 new file mode 100644 index 000000000..7389a9627 Binary files /dev/null and b/data/trope/audio/haftarah-geresh.mp3 differ diff --git a/data/trope/audio/haftarah-gershayim.mp3 b/data/trope/audio/haftarah-gershayim.mp3 new file mode 100644 index 000000000..97c9e62dc Binary files /dev/null and b/data/trope/audio/haftarah-gershayim.mp3 differ diff --git a/data/trope/audio/haftarah-kadma_vazlan.mp3 b/data/trope/audio/haftarah-kadma_vazlan.mp3 new file mode 100644 index 000000000..367a83805 Binary files /dev/null and b/data/trope/audio/haftarah-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/haftarah-katon.mp3 b/data/trope/audio/haftarah-katon.mp3 new file mode 100644 index 000000000..b971c6690 Binary files /dev/null and b/data/trope/audio/haftarah-katon.mp3 differ diff --git a/data/trope/audio/haftarah-mercha_kefulah.mp3 b/data/trope/audio/haftarah-mercha_kefulah.mp3 new file mode 100644 index 000000000..814c55ab6 Binary files /dev/null and b/data/trope/audio/haftarah-mercha_kefulah.mp3 differ diff --git a/data/trope/audio/haftarah-pazer.mp3 b/data/trope/audio/haftarah-pazer.mp3 new file mode 100644 index 000000000..97fc96444 Binary files /dev/null and b/data/trope/audio/haftarah-pazer.mp3 differ diff --git a/data/trope/audio/haftarah-revii.mp3 b/data/trope/audio/haftarah-revii.mp3 new file mode 100644 index 000000000..32a66c7bb Binary files /dev/null and b/data/trope/audio/haftarah-revii.mp3 differ diff --git a/data/trope/audio/haftarah-sof_haftorah.mp3 b/data/trope/audio/haftarah-sof_haftorah.mp3 new file mode 100644 index 000000000..c5fcaf643 Binary files /dev/null and b/data/trope/audio/haftarah-sof_haftorah.mp3 differ diff --git a/data/trope/audio/haftarah-sof_pasuk.mp3 b/data/trope/audio/haftarah-sof_pasuk.mp3 new file mode 100644 index 000000000..ebd89664d Binary files /dev/null and b/data/trope/audio/haftarah-sof_pasuk.mp3 differ diff --git a/data/trope/audio/haftarah-telisha.mp3 b/data/trope/audio/haftarah-telisha.mp3 new file mode 100644 index 000000000..d707c2190 Binary files /dev/null and b/data/trope/audio/haftarah-telisha.mp3 differ diff --git a/data/trope/audio/haftarah-tevir.mp3 b/data/trope/audio/haftarah-tevir.mp3 new file mode 100644 index 000000000..4cd150d29 Binary files /dev/null and b/data/trope/audio/haftarah-tevir.mp3 differ diff --git a/data/trope/audio/haftarah-yetiv_katom.mp3 b/data/trope/audio/haftarah-yetiv_katom.mp3 new file mode 100644 index 000000000..c319afe7f Binary files /dev/null and b/data/trope/audio/haftarah-yetiv_katom.mp3 differ diff --git a/data/trope/audio/haftarah-zakef_gadol.mp3 b/data/trope/audio/haftarah-zakef_gadol.mp3 new file mode 100644 index 000000000..dfaf83ae0 Binary files /dev/null and b/data/trope/audio/haftarah-zakef_gadol.mp3 differ diff --git a/data/trope/audio/haftarah-zarka.mp3 b/data/trope/audio/haftarah-zarka.mp3 new file mode 100644 index 000000000..99d19c5dd Binary files /dev/null and b/data/trope/audio/haftarah-zarka.mp3 differ diff --git a/data/trope/audio/hhd-etnachta.mp3 b/data/trope/audio/hhd-etnachta.mp3 new file mode 100644 index 000000000..13dd0028e Binary files /dev/null and b/data/trope/audio/hhd-etnachta.mp3 differ diff --git a/data/trope/audio/hhd-geresh.mp3 b/data/trope/audio/hhd-geresh.mp3 new file mode 100644 index 000000000..edf34680f Binary files /dev/null and b/data/trope/audio/hhd-geresh.mp3 differ diff --git a/data/trope/audio/hhd-gershayim.mp3 b/data/trope/audio/hhd-gershayim.mp3 new file mode 100644 index 000000000..d53c5922f Binary files /dev/null and b/data/trope/audio/hhd-gershayim.mp3 differ diff --git a/data/trope/audio/hhd-kadma_vazlan.mp3 b/data/trope/audio/hhd-kadma_vazlan.mp3 new file mode 100644 index 000000000..187cb2a05 Binary files /dev/null and b/data/trope/audio/hhd-kadma_vazlan.mp3 differ diff --git a/data/trope/audio/hhd-katon.mp3 b/data/trope/audio/hhd-katon.mp3 new file mode 100644 index 000000000..bdec0a055 Binary files /dev/null and b/data/trope/audio/hhd-katon.mp3 differ diff --git a/data/trope/audio/hhd-pazer.mp3 b/data/trope/audio/hhd-pazer.mp3 new file mode 100644 index 000000000..2014a1c8b Binary files /dev/null and b/data/trope/audio/hhd-pazer.mp3 differ diff --git a/data/trope/audio/hhd-revii.mp3 b/data/trope/audio/hhd-revii.mp3 new file mode 100644 index 000000000..e29f95633 Binary files /dev/null and b/data/trope/audio/hhd-revii.mp3 differ diff --git a/data/trope/audio/hhd-sof_pasuk.mp3 b/data/trope/audio/hhd-sof_pasuk.mp3 new file mode 100644 index 000000000..97aaf0b8d Binary files /dev/null and b/data/trope/audio/hhd-sof_pasuk.mp3 differ diff --git a/data/trope/audio/hhd-sof_perek.mp3 b/data/trope/audio/hhd-sof_perek.mp3 new file mode 100644 index 000000000..e6811e9ce Binary files /dev/null and b/data/trope/audio/hhd-sof_perek.mp3 differ diff --git a/data/trope/audio/hhd-telisha.mp3 b/data/trope/audio/hhd-telisha.mp3 new file mode 100644 index 000000000..8636b8171 Binary files /dev/null and b/data/trope/audio/hhd-telisha.mp3 differ diff --git a/data/trope/audio/hhd-tevir.mp3 b/data/trope/audio/hhd-tevir.mp3 new file mode 100644 index 000000000..9c97c7d81 Binary files /dev/null and b/data/trope/audio/hhd-tevir.mp3 differ diff --git a/data/trope/audio/hhd-yetiv_katom.mp3 b/data/trope/audio/hhd-yetiv_katom.mp3 new file mode 100644 index 000000000..322247391 Binary files /dev/null and b/data/trope/audio/hhd-yetiv_katom.mp3 differ diff --git a/data/trope/audio/hhd-zakef_gadol.mp3 b/data/trope/audio/hhd-zakef_gadol.mp3 new file mode 100644 index 000000000..9ad369bbe Binary files /dev/null and b/data/trope/audio/hhd-zakef_gadol.mp3 differ diff --git a/data/trope/audio/hhd-zarka.mp3 b/data/trope/audio/hhd-zarka.mp3 new file mode 100644 index 000000000..48adb7b74 Binary files /dev/null and b/data/trope/audio/hhd-zarka.mp3 differ diff --git a/data/audio/torah-1.mp3 b/data/trope/audio/torah-etnachta.mp3 similarity index 100% rename from data/audio/torah-1.mp3 rename to data/trope/audio/torah-etnachta.mp3 diff --git a/data/audio/torah-6.mp3 b/data/trope/audio/torah-geresh_gershayim.mp3 similarity index 100% rename from data/audio/torah-6.mp3 rename to data/trope/audio/torah-geresh_gershayim.mp3 diff --git a/data/audio/torah-5.mp3 b/data/trope/audio/torah-kadma_vazlan.mp3 similarity index 100% rename from data/audio/torah-5.mp3 rename to data/trope/audio/torah-kadma_vazlan.mp3 diff --git a/data/audio/torah-9.mp3 b/data/trope/audio/torah-pazer.mp3 similarity index 100% rename from data/audio/torah-9.mp3 rename to data/trope/audio/torah-pazer.mp3 diff --git a/data/audio/torah-4.mp3 b/data/trope/audio/torah-revii.mp3 similarity index 100% rename from data/audio/torah-4.mp3 rename to data/trope/audio/torah-revii.mp3 diff --git a/data/audio/torah-2.mp3 b/data/trope/audio/torah-sof_pasuk.mp3 similarity index 100% rename from data/audio/torah-2.mp3 rename to data/trope/audio/torah-sof_pasuk.mp3 diff --git a/data/audio/torah-8.mp3 b/data/trope/audio/torah-telisha.mp3 similarity index 100% rename from data/audio/torah-8.mp3 rename to data/trope/audio/torah-telisha.mp3 diff --git a/data/audio/torah-7.mp3 b/data/trope/audio/torah-tevir.mp3 similarity index 100% rename from data/audio/torah-7.mp3 rename to data/trope/audio/torah-tevir.mp3 diff --git a/data/audio/torah-10.mp3 b/data/trope/audio/torah-yetiv_katom.mp3 similarity index 100% rename from data/audio/torah-10.mp3 rename to data/trope/audio/torah-yetiv_katom.mp3 diff --git a/data/audio/torah-11.mp3 b/data/trope/audio/torah-zakef_gadol.mp3 similarity index 100% rename from data/audio/torah-11.mp3 rename to data/trope/audio/torah-zakef_gadol.mp3 diff --git a/data/audio/torah-3.mp3 b/data/trope/audio/torah-zakef_katan.mp3 similarity index 100% rename from data/audio/torah-3.mp3 rename to data/trope/audio/torah-zakef_katan.mp3 diff --git a/data/audio/torah-12.mp3 b/data/trope/audio/torah-zarka.mp3 similarity index 100% rename from data/audio/torah-12.mp3 rename to data/trope/audio/torah-zarka.mp3 diff --git a/data/trope/labels/3megillot.json b/data/trope/labels/3megillot.json new file mode 100644 index 000000000..b6ec9a81e --- /dev/null +++ b/data/trope/labels/3megillot.json @@ -0,0 +1 @@ +{"etnachta": [0, 0.899266, 2.732789, 3.618059, 6.38234, 8.103892, 8.884189, 11.641472, 12.680701, 14.206304, 17.316995, 19.510925], "sof_pasuk": [0.959724, 1.906479, 3.409741, 4.222986, 6.800401, 8.681217, 9.732845, 12.2406, 13.189721, 14.625219, 17.439423, 19.366679], "katon": [0.914652, 3.143768, 4.653172, 6.395782, 7.693147, 10.131243, 11.747013, 13.23309, 14.592272, 16.844608, 18.603112, 19.99808, 23.3839, 25.148616, 26.458406, 28.524982, 30.459952, 34.314465, 35.909107, 37.274194, 38.528071, 40.139048], "revii": [0.882358, 3.320454, 4.649244, 7.742639, 8.904497, 11.946312], "tevir": [0.812698, 3.506213, 6.594467, 7.987664, 10.866939, 13.351474, 15.905669, 18.575964, 21.130159, 22.685896, 26.055572, 28.307907, 30.931762], "geresh": [0.975238], "gershayim": [0.441179, 4.109932, 6.222948], "telisha": [1.068118, 3.088254, 7.267846, 9.334422], "yetiv_katom": [0.745154, 2.92783, 4.321027, 6.503703, 8.245199], "zakef_gadol": [0.850635], "zarka": [0.580499, 2.461315, 6.098028, 7.119706, 10.579479, 12.042337, 15.59499, 19.495942, 23.048595, 24.279253, 27.553266, 30.9666], "pazer": [0.705092, 2.530975, 4.295692], "kadma_vazlan": [0.843113, 2.16338], "sof_perek": [0.954297, 2.061282, 4.824457, 5.738507]} \ No newline at end of file diff --git a/data/trope/labels/eicha.json b/data/trope/labels/eicha.json new file mode 100644 index 000000000..f588b95bb --- /dev/null +++ b/data/trope/labels/eicha.json @@ -0,0 +1 @@ +{"etnachta": [1.509338, 2.741451, 4.281592, 5.267282, 8.255155, 9.826099, 10.750183, 13.430028, 14.292507, 15.925056, 19.251761, 20.976718], "sof_pasuk": [1.643662, 2.629859, 4.306394, 5.391211, 8.579915, 10.45369, 11.407014, 14.760085, 15.746282, 17.833732, 21.416915, 23.011268], "pashta_katon": [1.456479, 3.179979, 4.709282, 6.517743, 7.658651, 10.389549, 11.894577, 13.618077, 14.771123, 17.526296, 19.031324, 20.766961, 23.679919, 25.391282, 26.556465, 29.821405, 31.642004, 33.122757, 34.591373, 35.926479], "revii": [1.483099, 3.992958, 5.56162, 11.009155, 12.720423, 17.882746], "tevir": [2.033915, 4.391408, 8.829042, 10.631831, 17.10338, 18.536366, 20.755183, 24.175859, 25.65507, 27.134282, 30.554958, 32.21907, 34.299211], "geresh": [1.668169, 3.006676, 4.75031, 7.673577, 8.745972], "gershayim": [0.169056, 3.277815, 4.865066], "telisha": [0.094859, 1.573506, 5.708836, 7.555429], "yetiv_katom": [0.085996, 1.537177, 2.859363, 5.514487, 7.148409], "zakef_gadol": [0], "zarka": [0.059644, 1.699848, 4.592571, 6.083665, 8.857101, 10.527127, 12.853234, 15.388095, 17.475627, 18.668503, 20.905145, 23.261074], "end_of_chapter": [0.128839, 0.94482, 3.246746, 4.320405]} \ No newline at end of file diff --git a/data/trope/labels/esther.json b/data/trope/labels/esther.json new file mode 100644 index 000000000..59fc6e8fa --- /dev/null +++ b/data/trope/labels/esther.json @@ -0,0 +1 @@ +{"etnachta": [0.652325, 1.564143, 2.771581, 3.975058, 5.971974, 7.80635, 9.153108, 11.219684, 12.655361, 14.094998, 16.235654, 18.34867], "sof_pasuk": [0.812698, 1.773192, 3.048153, 3.746341, 6.416636, 8.080066, 8.925293, 11.511599, 13.008218, 14.308536, 17.21103, 19.324046], "katon": [0.557279, 1.927256, 2.716735, 3.924172, 5.22449, 7.082086, 8.266304, 9.682721, 11.230566, 13.250702, 14.34204, 15.549477, 18.242992, 19.821949, 21.284806, 23.003083, 24.628479, 27.104076, 29.031332, 30.19233, 31.283668, 33.141264], "revii": [0.626939, 3.599093, 5.17805, 8.034104, 10.611519, 13.769433], "tevir": [0.415568, 3.109082, 6.499196, 8.496112, 11.863005, 13.743822, 16.274797, 18.945092, 20.749526, 22.446427, 25.121599, 27.141735, 29.695931], "geresh": [0.936698], "gershayim": [0.928798, 4.96907, 7.407166], "telisha": [0.859138, 2.739955, 6.315828, 8.126984], "yetiv_katom": [0.952018, 2.600635, 3.947392, 6.153288, 8.057324], "zakef_gadol": [0.835918], "zarka": [0.882358, 2.972154, 7.871565, 9.775601, 12.678095, 16.068209, 20.897959, 24.195193, 29.001723, 30.85932, 33.204535, 37.825306], "pazer": [0.84297, 2.677347], "kadma_vazlan": [0.873692, 1.71798], "sof_perek": [0.789478, 1.670235, 5.571187, 6.778625], "karnei_parah": [0.719819], "yerech_ben_yomo": [1.091338, 3.506213]} \ No newline at end of file diff --git a/data/trope/labels/haftarah.json b/data/trope/labels/haftarah.json new file mode 100644 index 000000000..bf1bc689e --- /dev/null +++ b/data/trope/labels/haftarah.json @@ -0,0 +1 @@ +{"etnachta": [0.859138, 2.758269, 4.406886, 5.991443, 9.265457, 11.332033, 12.988458, 16.053492, 18.282607, 19.629365, 22.647959, 24.598435], "sof_pasuk": [1.301863, 2.726929, 5.002485, 6.057393, 8.780017, 11.816532, 12.855618, 15.804552, 17.713006, 19.802802, 23.309015, 26.072189], "katon": [0.766259, 2.716735, 4.643991, 6.269388, 8.150204, 10.0078, 12.088163, 13.89932, 15.70532, 17.702236, 20.06036, 21.801856, 24.170292, 26.654827, 28.628523, 30.555779, 33.109974, 36.801947, 40.888659, 42.699815, 44.534192, 46.136369], "revii": [0.719819, 3.599093, 5.479909, 9.148662, 11.145578, 14.883991], "tevir": [1.068118, 4.202812, 7.221406, 9.775601, 12.469116, 14.744671, 17.414966, 20.48, 22.407256, 24.195193, 27.097687, 30.069841, 32.925896], "geresh": [0.789478], "gershayim": [1.091338, 4.580075, 7.160065], "telisha": [1.079851, 3.425066, 8.115497, 10.483932], "yetiv_katom": [0.905578, 2.577415, 4.226032, 5.944308, 8.428844], "zakef_gadol": [1.230658], "zarka": [0.696599, 2.321995, 5.781769, 7.058866, 9.427302, 11.470658, 14.744671, 17.275646, 21.315918, 22.825215, 24.915011, 29.094603], "pazer": [1.044898, 3.343673, 5.944308], "kadma_vazlan": [1.416417, 3.082602], "mercha_kefulah": [0.975238], "sof_haftorah": [0.812698, 2.025318, 4.858152, 5.787809]} \ No newline at end of file diff --git a/data/trope/labels/hhd.json b/data/trope/labels/hhd.json new file mode 100644 index 000000000..d9c5b4c95 --- /dev/null +++ b/data/trope/labels/hhd.json @@ -0,0 +1 @@ +{"etnachta": [0.557279, 1.592974, 3.021834, 3.719679, 6.204214, 8.108251, 9.246029, 11.684124, 12.903483, 14.48244, 17.129515, 19.010331], "sof_pasuk": [0.812698, 1.81053, 3.621687, 5.008188, 8.189321, 10.952496, 12.162437, 14.739852, 16.096005, 17.814281, 21.529474, 24.199769], "katon": [1.044898, 2.9, 4.447485, 6.191181, 7.561159, 9.581295, 11.647871, 13.321276, 14.936637, 17.165753, 19.278768, 20.857725, 22.480146], "revii": [0.510839, 2.623855, 4.713651, 8.521723, 10.799732, 15.065172], "tevir": [0.771777, 3.233093, 6.344566, 8.109283], "geresh": [0.987502], "gershayim": [0.968554], "telisha": [1.059891, 3.056807, 7.188824, 9.585099], "yetiv_katom": [0.975238, 2.623855, 3.993832, 5.787226, 7.668962], "zakef_gadol": [0.66925], "zarka": [0.534059, 2.623855, 6.222948, 7.337506, 11.145578, 15.20907, 16.279973, 19.925506, 22.084962, 25.591175, 29.306368, 33.578839], "pazer": [0.766259, 2.879274], "kadma_vazlan": [0.812698, 1.938948], "sof_perek": [0.789478, 1.597946, 4.111368, 5.280169, 8.391643, 9.670177, 11.871695, 14.797409, 18.163789, 19.666023, 22.429197, 26.166362]} \ No newline at end of file diff --git a/data/trope/labels/torah.json b/data/trope/labels/torah.json new file mode 100644 index 000000000..223d096c3 --- /dev/null +++ b/data/trope/labels/torah.json @@ -0,0 +1 @@ +{"etnachta": [0, 1.996916, 3.993832, 6.060408, 7.523265, 9.98458, 11.354558, 12.608435, 14.210612, 16.137868, 17.368526, 18.877823], "sof_pasuk": [0, 3.33343, 5.83343, 7.78343, 8.98343, 10.98343, 13.58343, 14.93343, 16.98343, 18.590054, 19.88343, 21.08343], "zakef_katan": [1.711055, 3.811055, 5.461055, 7.161055, 8.711055, 10.761055, 12.211055, 13.811055, 16.161055, 17.361055, 18.761055, 20.311055, 22.211055, 23.411055, 24.961055, 27.161055, 28.911055, 30.161055, 31.561055, 33.161055, 36.011055, 37.661055, 39.011055], "revii": [1.69031, 5.672958, 7.108563, 10.882817, 13.267775, 14.633915], "kadma_vazlan": [1.531479, 3.090803, 3.954, 6.571437, 8.158606, 9.495169, 10.608972, 13.393479, 14.757887, 16.150141, 18.294211, 19.352324], "geresh_gershayim": [1.383972, 4.856958, 7.311549, 8.956648, 13.65693, 15.798169], "tevir": [1.867859, 4.060563, 6.984169, 8.405366, 11.694423, 12.953197, 14.415, 16.64831, 19.693732, 22.536127, 23.876113, 27.205775, 28.708183, 30.088775], "telisha": [1.778746, 5.832634, 11.292972, 13.195817, 16.215549, 17.249704, 18.573423, 22.048183, 26.929394, 27.922183, 29.204535], "pazer": [2.045704, 7.311169, 9.090042], "yetiv_katom": [2.13507, 3.388563, 5.606282, 6.804676, 7.906648], "zakef_gadol": [0], "zarka": [1.804056, 4.785761, 7.917803, 10.674, 11.525915, 13.981437, 15.785493, 18.516634, 19.644169]} \ No newline at end of file diff --git a/data/trope/text/3megillot.json b/data/trope/text/3megillot.json new file mode 100644 index 000000000..8b71ca44a --- /dev/null +++ b/data/trope/text/3megillot.json @@ -0,0 +1,95 @@ +{ + "title": "Three Megillot", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/eicha.json b/data/trope/text/eicha.json new file mode 100644 index 000000000..ea8dfbbc9 --- /dev/null +++ b/data/trope/text/eicha.json @@ -0,0 +1,88 @@ +{ + "title": "Eicha", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "pashta_katon": { + "name_he": "פַּשְׁטָא֙ קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [ + ["קַדְמָא֙", "ואַזְלָ֝א", "גֵּ֜רֵשׁ"], + ["קַדְמָא֙", "גֵּ֜רֵשׁ"] + ] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "end_of_chapter": { + "name_he": "End of Chapter", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/esther.json b/data/trope/text/esther.json new file mode 100644 index 000000000..4ccc9057b --- /dev/null +++ b/data/trope/text/esther.json @@ -0,0 +1,103 @@ +{ + "title": "Esther", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + }, + "karnei_parah": { + "name_he": "קַרְנֵי פָרָ֟ה", + "text": [["קַרְנֵי פָרָ֟ה"]] + }, + "yerech_ben_yomo": { + "name_he": "יֵרֶח בֶּן יוֹמ֪וֹ", + "text": [["מוּנַ֣ח", "יֵרֶח בֶּן יוֹמ֪וֹ"]] + } + } +} diff --git a/data/trope/text/haftarah.json b/data/trope/text/haftarah.json new file mode 100644 index 000000000..8b65c150f --- /dev/null +++ b/data/trope/text/haftarah.json @@ -0,0 +1,99 @@ +{ + "title": "Haftarah", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מוּנַ֣ח", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"], + ["מוּנַ֣ח", "דַּרְגָּ֧א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "mercha_kefulah": { + "name_he": "מֵרְכָא כּפוּלָ֦ה", + "text": [["מֵרְכָא כּפוּלָ֦ה"]] + }, + "sof_haftorah": { + "name_he": "Sof Haftorah", + "text": [["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"]] + } + } +} diff --git a/data/trope/text/hhd.json b/data/trope/text/hhd.json new file mode 100644 index 000000000..5820fa777 --- /dev/null +++ b/data/trope/text/hhd.json @@ -0,0 +1,94 @@ +{ + "title": "High Holiday", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + }, + "katon": { + "name_he": "קָטָ֔ן", + "text": [ + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["רְבִ֗יע"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "geresh": { + "name_he": "גֵּ֜רֵשׁ", + "text": [["גֵּ֜רֵשׁ"]] + }, + "gershayim": { + "name_he": "גֵּרְשַׁ֞יִם", + "text": [["גֵּרְשַׁ֞יִם"]] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["מוּנַ֣ח", "תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩"] + ] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"], + ["יְ֚תִיב", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "סְגוֹל֒"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [["קַדְמָא֙", "ואַזְלָ֝א"]] + }, + "sof_perek": { + "name_he": "Sof Perek", + "text": [ + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"] + ] + } + } +} diff --git a/data/trope/text/torah.json b/data/trope/text/torah.json new file mode 100644 index 000000000..9dc4705bf --- /dev/null +++ b/data/trope/text/torah.json @@ -0,0 +1,93 @@ +{ + "title": "Torah", + "tropes": { + "etnachta": { + "name_he": "אֶתְנַחְתָּ֑א", + "text": [ + ["טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "אֶתְנַחְתָּ֑א"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מוּנַ֣ח", "אֶתְנַחְתָּ֑א"] + ] + }, + "sof_pasuk": { + "name_he": "סוֹף פָּסֽוּק", + "text": [ + ["טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "סוֹף פָּסֽוּק"], + ["טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"], + ["מֵרְכָ֥א", "טִפְּחָ֖א", "מֵרְכָ֥א", "סוֹף פָּסֽוּק"] + ] + }, + "zakef_katan": { + "name_he": "זָקֵף קָטָ֔ן", + "text": [ + ["מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["פַּשְׁטָא֙", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "מוּנַ֣ח", "קָטָ֔ן"], + ["קַדְמָ֨א", "מַהְפַּ֤ך", "פַּשְׁטָא֙", "קָטָ֔ן"] + ] + }, + "revii": { + "name_he": "רְבִ֗יע", + "text": [["רְבִ֗יע"], ["מוּנַ֣ח", "רְבִ֗יע"], ["מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"]] + }, + "kadma_vazlan": { + "name_he": "קַדְמָ֨א ואַזְלָ֝א", + "text": [ + ["קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"], + ["קַדְמָא֙", "ואַזְלָ֝א", "מוּנַ֣ח", "רְבִ֗יע"], + ["קַדְמָא֙", "ואַזְלָ֝א", "מוּנַ֣ח", "מוּנַ֣ח", "רְבִ֗יע"] + ] + }, + "geresh_gershayim": { + "name_he": "גֵּרְשַׁ֞יִם/גֵּ֜רֵשׁ", + "text": [["גֵּרְשַׁ֞יִם"], ["גֵּ֜רֵשׁ"], ["מוּנַ֣ח", "גֵּרְשַׁ֞יִם"], ["מוּנַ֣ח", "גֵּ֜רֵשׁ"]] + }, + "tevir": { + "name_he": "תְּבִ֛יר", + "text": [ + ["דַּרְגָּ֧א", "תְּבִ֛יר"], + ["מֵרְכָ֥א", "תְּבִ֛יר"], + ["קַדְמָא֙", "ואַזְלָ֝א", "דַּרְגָּ֧א", "תְּבִ֛יר"], + ["דַּרְגָּ֧א", "מוּנַ֣ח", "רְבִ֗יע"], + ["קַדְמָא֙", "מֵרְכָ֥א", "תְּבִ֛יר"] + ] + }, + "telisha": { + "name_he": "תְּלִישָא", + "text": [ + ["תְּלִישָא קְטַנָּה֩"], + ["תְּלִישָא גְדוֹלָה֠"], + ["מוּנַ֣ח", "תְּלִישָא קְטַנָּה֩", "קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"], + ["תְּלִישָא גְדוֹלָה֠", "קַדְמָא֙", "ואַזְלָ֝א", "רְבִ֗יע"] + ] + }, + "pazer": { + "name_he": "פָּזֵ֡ר", + "text": [["פָּזֵ֡ר"], ["מוּנַ֣ח", "פָּזֵ֡ר"]] + }, + "yetiv_katom": { + "name_he": "יְ֚תִיב קָטָ֔ן", + "text": [ + ["יְ֚תִיב", "קָטָ֔ן"], + ["יְ֚תִיב", "מוּנַ֣ח", "קָטָ֔ן"] + ] + }, + "zakef_gadol": { + "name_he": "זָקֵף גָּד֕וֹל", + "text": [["זָקֵף גָּד֕וֹל"]] + }, + "zarka": { + "name_he": "זַרְקָא֘", + "text": [ + ["זַרְקָא֘", "סְגוֹל֒"], + ["זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"], + ["מוּנַ֣ח", "זַרְקָא֘", "מוּנַ֣ח", "סְגוֹל֒"] + ] + } + } +} diff --git a/fonts/StamAshkenazCLM.ttf b/fonts/StamAshkenazCLM.ttf new file mode 100644 index 000000000..453eacc8a Binary files /dev/null and b/fonts/StamAshkenazCLM.ttf differ diff --git a/fonts/StamAshkenazCLM.woff2 b/fonts/StamAshkenazCLM.woff2 new file mode 100644 index 000000000..f6b9d8026 Binary files /dev/null and b/fonts/StamAshkenazCLM.woff2 differ diff --git a/fonts/TaameyFrank-taamim-fix.ttf b/fonts/TaameyFrank-taamim-fix.ttf deleted file mode 100644 index bb7594ffb..000000000 Binary files a/fonts/TaameyFrank-taamim-fix.ttf and /dev/null differ diff --git a/fonts/Taamey_D.ttf b/fonts/Taamey_D.ttf new file mode 100644 index 000000000..6cfc91a77 Binary files /dev/null and b/fonts/Taamey_D.ttf differ diff --git a/fonts/Taamey_D.woff2 b/fonts/Taamey_D.woff2 new file mode 100644 index 000000000..2aefa36f1 Binary files /dev/null and b/fonts/Taamey_D.woff2 differ diff --git a/fonts/index.d.ts b/fonts/index.d.ts new file mode 100644 index 000000000..73275ced9 --- /dev/null +++ b/fonts/index.d.ts @@ -0,0 +1,2 @@ +declare const useFonts: () => [boolean, null | Error]; +export default useFonts; diff --git a/fonts/index.native.ts b/fonts/index.native.ts new file mode 100644 index 000000000..f1237ed60 --- /dev/null +++ b/fonts/index.native.ts @@ -0,0 +1 @@ +export default () => [true, null]; diff --git a/fonts/index.web.ts b/fonts/index.web.ts new file mode 100644 index 000000000..419fecf43 --- /dev/null +++ b/fonts/index.web.ts @@ -0,0 +1,5 @@ +import Taamey_D from "./Taamey_D.woff2"; +import StamAshkenazCLM from "./StamAshkenazCLM.woff2"; +import { useFonts } from "expo-font"; + +export default () => useFonts({ Taamey_D, StamAshkenazCLM }); diff --git a/fonts/stamashkenazclm-webfont.ttf b/fonts/stamashkenazclm-webfont.ttf deleted file mode 100644 index e09c55d49..000000000 Binary files a/fonts/stamashkenazclm-webfont.ttf and /dev/null differ diff --git a/fonts/types.d.ts b/fonts/types.d.ts new file mode 100644 index 000000000..e85d64d22 --- /dev/null +++ b/fonts/types.d.ts @@ -0,0 +1,9 @@ +declare module "*.woff2" { + const id: number; + export default id; +} + +declare module "*.ttf" { + const id: number; + export default id; +} diff --git a/icon.png b/icon.png new file mode 100644 index 000000000..06f58eac6 Binary files /dev/null and b/icon.png differ diff --git a/index.js b/index.js deleted file mode 100644 index a850d031d..000000000 --- a/index.js +++ /dev/null @@ -1,9 +0,0 @@ -/** - * @format - */ - -import {AppRegistry} from 'react-native'; -import App from './App'; -import {name as appName} from './app.json'; - -AppRegistry.registerComponent(appName, () => App); diff --git a/index.ts b/index.ts new file mode 100644 index 000000000..8731dd32a --- /dev/null +++ b/index.ts @@ -0,0 +1,24 @@ +// this is the native entrypoint - web is in web/index.ts + +import "intl-pluralrules"; + +import { Script, ScriptManager } from "@callstack/repack/client"; +import { AppRegistry } from "react-native"; +import { name as appName } from "./app.json"; +import App from "./src/App"; + +AppRegistry.registerComponent(appName, () => App); + +ScriptManager.shared.addResolver(async (scriptId) => { + // In development, get all the chunks from dev server. + if (__DEV__) { + return { + url: Script.getDevServerURL(scriptId), + cache: false, + }; + } + + return { + url: Script.getFileSystemURL(scriptId), + }; +}); diff --git a/ios/PocketTorah.xcodeproj/project.pbxproj b/ios/PocketTorah.xcodeproj/project.pbxproj index 7871e0c71..43a2e39fe 100644 --- a/ios/PocketTorah.xcodeproj/project.pbxproj +++ b/ios/PocketTorah.xcodeproj/project.pbxproj @@ -16,14 +16,14 @@ A1A30CDF26DEF28400F051CF /* audio in Resources */ = {isa = PBXBuildFile; fileRef = A1A30CDE26DEF28400F051CF /* audio */; }; A1A30CE326DEF29400F051CF /* labels in Resources */ = {isa = PBXBuildFile; fileRef = A1A30CE226DEF29300F051CF /* labels */; }; C3914450218AAFC547F4853C /* libPods-PocketTorah.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7280DBAC03DBC62323442EA4 /* libPods-PocketTorah.a */; }; - 17F61969377C482AA4CB0A3C /* stamashkenazclm-webfont.ttf in Resources */ = {isa = PBXBuildFile; fileRef = EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */; }; - F6113DFEE1954F8D9BE629A6 /* TaameyFrank-taamim-fix.ttf in Resources */ = {isa = PBXBuildFile; fileRef = 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */; }; + F3C06901BBAC4D1DB304F694 /* Taamey_D.woff2 in Resources */ = {isa = PBXBuildFile; fileRef = 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */; }; + 32F59A87C27E428E9EA9B039 /* StamAshkenazCLM.woff2 in Resources */ = {isa = PBXBuildFile; fileRef = 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ 00E356F41AD99517003FC87E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; - containerPortal = 83CBB9F71A601CBA00E9B192 /* Project object */; + containerPortal = 83CBB9F71A601CBA00E9B192; proxyType = 1; remoteGlobalIDString = 13B07F861A680F5B00A75B9A; remoteInfo = PocketTorah; @@ -50,8 +50,8 @@ E5FD2AC2ADF33EAF3CA0BF8E /* Pods-PocketTorah.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PocketTorah.release.xcconfig"; path = "Target Support Files/Pods-PocketTorah/Pods-PocketTorah.release.xcconfig"; sourceTree = ""; }; ED297162215061F000B7C4FE /* JavaScriptCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = JavaScriptCore.framework; path = System/Library/Frameworks/JavaScriptCore.framework; sourceTree = SDKROOT; }; F7792FFC99CB4370ADC0D201 /* Pods-PocketTorah-PocketTorahTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-PocketTorah-PocketTorahTests.debug.xcconfig"; path = "Target Support Files/Pods-PocketTorah-PocketTorahTests/Pods-PocketTorah-PocketTorahTests.debug.xcconfig"; sourceTree = ""; }; - EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */ = {isa = PBXFileReference; name = "stamashkenazclm-webfont.ttf"; path = "../fonts/stamashkenazclm-webfont.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; - 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */ = {isa = PBXFileReference; name = "TaameyFrank-taamim-fix.ttf"; path = "../fonts/TaameyFrank-taamim-fix.ttf"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; + 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */ = {isa = PBXFileReference; name = "Taamey_D.woff2"; path = "../fonts/Taamey_D.woff2"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; + 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */ = {isa = PBXFileReference; name = "StamAshkenazCLM.woff2"; path = "../fonts/StamAshkenazCLM.woff2"; sourceTree = ""; fileEncoding = undefined; lastKnownFileType = unknown; explicitFileType = undefined; includeInIndex = 0; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -132,7 +132,7 @@ name = Libraries; sourceTree = ""; }; - 83CBB9F61A601CBA00E9B192 = { + 83CBB9F61A601CBA00E9B192 /* PBXGroup */ = { isa = PBXGroup; children = ( A1A30CE226DEF29300F051CF /* labels */, @@ -160,14 +160,14 @@ sourceTree = ""; }; 9D49AC8DB40C4707ABF33932 /* Resources */ = { - isa = "PBXGroup"; + isa = PBXGroup; children = ( - EC1B1404933D46F8B2A5CFC5 /* stamashkenazclm-webfont.ttf */, - 87EF7F05CC9D46C3BAFF848D /* TaameyFrank-taamim-fix.ttf */, + 631AFEBA9B2E4F3CAF754931 /* Taamey_D.woff2 */, + 67EB7A91D7754D4EBF28E3F3 /* StamAshkenazCLM.woff2 */, ); name = Resources; - sourceTree = ""; path = ""; + sourceTree = ""; }; /* End PBXGroup section */ @@ -218,14 +218,14 @@ /* End PBXNativeTarget section */ /* Begin PBXProject section */ - 83CBB9F71A601CBA00E9B192 /* Project object */ = { + 83CBB9F71A601CBA00E9B192 = { isa = PBXProject; attributes = { LastUpgradeCheck = 1210; TargetAttributes = { 00E356ED1AD99517003FC87E = { CreatedOnToolsVersion = 6.2; - TestTargetID = 13B07F861A680F5B00A75B9A; + TestTargetID = 13B07F861A680F5B00A75B9A /* PocketTorah */; }; 13B07F861A680F5B00A75B9A = { LastSwiftMigration = 1120; @@ -240,7 +240,7 @@ en, Base, ); - mainGroup = 83CBB9F61A601CBA00E9B192; + mainGroup = 83CBB9F61A601CBA00E9B192 /* PBXGroup */; productRefGroup = 83CBBA001A601CBA00E9B192 /* Products */; projectDirPath = ""; projectRoot = ""; @@ -267,8 +267,8 @@ A1A30CE326DEF29400F051CF /* labels in Resources */, 81AB9BB82411601600AC10FF /* LaunchScreen.storyboard in Resources */, 13B07FBF1A68108700A75B9A /* Images.xcassets in Resources */, - 17F61969377C482AA4CB0A3C /* stamashkenazclm-webfont.ttf in Resources */, - F6113DFEE1954F8D9BE629A6 /* TaameyFrank-taamim-fix.ttf in Resources */, + F3C06901BBAC4D1DB304F694 /* Taamey_D.woff2 in Resources */, + 32F59A87C27E428E9EA9B039 /* StamAshkenazCLM.woff2 in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -287,7 +287,7 @@ ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "set -e\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; + shellScript = "set -e\n\nexport BUNDLE_COMMAND=webpack-bundle\n\nexport NODE_BINARY=node\n../node_modules/react-native/scripts/react-native-xcode.sh\n"; }; 05618B5C5538BC95F5F0A1E0 /* [CP] Check Pods Manifest.lock */ = { isa = PBXShellScriptBuildPhase; @@ -461,7 +461,7 @@ "$(inherited)", ); INFOPLIST_FILE = PocketTorahTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -485,7 +485,7 @@ BUNDLE_LOADER = "$(TEST_HOST)"; COPY_PHASE_STRIP = NO; INFOPLIST_FILE = PocketTorahTests/Info.plist; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -589,7 +589,7 @@ COPY_PHASE_STRIP = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; ENABLE_TESTABILITY = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_DYNAMIC_NO_PIC = NO; GCC_NO_COMMON_BLOCKS = YES; @@ -605,7 +605,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -654,7 +654,7 @@ COPY_PHASE_STRIP = YES; ENABLE_NS_ASSERTIONS = NO; ENABLE_STRICT_OBJC_MSGSEND = YES; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = ""; + "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = "arm64 "; GCC_C_LANGUAGE_STANDARD = gnu99; GCC_NO_COMMON_BLOCKS = YES; GCC_WARN_64_TO_32_BIT_CONVERSION = YES; @@ -663,7 +663,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 11.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( /usr/lib/swift, "$(inherited)", @@ -711,5 +711,5 @@ }; /* End XCConfigurationList section */ }; - rootObject = 83CBB9F71A601CBA00E9B192 /* Project object */; + rootObject = 83CBB9F71A601CBA00E9B192; } diff --git a/ios/PocketTorah/AppDelegate.h b/ios/PocketTorah/AppDelegate.h index ef1de86a2..d3d75b0b4 100644 --- a/ios/PocketTorah/AppDelegate.h +++ b/ios/PocketTorah/AppDelegate.h @@ -1,7 +1,8 @@ #import +#import #import -@interface AppDelegate : UIResponder +@interface AppDelegate : EXAppDelegateWrapper @property (nonatomic, strong) UIWindow *window; diff --git a/ios/PocketTorah/AppDelegate.m b/ios/PocketTorah/AppDelegate.m index 123b85a94..51cdda32f 100644 --- a/ios/PocketTorah/AppDelegate.m +++ b/ios/PocketTorah/AppDelegate.m @@ -31,8 +31,8 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( InitializeFlipper(application); #endif - RCTBridge *bridge = [[RCTBridge alloc] initWithDelegate:self launchOptions:launchOptions]; - RCTRootView *rootView = [[RCTRootView alloc] initWithBridge:bridge + RCTBridge *bridge = [self.reactDelegate createBridgeWithDelegate:self launchOptions:launchOptions]; + RCTRootView *rootView = [self.reactDelegate createRootViewWithBridge:bridge moduleName:@"PocketTorah" initialProperties:nil]; @@ -43,10 +43,11 @@ - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:( } self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds]; - UIViewController *rootViewController = [UIViewController new]; + UIViewController *rootViewController = [self.reactDelegate createRootViewController]; rootViewController.view = rootView; self.window.rootViewController = rootViewController; [self.window makeKeyAndVisible]; + [super application:application didFinishLaunchingWithOptions:launchOptions]; return YES; } diff --git a/ios/PocketTorah/Info.plist b/ios/PocketTorah/Info.plist index 4237976e3..78da83bd8 100644 --- a/ios/PocketTorah/Info.plist +++ b/ios/PocketTorah/Info.plist @@ -26,14 +26,10 @@ NSAppTransportSecurity - NSExceptionDomains - - localhost - - NSExceptionAllowsInsecureHTTPLoads - - - + NSAllowsArbitraryLoads + + NSAllowsLocalNetworking + NSLocationWhenInUseUsageDescription diff --git a/ios/Podfile b/ios/Podfile index 4c6c92250..28130344d 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -1,9 +1,18 @@ +require File.join(File.dirname(`node --print "require.resolve('expo/package.json')"`), "scripts/autolinking") require_relative '../node_modules/react-native/scripts/react_native_pods' require_relative '../node_modules/@react-native-community/cli-platform-ios/native_modules' -platform :ios, '11.0' +platform :ios, '13.0' target 'PocketTorah' do + use_expo_modules! + post_integrate do |installer| + begin + expo_patch_react_imports!(installer) + rescue => e + Pod::UI.warn e + end + end config = use_native_modules! use_react_native!( diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 982039563..e07e7a031 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -547,4 +547,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: f3264b52d2b17eaf8e6e330b56e1a67de4fec7ad -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/ios/Pods/Manifest.lock b/ios/Pods/Manifest.lock index 982039563..e07e7a031 100644 --- a/ios/Pods/Manifest.lock +++ b/ios/Pods/Manifest.lock @@ -547,4 +547,4 @@ SPEC CHECKSUMS: PODFILE CHECKSUM: f3264b52d2b17eaf8e6e330b56e1a67de4fec7ad -COCOAPODS: 1.10.2 +COCOAPODS: 1.11.3 diff --git a/ios/Pods/Pods.xcodeproj/project.pbxproj b/ios/Pods/Pods.xcodeproj/project.pbxproj index 30c47d3cf..0a238301c 100644 --- a/ios/Pods/Pods.xcodeproj/project.pbxproj +++ b/ios/Pods/Pods.xcodeproj/project.pbxproj @@ -9,36 +9,36 @@ /* Begin PBXAggregateTarget section */ 11989A5E568B3B69655EE0C13DCDA3F9 /* React-RCTActionSheet */ = { isa = PBXAggregateTarget; - buildConfigurationList = 9E7900BBC6EFA8A1A606176EFE2094EB /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; + buildConfigurationList = CD256B5B9D782ACC884E50AA3ECB39A4 /* Build configuration list for PBXAggregateTarget "React-RCTActionSheet" */; buildPhases = ( ); dependencies = ( - D942C1F8BB0AAF1319A11BE18DEB9B6F /* PBXTargetDependency */, + 8E016E52E49BE98FFE4FE75C1C1244CB /* PBXTargetDependency */, ); name = "React-RCTActionSheet"; }; 1BEE828C124E6416179B904A9F66D794 /* React */ = { isa = PBXAggregateTarget; - buildConfigurationList = 9C2985765FD0DA34F170905B27C5DEF6 /* Build configuration list for PBXAggregateTarget "React" */; + buildConfigurationList = 22204F7D0074FAEE4DE81825E9BA4024 /* Build configuration list for PBXAggregateTarget "React" */; buildPhases = ( ); dependencies = ( - 808F9E991E0CF2022A4B179198E7D42B /* PBXTargetDependency */, - 4870473FE725C15F64CC83008ADBD0E3 /* PBXTargetDependency */, - ED644C416567E3A52E589280933A48C3 /* PBXTargetDependency */, - 23E673649C8C535E2E712EDC9A07F3A1 /* PBXTargetDependency */, - D0A04D23EEBF8375541C815FE6BCFAC6 /* PBXTargetDependency */, - A3669986B27CFDF736B89888A8030B21 /* PBXTargetDependency */, - F165B479FED76782D4BA7577B4E1AD15 /* PBXTargetDependency */, - F95981984AA6DD97C177788280BC3E41 /* PBXTargetDependency */, - C42FB9F69E6F36F74A47AD659B7F7BBF /* PBXTargetDependency */, - D97DBE1761E5526835092DE58B80AFFC /* PBXTargetDependency */, + E557B4B80C1237ABC292CD0128E3AFED /* PBXTargetDependency */, + 512BC987D095B46D006FB4B66A511DFC /* PBXTargetDependency */, + DF922E864A21FD15855946CDD138DD42 /* PBXTargetDependency */, + FA8980B62F9A773C690E7605CDC7303A /* PBXTargetDependency */, + A970CD43FFEC54696E3B872BF12BF693 /* PBXTargetDependency */, + 09C5131B1462EA803784551E64B982D3 /* PBXTargetDependency */, + B89A1D5EEDA32B25474893B6E48C0678 /* PBXTargetDependency */, + 7CC7E0A5C3FD6958BE21537FD755E4DA /* PBXTargetDependency */, + E0CE91BB36E668C4DA34D0D641EBFBBB /* PBXTargetDependency */, + 115130FD6E762AED75C709CEFF1DDBC9 /* PBXTargetDependency */, ); name = React; }; 2681CB7EF647E61F4F9A43029C235607 /* React-callinvoker */ = { isa = PBXAggregateTarget; - buildConfigurationList = 1E18B7F2337CA805697FE3A52A7A9D99 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; + buildConfigurationList = 37E2A9F262AB090D8339D0EAF957EA76 /* Build configuration list for PBXAggregateTarget "React-callinvoker" */; buildPhases = ( ); dependencies = ( @@ -47,11 +47,11 @@ }; 54EB12219122432FA744088BC5A680D2 /* React-runtimeexecutor */ = { isa = PBXAggregateTarget; - buildConfigurationList = D6E4F444C0A38D54AA90C847305B52FE /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; + buildConfigurationList = D387C66C593185D12F8F148B90A1CB05 /* Build configuration list for PBXAggregateTarget "React-runtimeexecutor" */; buildPhases = ( ); dependencies = ( - BD164D2A5BD51470C683EF116AC47068 /* PBXTargetDependency */, + E2E92E2EA5596E720719896BA4441804 /* PBXTargetDependency */, ); name = "React-runtimeexecutor"; }; @@ -66,9 +66,9 @@ }; B9ED5194E665042005069EF06C82A050 /* OpenSSL-Universal */ = { isa = PBXAggregateTarget; - buildConfigurationList = 1012EAC54A0F03E7AFFCCBB43A0CB8EB /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; + buildConfigurationList = 8974C6C0BCA8234780AC0486DDB89579 /* Build configuration list for PBXAggregateTarget "OpenSSL-Universal" */; buildPhases = ( - ECADB969E54E0B50F1B0267EEF77B798 /* [CP] Copy XCFrameworks */, + 278D3A0D04EFF54AD88838EEF0F81658 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -76,9 +76,9 @@ }; D9245543B79C09FAC40FC8B9F291536A /* Flipper-DoubleConversion */ = { isa = PBXAggregateTarget; - buildConfigurationList = A2A683E598EAA863B5CABDEB817006C1 /* Build configuration list for PBXAggregateTarget "Flipper-DoubleConversion" */; + buildConfigurationList = 1B0C2F41A61845708761182A055961BA /* Build configuration list for PBXAggregateTarget "Flipper-DoubleConversion" */; buildPhases = ( - 2A3E28CE776C003DB682226592AA221B /* [CP] Copy XCFrameworks */, + 78CEDEB816D95DFA51D0D4CE8C6BA900 /* [CP] Copy XCFrameworks */, ); dependencies = ( ); @@ -86,7 +86,7 @@ }; E7E7CE52C8C68B17224FF8C262D80ABF /* RCTRequired */ = { isa = PBXAggregateTarget; - buildConfigurationList = 5D2C2656552C5B70F0E8A1E27953B543 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; + buildConfigurationList = 881DAAB4A15927F22D804EF2F7F67997 /* Build configuration list for PBXAggregateTarget "RCTRequired" */; buildPhases = ( ); dependencies = ( @@ -95,7 +95,7 @@ }; ED2506AE7DE35D654F61254441EA7155 /* boost-for-react-native */ = { isa = PBXAggregateTarget; - buildConfigurationList = 120386F733DE555A852AAD56C82F00D4 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; + buildConfigurationList = D4CC6B7B3D7C534DBF7D6F2708D2BEB7 /* Build configuration list for PBXAggregateTarget "boost-for-react-native" */; buildPhases = ( ); dependencies = ( @@ -105,3932 +105,3932 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 000ED67C4712304B52910E1B1817F599 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 006BF845E2DABA7A653DD6E9D51642F4 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0028B5DE6A9559CA7AF408EE0582EAF9 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CEBB24EE6C172CE5C37B1917A1BF06 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0041F5321E26BB67F98A29CC922E5725 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 595E4B37587954B324E595AEEA8ED2AF /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0045ABCC3A9E6371E934C36340395A6D /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E00437B5B88C5A16FF27610054AADAE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0063366091588E0F11A112BA3CBC27C9 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 406394966EB10514F897D0D6AAEBA282 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00AF2A3C24577C30F7180DB2C6BEE6A4 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 051CAA59AFB24C274B04806FCD688CEA /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 00E568F139C1384407F505189247ECB6 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E4A9F442E5CBC5B460FD2CF1469BD /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0121DBEDDB1AA17D2E699AD70C4D9C7B /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A60DE85867BD2E700FDA5A43D39B0FB /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 0124D77EAE98D4BEFD4C2687A3EEDB45 /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C23A0ABA96B6CB515E3445FDE81E7D /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 01468E07CC9A70B0B7660B922EF770C0 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B33D3B720FED836F30DEF46A97B52425 /* Flipper-Glog-dummy.m */; }; - 014BB3A183354AEAF1E828F843051834 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 015F84A9919EA7C159CE4E860430A226 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD94C35B591A8D0F5FD887BB13D9CD2 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 01680946FD6568A91EE584A9FB0264FC /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B40B497CE977150A26FD1DC8AB1C9A4 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 020D04CED0C6D27585CB90AF0C3EFC3A /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01132FC3ACC08333CAB6B3AD0096739 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0213E3ABFB6144FB9967FBDB3087D23C /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BFF6247936A15CAF4AD08522509ECA /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02332F8F7C04B8D65908FD9BA76E79FB /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADABD4E30CAA9CDCADA0F150D9AE057 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0235424082FA5C0EE1A28B4CA3342CED /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA6BCB333553B1E18298475B9A4570A1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 0237D457E3315785DF619518498D7C6F /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA84CD5C385B27BC49C6657CFA0116C /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02A487983E07C58C4956A63DBE68CEA0 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B9FBCC38BDAD76FEB6882B6D88CBCB /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02C5BF643928D4D8655C6DF7AF96E118 /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD5200CB5EA7974D2E999D30C3511AA /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 02D8EC50EC841077DB8A6E52FBC95EBE /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE62216059D5098285DEFC5C80C8941 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 02F1FA6D43FD6F60DF0D43DA5696F199 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBBABCF47B45861387AFCD430239B40 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 034372BB5AC91E8CAA8D67BB41FA4590 /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB294E2B4BCB25CFE7FF51274D924314 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0349954A3C3DEAFC3FEB84652D7E5FE2 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 280A056C513F9A54DC8C3BB641344732 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 035ABDBD827EF6B667B0A81C4BC891BE /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E914DCD7F182197791B30CC9FA2898 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03643914C68DDAF824E99551F1A4481D /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0382A9658B2AF9834BB56EFF733D3C4F /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 873E13892F52A4C634ED4A3ACB300063 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 038412A0F856DE51BEC80342AB782904 /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9F9B4BE928B32046D7D1FB7C7D3758 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03D358CFFE6708D5803DF2A4C956211D /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0A113687718501724E0CB3464ACAE3 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03DFFDE97A88D71F3648E4D8A1DD020A /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1932535513730B312147D7069EC14C2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 03F1BB53211FFF9C9BC267621C6CB3C2 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C0D9B78639A507C16C9DCDF80D0DD4 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0405331F7D087C95E7DBDB3EE0EF8AF4 /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 041F376688E51F9C03FBA9538D0E9460 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04586135370780CBD467DDD4BAC0A4A1 /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C504F5E22C71819165243C2772F9C /* glog-dummy.m */; }; - 0466A06643DB829CFF67177A84F737A3 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B16721598F802B670D582E0E7B8BF39 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 04A69AF45674AA87ACEB29560EB2B8D6 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBB4235756F94E94980BCFD6940F1D9 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04AFA7CF94307A20C70F11532518E01E /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 5428E8B7A216A24ACE562A2878E76B30 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04D0FEA166E5B73A725131E828322ADA /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 08319D8926787065308E3CF23A13F49B /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 04DA956BC22162F1D70A9AC24F0530AB /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4484626AED358D181DDF77B9714BB92C /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 050A10BBDDC1FF047E24842C3E2D747B /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0744984F91FEBB538C913D2A9F698D15 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0526C03ADEFF5EA56A60F4E640A52BDE /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 47446390A804C02F6910A50AD58044FE /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 056C2FA7A34D609828E24339EE235390 /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B14CBC4318218449960EFF37EC2C304C /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0581F47024834320E60959E2F854CB71 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = AD96D492F5D2DDCB9ABBFC7CB11D5377 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 059003919588E5CC861534E9A6D7F82C /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EA520D5FC815078100D9048CDD2B7F0 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 05DF47CCADF5B19ACEC7FD348CF1B6E7 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F05A4D19CDAB21C6C202E6DDDE55D70 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 05F113A4765314081AFE4462BD3D97F5 /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D48384AEC145E893B5F709E82E12D9 /* RCTTextSelection.m */; }; - 05FCF7F38F3DE981392F6A67CC00D84E /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2480DAD523F9D52380671FA1EFAC50A2 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0627F8239A1598538007D675E2058351 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E866E61D94E3B770562F3A24022D48 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 062804BA86A2ACA508DF19EBF445F338 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D8CD69443892E3ECCE5E0918B509B6 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06514FD84CC576BCCE44F89EE61A7F68 /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA622B22D82D669A9FE394DAF8AF3F0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 069A8241775AF6A68E6EDAA0AE7BC547 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 698BF75FBD0B786A52A90D043F3D80CB /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 06A12CE82355692D87334E814E2976BE /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB1601793EA3A461334E9DF8DB14F563 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 06CD8B3486BEA190899A3BB8D6BD4E69 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7EFC8C1057284BC886700738D3BC88 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07129E658ABFD9EE19E5093EE183C84E /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B6109028D4C572FC3B55F0A694823E87 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0719E36ACFB0693276C66B4531451C56 /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE8A068F5FE1D1364C8461DCA3A8AE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 07445CEABC515B5ADA3980163DB0E861 /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = CF44EB9576CCBFA57DC957C87DE3929C /* RCTProfileTrampoline-arm64.S */; }; - 07449E19E529E574288D33B1B4C50B46 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C54E73C063031D845AF36CF81D2B89B9 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0795B9DFC07675243F15E9AB8463B7DC /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = ABC8EB8C180081C475112BF167B9C363 /* select.c */; }; - 07978F4F0930700A73D8D0E3A9DAE062 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3BBFE342AC78030BE9F88133564F39 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A4B1578D660AE9BA806FF86A99497F /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B6234C08FD5E27EE8EC78AAF97D807B7 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07A58B9383D0B881444E7A92AC1D7E8D /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9539DBE6F8BE89D65AC6C94CEF0690EE /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07B5408F8471772FBE19E49532E64A98 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D0F4B97E8BAB9616692A195ECC0874 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07C7DFB1C3F3ED2056DEB3E0BFC80689 /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ED4E2B9DFC187214285B36BC161FC3 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 07D0D8AE24054928577654C8E3571577 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCF68397950076B1FBCD241889521E8F /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 07ECC720E5D0B532E4D189A534B70D1B /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 445514320E89119D3127BA5CEC7FB7CE /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 08B6472876B37CDD4870F37C4030043B /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C60695CEB7D05035E7C57DC3CC499976 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 08D5A1FE8D6CCBB53CD446B383BA45D7 /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35ED33D74E3170EAFF2AD9FE7AA23818 /* Flipper-RSocket-dummy.m */; }; - 08FE01E6E385043DD42A42D4C111A425 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE652C59178B31AFEE638CBAED7F4EC /* RNCSafeAreaView.m */; }; - 095AE5263A9A9FCD71E88BCD46B468D3 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 09AB58097DE82F52C0E9A3619F16602A /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFEFCD21FF612FC8246B21ACA8D3887 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 09C5B3BD22DCD769D0842ADC36873808 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5879CDFC34BAE8285CB8379001BAADEA /* RCTInputAccessoryView.m */; }; - 0A0A1356883FDE57591AA4D295E0FD12 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91382F601A78D919F80C3112ABF74676 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0A1EE871923E2471FB9B792C55DBDB86 /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5AF4267C1B5686FA094913636724B7 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A2059F26477A669ABE65281A4EBE24A /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = B268A4F1805BF5B52117FD5EB2F83C0F /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A4E9961F90302FBF06F56440056D048 /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72AEF06239DAC9A4A3BB41865C18B8A8 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0A835474504177F230F66C4E50FEE4C8 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3037721D5075E235F07CD1CF6F3DDA /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0A979F43637610E59DA38A46D064B4AB /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1804326195F0775552E247AC3FDC4144 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0A9CCB8A75CAAA46D9BA8C0B28954BCC /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F366B87D3586798B377FA6CA73F9ACC /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ABAC9E021F368AE01A38CA69AC537EC /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB23F9EB88F1F0812D6C754F6FDFAE8 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACC3FCA049EA486800F9D5E082E9452 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ACD60D74ED08EFE2208DB650A7D58C0 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC18C916124C33343938E66DB305724 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0ADE3A84893CA58FB95D84081BE1A5AE /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3B0833BC25B5974FFEF64864DC7B82 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0AE492D8D805A6C9EC1FDB00EA22C3AB /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 068EC6DBA015227A76B4AE2D73B63C3B /* RCTMultilineTextInputViewManager.m */; }; - 0AF7E9A3A9464D659549087974DCB0C8 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B092E27641D9DBA6776E8501BD3E1CF /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467A96F5E3DC2DDF88FC4607E2D0D77 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B340D67E9D077B35D5D7A1D9694B433 /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9C5F38B7FD9E7244E93FB3D848EF69 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0B8F1583E31EFF3C7F3285A8A8DDEDFB /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 1111E65BF2B52E0D8190F78EE551B1FF /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BDE8E04F8FB221CB39D0E8E73EFCF14 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A108277A2124FA73CF286BCD2C3270 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0BEB117BA4A766D432320BD44B6CB04C /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7527E657529339010F4C5B7BE009AFB7 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0C141EA1463D7E39A72E6501772F8397 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC814A6EF9F7C7FBE15BAED735CB9E91 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0C3A94ADE61BF5033CBA7E3EC0A41BC2 /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95462A9E050F6A5D33A4B9639E8E2874 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0C55F06EBA8D384F38DAC28134032E7F /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A04D1BBC5C3902FE18C3EDEF929B25 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0CED21BA3F7F2ED94F7CDF8191BCE1E5 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0CF530B4BE3DF3135B10313F4113A254 /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D2C3C4A0D84B8D036DBF36CDE0E5EDE /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A878A3026E64339D4EBE2CAD436ABA97 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D413325F8E58DA75A221C82D1037C0C /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B303AF54F9D894B134992F22DB1A0AE6 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D463780F1326A9D40F46721A95BA49E /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB9555F7B8D493D351640F99BE834A2 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D63DCA4FEBD4795F7FED98235617DC1 /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E8AD1AEAFCBA00ADD4B016E4FE934E /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D9B817983E44B3309F21FD93CE019DC /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 57CFAD62B0C31AA9DCBF31FE329F5A98 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0D9F808E05F5E56937B4697B9366814B /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E37BB84A6C88C4C12A3B97D84163331 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DA25FC9579522D7AF8BB7B3FB44C027 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D7B3F2CF77A00299F16992BB1F7F1 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0DAB2D6B8F48B7846229304CF3172258 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE9942AA6669A2991F0769E429A3643 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DCC6A040C9FE62C53F848F78613B6DD /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED4D46530146D973B4E6FF80AB25AA /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0DEF046ED170C076C63880A8A7B15465 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7886617ECC1A35BAA21D422676D4619 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0DF4FA985E83EDBFC129C0E3A453383F /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B3DA35B1D0E5B22DB59A9E9AE28452 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0E020233E41259C63A46A83F98C50C20 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 643E8FC28550BBC7CB5408D937002318 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0E3F06ED2BEBFB6FE947D3D79564C29A /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3F983FA32B5A35DAA7EC873D69E4F4 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 0E56498D6ABF43FFE7038CA8A539E724 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = DE433456752CF5D378CFDAF3A3F075DF /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EC4580564BA379C0E0C9C39E39B9F4E /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DE23DBDFBFA39930F6547997665453E /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 0EC8B56E3192C5CB3B1B140E2CA71E01 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7135BB1B19E7DE931BEA36D6000F767 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0EE6CFE3A6FA005BCFCEFDB9217D9991 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12AEB3A52CB763C838A0BBA4AECFF691 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 0EF648676E7525E2367DEABB815C39C1 /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8BF52E536CD73241106E07095B9938 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F0D1DE40FBD639C00CB7EE17AE3888F /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6F071B52B98D676644B5EB7E75A283 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F2AAE10F9BA1DED4E711A3FBA2E1649 /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 20397A4540455F0F51356F60106441D0 /* RNRotationHandler.m */; }; - 0F43BF50494A97208471D4DAF73D1D6A /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F49A2E9D56B8E78B5A453E9F7A788D9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAA2F3BFBCB6E4DBF7962E37385C33B /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0F9CF986E3635473C71E37AB4F2A0F9D /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D60924DFDEC5D2FB131F804E43DDB404 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 0F9E6CA155D2E840C40F57FABDB272DF /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FAA07F7CCD29D14896A52B281C48EAC /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 0FEC3DC61965F9DB01810E76FC4259A1 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1987D89098A113C9A34CEE83C0D22F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1008E1C014ADB5E2026E2C9563E714BC /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836978870E64F9D8F2C2140A45FB91B1 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1018B22F0E9A5E602040C35446CF3CCA /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A6C34BFE68BD8A8AD60645EB53019 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 103691CB486854EA56C17A2A6B8C67F1 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6203E2F3DE255EB2539CA8AA78F0F3 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 103BE08DC8F8680B444FCCFC4F5989B5 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40769A5F03D3E43807638D01BBB8FEF8 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 10423371820D395BA02C7F34C5EB3932 /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88738740EB1738EB25DDFAA6A66B215F /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1049B753064A48E0A0D0572D62DFD3BD /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 01708F274708CDFDAE5CF51D63D2772C /* evrpc.c */; }; - 104E32DE9D825AC7DBB322783134E615 /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB5DC6EEA915F3208385DFF7EDEF946 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 106981721829F16A23AFC081C0761279 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1083ABE5D3567C036C1EA0B7FACCDFC2 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED42D6EF2BF08496F970F0246DB6572 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1096976A5185E9DDB60DC7E16A6F956D /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F79014F71F02A5BCDBF767649BD551CF /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10A7ACCF41D7162B83EE470BB932D821 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 754F64613BAE5C1353214CD1BDF4F73B /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 10F4EC5A442B7A8AB378FD68F3CC5213 /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6596ECF01A2A78F57C8C86D8A90D7C0F /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 10FAE0B7E9978FEBF7A5F81169C07A58 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DF99618EC06774F1C02290546281F /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11015C2E9A89F6072B3E93D3F66D576D /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75472DD8C91F2EF6425A96337DED4F32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 111C2DEF5706B2782D2AFD13D07CE8CF /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 850A2EB0B44161C632E717DC766B25A4 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 111C95F5810210A822A11FCA36F792DE /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 694AD1A914BBDAFDECF265CED9DEDAC2 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1125F6621E87B503D1C452D1F2CCDE0D /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 355A1F4908E1306B5091A161BE722E2E /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 118257410F9F0971F0010DB4D2D7CEE1 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 119A5418E2F7445B0D7AD27AE2AC0AC2 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0EA47C5B6A6A9034F17DABE68AA07 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 11F7C3B7741A80CE94348D0D359BBBD4 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA5886B12664A86E901F4ECF9F68C74 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1210B23B2D05916133EB6F6E4438CE31 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12464B967AD789256BC54B7BE52CE336 /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0D5BB58167BE971D92FD73792B06C0 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1269D4C0ED48C68E928D7F77536B0416 /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EBB7067D88C31C6A67F0F16E86C487 /* RNCSafeAreaViewManager.m */; }; - 1297EBA70554372883595F79E1663C02 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34CF249410C053F61A0BC9BCB0D7AFA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12AD4E10C8905AF01D539A39147839A5 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DFA95447F33470564B8F5A2CF14CF5 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12D0A5CD220471E5C2368E0380F0F2E7 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D465747E33C9EAA2C10CCD4C7F655D42 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 12DA5A3877FBDB9297CB3A98EF307C46 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D19F62BB56CAB37E4AE080519BDC9E /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 12EC46656A8F40FD0342C3D6859CB1F8 /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85F0E15BA9473250A828D37C0E07C48 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1325BCE8EEE92182E3B87C341002DEF0 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 197B98B4A1ED2D16B40D747CF181B8A3 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1328433B10FE4EA7663840EC22F20A28 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D72BAF3C9E58367DA704C2DE7DCEF3 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13288FB347E8A967580F91947478F14F /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 3845B94F4AA16FA00DE62B5E0FAD9D96 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13500AFB0ACC544E5E9B867CFAE3CC11 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8282C5E41FB321ABC0FF92D9F49DF3F7 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13585BD34D2315CFC6CB77DE0FE521F6 /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E8E69144CB6045D445F3EE89032F8A /* RCTInputAccessoryViewManager.m */; }; - 13702681EDB10E199D454835761A58D2 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAD7D81233AA19A116D956B1A90A28C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13749E2EF8BE6F8DFC4F70505A05F314 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C74EC1A843AC3D02F83EE0EA0AB7C22D /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C30F36D5B590F554331A916A358891 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B043EA5D7F817A8FF3C7D7BAAB1FEAE /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 13C34E1933D7E242BAA7A6ABC30773F0 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B49023BC83906B7A3718EFA943B9366 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14180E1E40771B078D42FB347C57D5D6 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9813789CD1C5B9D36786B069FFDB93B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1423BC4144BA682FC7F3863F66BE83E7 /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FA79DDEC5B7E32B029006F4C2A0CC9 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 142945886B1E7B19714B1B02BF6C7F93 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 143A2E27E7DDEED9D191220BF66048EB /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9301B429E01F4263AA48460FA094E656 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 14450C4B92ED776EA0FC9CBF04660C02 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B45BBEF43A6C81D322DA8E7AC16BE0 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14582BB7B221739C10FFF023463D61E8 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4715AE5BA41877EFEA164C0539AED2 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1469B12ED80741A571827A90CFD3051C /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E492C755013DE4664C8EA962F3037D68 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1486156DFCD66204248160D76650E74A /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17D8E5B9BAF4E9951D7A500ED30BAEF9 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 1495D06FC3A6901C32A9F45F6E7E3225 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A48B0D6AB9CB43A62DEB123C7FCCA9A /* RCTSinglelineTextInputView.m */; }; - 14A7EA18B10ED0885A5B1C36A84FB457 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E061AF6B8CC2B692F39BBBF26EEF4B /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14A9CBB2D9DE48354B3954C3F433D722 /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA42589883697C3463D81CBE075560B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 14BCC586B782FE8C87D200DF1F0CDC25 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 294108287609745AC0069A42B2DC9268 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 14BF3E00A64A960184000CB635F93134 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D55CB50D0E4CC5FA141DA50043F3D37F /* RCTUITextField.m */; }; - 15215307368A5F0AB1BC4BF82F90EF50 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE06A2E04B27C5BB61690A32DC3726A /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1521E6C391656E576F18F9DEE4104CC3 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3561C42857555012EBA2317AB7A17A13 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 152CFA479034503D82A9E969F2648FE9 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D15FC030ED8EE2D18D9DC1ACBB98F9E8 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 15478EEA451F676A76EDD0CF48FA4EE9 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D95336007D4418B84A453E1E6E638123 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1562F12399A0CF002FCEE0AEFB87F12D /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 157F63A4ED0A55EAF7501C26082169AD /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2AB7574153B535913C59AD7C58072 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15896D76FDC427E83052344D7EA9934F /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECF5FF2D87CB35AFB67B4EB80D0BDF /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 159CBD9CA9A2CF8031B7783937E0FFC1 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54E33083B550D684115185C80AD6E74 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 15B085462E1F2132917F12E218B15C20 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B55DB9D1C484E0803CA8A3DDF5F92D8C /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 15B15B0ECDA21B722AA6F011B776CDC6 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 461B0B1222717797D36C29B289276FC7 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 15B61C1E0200EF34107F2B76953E1C0A /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C661A6463D8CE8DEB4F7D3A7F841D4 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 15D5E26D1EA687EA03C2CBF7CE656B4E /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6A1915E1A55A9884B1AD2FEE520E39 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1607C6D728347B1022DA59150457EAD8 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A9BFCDCC2084C2B48CA8D0B993281D /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 160F270DC385E9C00587FB20ADE2E7BF /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D98B66A48FB557917983796A157E821 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 161517370693506ED9E5238C33C3399A /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA2305A0C651D1549C01EE007A5F747 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 161998471AC7CF0091F4FB2BE3117243 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7305F5F233F11E6DC13E98F47B8C93E1 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 162DAB40BFCDC3C287CD919D540B81E1 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2670B04C5B301D573A6EF48EDEEC493 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1642BC7ED0411204AD9AA6718A2CB9CD /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4AE4515287627AF59945F17C98BA476 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1654ECBFAB990EE2BFA0B40F5F9AD072 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16638CFEBFCF81BB884E5140AF782F42 /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EA5C88ED69A170FF9CB2867F4CF10B /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1667A2F04DF8A206F43B4D7FA13D6D8F /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 166F7009E76DC2189BD62F2635954908 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE5D96D741E1892C62A335769A0A95B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1690A16421C685AF2687D6AA1ADC1895 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C1FD1EB29223453E8FE83D2C81A5BB /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 169E459AA8C68CCEBBE8D4D44ABB8B94 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9E2402816C64CF09A0C4CF93A768B8 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16AD04F1B8BAA9DC17972D6547AFC102 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1936D1DADA0B629DCEAA104A755C21 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16C81EB4B980AB5F4A9F1FB7582D17CD /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B6DFF190986547C1DAF15DA91AE97E /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16E7F728286E2D46344A53085FDC7FE8 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6332C2FD9168224CF49C0A43EE216AE4 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 16EB7984FEDF206218F48CF178CC237E /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4FE2E0543280CAE66CD5B24B90829 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 170B63C109939D6BFADC6145B83BE0E6 /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB1AB956B6E9607F4FC3A309A4496D2 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 171B81E579F872501565BCDE8A81B2C6 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 171F5D66053A376243EFA136C0D9B16D /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA6398A5CFBC999D9D2106E05626E9D /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 17443236C031F42CFA1327576788F403 /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9166FA9C5AC4407FF1904DA232B276C9 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 174E7754FE69A69D7542788D4CF5D3AC /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B2874DDE27A6575C72734F7C89127449 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1757F83BCB98A32FE0C0E9CDA13A1DD1 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3349D93A7A4CE5E6AD34F75FC72E9A2C /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1760C29E0FECA2E5C1174A1FEAACC27E /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFB59819565B98810B2A812CF5B5BF1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1781FE1A5CDB441EF31FCCFDF939A00C /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 146359A0FE6F9D633A1B749DBFC7D1F0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 17822160B0E9A115D2FFF4C3D076A23E /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4874F889D5953046FA4F16DAEF42BC /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1797C4D8CA5D5BA0A9D82C7714271335 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 612C0D938F30EC2E0980D4AFFDD853FC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17B7234459F422149BDB97DB3F1F8D36 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D362115F5D1DFCD8AC54D241B690C17E /* Flipper-Fmt-dummy.m */; }; - 17BF6164B0613C296805A0CB4F027B92 /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 222389CF1784F763E9954F5A96C7471D /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17CF7C735BE667BDCD3C619FC675FDD7 /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5CFA31D6AF98FA51F6F4826861ED80 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17CF891E7CAE976F7AB4694189EF348D /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = C5056392FE62AA0ED91450DED60C0BF0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 17EB22FD5618D4F28FFF2B89CD009E57 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1C8345901D13386123595034784A65 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 18035A2E53C70220C42E897E695D0DAB /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A26503DA5D2A7AEE41B51B9DBC0F51 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 189C2E5A75FA82FF486EBC8E9209FE8E /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D12F3348AC20866A7315438EDB958EE5 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 194D530BB5B0D64798CDF79AFD11C974 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB8FC08C45ADF73E91C0D57E1C5AFFEE /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 195790CE9125A47E1836EFF2E15CE6A5 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 211C3BD688AE5855B00A272F4E7BF680 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1963A88BD2AFA43E64FB2A602D786217 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 956D47CD098DE124F33FDE14254C2A3C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19B99B1445AA7A46D295960948FAA5CE /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA567A1A4E232B3C2A7A9CD6A49CFED /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19C7049D5255A4F9817702E75CA2C95C /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E82A31FC89E75D08BB8326C42C0027D /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 19C9C2B298272C81C82EF3DB99C42ACC /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC085A2646149BBC2FCEC1836420F2E7 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 19E023F7AFA0C82E80A9B8AA7C9E1BEB /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BA7C52AD9F07EBE5EFF84C54A029A1 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A34F610F6B24E4C1D43BC75CEF4671C /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3C1BC5A627FA1E856A14BD25A8B3AE /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A4083B97A59830A7133B240C0483C18 /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E342B6CC6AAADA811C7F325812922D69 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1A67EBF4B48A3582B009E5F6292046B3 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1A9A3688F92F0988177F7DC2C0E6921D /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE7A0D41676DF67ADB8D4D2C5F38DE9 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AA99C0068BA68F3BDD59759E94F44C2 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C26C452AEC754F91C982DD760CECFE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1AAA3F42DCCF3943E96F6B5E5675CDD4 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B5FA86B56852B3501C338AB8266527 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ABBFC749B98CF143A64687AC4E99B66 /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = B885F37C6E24A3052473BD896E3BB0BC /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ACDA2E6440BD73EA04A38CBF63655E3 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E11668202A90500738C421568FB750E8 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1ACE7BDF2472DB893B8E8A5BB882BFA1 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC9D645678A174021EC4C1314B0061 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B23520B3902888BBEA4F8D9FA31F484 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2203D18515AB76E05967AD3CB9730EA8 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1B643A6AF152862B77B2776B18A6D96C /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E404F7B8D082BDC9589DC02C05E896F6 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 1B6F6160270CE0D3D451BCDD0B035E6C /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B7312FC4375ED3FD9316940C362688BF /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1B92D1DEE532D1421A11909859C2FB2E /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BFE175CE4F1F4C39499C6B070CAE03 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BA1CF2470B7B86137A0DB4B43A744DF /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0D6518052598F8F5EC966342AE6907 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BEB8616A62772D8641A992537A333F8 /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D7ECF00D6A9939D86922892D5C1983 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1BF28E5E8242BFE89932EE40513E1BA4 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F8A64CBA73083B7881CEBB1F64AD17 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 1C28E7F2EF354C7A9A8DA951CD65E39C /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 83060F1CF7AADD6EB245B52425F97843 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C4278AC83F24EE17C05DA11A320C56F /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A39F8229634377AC72776DCA6A1F24C9 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C50F05563F7AE675E3DEE74FB9D05C3 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 24367E13F609D8490FCAF7A0BD044BC9 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C78AAF4B32AA2EDAA5821F4D1EA44D4 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 686319D0CFDEDD7325EE90BA66A62073 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9162008569E6F37F06DBC819ED84AF /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F751828F4DE80C7782447F461745099 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1C9E61C0B825D4F32B1EDE48DC9984C4 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C0D9F1A9BBE4D330BE0E76392A1178 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1CB924C2BC953DB1482D82618348018B /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6424A98A69AEC430CA1C3A2108AC2F7C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D09C535A223FE36A73468686580C51F /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D564D6EA1777610D343FF98BA9875568 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D2AD2F80DC8C94DCC21B6722387CD80 /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AE2818B14E3F5717FC8E1A16BE00F1F /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1D41D254E41C099D677F2928CF4BC6B5 /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1D66E156B8AD27CCEE5E2D175E50E2B5 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB8D16DC2F2753800284C8A38A82434 /* DoubleConversion-dummy.m */; }; - 1D6C9CF4F5F30299476A2A9F3CC06F6B /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AB1EFFD1DF18724BEC712F430E9F09 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DB7E9A5693E70953E5D62865ED4DF31 /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC7324D8427DDFC5BB81BD18C3048D0 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DBE94BC49B4A231D9B2928A5E4DCB15 /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D6062671BBC5DCDEB8F7D0A8498B2F /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1DC6315B96A0A51BBF70458674B413FA /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEF932892395635722A5E2D5574F33D /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 1E1AAE4300989B65521CE4DCE9931848 /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7F9AF4ABB9904416FBD2981623AF8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 1E29BA57B84EF4C373B79F84526AFCD8 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 635E47E5FF8415F888BBEFD4D3EAB7A4 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E37026DF5FB24BF5EF5C45FCC489F0C /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = D45184467CBEC83CD5A938375357381B /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E4217917F6E843193ED2DE6BFE3E862 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B83EA61AF7E0824DC080143A7B15F67 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1E5B2A1FB4F0C907F0E7B168B0793EB8 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDC12689B9B69B43D8097102DDF3E73 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E5CF2785309F2EDBB32EABAB69AAD20 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A98BB9C1385C8EF9CC18EA1ED6646B0F /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1E674C2ACAA61CE310DF2120737F72CF /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CD2436153D235CF2F32141D8B7120B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1EC201E1D63ADEE6C6B31E02576964D5 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F0A8384C031624520F90B8AD83FBE52 /* NSArray+Map.m in Sources */ = {isa = PBXBuildFile; fileRef = 836F266F77557D402D1A34A5E87F6120 /* NSArray+Map.m */; }; - 1F10D7FDB5AE4794DBD7455B1C4929DD /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7ADF09EF0D7A10170EBC74AA6A8088 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F1543DFE6A148A0B9873B6023A59D09 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EE74B53CD88DB04E32EDE53C5868E59 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1F26C26AECC5AF4DE0F397724F905D0A /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = D19B626D80378A518582E83B94573772 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F37B5A151923C38C6559C78098A10FD /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F5F9F190D70EFC8363473D0CBF632B1 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACA5ED7877FA8CFF3DEC54E9E7E3E9A /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1F737A0E899F42827A4B146DD0F4B08C /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E56AC75DE919E449537F300A0F2943B2 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FA7BBF3930A7EC78B021DC66FAC3DBC /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 1FB16F68EF88D81975F0DA3BA86EC532 /* Pods-PocketTorah-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ECB293615637D2E0FD628F7CBC128E /* Pods-PocketTorah-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FCD1297763AC4754AE03618627ED1AB /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE05144F41F28057A870BC5B8659E23D /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 1FE7CF2A08B67B24E6BDC73B93D3F006 /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5EF10C0EC05B0C0D2C9D33F9D75487 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2005C7B1D6AFC76FF5A594D5E43B4B50 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14876557842587F0FAD0A3369BDC32E4 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 200D15474803DA3DDCA0C049CEA8425F /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 26177079CCF007025702BD1D99FF14C4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20FD291D13B32E094D8F68AC980514BA /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E5F5FAD8618EF1E97712E1145B17EF /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 20FD71FACABF190BE345179BAA1ED810 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B414DD7774E08FC9F166FB33E0CA81CC /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2138349CAD09163D55BD31D47F1710F3 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A55D56A646001538AC26B61CB6B447D1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2145E7D4225008C73DA32503FCD6946F /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C50B797ADFB86D701434E82E51462DA /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2167E85436B88552B764C75DB3C4AA4E /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C5839C2D97AE45A6ADA49D56E1ECAC7E /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21885D6167D5725DFDC790EA1609F098 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6453EDD28468A642429C0A97B87A600F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 21A4EA8A72430B7D00D9AF467AEB0DCF /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F65F8193EDE5A6BE6683701DB8CEAC2F /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 21B10C31FD1FA92B38314890274F0FB2 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A368B3EC185DDE79A8A50F6D2214787F /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 22165E5C6CA9F68CD77D146781071ABA /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583B7887BC7B4CBFB0CF834AE1CEC8 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2229B836BCE066BCE8443CEAD075AB36 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 002785781A4491EA27742483F711611C /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 222C88FDCBE731E3F6B5998FF6220CDC /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 406EAC5E409148FEE468B622D4EC12B0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 223C032C01284EF48A43D17ED0E33C7F /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFB08DE17B2BF9AF36F3DF8F3B5366C /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2244D9C64E9CDF02994D1E61141C5B74 /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 441416FD44B099BE6C03D00E34B51238 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2279B4E57451ED22FF7FB7F4C76D2340 /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1522C5E2B6B1F6C67DAB583E98DD14A2 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 22BA71DF528ECEEB487D5F570265F044 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9816686ED6EB65319F3950BC977466 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2312BA71316C874C80086C46EDFC395E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE171EFC461D42E4B62B356FC15E69B /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232C233A2C3924077CA53B42D8E197F5 /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = E506F619B7D9832C8A6A55BF29FC98AF /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 232E2485A63A37357D1D7410555E89EC /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 132CFB1156BEBE2F93B909EAC300DC75 /* RCTInputAccessoryShadowView.m */; }; - 232F531AB314C923D360B53B4A3396F7 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659D2EAE0E266BFEF869618FD97F5D3C /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2330E271F4CAE53C641321BAB39C2356 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5E7FA58ECBD7EC5B4D31DA1B316380 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23337F81E42FE08544DB45FC7D29AE22 /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CCDCC0EE34C383825BB4A51D28025A18 /* en.lproj */; }; - 235458E0220A144CC7E8D8F0ED65721B /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2FA00469ED2213E599CBC1616C2214 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23808076FEAF300D80697D6DB7910D72 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4B0196467DB7CB20A07CE038E6515A /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 238DC1CAB1F5E80CBCB27459BB5E3D7F /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 2000725EFCA8AB9B88E32AE0A81CF7DF /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 238F745B92373CDDF7B3719A36E1D0C8 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 23B8877EC684DBEDFB9635D64759199A /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F699D4943F4D33279261AFFF62E2E7EB /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2424C7F39876FE75056B564614F6590A /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D299ABC2A6DB245E64DC08DB1D2E10 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2486451AE36EDB71B48E5D838D2F0307 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D724B8924540B07B4D2E2F800202072 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2486D89EB9878E6C0F0C6B35CE5526AD /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFFEE304D3D9BCAC368FE71ACC88C3E /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24AE8123021C9DC78EA32B0517B09BB3 /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 24DB4D462DDD4897A6FA84A2BA706EBA /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25116CF7BEC323884D9460A732BFD014 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 254F575697FDEACE2FC0CFF794C5E1E8 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C374DFD923D150A94A486E66BCB46B0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2552512E5D4C3E2277813D4B9B3D2017 /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE425FF852ED1446949B4FFA74BF7BB /* React-RCTText-dummy.m */; }; - 25993A0A0B4F3E55D3EC237C12F24155 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F4218D1CD5CC18780205CEE3BA7AD2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25E615D5900E691DA4E06F952D9BBB4C /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 25F18CE9BEE923D8E7B161555A893617 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD5699D6498184080F84F83B69BB77 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 262E18ED311AB90F8FDF5A7324AF0515 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB68D666DB329572E746C8E51908C2E /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26328D3F0D7456A2BD255AC1DB9E953E /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7764B47AB1420C405C2040171A4644D7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2636963C379CE4598808D762D7A0DAE1 /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 308273E77B713AFDF71E07582EB4D94D /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 263C0741EBE17E17FEC8B94D476BD824 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C071225723F0A7C28F08D470220CB50 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 265892631D2787A5017E28A462E353EE /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 266949C87378B5280475988A640978AC /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DB91AA2FFCB6B6FDD1D24F238BEE1D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 267A50C4F892793B3ABF4C5AD43020BF /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8502A11CF3F7BE61B5458BEB1AB84A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26809C8A31E819A1190D6F905F9414DC /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3562FBDD9BB63A2C894FC7E43B4DAC2D /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 269B9753B51218CC4ACFB1F9B49F8EF9 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26A0004B3D043D52FFC45269B06D82BC /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A93E1C59137A70CC462B9A1DB1E1EBC4 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 26A6605DE6877BEDE80411245E4AEB34 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C402A8A4B4477D6980666C2A2714A33 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26B628EDA5DBBB801C2375256AB0FE70 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4DB465D1938196B532680CDCAA0773 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 26B820860214AB200433431B4FF1BE77 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 420461A477A95E5272D68296EBE30AC6 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 26FA9AAAA775915B7338F1A24BC9A8A5 /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD677F9267A1492AB7F18CE5EA71024F /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27700A200119E35530EB978282181DCF /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BF1D7D179890BEC3EB3B5D5CD41A50 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2772A8A1E151118EEECCBE8AEB155943 /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F8DE31CD9775EAEF1B94464800E92E49 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 277F2009641DF2B60BBBCF41601988A2 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7C45B7AC0F57B9D10FB9AB747C3F34 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27AC8DC8A73794EBC441BC4A0EACC3C3 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A21568802433A4F94E4A6497C56F003 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 27BF4533CEDB9747C840CDFEF7B21C66 /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6075DB946B44B2BAEBF9F3895E687B05 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D2CD344C23303F3686CEE1757CEA99 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E908AF32152FFD689566289EA1D437 /* RCTUITextView.m */; }; - 27D53EF1F10D8B9AF812537E8CB13A61 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB9144ADFED246D3A72CFB0DF4D2C83 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 27D9787056030C40E403C92833627A0E /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00231DF05EF85F0468B416035936788B /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2825CD2AA38A4DE1FD665E8675232540 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA20197EB5B0629FECCDEA749DECE6 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2834067064DD766FEED2990DAA6AAF30 /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DE67A59E7BBAE90663DEC3EBA391C7 /* RCT-Folly-dummy.m */; }; - 28351F21C9AB9B34323DA0D6B44B1834 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = B66E9853B2AC064122BA26C986B1835A /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 287E478E590A72FFECF20D3FA616FE76 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD7F186FBB4E0CC65A4F3984D8D877 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2893749F9A98FA74D5D7FBA52A5DDF26 /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F53E76092A0657E4D4E13180BB7E465 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 28DE5755CB584AAA3AB74F9D73FB53DD /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A30800745D5642E8EFF4377E07A6F0 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 28F3A5C0B22C9DFB849AD08F93E9724E /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB3B90A074B8AD38F920B9EBF28CAD /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2934C3B6D89A5513C0FEE689AD25C35F /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D1561D76BE421DB0219FA104980621 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 29BD4EA184884F81A824D4F5965A8CDC /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29D5B128EA4CD9894CCFB5B68DA2187C /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3278C9487CD4F52EA168F98AEF826670 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 29DD0D811AD9BE2A287CB3B413A4439A /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B27EE8CD168BC543A49BFA25B71E8FC1 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 29EFF900A6B2492FA8697287B371D843 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2DF209CF3D181C70F446B265A9E7EC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A3DF495B71273B1B995B4BA88801579 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 06656CCA8A793DD230A393FEA328A00D /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4321D423FF30EAE9512979583B0E1B /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC917C1636BDE6F0C65EB9BE90CF130 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A493B365180564C43897233FB469DDA /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E51C881022FC5B40B5BC9B3D9CE0E1 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A4F53C350BFADB257A25E02A0D90A1A /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = C06F25461298D539B4971D583A6E9429 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A6AC0C65573EE6141EFA6BAB6A8E955 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E347FA8EC8E2CF200AEC60A735D85208 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2A6D285DF44AC0407E978625208A3EE3 /* RNSScreenStackAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 738C3A177B5147E5B0E07DBC8D1D731E /* RNSScreenStackAnimator.m */; }; - 2A9B73E00B477FF91B83B0796C420ADC /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972AF50397FBB6D391559B7BD62A6B13 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2AA273EC235368B59BAE84D55C2C6008 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23705347485CA5805991542F2B64A77C /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2AA947688DB26CD59CDB45AEAE7BE172 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AC3E14AE62E4169ED899D67E573967E /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AC49AE042A595E1BC1077CB9F8216B7 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EACB6DD8FB576779FEF4B464A0E1757E /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2ACB112FD0143A7E0668967CBD5DFA15 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B85A202876FA2036DFCC2B0D6BAA8D7B /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AD2E22377E1579ECBFF60DD7686581D /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B773F5C5501C367D6BDC1067A1F81 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AE43A32C471B79DD03E514409E90B9B /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC6FA89A077B23F332444D37A16AE08 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2AE9562B0745BCC7C0A2305E0FBC3D68 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 950B41F889B82A60A5887BD4EB9DF76D /* FlipperKit-dummy.m */; }; - 2AECA885338086FDD01E09EB80CD0F5E /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B71B0C0E8149D9006C667D206325F08 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2AFBABFBF913794838312279339ABD93 /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 688C6A8E5951E06F8A407B07DD682CDD /* React-Core-dummy.m */; }; - 2B093DC0691CD191470AFB98F64BF144 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C2714A5B8B4D0860A0FFEA4455451E /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B1AD788CD70DA8F927676CE77D81D17 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E757B98D04CC76A1808D6A45D808F /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B27801698010A9C72D3943F74CC061C /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9E2DECCE14D389EE289EC2E03939B2 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B28BBE6F7E3231E2718FF598E6F6143 /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2B4F8064F42CDBE3EB51D1B436491BAA /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD6F472EF6438D116C5A085332EC338 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BA0FAB10849FE0ACA26F2CADDF25F55 /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59FB226B4F6BC31453972C704A9FF6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BC0FC3FD2FCA839BF814E8A7A9AD0D2 /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFFE3554E176A112E0ADB340BEBEDBCB /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2BC875A01B742FD33B7AD044A3129156 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EE652D990EA33113CF8F258B2BE349 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2BCC52D27D93F1C0B5EB92EECB5BC52E /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B95179759B4E89892CC09A2CEBC6DB4 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 2BDFAA66447EB15BD5AE80EB0FE983BC /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4B99335F2061A076134AA376D6DCF5 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2BDFC2E2AEB08A605457B42084F7B569 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C617D9C0E7CE93EEB631FD362EDF53 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C2BF3BFA518B830A879D750E1D74BFE /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36422C74F791FDB31F77364F3AC7E962 /* RCTTextView.m */; }; - 2C4764B3E66974E0A847139BEB10198F /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 680BDA0E6D1FEC57120D2A0E3E4C7D54 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C6D123EAD0B631FE0266BD06458A6B5 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B326228E53BD05783FBF57A6AD35E2DD /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2C7CD02757F50746084DE37EEDD96B6C /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D7FCA4A5DEBF53A48A7216F8075379 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C852E17B3309DF4B80C3FE9CD14E1BE /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8517DD5D8B56A1A70E7A8E313606A0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2C9F27226EE6B48DDA316F76272F79E1 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0779594AFD4D607829C8F8D8737410 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2CC26C27E8D1608E46357E3EFA2215AA /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A3804C01E774EB3C866E7FC2E92B5E /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CEAD4F2BBAF2F4D1F344C6A27AF8D2C /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFB64BD34FF1A3763DBBAD225E5F115 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CEE846FB4863105595B13C59CEE79E7 /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F01E3AE3E28646D681B39BB05563E14 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2CEEDCB1C4750DD5936353740B1EC9D6 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = BA11BB2BE6862072AAAEDB0EAA6298CB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 2CF10C0756DBF89A6D9F6031E57D220E /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D24FECB3A93FE8BBC6D759FB735011 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CF6E9A0CA3CB392CB186F4C386ED40D /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 717420DB630B98ABD89E4E154F4CB4AE /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2CFCB4CF85B49C6B63BB759EA9D76575 /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D766D03D3666E27CC7B590A172259D1 /* GCDAsyncSocket.m */; }; - 2D385A1B7D58C43E5F1906FC2DDF9CE0 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 889BB9B7777889944AAE4DA788CF6BFA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D3A576E143C1F428540101F83D13EEC /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2D4C7EFD87662B733533C06DAE276014 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4849ECDFCC31C7EB5090D4E177F5CEB1 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2D505408DE85CAAFC809395E19563853 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F437BF7BCAEBB12D271C6201659F87D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2D553D28C330528E67D0E991E610606B /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE171B8D02DF186FB3C0033F82C04F82 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DA68CBF4CD7DCBF27695F96F5486029 /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 281F25C1F5A88BC2EB28D3AC5D10BDF1 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DE5F8DD21CEACB3EA359C7154631DA1 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C016F7F00C8ADF9388D553393C936A47 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 2DEC2E9367DE8A669A9A38D280E0E29F /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2D723BA95A586876E90A0FC1AFC194 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2DED901D588A61AFC204121DD35F236B /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2DF8327B64A3FE6D1774882D0595DAE8 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = B23CDA3E4E71F7954C36344264A810F1 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2E17A167693C08794187308C684D60B6 /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD913D627DC554874F1B9A69FF935EF /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2E31E0B3EBD402CEFF64891929293A70 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8862C16A837D69FC9F5934668CFC87F2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EA334626A796D11BC54E417729B1F26 /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2ED38B823A226A2E61708E2409F8CFB3 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB56B36305F848AE7E83188F06AA031 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2EDFC2DE82D66B14AA6536B5456FEC7F /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35EF6865CEAD08A9DCCA82597C824433 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2EF3F43E2146E17FFE4BD7642CE12D01 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 2EF451A980660F39F52CFE588EEC8F68 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3526F33A5C1FE6966545B35D5A80B075 /* CocoaAsyncSocket-dummy.m */; }; - 2F0E2E4A8FC45D3FC5A8A510AE60654A /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED5EF609CF0E9CF8E8D1E18D598C2E0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F13D06FE6059AC36FF488F64635ED37 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F1509036645B23782D6A2D2E7813F46 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 223B100218B83CB1C201902880BDA9C5 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F3ACC8547B5AEECF6E2DC2AAF1C6C1F /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E6F1367737E793F4BDA2C075676FDD /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 2F542EF1D3C6C3557C7660BE2937E1C3 /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB20B54CD28EA7D58DFBA45BED2558 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F62497F70674F87E54BFA5503166BC2 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B7EF3EC85E42EDFD44CB89CBD5F7F2 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F80D73D7C0E9BC7DAD9E4DCD23A144D /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2F9A4001FAAA9A31B196527E135A1B77 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DB3ED8228FB6CE09A9A6AA429C957 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FA631FDDBE4EE16A14CAD121640DA03 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ED44E3B1DF8B0DE6F76C6485962044 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FB40F2E2735E3FCA15E2831F78DB43B /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA178199BCBE725C293D552930B1CE8 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 2FB54946DFE25176C6E77A6D5A70C9DA /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 022862357339CA4479806B31F4C51E7C /* RNLongPressHandler.m */; }; - 2FEF137BFD254DE19A45C282D74AD677 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A4457BEE040DD83522B8BCB0FCA4FE /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30328E3B343143CF55D0FFCAE86BC589 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 415CA2F49853D24BC92F24D6F478246F /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3041989153CDC0261E17B708E0FA20D7 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D0BD61C7C47E602BE8339C9E4F1F62 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 304AB42441EF20824352B249448E95F4 /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 304B29B0303CACF24EBD904A8D4ABC49 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30592DEC6ABE4FB6EC29B6DC9B7C5F36 /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D0EC0BC98031B512A1F9A8A91FE6E5 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 306094407D2B8ED8578C8EEFC6CF6106 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A6473CFF1925809ED4B1A50D1743C1A /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 309D644392A17549719CC78AA03E3473 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30A832AD4B2881AF2B9FE498B3DDF380 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E7C6147B7140102E5486FDF2B87491 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30DBCFE73EA6C68ABE8C09F847A3F74B /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADE6EAE9822AFEE73753E25D747249F /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 30E3DE52B7A6FC6DE52A193F98DDF1AC /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 047EC85640A6A1990B03AE6712FE7D2A /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3105BD4D9F8BFB22A71C129F06114C7B /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC01E3F3597DF35E68BAA835B2A06F /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31495D37DA4DA47E8A2ECE54AE4035DC /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F781FBDF647F215982CC397B874472 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3156F8BA49140D617CA2295D89CAE875 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B64C9F5118481B733B20D5B173E8E5 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 315CD25BAD10BD20522BBCD575D0AA60 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3365B24231054495B94ACD5A4B42DB /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 3164184725DFD06540271D6D9DA2F09E /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECAD751122EA0DD001EE3FB8FEF529 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 316A32CD37F9378AFE722C9284366628 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AB9E5B0667567295379F005BC291C1 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31AB9D52DAF6464ACCA766D2B24B8BE8 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D3C8AA1A111D203B27806D8653517 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 31D9BB590F912C7CCA8DDD52C5C35C98 /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 021310A003CA9D097F35C86187D3019A /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3255D2D8FCF70DC1525BBE5B070CCC3F /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FF2B6B585404DC16C171524E93AACCB /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 327C6F9C1F3F88D129D3F660DA51BC4F /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = E98D882040B919C92C4A0503CDB9AE5C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32A3BE59A278392E4D6F481EFA230D91 /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA02B3EC4347FF44C38570D089D32600 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32B9926CC0A0B05CFDC799A0EF05D7AE /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4CD90605F458E3190929C0450C2CB5 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32BB8FC600D9A044C71447C50E3E4576 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A53C3E24DEA805C884FFF3805DE3D52 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32BD9B61BAF9B335D2FD946ABA0DF7A6 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B41A1368FE7DA67FB83232ECA4A3015 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 32E3DFB5B3B62BA9AD014723AD763859 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33006F7B42B3852BB7BFCF1BE497044B /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ECD0A180EB18EF56F4CC6AFD57C5E1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3302AFA94A9711343DFC419E7EB5572A /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D79D1BF9A4A41C5CBEF90B3F903A6D6 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3307D0C34712C907D544EAE3F836002D /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 268A32B24ACF3AEFDED7D5A83F40935D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33170C6E9A1CF58EE67E1A2AFDAFC712 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9F84817DF1DFE5D6B70E4A5166FEECE /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 331DD8241319F189DC1B709C40176D66 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 332489F39BFC32705DA63F7D3E59613A /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479951A0E4FE0F1D277BBE25E8FF48A5 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3359F98FB04B468D2EF6B6C974E7B4C4 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03715D477780A22E5642C6321116808E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 338777E5BABFBFA525194F9389AFCB56 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 339FAC9529D9A03940D3911569577A63 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F18BFA79989820D99FFCC9263C9464D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33C8A2CD470DABD481F8F24C14655A07 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 33D4AE348CE71B7AFA3CF3A92D8A824F /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB1041769552B0B23D758E5EFD3915CE /* InspectorInterfaces.cpp */; }; - 33FE3C3A0BB45CA1A98C0232B274A34F /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC74F858629FF882D0466E8469E1B583 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3401F9A1FD660FAF51677511B787C756 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 341011432BA6046D1F267F4CB2E536AC /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B861328CF637D28DD429D2B9C83724 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34164EE4A97D431F0BF434E7C295BFE7 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 937FBFE739ABB4AF8EF8B6E23F0A4BC8 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34492920FDD480D3E08698801CC9E379 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = D42D543519FE1C8D35263EE18B46D565 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34603F225CE2B5647F84405048321BE0 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFEE0800A8B2D7743DDEB696FB96770 /* RCTTextViewManager.m */; }; - 34DCFA6EBABCFAC2284278F7027690A7 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C2264EAF7A5BB9E013F8218EFF101936 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 34E543F4566F845223028072E33F373D /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 29512FB8C9364FAC82433EF805225522 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350873C442C62A28D347416A335C468F /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8770D231E438CF5EB44FBABECD2FC4ED /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 350E6E24B1E5665CB8C6DE48405DE248 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB9C03D0B2EAA7A650F9E8344D59EEFD /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 351C7921F52A7B9C711A9A3AF2C3D300 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F479EFC1CC6C6698B7DBEB9F905343 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 353AED32576B7A56395EDA84FA654C12 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D0E5F062D001C873E45BAAC01DBFF /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3579E23507F395800A7A0DEA920FA55A /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 799B4CF68E13A865E14534A09372DEE0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 357E43B94E6CD772519999E1D0AEEE3E /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = A94FE452A46275DE5A5F485E43899317 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35D5B8F9C2AAE5C005D0D0B829D41718 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A19A57F23F928BDAE6F8C27DA422B84 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 35E2B8A402A4F2D8F644B608C7AED536 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC5F865B044B3CA2076BB1787CCFE3B /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36065407F3E70A3BB8F5D2F244ACCC85 /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF3E394CEBB89CF7C60F6C375BB1136 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 364D5ED60E444F2AF03851C0FDDF2352 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D26497877C8AB3B93CC402AE9CE5B08 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3672FB83CB27A441AB5527B104A97400 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29007DDA2D0310384F2C8E992D815272 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36B15B80B307F8243B183BDEF003A293 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7B740F593CF212D09EF3F10D55C97B /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 36E39358A8C818A21BC6E45B548587C7 /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E0440FDD0B5456F9117A1B8BC8D2F1 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 370A70520B8AF07A91D60B7B1766EBF5 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 374CF9566BC5CB82EF4D690692421EF3 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B73BE74E352372C67AD619BAC7622EDE /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 376B57B5385C3A1A44D902B59FC8CD14 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9229D038D92DEDBD3CABB8C00D5553E5 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 377F1166F9D08D626891892EC442C89E /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A74BAEF117A15EBE5076A3D5733F636 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 37AC6637DD8013C04CE4C6728BFBDCD9 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 682F2CCDCEB404F366E11A021BAABA85 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37AF389BFC2B049677A6D2A60083B395 /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9250A01316581A641ADDAD4C948F638A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37B52954227BF02DC7BB7B79F67FDD08 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A011E4A3A7812819069078FC73719D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37CC3D2F90F0C4FE920672F3B48503FB /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37D57D4E0EB7BA4763901EDB9F4FF768 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F3C4FA5DBB44207305624510DF9FA6 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 37E6806BD575BABBFCEF1CFFBC7C1D27 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 75080D018FAEE92A6E41820913C0F077 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3808B85A31FF1795ADD26AFE530789C2 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB94A2B54B34D00A5070BD2EC0E7C19 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 381AF459AD179E6C16800884C2A33640 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 325707970240FB975CE1DAA9DE525C8B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3821EF90748399D29EA43449EA1E7487 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DA410E9CDEC6B0BC5598CD761717AC /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38256AA6BEBA799AFEF26CE6619F1B86 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B60796AF8059C3D02AD521E655C75C /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387663AC52C90F2A24A592A8F894B4EC /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D2DC8E957E23944E61579B1E2B81D4 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387E78C9BDDA6CA39943D64F54CA75AF /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B0919C9FF7D5620A1738B36BF1443A /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 387F0CB539DCD22B9EE0E1E04241BF06 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D735F70B651D93FABB151FDD5C0775D7 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3895FA6F69BE2839E256F888DC630B31 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6D5ABB0B88FA7420A6011553CB9904 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38C4956367B09AA2982804E616B73EA2 /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06EC1878DDF591FF157E8AF1FDA249E4 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 38E6EC741C97183793A754864387F6CB /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 55AEBCACD5E7459CD4DC35C5D6F297DA /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 38EABAF69B491DA1B30A1632EFD446AC /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2B57C7CD9221E35B76096DFC518CA9 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39047F41F2B8F85C1D8D4E08F1318390 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5395501B28F9FD6C5A48C187338986E6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 393C9A55CD3CD8F7789515565780D160 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BF852E545F4388FFB8CDF705E84037A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3975D492C97E4314DB98DA0278B13F96 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 76430F67C6823C092DD7D0B7A6D89C2D /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3989E5B125906C68FAAC35C691826004 /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 609776BC87D29B596E8C1774BC90D0F1 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39A3B04E25784C0DB895163D81305E1E /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D82E1D59C4085089131ED9B1A24DAF /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39BF7EDA8EDC4391604D1AFFEF7EE00E /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BAB2FF7B7829B1B82B66B4FD6316A5 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 39C7B8CBC7FF6C71A08118BE63C072A0 /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 69330C731648F61238A66A15A0FA995F /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A068555ED3CDA0AEB2A685C425F6722 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */; }; - 3A0D13777533A3946402B8A8B1F51C6A /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBD05B38D1FCD7241A981535F12D486 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3A2B86317CCDCAF95249D4ABD1C8162A /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C818680110475C158C8A6B31567D881 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3A651B176FA1F927BCD3851ABAB3B538 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF2C2C7E2C2606DDEC64FE1B0EA162E /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A780A3F7B1264A9C0BAD425126C18C0 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B0D6CC0642205F87846A98A38937BB /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3A86F5AE21C5E471AB457470F9C01E96 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57605DB67060E820669113FF363EB43B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3ADD24C6DD979DAFB63D9FF3FD58D5DE /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3AE6B357D719595B61D6A05F50B7500D /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D22FDC36F1D12B6D38566C9E627651 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B1B28000B12AD5800BBE603BDD2458B /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EBE0CE1EF0F386ED2B197CE3273640 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B35439F65EE6AB773DE90B9A94227E9 /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25E970EF15B6148D8C2A298FD2370D2F /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B493559A9E8CC93E5A95DF681E69E9F /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B6A37EB00271415E0C73670F37D2980 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B6E99C2D86A7806687DE419258A48D2 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74203902116F50D98469FE641F1C5B2B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B801CC1643737941B479307F4AED774 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C25D22DDF15B5FC6F756A4A654F2BF1 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B8779203BAF4E77E214A15CFFDB4448 /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39E7415842E04A64B8ABCA161FA5301 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3B8FE3F85C257C938A8C6F5BF0D3809A /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C62746C79D71EBD934EE343B762BD /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B99E4334D0E9DE276707EA3AB748FCE /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3B9FB0EFEAC70F364B431F54625DF0AB /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CBE0EEDBBC7C3F5E1C1593C73B7FD6 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BB25E7302E0F2A719AC0F33EA6EBEE8 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E44D17D7520E70A5FBD90A01FC9D3A /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3BBE0CA538570233C3E5A80A5680ACDD /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C01053F7EE549C2744512EF64E00671 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3C30B89A7AE05EE76BD8B435F914A35F /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3C553E6D9451BF3A18A348116E097362 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C39A6C3B7F26C69B82693780430CC4 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3C58DBBDB49A6D5683A50E7E1CF67958 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1408C84AEE32EF5B9AE3C6712667EE0D /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CA68EA0F1CD255253D37537B1CE2B4A /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B722F821FB74468DA8D3DCB0C7FE46 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CB769EA58F8BB1FD70F8F9633C98239 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E863ED0A813D9AF4DFD73B26CFACF59 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CC7A0BAE2299902F3887551C1289E28 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BD0DF004099DDA6B2B60F0156305E0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3CF432A3D87D29919A969399ACB8CF3F /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3CFC5B8CB935EA6C4E2A6907C527806D /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F085FFF71A941BBCAE5631D651C757D /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3D0F0E7F63AE08B492E7F4EE66FCF6F1 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C721A10E64145D004D0D291BE860A84 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D21AE8D9DCA462E616CF716EE17BB04 /* Uploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FD0D70F6A1D7B4BE26F355B2EC30FA /* Uploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D24C19D3AE9DD070FDA674F9DCE6DB0 /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5199DEB57F329595B833E0FB7D4F6E4 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D24F4BF0DD715BB6B32C25C257D405E /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B619A6CBDF5542A9D3E27F1584F9F2 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3D4D4C1C633B8FB707CA815E626C01F7 /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77775C9FACA56950603A1CD117BD51B9 /* RCTSinglelineTextInputViewManager.m */; }; - 3D8044EB200C3826B95E0FF921C944A3 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B39E24523A15DF8FC0D12504FF58ED26 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3D81F2DE2C822EB82B4A96E1E035AF60 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2D225DE62D006600CC76E6A990C20 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3DFB0530C4714727B1EC57EB78A95A70 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E39DC85A6AFDB01943BA60B24B6AA39 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 636E7EF9CDB763A990B36F49C9E60930 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 3E40B5C17428C0C6A0DAD6B4EAB25CE0 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 497AF328E0D9BE61F1C0C72D4EB600A0 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3E4892CEF1DE7EA6223108B2341DE34F /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF6A2EC14847FEA4CF5E31362397F939 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3E99A7C3461D0B503648BAFD803291F7 /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EBBEE48842197562BB6F174A1E801B5 /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 17678821E8D1C5B61D85D9102F9C6689 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3EF1418859355C90FEE17190DC7CE88F /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7796029FCD0AE6B22925E8EFC55AEF2B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F348EE3BAF4A63A4C66B6FBEBCC7E0E /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93C82060D9A21A87C3D87BA54814E1CE /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 3F3763744C5EF11A5E4B812ABAC10FB0 /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F28D48A35744448D47431429E87BB09 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F3C013F93FE94D620FD7F927BAE680B /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D608E8310AEC3D616E26C2CAA52B65 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F5ED5D12E526F95C8FDB3774C290568 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F79229D3C4CE6746DB4EA1E469259633 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F64B6C9F7468BA0374C08FD2BF2EB18 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B180C8408892C83AB5579806DABEBEF /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3F908B95A4C65D139F7357FF0E0C8E11 /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 3F95FC12AE6FC9F370E94B9824D9251B /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = D64215DB89058F5FAD89ECFA5FDE63EA /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAA78E7F45F7BAA1325594718AAA891 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4352CB013C058F4B4885BADC231B0BA9 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FAC8B18BFEAC9602492B83EB2F9D34E /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B99187B73DF6EABC4E78A13B2AE63085 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FC13B3A874855890A18DD62D96D0883 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = B40A7A09256952C8EDD740F1075973BC /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FC51EB27252B38991A9C027DD04AEF2 /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E824E92108769081C2755AC398F7AE0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FCEC94C53BFAB1D12EE7DE4C423DB30 /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1583F9FF29CFDF0BFDE97263F027BD /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 3FD7FBB741A6104164571D26FD06401A /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4007276CAA958171DAE6393C11C954C2 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1072AF5B3FD485F4B75CB05D98982F15 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 400E95B58C229933610D044BF259F757 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1A915ACA228E42EF65F4EB255BC6F78 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4036558F40779A250B6C1CC37DCB7CE9 /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C1BFE462894F7A3DC3C2C05A8834A52 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40A9AD4C8AA3D703D2BEC753A2B9B275 /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74018F1C21EE82B69B5FDDFCFDA721F6 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40BD3591EE01D66FE2D90119F53E4BCF /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA4DEB831339FE8F745DB65211C3DB7E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 40C528A3446819C159D6B16740F6165D /* RNSScreenWindowTraits.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F720FD7E6DE7B1758C66DC316F4F90 /* RNSScreenWindowTraits.m */; }; - 40DA8F27798FAFA89176BC12562ACF88 /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D27A09EA203EEA3BEA25615A05C56F64 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 40E9F09393A68144D54C3885D559E353 /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B08B8A97C62E9CAC66DE7A0EA5C71D /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 410D915EE7FFE4A3EA255BFF22D77A25 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F76BBE961F9480969E78CD30C63B36A /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 410F42284075DD1107AEDA887C6D3FA9 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D148AF239D8FD412A753D12BBBE7F2B /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41134B9374FDD5F6769C99BE395CA917 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 412512DFE06BF80C29382028C8AD6410 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C51A29C795ED28BF6F36FEAB53307E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4164EB494D335F4C40D908AD0EDC5396 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFB2EFAB2A286C8F568F5EB9CA66446 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41A6A02CB3757E27D9F555727B77475E /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41B54FC42D9EE09B53E314268F4600F5 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB7BBBA2219AF4F54991FFB2F22027 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41CA1F08286DFAAF48EE5A8D8A7BC8E1 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CA90619A0A3C540C9B47A2A11A2293 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 41D0C2CE99501F16977DFDD6F3FD1FAE /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 98403D210AEC4D0F4A1469B26CD0E9A5 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 420050A59101A25F317BDCBB3FE7F60E /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD9520D6560D1A3217505347B504E7F7 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4208C3631C424C1D6EDAFC5FA6524CBB /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D39751AB79764FC7F566A7B40EA7802 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4222F4DC3393A16A729C79237B00BE3C /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12E6DFA171967F457EAD75FD00ADC88F /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 42304F0EB4FEAF23B2D9FCEECACCE874 /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B898AF1D98CD5E21FBD1E5A9319FF5F6 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4279D9FD841E7DAFDA4F4274C0A79E1C /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8FA6572451AA3D60067E276A20C9AF6 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 427D5A575572995E07796F4E2A4B7A9B /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D848D69E66CA8A3A4857D3A1EF9BE8F /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42897481E77EC219A261BF3D3A845B22 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9799E005AA7D73AAD7A41BC415751D58 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 42A3E730DB8AC6609159F72F54090ABF /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 42EF7FF46EE4C5C9ADD20A8C67BBA3EC /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 100819CA9AE63E735C4542915F95A0DD /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43010C4E2C0BF5F1934362358CC58A9A /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4304A6B3077D5BD1444B15F43E0CC3C2 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = F990E906D46436268180123E34A1036E /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 431D005DA6980D17C12FA934FB3CD198 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E058A1EACC2A38032EE2158FC7D77D0 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43245C2BB1177AB2A4A591218463C5D2 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E52235B2861B4DC153FD598C6FB6AE /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4334350103D2F411A7401F040A42E0D5 /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4335C435C9E9C0E4592BF4E2EF13BBE8 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 413CC5236DCF2C15E2FE5B6737535385 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 434B59832E610FC99831C20317BB43C2 /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEB4A5BF1C7C8CF408D50F4318B8410 /* ReactCommon-dummy.m */; }; - 435070D69B2096AEE11889DEB14B36CB /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 278F6A98B6DD8A1B84F659032151D167 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4374975FA528ACCA58200DC60AF1B5FD /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6115F203F64D1467902F80278F84ACF /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 43A4FCD531FBE0A5784722C435716441 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F6048675D98546EEAA078A4D222ABF /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 43FC85C26EED94860940118F3B042B48 /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43AC5D47986C1BE1F484F95A7E080281 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4435D7AA2CC2A78C02637BD68B3495F7 /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2ECF64FD678D817D0CA64E88D3BE910 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 44428A5AD5441A6799F074B06EC02734 /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5D2FA10B50E6CC8605FD573BBE27CA31 /* RCTProfileTrampoline-x86_64.S */; }; - 448D69F80F308A19B500205B346A97A4 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A14A2FD9F5DC7AC7B1DCCD5CE09D34 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 44A2D55E41FD2A97AA3AE8220B0D458B /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 001D20F3721EC1B428FAA6F27093FC80 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4500BFB21F0BDBE96F320F6777FF2DD1 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5B4FE3A6A3A770566B92D04C6613F2 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4501C3322FFAC7D53879B3458D6CC1A1 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 90565A84B56C447368ADFADB3942E6ED /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4527AEF9608F0D3DB284D8775B262765 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80FA32D61F0A3EF22D6AD1E9DB0701 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4533E8B1E55E7E2A6B7B2E64FE02DCEF /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 278C94D666FA75B4A8115CB80AE9BB10 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4540AF26C5DFD6D82D35ADF065B2EBBC /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F34547C6C0CCDD99BA977C4FF1773A /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45682FB2503A2CBF4602A77BAD7AC8D0 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 456AABAA54713763CF80938777B185B0 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA24D3D02EEC1FA31295417B049792D /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 459022B0D332790C5922687894B2F0FD /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93507EF6D70F1EE9BE00A05FF660E9 /* RCTConvert+Text.m */; }; - 45B36E6C971F7A316A842376DB9214F1 /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 97369C228EF8B5C99986F892910F3704 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 45B3B91A49FB093C627A65E009586DCC /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01E736EC9632D7830262989C4CD9DFA8 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 45B8935421D2FEC36A5D770B8645C703 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B494A82A2396E267800E70207DF3027F /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4674F73228D19328B11204EB3522EC3E /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8283A1E63A5A22DBF4C73BF83FFE325A /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 469E698DD20947AD1BCB1DBBC4CB9F4E /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB3E9A39B00AB13E43EFEF8C22031E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 46DB9A51A4A4F81BFBEA188AAB2E2937 /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4709E2FEA36A82A09BF12DAB885FC230 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = A662CC1CD539C07FDC0F72E802586581 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478B88B92AEC7267F64EF926A1B88F02 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6FAA84B063FA2238DC4AF68F1CADC0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 478CFF7C460F6F8F5E1A888C143003C6 /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BAF1DFCDE772088DF7D56A0D6E08C67 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4793279038B928D566A5345519A0475D /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6280F423EB2A6C3D5DA540275297A248 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 479665FA6893EC2643677686781F0507 /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD49D3319B5BB60C9B4FF8EAC3A5666 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47A2D258858D661F3B609FE0DC1E052B /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4806609B2864A747BCC2EF92C413D95A /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 47CF7169E12BC8425FA9488F13A6C93B /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8FA6257F0FCCBD8BE6982F522FB786 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47D0F1002B70503DFA0408C592B7BACA /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8E7E29485BE254A58EA62510D7FE9C /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 47DAB7728A3E28B7DCF6043BEBBED244 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 481F8937F76C1A9EAEEDDBBDCADC4542 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BD995A23EEDB8F1C1414109D8172EC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 482296C6BF9F8D449888AC9AE7BB4205 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B14666C87E2EF09B76286A2F266F604 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 487454030D25AC8D2472B2397D3E86C1 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F607B058B43E5CE6B7D6763EFC5793 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 487853D3552BA6A7CB8B74DBC007D961 /* RNSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F962AD8E20DBB399E9529543631F10F /* RNSound.m */; }; - 488647D12CC941DF6F577A2A0ECB7EE6 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E44DBD704F87F4A8EAB9AA0D1F9F48 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4891A0164B0C4AC62F78DE5A9D72D3A4 /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91274C5B5145F8669D90071A8B12C65F /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 489BD20BB9B555F02E1F2EFA869C3C16 /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A39C9F197AD9D374B6BEF1E938F224F /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 48AB52C694A14266664BF085FD1FA795 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EC4E5393EFC87DE5AC654EFB27F229 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 48DF594F693D6C12650B6DFED7FEA4BE /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C2A6D616B01C9E02C8BE7457F26735 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4903713737EAB089E75731B4FABB30CF /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 494662FD0D6F6E33E703B750D4A0CD67 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF6F2DCAB649C9D9C5D3C9C9083DA3 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4954C1AF51E383C5494AD9A0A73F0F7F /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889D1940D4960158EFA980CA019C3A93 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4992D5A2AACCAC28445F70E71EED2E7D /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CE06EE125D8D6E50C90FAD42905541A2 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49B373CBDA151DD2E1CB627C64FEE8F0 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A805B318F116BD492087B456B8C5EA /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 49D6527B677B2AAE061BD43ADDB24CF0 /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE49D47AE8AB6732CC8492DB2621A464 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A0EFD1EC4C1DCFCED7BA364CB6371B5 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 2852971F02F4CE14DCEA3FCC38E005E7 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A144793F9A63196B0EF626A97F3AD0D /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A2CFFB7B3E47DD8AFB9DD10A50F8D12 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A4B4055A9F1F063DB1A15F63AE1C897 /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E8B7105944DCCA04D4BE0B0C6EF0AE /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A53407C6930663F2AE98D2E98EC1054 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3177924B76A336958BB6C88C091B0C7B /* RCTProfileTrampoline-arm.S */; }; - 4A86D58DE7588EC79B94D23C048EFAAD /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = D734EC65FFE019523193FFAC02D8B011 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4A97CF96C4F30BA4CA9A99ADB56FFB52 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 124AF7726E32FB0488BB4BAF12D81D43 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4A9C1F2C47A9558330D4DD84E6C8998E /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B34A915652C148CA0B65E9EBDF74B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AA7793DADC0DD9D6A59EBF0A707C3B3 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FAA4C3245E2E55CE4E58A58F79F20E7 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AC004170B8DE727B1F9371C08BFCBD4 /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F12FA965E1E205282FB9435B76E661EC /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AC407E00FAD7D2A072A30377E68DFF3 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C8452DF85B9CC852440334B0F24C4532 /* RCTBackedTextInputDelegateAdapter.m */; }; - 4ACEA4F1801182DFDAC1CF7EBEDB56E7 /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1256AB077755D17ADE423EA654F443 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4AE67AF0EECC45F87FC8996272D4CD47 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B23943A8950296402C812354439A75F /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E83E3A0491885A15E982F40BAEA7AA8 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B38DA5AA571593D44A786B26646119F /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7205E1D5E202376B71C254222D18B /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4B4FCAE245E528DEF8D5BC0B88090214 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F21833EA996307E1506428266994F5 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BB0ED2CE00B239055336DCAF5026040 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434514A400F517C34B36D8E1A73E9E /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BBC25A811D714395BF6DC7D3E207B40 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE17F1BCCFF89BB5E5084FC6259A93 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4BBF5408EC90B7AF2EDFDC84260261D5 /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A71AFCB4279E06022598FEF122082890 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4BD775073023FD720348543AF5C69C10 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AB529C524A1BDFA0DFD4D13103C7A615 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4BDCE0549720A9514E8593390F2E7753 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E949F00CF56EC1B52AD9328482179 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4BF3994158BCF940A832A5F0CC600660 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4718870A6855BD44B5A98FF1CB53C5 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C0EA392EAB9428D200CE8EBC1C49167 /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E0DBB592D89926C037E6CB0608F9C5 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C11E5B738F5F22A999871B9AE5B3EC2 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E00A6309ED3A3884828635571023A08 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C27193ED2B2C94E408270FE66883077 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 244284323336068E0A39D1CD40D5B806 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C55519C4C118FBB5FD39B672CC655BE /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C630160D1A80129B3245CFA2EF7AEB83 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C56418245F7FDAFFAECD901AACB659F /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C8291B63E400BAC27222BE8429DB469 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFB1660EAFD9C417EC49383A42932F4 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4C89CD2C73AD4F979A6C5CFC38644D28 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF708B2D03A4F50527AFD67DFC4C862 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4C9FEAE64D05A46D0448E594457C6A44 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFFDF748F50AB686609EC5987F9E6FA /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CA2F873C29F26963260B933B37240FA /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B479041D03CBE0889ACF9CF705FA63A /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4CB929E427FE18007FE5916C3564C473 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D8715B7E77BD30B534D554A19AE8F2 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D182FF19AEB4EBA5B0DE72C230211FB /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A71628F64E7EB62105DBDA7C75712 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D19C70FADAEB07BABC9FFCCB0E0DC4A /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D31CD0C23265F496387D933A820A2F /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D520160C382DEDA4E80170CE7D644A4 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF468111BC9891BB8A1EC2D91AFA0BF /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D7BBEFBEF3150470B854982DEFAE262 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B9B790B20C31E1178FD757FCBBC379 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4D856C5EBB0A2C20E94D0C76409AF906 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F60C0BC658B9858DB3636145C166FE /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DA0A919A11A7A37166BC2139B38F72E /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D2E725B15EE89DFC24D6F5765E3A0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DEF0E02A8CD81D3AF4CC3AFFAB13F19 /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 739A241F14116826BC893CDA54F3D1B6 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4DFC6057B6D76B7C4EF5213EEBA0F755 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18FBE6791D07DA917DB0352B0175182C /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4E54B046722F7DA6CD500CF75550E733 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */; }; - 4E72596F5A666661753B5D60023DC945 /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FEA2D7DD4F9EE8AB4268EFDB45160CA /* React-RCTBlob-dummy.m */; }; - 4E890462E16FA91FEEF8E29886E8E535 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17DF278B17D1E0B2CBF510E95DA653BB /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 4E8CB8F05195519187FADFB25F3703BA /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 4E9438118286308EBA41E1694E4766E6 /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DEA1978D246E21E36FB35F0923A8B1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EAC303956D8C220AD690CEAA3F90684 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA87579D49957C3FE93BF1F386C56C5 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4EACC4753FF14CD255F62686E4B43438 /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2DB0F3FBDFB1AD4CC4376BC7A304E0E /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 4F0EDCEFE8EAFA19E4FD73239A32FE83 /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B06DE9660C7CDAB7CB687D3E34A905 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F13F6FDCDACA7475D41795526E32FF0 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A805F07DD8E98D2C32666F6F775238B /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4F9B1E5B5A2C118323EE5E180B92A1D9 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 7990548541F36F4F3367B1D7E4216782 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FAB394A512180E0C02C5943C0105343 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC227C60C614E40954C39B3D4F1104F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FACB4E8382E3E3D26A086A1FBD1CD76 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2894C664AC9D24DDC577277619309DAD /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FB9A4C1E92205C13359A6186D645835 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E06E9EDAD2A1E8210FCE7094861D815 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FC445CB0D7E58358C042A665E0171D5 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FCE5ED6C67B57609C6A5AE430F37EA0 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF527636F53ACE55B46472FB323568D /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 4FE8C7734F08286547AADAD27BE4450A /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13583D50C301970A74D608B9F34FF9C8 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 4FF3010B8E7C613DAD5F6C448E1AB8E3 /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FD302571E88DC0D638F97150C0009BFD /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 502FEDD176317FBAF300F2BB7860BBC0 /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 468FF27DED3B67C8EB7A5DFA50C6F526 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 505EF4E64AA8D8B3A643A2FEFB5DB765 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = D74A7BD2D0B6D2D17F86EFE855B58D46 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5087F030E95D05087ED8A592B0E77952 /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 536645E84ED4ED56F2E00517FE6D141B /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 508C04C63EE46D9993A5654EEF0FFDAD /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AA342B3240EFEBB928D364720B57C4 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5096E362E57D91391E9CC331D2AC573C /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5D38305A197F268E87E406F71A7DA2 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 50A8A3CD625F24911FC4364FDDDDD4E2 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F125AFF8307528D21544F722BE5D48B /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 50C8DCE054B605E90321CAFC7F744F40 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7D068829CCD4803409200D37EC78F1 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50EF0C624E52AAC5357C710FC176E554 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7B83CA7FE7EB07D352CE852E44D568 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 50F8DC115E7EF876293DFBB9F201BC86 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B538BEE8A70D1D42974F2C038D4B3791 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5113FB30A76482E54A7DEEDA77B5CDE0 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B6DC281720AB2B1F283E5BC82601A /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512DF0C0A19AB7E1FBFAD619A517F08A /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D83FC512C6C5D167E95326D702A397BA /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 512FB4DC22B9349A5011626CD547EBC5 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 958327EBD063CF2694EE7BB8178A628D /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5139DB00EC7930480BAA4AACE06B02CE /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 516A158D9A8689C79F1566F336D134B2 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0FFC72DBE4D3A217D4BFE5C425FE1F /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 517492A9DB1BE570124104ABD1E074FB /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = C347F404019100CC3CF9861AE1F8105B /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 519418231152DE7965E65EC152039E43 /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F592236D1CF05E181FD7C7F8C98C05 /* RNPanHandler.m */; }; - 5196D1B8FB13A33CD90F9C1962814D52 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 51E9F882B979A930D26C46685C0ABB5E /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C4AAD24C62F06153E791F0427A809 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 51F935528D8F1290B119761A0877EC1D /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EDE3EEE993AB385A79E553E5CDAE5B /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 526D64E4FA9DBDE77645A41AA11C849B /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 166765215E3CD63328BA195CBB0AA6CC /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 527C6A235FFFC226B5734631ABF3B203 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 52C03E9F08A2E0FA0A2AD4CB7ACB141A /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9CE0073268E70D881B593D557A7AA2 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53461FEDA516C6ECD84EA0FE0AD43D8B /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 53510E6413009DCD9416191320F10886 /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = E88A3386A428E73C00B3E54ABEF6B4BC /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53532B4577B25F53B882673F931E1E34 /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E28E368B9F605E05D96B9157EAC98E3E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53585143D6EAFF9E4088796B0BFCDA15 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 610F7941F8B3CDCCD6FDB6341FF7A28A /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5358F81DADE23ABDCA1317F5A326EA71 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0069DD0204BA8E03F0D2EDBE3E80DCF4 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 539FBE7933A89B290886EBEE7AB304E1 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E8CEA50F73B7AEF97AD26AF4956F15 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53BF28E0D7B180B301C3DD5A76DB18D4 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF5266C2DD4A81C9352BB056F7970E8 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 53E56388A8BE048355BA858806BDB24F /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 74551B784505A6FA9C0D0AC04BD3A2C5 /* bufferevent.c */; }; - 53E5AB8CE488972464F73BF2FCB718DA /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D364B68D08F784A9EFE3505489DB45B2 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 53F06B1527320C788690D0AC25F99259 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A23FBAC585078DF037080F8B11DD8BF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 540533D9372C0307234E4469ADA97985 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5416013AA610DA4FBFD26125C0191F30 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 023931DE156E179D2AFF6BF42B90EEDF /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 541788C2F8289705936006DD61EE156B /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED3B2151A66DF65CB4A03C8B0B96130 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 541C7B542BE9DAA6202E136237A05192 /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3DC035F4BD910382B1C5722D4574C4 /* RNCSafeAreaProvider.m */; }; - 5424B93286AD384E7E2E134B1802C950 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = BA56E5D6DB8F6894D7BB0B1DC68F1746 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 545E6C6B5ECE9CBCD188A58A5B661BD7 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF344F8BF0C107C69163296F07774D8 /* React-RCTSettings-dummy.m */; }; - 5468B18F248F48CC7444DAB53E55683B /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 40795F4ADE71EC85D96D6B31ED24DB7D /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 548BE340AB48B4B6EDE297BB58A06C4F /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F051DBD6BF88D1F6A965613D82FDEDA /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 548C82B9157623D16051E9DE7DB37512 /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 463A0625EF5539121BB4B7BA5D74B9FF /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54A4570F23B22804CBB496DB56C64154 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 039AE7D629F4EDF88A50E67C1344340C /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54C07806B8D1F67D62ED5736E02F6F80 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB50DD6D712A40FAA526A8832CF1725 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 54C5E1C510797ED21C29959A0C7CE13E /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 54F18C70BDDC854DED682D8528D90BCD /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4682AEEDECF3D46B959B1CD9A3C318 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 550A080E68943939CA95B7F4E6485F49 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE719AD41FF7D09A301EB6115E4B43F /* RNGestureHandler-dummy.m */; }; - 551B8EB703468E5E5B6014EC1597E6D2 /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B524FF297E72E0EB9BC0AA57C5B4B4C5 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 552567A5283EC43969C1B1525CAF7FBA /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D7075E5E2E8C0A3FB3C53A004D5FA05E /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 555F8411F8AAF4754313EA6E0C0BB92B /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC345DF21D6751E98BF14C5191DF83B8 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 558B378A9D9038E0F1D897815C66DDB9 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C840741219E01A76C26374B681E57C3 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5598554287956A4B29C54CA40A746DEB /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDD39377A56E5B46730E8998D2B38DF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55A5376C1B92181AF5F71AC9B31C6A29 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 55AB5F71A12976A82E9DDAB37DD0013B /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D91CB8098B67E74DDA6E1FB8A6217EB /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 55BC848F93B6F3BC0BFD16932E22A72E /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = E285B902B4C6ECAB00BA27BCB7CEDDCF /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55D1CAC8587978CF62B9FCA3AD0A7611 /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408F1DB02A0AA05FA89128C31892A0C /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 55FE0D446BC7879B8BBDF73FB28E9860 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2C408CD0DD40BB60C335CC6A86BFBC /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 560BFB3C0A7957320BA108CA4DB6EBAF /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = CC948F25A85602DCD1A7E4CC0B1F0EBC /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 560D3B2CD9BEE08F0F96F22AD00FDAAD /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B1084B40FC15F65A8AF29E8C5B703 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 560E478C7DAD2874D343E24856928711 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56193C8414EB5A60A894D5DD276CD93C /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E99BB031A2304421F594AEDCB6909A9 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5647405CD8A3A9EB44168DBB68621DE2 /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A528BD862DBA9DB2718D18CCAD980CB1 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 56577BEAFB5A8FA559228731BCD0D032 /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22A2F0ADD667A8463B45A21C881DC3 /* React-jsiexecutor-dummy.m */; }; - 5691A61C0A79F05951CED0E65AE85E07 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81F054842B32747CDF7EC5B4899D516F /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 56BB11B2755061EC6535FF2A130B1EE4 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49682D90218D3CAFCEBBF65F938A4EE0 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 56F7980FD755DC837527569DB31DC8BD /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF98A242258EDCF733E50F6AD79147D /* RNRootViewGestureRecognizer.m */; }; - 571A3C2800268655212CD8A153979F3E /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF3530FDA5BBEF430BC2F9865CB4D1CB /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 5720D6E424FF95E01467A4E7493010ED /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7085A217525AEABB13236B72D32268 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 57574E7E7CD80D5008C7782B6E7C82D4 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C9DB4376E57B2A4FC33AFEB4AD8548D /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 57651CF500AB69DB15AA16958F433B29 /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A18B432DBC48D1FA7AE8E139B4459CC /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 576D1D3D0255B54FFBDDCB00855FE397 /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6318B540C032DEE88E041320984B139F /* PTChannel.m */; }; - 577CF74AD7EE9638C8E7EE324967DF12 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D6C5AD6765484A6E978DFF23D181E4 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 577D206A262ADDAB758366F598553E1D /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F143A1D7764D57EE6E586A375AFCAD8 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5781CCEE82EB8B63E2C776F1C640AF34 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D670691923A7E0A0EE8254B8100EEE /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5801CE756C7AC67D3B6CF71364450E8E /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C955913DC0661C1D89DC0F5F6640E2DE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 580C40C0B2394DCD500DD170AEF464B6 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEBC5756DC77FA3B0EAC683F839FF02D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 581196294395BFA2F0A199BCBA6EB208 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D4D96042AA9D396188A0CDCE9822F7 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5817DDB336D2D4963E6854FB0B44C71B /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B18C52A43F53D95036703A46040CD637 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 581D5C6D857C3D9F6D9BCF9EE02CD188 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B35E1DF1FF22E5A206C8814673B49 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 583F288E3265CD4F365A1F93148C9EDC /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F7F7DD5AC6BC1BDB3BB16EDC5198AFC /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5853DA15E38CAAC98718ACF5DDE42D38 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F833468CF0962230B33A1A98CE478C8 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58543B052B0EA81A6E5F640F026F02B3 /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E47AADB49E2969E4B6DFD72A845DA74 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 589262BFDD33A58E43FEDDEDE807D8E9 /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7BD9B0C45D1C66603BE103478FA417 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58A6094B543116497A6D1CD5841155CD /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47197A1AAA0CF0D7B22F3ADF2917F800 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58BDE79580F072338DC062454955E594 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1EBA02D29105DC27E29EA23FFE5967 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 58D8C8EC6BF584CC5816275396CA0EE3 /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BF3F3CB7B4E98A8CC239BBF3B78409 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 590209CE4EC5722D470F0EF966BE27D3 /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1DA8B3732623A4D1637F153454BE20 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 593481BE39D1A2EF37D0F5C3495DB1B8 /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84F4510539055CB95E56FBDC763219 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 595F5515FF167E9C5B87D347C002291C /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8EEF2CB96767D51649A68398181E23 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5963371A7C74C388551B264F1A023119 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 596BF884A358433F0F33873E30E5F198 /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7B3CDD01C3FB63FB8F283AF9B5C7 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59B53473E1F6899EF2EC14C6F0ABF920 /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 63462335D68E71CE4F23FC49EBF908A9 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59C44C33BBF8CA68D2C377CEC594E2C2 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F6117E7CE991E89721B0F79289DDFC /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59CD6737F35471E07FED82B5FC2A0BBB /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FFFB9DF9F4DBF89A4C23C10661FC7B /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 59D96C7454F03679C2944B34605C2360 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D73E08A1024DB085F441C030BC2021C /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F58BF9387439E53002A23DB9DE8CA8 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB738BEC3119912B5241D51D3BD34D0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 59F82B4954E1061EC27632467967EC40 /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694C10A80529882CB01503D51F57BD41 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 5A0425A9A3985E7E3FD60A575F136693 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B87D5B524A46114E157887AA8116DE /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 5A96AA02C9A90A4CA382A3B4F217E85B /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7DBB91DA07446109BFFE2605C96060 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5ACB9343E2D8BF78910FB661AB784444 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C1359D7D875B44E7CF5F2281160F4 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5AE61F9FC57DDDC07EA764ECFE08C2CD /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A329FA458DA9929C775B3AF8525C3E5 /* RCTBaseTextViewManager.m */; }; - 5B30E28CE342B6241E26BF6CB9C1C64F /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E8801BE83668BAA657EE3CC91CC682 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B3A656A2627930A124546B498BB7423 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5B716E8EECBC9441D02A11E49B03B377 /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69ED4632DAA40A6870550843D525D887 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B77F97227B9724DA0BDC64F14A4D1F6 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3F7E448EC607E288DAA4610391FA42 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B870BA3FC5070486D5E6E1F20404436 /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E96152BFE80CC4D17212C73B577A1E7 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9372DB7033E5A1068D646C532AB78A /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E1C2559A5BF87F350DA10110613364 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B94AD52B2E4117E7F980BF03F321898 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 861044E0F723D0C83103CD21A19CE225 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5B9602D9206A4F0EF6F9CEC6694E89EA /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E41F3DA37DD4BF0C96EDDD94052246 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BAAB809A460DA832D837C6AA2488F5E /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B23F370069301FF55814CAC881D12A5 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BC4A1F8F61B108E4380A8140B76D883 /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E389890B28E568101A2243F3F8B9FA8 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5BFABBC5EB4A72002B2A3613D5B4E9B8 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5C1DB0ABECFAE23AD0A57E29DE8DC910 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C1F2965703CDC0ED4D55D26AAC6EC8A /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BA19783C0D6BA9DA388AE581EFA8349 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5C7DD1522A230199AB7EB769DB6709D7 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A319434D6D8B3CE21F6B5463960E0E99 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C8A0C56A85BE7A8B5E14C80E8C1A3D1 /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F8696B0B456E0580AFDF83FCF58170 /* Yoga-dummy.m */; }; - 5C8B3C9DC406231719EA1C707D4E4AE7 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F0FD58C2D2FCD8D06788BE47DE4B2C /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5C8FF814D64431E53C5DE08166953349 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4F91488724CF5711C02F42D7DBF88B /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5CCE27EF70A1EC941E407CB86BFA4F62 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = B77A15A61A8C50C9CB7FCA084A53B325 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5CD3724C69BC011F60FA77CC0DB697A7 /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BF4161DA62BFD3FC59C6536E5160718 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5CDE8B776B0100A5A39D9F999AE84B74 /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0227E15A73C3AFBE5B02B54B281F5E /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D0EB3BC96267A61C64BE549CD86D137 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E71AAE54A30038A5E29FC5724DEFE5F /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D12029012324F6D7EA53285941E31AA /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F1301584E0AE32C0EBD24F398A0D5 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D33CC91F7E68895E508504D3C95D2A0 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A05C7FC9300F94160D614FA7CCF250 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D4B3D9BCE1E4A0DDC8B3D4E6EA67499 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7898976C55FED104A1F41769CB5805F5 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D4E874A093F62DCBA11E41A2DBD94DD /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A842EF51BDBCA4661FA11CF13F4E8E /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D72F0364B45C0E0FE104337E22393FD /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DE3312BEF5DB24EC7938A9CD8C401 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5D783A28D42B69ED3918F66F820C8701 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1071252E38179AC58994676D7F2E6EBE /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 5DA3BB119040617ED48F6F9C591798E6 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 460FBF50587F44609745057EDBD8E7D6 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DAA1C098259F2C2F0FF18A367A12A24 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF3277E2EFFDA839C18AD3C19CE843F /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3FE9CEFC67E758A6E76D03174D4FA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5DF3AC3040E1A3768C076CDA401D1C9D /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E2500118A397A383D4018C3DF7F0583 /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED591977873DDD315D87622B317EC01 /* GCDAsyncUdpSocket.m */; }; - 5E281F4C31D41238783357000E1A2FB4 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C10B7AFCE88C78531B9BEB0FD7A049 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E5676637863017A68D5FE7E761109D1 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB07D62BBEEBEE867D32CE1BF1C849A7 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 5E7217F86F1FF0A70819898C038CA1FB /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5E7F39F76D29D683C9695F9550D9ECA1 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B70FEA55F4F5E3689A95B30999735EFB /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5E8B0ED1727A31B1630CBC902144F4CF /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82B0C32505C9D7E7A9D4223433709C7A /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 5EA3794ED1E9F327C8ECFA64C7BB4FDD /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6617D7A49DFC407B3C8F345FBC92FBD /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5EF84B9C5DB8822355614B3FD4E31076 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405DB7227BEA3EAE06BB6C0C581E2C65 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F37EB374A5A633B82689F44CB612063 /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6E38BE270EBA01855C659D84B2B932 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F4B6212B18C9A0F7609B867D9ACC8A9 /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8DE6254B2D54A1F5BCE86B8854EAD8 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F5DAF651BD75ED44DB15B21D5E4E2CB /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1555112A2702638F412E0E8BC7360DE3 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F637B0D4EAC994E79AE38FAC184E281 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FB4E2F5A090CFE5F0AFB7503E15E7F /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F645D597DC661F2EC812E59B765C491 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7063FA95C884B51B41710206F1F864DE /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F83FD40A6BD496A59E6F28E5853AB8E /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 207394649359263C8AB2435691B2794A /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5F88C22D1974021B30131D5CA42B0282 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0EB8C9DAF78F0BAE340499D45B3030B /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 5F9CDF60EE2A3587410616092DCF8875 /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 965FB28B3DF50EBE280766D151BFD98D /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA78D1215DCA99A7576AB8C5B9E36AC /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FA8106E52E662AFEA7C07C8C500511B /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA8CD1171E5477FD570B4EACB6A6761 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 5FFA1AE0471B0ECB5A6DB1E292BB5FAD /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B582B06CFD8D8D6681B05787C57F60 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6066643A038344C34F061FB98662CF0F /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1078245AED5DFF6157868702278C5463 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6073AE4C72DFC75591C7A78330049ED9 /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F534CFFE12090FDBEF218842413134 /* Flipper-Folly-dummy.m */; }; - 609C2D45A998B36FAD6DB1AECD84990A /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A4E39C74D3DD3FF9ED7F096D10BFBA /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADACCC923AC1E1AEE2A6A6BEF94E08 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60A4F396A6669DF2B2606F3EDC44B33D /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7E4201F8D4E7A7831824ACEA1A9F54 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 60D2C5316CCB3862D8065CF3CFF48296 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 333B048382EFF3E05714C44737E8FECE /* YGLayout.m */; }; - 61021498EB15FD2D1795D79FF94DFAC2 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D939C26F31BAB4D9EFDE4D4D37E01D /* BridgeNativeModulePerfLogger.cpp */; }; - 613E0C307DBDBF8E0BEF962FA3AA90AA /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 863C57C4B51FEE3F78CDE65668DE005F /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 613FA6563334594012CB0D496A4DA29A /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C14D23C3F31C56389256B567168050 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6185C3382B0B6FDB3E78942413149453 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 090E6462B15EFA2C3D0B3A2685040FC5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 618DA388F7DF775E9FE06ACF601F783B /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = F402764687E3A48E0AC6E10E700C226B /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 618E7AEF02E573C84CE04A368EAFC7F7 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D44F9958B8C17BD0ABE418BE3A74C18B /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61B28B50E03C7BE3253491D8F006D271 /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D53B5AEE7DC4CEE6614EE9B4F76BF34 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 61B2F52BA9D92E6D607B1DA92315FBC9 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AA3D66FE1B5A5DAC5E8244E4E9DC0D /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 61CC3C1F9924439C23205A3C506712CE /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23AA0F5D35CF155346A45FDB74934C03 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 62088132D71B465BC1603AE4E27CE35A /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C00C9B89B73381E0FE14920D40E13C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 623583B45134AF872867A282FE16E9EE /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 8566F9D6F6F3CE89BCB406146CA3A7FD /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6251F505F5BEDBC996248A04A8D84464 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E49AF705399890E10FD1E0B997F47B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 625965B03111456A02D7718EBA22E071 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 626CBF8A008A171CB78C7D99137BAE7D /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4C77BED77C642CED51AD321A61944D /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 62754DEA8DBC29FE834A2BB9752A5D05 /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D639EB49DF224BD48480088ECD9FA2 /* RNSScreen.m */; }; - 62C657F4994B7457EB2D3EE6A2FD8458 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFCA4305D3BE9A2459D532C3F0B4DCEE /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 631E3CF04890682C482C63D81F4A7FFF /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 748E30D42871A455229C408C89397788 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63320C49A9BADC104823F217A0EB05A6 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0080A3B69398672079012931FA1498BE /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63658421DBCEA2944E16A7B1519EDDE1 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 343ACBFF51516FD5F147F1A62DB55535 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63A2C343EAC50EC05BDAE164F0FDE229 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF920942105D59CBDF8AC26AF11EE81 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63A79FE5DD2A472EBCF1C6B21E4B47E4 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE25E56F5B03E9A5B3A73BF4AECA78BA /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63C01AE793F44DDBDA5AF03A552E5C59 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C0390E0D9A5212FCF001871676E7A4 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 63FFC511C02B0DF7F205A007D3DD26BC /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F7F6B23E502BA01C6C8225A8DAC582 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6404FC7DE17D16CFDC647579CCFBCA00 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7879BF85A2370D7D2345CC4DDA98C145 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6417F31C7750AC958DC4376BCE686432 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DD2E19BF23A2B7E19B50E45088D00A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 642D1D390ABA1B5B8C035955C3935202 /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9F5DD897F0D44D4A35154E41534594 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64524D7891D69697E0A857C094FF2F3D /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0D3CC3849D05AC4CC30DA5E4E76707 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 646CC9B73D01112B3475E67EE2898FFA /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 7458F397BE6FE5D095086B8666002063 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64744FA5970B2E16D6D0E104897FBB41 /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = D1093D96BEEEF431374C1ECD4C8D1E1C /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 64B3CBA4524822F2DC8D6CA4DF10A501 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E484DE664FD405812B02B80DE8473C /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6503D267FCFC27223CCEEF3B949CE835 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22A580310C9FAE568A064357EC663FB9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 65041CC810044016DF4FB9CD6BCC4F87 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = AF146905C85E80752BD1601E84458DA6 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6510F8AA7D042CB8F29710B0E47A781E /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E263CA6117FC022CD15C9C4848A3B54 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 655C3A0EDDDA94502442730C34EE69D4 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 659D6D4B5839D464A9368EED9434B14D /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0234C21F1ED1900495394037B0A334 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65AA916FC0C53752E490537C95E96F25 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 762D2BB55BB4E8ECE50F1F50C0812126 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65C99BD03EB225D7BDFD7DBB12922390 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65D9349603033D89D780C72556E03CEA /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9835B0B1DD5445809B505BC07ECDA991 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 65DD451974390EAE8F1F19A9BC5D0B5F /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A0CF04756A50743B89A7AD22B35563 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6619FB8E8AB82B7759B46795BDC3962A /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3CA4C29B5C71E97EAEF43F661C17BA /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66335F1CADB6E8E4C87B01FC702BC8A5 /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 84901BEDBB7816A4B61B07A601AF4343 /* evutil_time.c */; }; - 66690BBD1F5E49872A17D0ACDE2B5D1B /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C17138B6C6474BF2C64F8968E845A8B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 66889F1A4DD1087B1FA08A072FE86134 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B64F9FB54A719D80FCA75E09904BEF7C /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 66D09C076F7839F27BE48A2A65AC9624 /* RNSound-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EAE6D87C9E3D828FFC281A9FB51751 /* RNSound-dummy.m */; }; - 66D877430763F132595BA5ED016E90B5 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7DAB6C523370F958F58A5C659811BB /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 670DAC0D0FD64132063A55686B8F525F /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4233F004D8FF5DFE443AA79A462968 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6715109104A78B7AD1F6126D232A9ACB /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF18BEC10855F4ED5279AD3CF5A4111 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67227AD68146B44BA26C14A52DED79AB /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F037B7DC082451C85B050990F4270C5E /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67515027FC71993CF0151CB6043D43CF /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689EF50BA35FB0724569378C2E0A1729 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 675BD515902273929456086138A39A7B /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4599AA1B2B24C6FB9DCA34C2C4FACE /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6767F6A7564B487A0200CE4B8346C093 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE39ADA806130445D5EA9AABEE9FBF52 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 67771757A742DE2AEC268A9E9A56C4AC /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A25187A779AB5D3E08BFE564BBA0E23 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 678C62B25791BF29046B72CD72B83EC1 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EDAAEB39B89DC09D2D35D420CBE23615 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 678C818CF61B09A112049B289A4961CC /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C48C67B4C4F6D82B4DA17A10FA244 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6791B08A9026857D620B4B2834444B7D /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 959B09C304EA4A905C9C966BAA013B29 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 67976ED4BC0B2386E91691AAD50A9D63 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67A4A9E1452B773ABCFF9E178379010D /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FA5FDD1150F80C3A96A4C62B51A78E /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67C2B751638896F87F4127E2993919C1 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 806CFD14CD66757D532F3AADEB04AEE2 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67D4842FCA680F200D924D576911E05E /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAD44CB1162630346828ED67E3B9563 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67DDAE88C98CBA4568BF67E7E6D2A7ED /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 11238CAF93CA6B458918C476B16EC9D1 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 67E9046887D7066A96EAB9DAED8DEA1B /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4A6EBE1FAE6A0D748B7D340F859633 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 67EA33BD65812DA57AA621082801EC17 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07672549CC52AE7CE770E8AA3D33746D /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 68002B140644AEA591393A561FBD087A /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E1AF399710B012BEEA86F4D62A64E5 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6815932320E73C1260483E75ED4DFD80 /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 490A3291779D204766761E2636D37C08 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 682E83AAC5AB02E73B221F222F15F435 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9E0AD3831F8EC1271DC1EF378FA2F1 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6831DD5B20F59C8EF254723423180F92 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD06B49376D0D11C484A97D78A05B55 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683AB9316607DD4683BC3A03F0AA9CDB /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2C3E6352465D6BFC90D36F55A9BC7 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 683F6E14C13BA7B5A3FA21142EC9D2DF /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BF4C462114E425320B025587E34F91 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 684ACD2414ECA4952331C6ECC2E9AC1F /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0DB550A169BD0AABA0FFDAFC4EBC8C6 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6859AE25B9AE660AB766B2FCCC7E1A40 /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = C94EA59E573031E41549A2EC098AAF18 /* event.c */; }; - 6859E792BF1E82357744520F3C0774C1 /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = D950471C76DB1B6A05572F059FD2C7F2 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 686FD10861F0AE810C3019AB82AE2A0E /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF815308F027A9D85182CB728FB49AF /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6875EE62DF07D5BEE458C65A72551032 /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 688D4235A080D4054D5B9FCCE4AA21EA /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21F56787EC8FC86F0D709BC3B6E791 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6899A883A27C31C34A2C7E5EABB3F1B6 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC8E9D135E8B19CC9AE62C8417599D4 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 689ECF7EFFEC9539DC6EFF35CC3B7EA8 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F97BDBADEDB08D0CD901AC4308FA29A /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68CE8022A9B5CBFDE470BC04891A50A3 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68DBD4AF4A2B6BC1511558ADDCB1FD83 /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AA66A72BB1FA6730FEC5B708E4910 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 68DED7885F2B14958D73E7E7F7ED74C3 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2675804FFF6666B5C06AACD4FB5EC9AD /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 6911B2566D1E29AA8E1E9D670B478AA8 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6925CBFDD062ED7A9390EFDD0647BF96 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CB5E2CC4EEB8D454938FDDCF8F4534 /* bufferevent_sock.c */; }; - 69339EE05DF3028CD886A8010EFB8152 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D29880B2F0BEA46CCD0E8AC801F6A5E3 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 698C490324B1F3F8E4C870E1E4612B8F /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63BD0191677E7EFDEEB3EA5A58071B92 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 698DB801585504EF086B74271159D8BE /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEFE733B947CC07895815AE43D23205 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 69BFF26F3579E32C27CD800E9DF68D2A /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 758ACE03904649087B07FD4E53C3EB97 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6A107CE4F7992F479F7D41151808E07F /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3520EA9B0EB7C75D394A4D1E4EC73 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6A3796EC83B405AA8D7F344B8036F09D /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A40F0C156D8760EA0DC9F4E2A038CCF /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B051F4B5B668BCC3AAB2C742C69458B6 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6A9C232098F3B362678293B3DBA8548F /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6AA03FE06352ADD2DB83F9FB7A526899 /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA9E115281E34E39A609A88B050BEDE /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AA5FCF85CF084C45AFD68403CCC943A /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFF911405BAAD216C3ED914C8AA0DA /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AAC8B358F34BCC8D6B7D78329D79589 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6F28100485590C5472E05F7C6B2DB /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6AD1537E0BDDC8F738F27DEF42251690 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = A40205FC5DAF460D1555EFF2168A50A5 /* poll.c */; }; - 6AD7487757BF6F99AC2689353D0BC79D /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5575C08FDF9E7C8E8E61EFD9AD21A34B /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B3038682E5EBA44C7A69A102A0C6746 /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAFE269F43895BEECC1DE8776E5566 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6B30A8EC64D7F745B927929CC987D382 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D3E9C70299CCCB285DA5A4D57E94C0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B4F5ED07CB8D7C4C796720F3FDF84FA /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FDA11B031E280F1B2C859430748E43 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B620B398151131DD3127A2CC1A25E27 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CB7368AD642CECE9F25191DBD9F848 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6B9CBAB8AD37C37F931E4ABB3BAA7222 /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9701CD8B20ABD0B6E7BD0F38876E522D /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6B9D3EBCB283E23E952D7D724DA4C9E7 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CCFA53E2429B053FFF182CAAEA95D3 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BB03ACDCB577DF7C32B635CBD71CA56 /* UIViewController+RNScreens.m in Sources */ = {isa = PBXBuildFile; fileRef = 21049F85A0376DF4BC42635B02E86625 /* UIViewController+RNScreens.m */; }; - 6BBAA4453C2457A29F01BACA056A484E /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 0406AED3EF517A85467EEA76E4830215 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BC1037D90C5F65D1D6335A70460A09A /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9A8F15F553EDF43432DF7D8B7A88C2 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6BF7DB4E854B85D7CCE61CF916F2938A /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6F6EA5CD778A4781FB3D198F6AD5D30 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 6C0CCE36F8E4912DFEFE54ADFB7B1107 /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */; }; - 6C1B10E9BC29EC3F3E76E14A56874070 /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 706EDDD2EF4666A1819943D2369CF654 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6C2C538EF50FE10072DBB4AD5A3DEA1C /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = F69F78C49A046622FBB7EF1319FF6271 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C3C41502A58D1EAB6A17EE593C2E826 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A44D0D17BA1E313CA74B03DB19AC98F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C645AAC4B84930C1C28389B126806F2 /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E628F79145BEF78AE1A9AAEAEA9B4A7 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C72533565F9F266790954EDED8C6DA4 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24B29CF1E2FD8262A240DC53472DC8 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C8996AA93718F6F8979ACEE5E92CAF1 /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C214B8D3FA5244F701131E88F307850 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C90C533C411C819547C9693D9FC7FEE /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C84B0227E27C0732FBB177EBD7B8105 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6C9BCE7B044DFF257B2E45CD13C83490 /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ED3D3C5FBCAC752233D65D8CC5C8D45 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6CB11E6191BE75C04C802347952F9916 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59B0F22AA675448C3C81F6898267FDFE /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6CD314471E7C0C0DCECF9B6E5EE6DD6A /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = B34DDBEB8E2A72E3E933CA7FCD419963 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D12AFF6A7C8B2B4052CA5DC05FB4A6D /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 477CF87B8F45F6961FEAFE00915DF132 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6D3F036CE7AC83FB44700F4CCDE8D617 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D9823823394FA2CB510AFB50DB4DFE6F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DE07F74679E3AC3AAEED4229AD335F3 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FB3829703ABB34103D3FABA89F1AF6 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6DE1BE54CED2B9B7C58E6E529AED7B7F /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E28F084A1410C08F80D97DAA769B85 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E0AE21EF09B40A9663BBBB03900567E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E74FC23869D125D7577CB7EC2561E27 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6E3F642AFCD8F966758D909C92C00D66 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 845292F3BDDD255B6D20E1F188BE5AAE /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6E5FDDC033DB7AB946AAC9B1D6B3BDBE /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF32E472F0A02F2DF444DC71FDC358C3 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 6E67DB66D90B4F1AEFEB6054FCDC6DB4 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D2E61CBDA4B5B3C05E5B48617E87F /* fmt-dummy.m */; }; - 6EA7454BEFE0760DA7993D9063B4FA12 /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D2007D8F77EA6EB55A4E94CF20B7B12 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6ECBF5784368998C907A12EEC0B0C73A /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA6065D440E7989D080B7CCEB860073 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EF4CFF10D08181389F0586B5F27FF8B /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED31E2D33BFA0F0CAE597A9B3FA09DD1 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6EFA5D48BBF8EAD722755C73B6F8D119 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0CA48A334DBAE7209A362102D020C /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F1B0AF5D45C7D6CB1309DD447923C8F /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D899DEB17DA96E9F4ADCDD0938C26562 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6F221D7F6CB8F6D47C61F60872300E5F /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0651B056FC760A403006F793B0E4C8CE /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 6F5A2F5DFF198E3C8E058FD274CAE1C5 /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC9A15CE5DF71950B278AD4A46F01596 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 6F763E3BB1B9ACC215BFD0264D1EC9BA /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E4A3526C2ABD58547AFDCFB72E6733 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FB8C82D36CBF253D16043C5205F643B /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCE5E8A6769DB6C502C3A73B0BF632D /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 6FBEC85A0B3CE84FA6EF46F2A6AC1F08 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910E88661A106D3DC40F557001EDD9F /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 6FF6431EA9CEBF1AE59AC9C9CEB43D5F /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7003720DBB1ACB2C5848AF8CC33BC492 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DA7D9016EF40B14DA1EF5F3A8E36B0 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 701B266DE41C4DDF7B92176B0D63059A /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C64B98EB1C60BAF911E1A7D56FAE7014 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7051CF76DF952A788AED02FAD6556B99 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 141C21C4F6F654A50F5863C9A1BCA767 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7051E6EBB3648FC1A0C78262357FF0D9 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6185C1E47CDAC547C34864A36E707546 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7070EDC76095AA06E04A931E7737C796 /* Uploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F8F2704281B997DFB6B9B6AACD5275 /* Uploader.m */; }; - 7086F94D984B6BCFF8268A8C4EBA91D7 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EFA3ABB77ADE780BBB0CB7E791921F /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70A8F163C320E2A1BAFA5305220F9726 /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FACFBECC1DE749B6343FC53AF6D209DA /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 70D7DFBA249E868D89583F84F52CACA1 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDDDF5391FC67075A091C69A7989A85 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7117BD6C3B9B5E5A41F7FC2D0E67427B /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FA298764D7B5E58F90898AAAB1321E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 713E943F2B5A662B5AE8F0113F1FC177 /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F274697C93E62D83F265FB45477CD /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7171A35AFE137BD37D25AA85315D76CF /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DC540D25FD1252159C4648F1B3F9B0A /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 717B521A305A6BA6142EB26B312BE1DD /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A4F30351691FECD6D14FBC2A381BCD /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 71EB69B7F1EF53F1826FE8B467995A8A /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 958E51FEBD04D1E19D9FF4D6E74DBD95 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 720A40A890BD9ECF1145C35A498BBEE5 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D6CE4FA2371B783A24A6D170A1F0A /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 720C6FED7064F5B2CA7DFABC3737EEE0 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E668B49F2B1469C788E5F401AA1E97 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72727DE75100190813BA537FC5EBC58B /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DE74B85F915F73CEA61E2588EE235516 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72A0E8FDFE35A40DED03137BBD91453D /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F85441076215438C688EF422623C79 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 72CB299F705867BDA62014D304DA0DC4 /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0BD5C62B585473E46A133282644A64 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 730F2CA340A8057976951AD021842BE5 /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 73180619049657209DC7D86AC88197A4 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FADE3C903A7E7F1489DC013F50F20D3 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7337C593EAFBF8CE2326A7F45C58DFC3 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC3B113381E904448C88D8A5902A30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 734530C3D3B6CE3CAB7BE35B0B4E47CE /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CC00A49C089118FEF3E74D6A261CDDDD /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73737B97BAFE23D020F38A755E4F7FD4 /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC778ADADC4E6449FAF55B6F6BA4223 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 73C8401430D6D114E570040E7828CC58 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A584B7C1F82497FEFC2109EB8B472F1 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73D0A6F01221DCD58EC07E10016085BD /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B437382778AB8AA5F1C2865FB3A6B1 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 73EE774D71412A7F389AAE6FD4ACC475 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 016446B10A5C7FB2CC9112270A68115F /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 740E1280F413A90104750A85755E384C /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74625B4FFF7B0A7992B31A5B4688B9FC /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA7563F180DB9F920136C354CADF783 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74B4985B5FE3E81FDE0E9874AF01ABC8 /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A27656737BC45D954DEDF2DE634BCBB5 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74BBCD8076758367A2E601E093DBEF08 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A996B7E127268B2F016F352FF250D32 /* RNForceTouchHandler.m */; }; - 74C05E7D1FD63DB89D76834540C77BDE /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DACE4D331C1E6741C0E56F0792AFE5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 74C1082C06D4E50E73BB9053748AC20A /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EDD1ACC1963906C39CCA9EE83861318 /* RCTTextAttributes.m */; }; - 74C7212BC2C91FB3B45AFD40A61DF51C /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F38A27D1E66BEC1B9643C0E12E5C4BE /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7534F3F041C0CCAD5DE4A3B4FB939B1A /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 22860DDBE4C6E12CD6C08067BF9A19B5 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7559ECFEAEEA97ADB467BC764927DE43 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2B6F4D6F5F9BCBC6815FCC124E3508 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 755E368E35E749C480F7D7B5886885FF /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE9DB9E7903BCFA51586A25FD6A74B1 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75971DA33ED0466039DD755313F9069B /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD951DA37390811D4CFB130B8BC780C7 /* RCTVirtualTextShadowView.m */; }; - 759B7CD4ACC6EC33D9E17985CAC68E42 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75CCAD8AFD2D6C6F3A7D01353678CEC3 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF3365750B28E5303A9713B438F442A /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75E345B311E8D451ECE7E8725538B999 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = A384C645ACE3D1B860E2AFD189E08ED1 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 75F8E71ADF5DE3991698828312539CC1 /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE4F8CF26E044E4032D85CD05574EEC /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7617CA6091895F1457866CE46154A1E0 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F14790EB365EDD3A118597FA366892 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76212F2350FEAF2C477BFB4A353EDB36 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B245661A8374CFDAD3E85B006EBC1E65 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 762CCDAC9B05ED3F8D4AB612FC7AC683 /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79E76AD7BF23CC1516063BA0DBEBAA4C /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 764FE9DE50BEF7F6AF3DDE46F8E72C70 /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = F35D7F0C1D3D6A263A2E72A5A7E487FB /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 765EB4D01244228FCF05E91099ED5754 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 766F1E447E064E207A297DF9704C3908 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D105260F86EDBB85F565FFED1FA0CDF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76769814FC63607C05019371428ECFD8 /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1C1235902A1DE3DA43779A33B13735 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7697EE20D6DF421D9FF34346BB9FF22D /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B1FA3C78EFCB90DEBBB99F8BD59249 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 769A76BE4E0A895769DF5DF863A909FB /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC983533D93206237E17DD0A730445A /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76A1CE627664A84423DFBDEAF00FEA99 /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7734C145A8433DFD2C5F26CC4AE6FF71 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 76B8FE06755E09BB078510C09140D85F /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA942BF4C323C1EC0D603AF8B66862E9 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 76B99D30136CC04801028ECD9C5ADC5C /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27831EA433EC7BAFDFF8C6F126103923 /* RCTMultilineTextInputView.m */; }; - 76C519EBA026F3F3135BC3C4B163DEA6 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF91021FC1940466142D9D1163CBDF84 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76C8D07965D7F1CE68667954037E0547 /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DE5C1EE87669FF26F068AEAB57CC07 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76DA115BD46FD88DDEBA0E95BA24DCEA /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B654B0502E64D8D388E089653828E38 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 76DFE67A360211093104F59FC1DD7225 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F184D229D829C6E7552F72ED1D44116 /* RCTView+SafeAreaCompat.m */; }; - 76E3C347080045226FD1CDADAF928A5C /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 76FC345D3ECD7FD8957A1983AE15FA32 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A72A66152E8DD2210B61F2B4C7A780 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 772D3F2D85E65106BB58795A24EBC25D /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C691CB90FBC181EB582C709A3C557BD1 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 778E9B554D8B105704D15FC2FCAEB895 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A7A9527213421D4D056A41BCFEADAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77975773A8D1E3AA9963FDC0A87156AE /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 14819AE9C08ED24BA27D9A2A91153365 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77986D7CE15C5FD04C9B8FB41CD4AF5C /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 628E921912621D5DE7133C3EC8DECAA0 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77B521AF8546C6A3AB57B072DA1C030A /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C21131CE83FF0002866082B5E0DC7411 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 77F830A4ADEA38457BC5427E37E72178 /* Pods-PocketTorah-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 973970D34D7DB6437D971771A1373226 /* Pods-PocketTorah-dummy.m */; }; - 7824723B857C62AA9C9707BB00FFDBCB /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 782FA8EF1A7451825FB758FFBD9DB89E /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7837EDA4A5C5EF4BB7B276D2A7703195 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C38FA84EE1A94A383A12EC9F3ABFECD /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 78A494F42E6BE9DD4C11FFC6BEB36A59 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3513F973A4DDF6C03C08134B628D9C16 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 78A50C62312390D12C9BC1BF77F83C46 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5FED0B95D91DFF218C3C2EE3E6AE8F /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 78A6F71E2EBF3C7BE06EEF5D634B5E64 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A37DF7979FC3E2158CBC9421500C92E8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 78C133E40E3E4DE0278B59DFFCC92ED3 /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8929AE1B886511F1B05FB639F1FED09B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 78E7BCE4FA81CCACAB967762536AC60B /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB54B1D0C851994CFCE97497E38F9A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 792DE99766A60E36947B4FC0C9A94548 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F33522DF97945E97749B0BB4504A8B57 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 793542A32E99A6B3DDB5EA6985C57A63 /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D549BE8B11D869215C6059695F3FB01D /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 793E67AF6B01E7DE040D28EADE7BC5A9 /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBD232D59F8110C007C1C9DDE34E5ADB /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 79511EFFD14FB24B905F1BEEC1D73853 /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1C1AB329BA832DC2E5736E63884A78 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7954E4E69F110D651ECE169B652E7C21 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 795A8817A2AA2D8AF7922DEE174D61B4 /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B04CA5C5D51FC952F1FD29903464C5A2 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7994754AEE6DDCA61917726226A86034 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A31DD266D8B42CAB4C022357A01052BF /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7999EE0873B701A72559EF0AE994971B /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C21639310CF4354C53FC396DAAC6824 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79A5357D59FA8CE5AB7F59F6EF3197CA /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = C547A08EC202157DD2CF320B6CDA8B00 /* bufferevent_ratelim.c */; }; - 79CA9B413B2EDAF955723855305AAC0E /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 79E99346D7B73CBE96F441164CB6349A /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD54A74ED4EEAD7542C5EE601C550 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A45E93EC32EF849525E02D16378A2A1 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A4D90F4CCD818211FB29906B69382C5 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A523EC5C5EAB546EC7920561D2014AC /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9AB485E6572A0507619BCDA0B817105 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7A56E9B55464FF7A13F645DFC22E314B /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CD808AD444B6CA166439D20EC1A6E3 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7A7424DE08CB0E273B672DCA87A0F04D /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BC52FF366D30ED3D6AE3101FAC521F93 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AA2A64552E04AF207E98657F6D37C77 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C243CCA34A09C91C11935C8F80109B /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7AA2EA1C9D3107F88871B385E8FCF46D /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3121962FBD3225705104EF4A46D8D /* RCTTypeSafety-dummy.m */; }; - 7AC739868CD617F6BDB0222B3E728167 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = C53E49B4620BCCF1ABAA4538E59B3F45 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADD0A3100B2521222AEBC63F1017A52 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F86FD43AB5B62D875F08BFD5D46A0403 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7ADF7CE67183A28A8C544452326F26B6 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B161C56B03D4A6C3E88073A6E570F4C /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B458F12A4DC51576ECFBA5A6FC0C90 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B23CCEBEEE6ACFB9BA9F761785E0F04 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDE936FA21D97DEDF1C966CBFA62D4B /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B2F9C2B7751642CF265D60015D8CC60 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F9FC94115BFF28B5242EE3721E06A54 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7B34571CA6A64F6B4313534188EE9713 /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 438438E78A45CDAE16FA464C36EB06B6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B419042993AD48B4380285C17CF3C3E /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2008E3B78762B92B8084A7E1AC60C3BB /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B569366E195BBAC5F10E087C800AF32 /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25ED3EB9E53303CDC06391A199009EBC /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 7B5E7265FE93026CCBE2BCF7C37A12B7 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBBDFE519F7F12A0FE8B58C45AD0C0D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7B73E630DE11FA6E74D0D9D2A2760090 /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7629DDF8F8D34B1BC5CC08586952B /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7B8CB4EE825252177DB35713E569A4CA /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BA96FD189C3C434DFF9E08BB58EBA49 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F596811D95E9461EC8228E0043F3124 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BAE39E7FF696AAA85B17D323DC30480 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4346CCA44B075FD229B5BA4288E490 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7BB8A24F77ED15B021C7F654203CEC80 /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7BDB948D8B85252052E38601401FBB8C /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72B6D9980B03397EDA7BE8CF61FD57D9 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7BE02346BADFFAB3F4ADC17EB4BEB2EF /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9FDBD8CAFB3A2EBA49D7A0E3278F3E4 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7BE7C0DED4C6A7E17781D6FA6A69AF84 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8680897BF960489B1D68A00BC1CAA9C /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7BF1670911E0B6ECA7435608549B0ADB /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 4593FA2F35B448B1369AEFE86B203D5D /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C0F5CA8961ACE4C5F87FEA4D6684392 /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 33493909D2B8284DC667057A2F50F2C6 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C2C6654C568F2790480064F63542713 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B93F07E105D11EAE9A20F471635CABB /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C6C8BC041D361705C2DEDE21B87D128 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 413491E026B8C93AAB1EA9353EF94359 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C7FFC7A6600A92D60227B374229E01E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAD8F0A186A50A19ED945ADFD291DDF /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C8BDCBEA6B31B8123F6D6B5DA272E92 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFD4DE708F6E88E73103F036EE9A99E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7C99EF3F98263E98DE6ABED54F0936E7 /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACAD68F7E9B659E9A31C7B555F1FFAA /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CB99D67E3032C8DF71E727C6E537D36 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CC2B6A9EF4977F5F53123635F9516E6 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CCBD8A694FDEE74BE46EA44A58D3AA2 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = B417D4D087B4E916C9512A0BFF8771DD /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CE1E10B696C20F8C1D4B2E469EA79E7 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E6148005F60F622A205EEF1636F51E77 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7CE48FBFA98118C7D1532EF901A5DEBD /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E155F2CBE477F86C7D3B59C50CE6E67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D37DEC1E0E731A9EB08A663C3945C38 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8B5840B5EA1904FAEC3A4F9B4ADE0B /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D3F47D64FF1A9AFD6DECE466D1C42EC /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 320E2DF9FB662DB62E3BE712C3F26079 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7D87131306931B2077D3D78945C79877 /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A6C13B24FA95FFFA1BA0D73F0B2D1C6 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7D9759BA289723CF7A364C11AA690FC0 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 942C6219919354EFAF713FBCE0925FBF /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DBFCA6B6A92D3B71E50C8C2D8E51BF0 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33B707A7E5983231D384A99DDD8425 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DC5D1691B368E7CF5DA3F8F06943884 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2947DF840D7DD0848392EEDC47DE0 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DC69B358EA252AECF4E6A8AE7B12AA4 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C134BB772A4E696A45B29C5DF3CED80 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCAFA36562264D73D3EAC7927E19193 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30168E14DC9AAD6A2CFD68A9E99F0D12 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 7DCCD64C055135D55EC30F9E8A517992 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947C32708D767B19961DA93E5ADA302 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7DCE87268ED30A4A8F84D57F8B2FF182 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 894785670DD5D53AF1020B7B73B1F334 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E34F7357AB0993B0CF72989847DD2FB /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 016D4F96A82A9C5D442A00E4F8AD1811 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E39124475CF61261FAA62769D1697A1 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E58C456E69D55CC066146B848647284 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F4B21DAA05F358798A59450F871FB6 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E6F331959FBB80E9052FE6F7BEF944B /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D15D00FBD2248129231ED45080A2C8B2 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7E8B86A11BBEC5D87184C71E475986E2 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFC10F9843E9EA7551DCE6B556C9FEC /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7EB5FF439AF3F9BC4906F4F407FA0B0A /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA9F73A1BB3C6112362EBB82B6AD5A8 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F0D1E9AA60B3ECBBF9F3CE69EE19003 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 787922EA4CF032C4F0F0D84B324BC2B6 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 7F3539B8CA05B594EA86B5AF2F06A0C1 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 565B09E8188221A060A4312F08504A58 /* RCTRawTextViewManager.m */; }; - 7F3ED3FC10516099493A7708454F0352 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF5480A13015CB262D394B853A7074A /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F46F020AB681128FB895D1FF50D0598 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35777B618F98E54CD984BD8100990F32 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 7F4FF7FBDED533CFDA0BD875F92CF105 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC2178AF7DDF1CE8B0E16CD7CCD0300 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F78CC8C5051406EDD15B4C02E1B7128 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9045B38A5C0743AF660A849C710F49A1 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7F7ECA797E95C999E7B0BB249DA197FE /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B757BDA17F7E5D5DF31473467076643 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FA7AA30302F39960188DDD02B1FEC13 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8EB6AE463C0C6ABDD9A4BD0AE8AC7F2 /* RCTBaseTextShadowView.m */; }; - 7FAE6271A764F424C5AC7438C7ECB349 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EE347BAFF5A406827DB52341515260 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7FDF8898545A7EE60FA2AABE468CABAD /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D318CCBF05A49A681880D4588ED5D0 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 7FFA4810D69B1CB24FB59F4283839BFC /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFD8E7D1AD7B567D52A4FFEB16A6E09 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 7FFE253313FDD532ADE93D72D10EF955 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 001B32E1203D10D3B5FEAFDA5B0840B2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 809D616E5BB0A77A93172E089B4003E2 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 80ACA5C1B3481FED9FD8CCC0A9F52CDA /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = CE16860A64064DA1544BE4470ADA4A8D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80ACC988B4C0D4109E3D1D1E1DC834FA /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B36FE68DE5BED274FB7808B57D10EF25 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80B01C827F31A87986511E2744603D37 /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = B57C257E93504E3F944CE741CCA50894 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80C74DE6F22986BACE8B11B942FC646B /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC27FE06014228AF77550F27A680652 /* libevent-dummy.m */; }; - 80E16DEDB9BE3CBDF2564922FACC1EA1 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 80E9C130577E2AA0CEDBD2BE29C9DBC0 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 04536393E023ECFBBE9EE37F19F1BF49 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81122D37EDF24C87C35CFFD26B164966 /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8905BE9DFE104C70D5BC5DE32EEEB2EB /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81179F52D93E92E73C57BC7292FC919A /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3E5DB2B7D8BF00EC05CF151A2AA5E5 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81466ECDA559EDACC7B9E3E2E7B58D28 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C315F2F84201EBC6B01FE94C5DB5B7 /* RCTVirtualTextViewManager.m */; }; - 8169BA4AE18B65747BF2C790FF164C4D /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0B0776BEF68D661B92D63C774E80BBB /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8189CB2ED5D8A78A09C527C67E47099A /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419C65FB5E4B2D6924B04081395AB2D7 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 81927A87C7C42F75F9D6E7501179D0C5 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281FF3B92CC0C78E87AC084898F69D0 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 819B01BD9B885E0B8812A4A9F018077F /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D601CE05E11A0E1B79B394D5656264 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81B4B8B079452DE3ACF7A436BA0D1B5B /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021AC123AD9F9611A267289B603EA164 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81BB5F4A1E3DB445798B3D8479397E4E /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB2F11A092575CF8B3294D4E117F221 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 81CC62FFB67259CAEE48C5AD634C173A /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C3739EABF7A03FF92C3AA0B1C18C900 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - 81EFF28CA9DB0F08B24762355295F8F8 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEBA8A56F54BC1602CDA7BA9EFD1801 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8216B03EE68C9D8529B5C22764C72D09 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FC8CE6A42F82E98D59CA2846F9FD8B /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82561C9613753265CDAD854A6666037F /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857E9A237122769AEE904AB7C9E2A629 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 825A927C8B05BD54ADA3B73929B29A10 /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32668432E952FDB2FA69FBB37D87D377 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 825FD11C310D2375BCC3DDFC7227F5C5 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42799C27F8BBD3704E93518488F391BD /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 82636592FDBAE8357ED0F0F660C37009 /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B9ABA2BF77797DBAB4A36D2E1A948 /* ontop_combined_all_macho_gas.S */; }; - 8265765422FC4F607663C0A5D31FD539 /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F0E881BDE949C4CC9843C0BA7323F1 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 826C0102245AAD92ADB14BF362FE99CA /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0AEFFE65877511253CAD70B364B3D /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82772619B2FC79CA136994709712F994 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 828F149117807FFD50CF7CAB07A22013 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4FBEFDD3959CD8584F32D6626C2591 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8295D2C7E51A09CC50D24F967B1FD63A /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8DB9FF1D81BBC96E0D1EC6B6A38FAF /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82B592C7FC4BC885E5570C5C9177A2BA /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82D01ECCE2BAF9A4A7001E69BD52EB0D /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E145059A78756C334CB692841EDC05 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E5815300CC485F6C1057699479416B /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = C868966CD5FC02AF75644F93E944317C /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82E895DE52C241DC881D9AB8468A3149 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F163B8C0FD1158E08E756762D68DADE4 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 82FCEEFE492CC3E79FF97CD529067162 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8315897448B4489E2DAE4FFB113BAB30 /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CDD419818374803CF96E73A980B2F5 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8346FAE4CFD3ACFBBBE8D6C90C62D4EC /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB9D211F99F3A3BC219CC3814A91C67 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 834BD9B8EFDFEE228F0B2AF12607EC84 /* Downloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D388B8F15D229564332FC10CF40A6D /* Downloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83AE88284B0F511FC2C5DD294D34541F /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ACFC2CB3970CEA53D6304A677EA818 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83B3AA8B4D4CC86F1387162C43AC2B9D /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8955818EDB7A61DCAB3F1B0CF0EBD84 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 83C7A0264CAC9C369D33E80D6737EEFB /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 83F42CD8315F9538A14EC202563C0CAF /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 095913D41661B3C7339251599CA7191B /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 83FCCEC4B77338D1799A91A400B41F0B /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 840C1BEA18E7998790FAE6D9189E82FE /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 840E5E63F35FC4BB68B959DB6155A5B4 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B85CAEE985AD04FCE729C0D28619BD1 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 843B081EF56D529FD527006878020C62 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 844A34E7374D3C5815343397A3E5ECB0 /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8452BBE9F4FD1A973F39D2C587398476 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFE3A4AF54E2B066585223EABFFD8CC /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A5A4AC9A28AF65CD1A237080483239 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD849FA66BF00355B6058FC5A42F4A09 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84A860C1429C00C6C75A028C9ABF6E2D /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6E0D0566F003FB5C7B6502ED3991 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84C7650B64D2C5F048C82A046DE89ABC /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AEE2FB82C802859A02D994170AA480C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 84D1E299CD85811EFAE10D62A2D63850 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928AB04A273E40AD5114E2A1FF2545 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84D759EBD99CE692A3A0B0AFC6824013 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FCBCC7B9B72F7599877B664821A082 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 84F6AD74E1ECDEDCD1543F48130EE95C /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AE969DA3109FDB6919CFB2C2FB4424 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 850639741A899275A28CF556D695B5A3 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A5D93DB3AAAF2F19A5DD78463692AA /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 852A8415FBC617AEE29FAE4EE81C78A7 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F19AFCD247824F63821BE8D551EE5DB5 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 852CC7B39C30E00F0847E65796472327 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD461841D515FB414F7D7EA662F21AD /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 857A677B3FF37E9A6869C0C0E5575221 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EEA0AB0894ABEE9EA7A78AE9A428CE /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 85C7F820EB38CD1197F347626005F3B3 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A3DB454F6863BEF69B6D05D3226EC /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 860C2C56F92ABDB8C771E68D3DCE0DF1 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9038E07B49691E6AD72E6AB365C46E /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86145B06701A9D6A0EA4884275ADBE9D /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7ABA2AC61166E020C106D4F73D0B3 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8635DBDC4D7380D2374E7F858038D53F /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 064F88E0C314D7917C3AC455B6B16D41 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 863D8302E3CF045C3AC5FB3E6EE1AD8B /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0900CFDC968DCDC120FA1AD188942485 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86525D1A6940AC5863168F4FF9D10384 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC3B825903B26034278931BF487466B /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86530E379ECACBE1D2A4278B0BFDE29C /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FACCDBB42010ED200752B0FCA73AAF8 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 866296BC60E7FE2CE746E45295272A3A /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6356E1DC5F2211F6241D0BB69C722E89 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8664592DB8ADC8DF0CDD407A902714C9 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 8674AA141FB521977C46158C0666FC0A /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86A21289952F751DCB2469587C93F68C /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC4E92F65981E73E4627C92AB1EAFE5 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 86CF760C678BE3261CC6D1EFA70CCA61 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1EA40D6E673702B48D2483852A5FB4 /* RNGestureHandler.m */; }; - 86D7A4E4FF79DE9B8F11902779E012CB /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = BA367F507ACAC24CC3509AE3C7D41A41 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8703433DDD7D12403DAD980FF61F7798 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20249083CBD42F61650D5302DD9CE7 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 870E95409921B7D48E5D0C1D2A7E1146 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE461F94A49E78E53F67A51475FFC3A1 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8712A013B77EFFFE014DA5E077E5AD8F /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAD61AB71F8F9FB7AC542893D5795B7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874697682767858754A37B9E72B6D6D1 /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A646D8A12D12AD680632318AE2FE7E /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 874C3835EFBF13FB44AD136B5414F1D6 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 63131B7B8B0706A1B47D2418427D766D /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8759DB507EECA719FAEFDC96F04D44CF /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD469898CFBA178DE678BFFE5B5D75AA /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 878B6D4E73159A2E12FBFFBE8DB24ECC /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09A7506EE3C0B1819CB2B589E9F3C496 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87BC764B33E77DD3CD3C79309A01F59F /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DAB357B01B45BC3FA9863FEC50D161B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 87C1350F4A1973FB3FFDE96C2BD30A3E /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EBE944EA032E62C09E05B28ADD9908 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 87CF038D3F6C53F4C6A05F1D681789F5 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = E31A0760216F0EA8E0312CADDCB862CC /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87D844AA8BE16811A4A7BDB925ECFED3 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 322BD7E5B5EC21B5AD9CD30FA041AF5D /* RNGestureHandlerRegistry.m */; }; - 87EC15883596CD64392D8181B8FF8929 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 824B921BA1E44F0293359C9ABCA6E75C /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87F4BEB23FF7FB0E32400811CBCCEA1A /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 87FC7F8C7695410BE739E9B120E1C2E4 /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 808F7FD8BA188A305DEEF79A018DC94D /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 87FFD3959C98FC570238CA6D88EE37E5 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 880F67C86F0E362AB26729280FD10FC2 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 573E84C8104BF33FFEF10FD605AA0E1E /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 88261C3E2B9C93EDCC33DF02C90AB74C /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D326FF03181C8EAE7A6A75BF779EFD /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 88397D8FD663B0C446BAE68E3420F3D2 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9C8D1144AC1305911BE1C479C8634C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8843AEE605D72A95B2B251183C22E093 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ED72227D1C8EE515258B0727E87FCA /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 88536FC03658EA5B75457F591D5B232A /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9152C268CCF62E49334BBE047EFC39CA /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88E6662080671988936F22F607DEF659 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D3DC13ADC3A52EDC337C1D63D6F0196 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 88ECF8DE39580A373C4F26C2699DDFF0 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C10F0C4A5EB18414128FFFAAE2FFA115 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 88F1088676DE406DA950E5DE4922A6A5 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 852BEC669D087586033D1C3245B99B36 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89026AA704A7279AE975DCEEAC69662D /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3FAF4715ADAAF0F85E57AA28F9FA51 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89164817B9C1BE3F8D64F71039B569E9 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC292CCBB55CC4C2785F6536F12A618 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 891FECE8EB33738CC725C796C9526D4A /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA0D786B8524A74AD94BBBAE60112A2 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - 893105F275768AA05172931C860EE212 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9640D9886CB8D74A5E508DD0C8C6CD62 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 89794D8F5CC6FB00973FF41E921EF2AA /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE999BEC6F585DB8C3F52C30DF56F01 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 899EA4520F13AE21B049E6D6C2D3D624 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = C234316DC0653347D953D887EF77851A /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 89F106DFC87C69D95FD027A340B02120 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F850A0CBB180F17B6F63BC327EE54C /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A55987C4F771B347469F38084E35465 /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9790A12231D48CA295593060FA4121D8 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8A8E18869E4A8BA59074A1A14FB3D5CB /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC5F5B94537ED355E5F7A22D8D07A2 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AA0721982CA57CB3C1AEF03BEA4FBE9 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AB4FDA6DF3ECF704ABC467CD776AB7C /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 50143941D300EE21434A035E53EC92D5 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AC356B6441B26B30C74564C7190E09B /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AD311A1AE4935F1AEE34CB5B09B02F8 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F9724FF980809D272A854257AB8334 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AD9471D05F7FFD8AC58E4EE3409C7B6 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB7DC441D0D4020F8B0058DA9A08C2A /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8ADCCF9344C910FE93876905B03C3B8B /* RNFSManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC73AA554A5B9F74F2524843B83CB3E3 /* RNFSManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8AFF955DC5786CD612188CEB0B5F1AE9 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 462D6172891378C9956E3B51AB212C18 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B07786BD78745536CA9867C5FD089ED /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98A1E4704733CC61D865CA6A8967D96 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8B2BA00437FED0AB7CD36118EB29E526 /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEC396FB475BAEA889DE422A3A09C40 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B645BD1CF278AD28B1482857FB004BE /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E3E498C6A1AF2353A0C08B06FB3860 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B797963F26FE00BF56C91F1ECA12B3F /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 69581CD9F9ED6389E978A878EC8B61BE /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8B8B7793499E8E9301AC66A2DD0A5B79 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BB4813F327FD0AFFFA6A0334F8E4A3D /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5D0BAEFABB248FF420C68A206BBA0B /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8BC16E8B6EE2DB903AC66BAAED165B08 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 806A14220ABD54C70CE58EFFB3AFDB79 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8BC31C0CBE2ED902A51670E2DE9ADDF8 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A1B2BBEA594E4332D0398182C9E05F8 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8C25C6BCF2DA0390D9A086015E1F56C0 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = A38E222B22DF32AE6EF7493FBAC2DEA2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C3A29EB0F88357875AB56C34CAE530A /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E89978546EB18CB3C30E4E335168B690 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C4133A4F539DF21287C956C4D8968C5 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF385C005BC4E8A245EF838FD03C7DF /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C725C09F58D5EC85943500B36020270 /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5775F3E43AD337DECA7061948CF9ED89 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8C85A808301798B6F22930846FF406C8 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0CAC1BE2755C6628D1706F6182C9195 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8CA7155F95B502D1334712B3748E9D16 /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583A993E49CB6F3C5511D079015769 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CC0F0CD004FF65F42A36EA181353ACA /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 407EEEDA672BACA0BFC59A4D673471D6 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8CD30F65BAAD012173DA6BBAB10CFB8B /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCB74B363612F72D8F08716004E33E2 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D0CA0D67E9D3845EF2E7DA2682E521B /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F44E7EF97E6D52D92E85A160A18B7FE /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D14BF9D9FADC9A9ED37C8AF0E0E31C2 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D20F4C50291B124CF9EED72291DFEDC /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32286AF09C4ECFA154C32EDA6CCB22D4 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D350CD340D84BF59191927B92C6FA84 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB578D54D72BCDD6A5853EBD35DE830 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D4C5F4C45F6E989142B630D9B0E1540 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = D89F38492F09B3B4A90736262F6DE5E3 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8D65F58A02AEBCD8ABE2DC9395A414C4 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 149024AC816B2DB463D0FC39FF024AE3 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8DCA0FDE6ACCD6DB96C97DD383A366D2 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAB51758A5F1B7EE79381AF570114D4 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DE0124DC4DBB5D546B86B8CAF9D9CF5 /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1801238D726A60C4E37853D55857ECDC /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8DF611B6469D61E5147626273B772AB5 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14645535C90D006B4C998ADF46A83176 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E122355E6BA25746F4CE38701EA9755 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8E3CE56DFD5FB59EA560096683C04534 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 962C45277B202FC96D30DACEAF25C449 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E4D9C1AA4A452BCACF43BEAB2D859AF /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E5A56F15C193897C0BEB38C0E6BBD1D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF8DDE95BA05E3BFBE94AAFFAA20912 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; - 8E5CF5A3B6AB49B20F6687F796969454 /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56CA3FD2EE62F4F13976357908A40E89 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8E65D0FCD81103BD57FEC66C58B50F6D /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8E9B6D18A77A79A94EAC8AF3C7D825C5 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EBAF6A232985EED0210B35253FC0D21 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 342C7CA5A0194CB8A079C01EAD326582 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8EE4B0736B0CEDE6316C8A83608B9BDE /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCFD64B80FF4098F61A34B06AFEE6B38 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 8F1F3A7DE48487EDAD2230CC856ED732 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EF17DE2E9F28B9FDD94C84D348BA7A5 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - 8F24D7B2BC340084B0DE94FA59D24ECA /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F25D0946E6E25B0BB25E88685E4D0E8 /* RNPinchHandler.m */; }; - 8F30BA79239E27AC039934AE97264A03 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBFD97CB98D6A412874128923D0B586 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F3C6BE3964C50C785E18D290FCDEF16 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDB8A9B7C915E831467EE9CF6340A09 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F4163E140CBA2FF57C7424BCAC2A90B /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECECC3C44FF5C2733FDCE96CCA59FB35 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 8F627FD03FFE6672560BA6E61AA5E706 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 26160BABB103E883D541972AC9E65A63 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F8607DC277BA097546F4FF42820CF36 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA0486373A7602A20FBDD9169C7721D /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8F94C35E61D41287CE6FAB2C24C7E740 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */; }; - 8FC5E5307B9E2AB8D23D41CF848BBB95 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FBA7CAA1FE61D77E8EFA7AC4EC5C5A7 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 8FDA7B60D08C20D6B3AA1DE9A2EF6D6E /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9AF138139744F4BF0A53A7CB191460 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 8FF37C50C28B883DFC2BA0E36F2761CF /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 804F833368914B9C8CFDE44970E9D236 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 900726122312D406A6DF54D164E55330 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFD1E3393E0108A753C1EC496BE416F /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90086B73188A4AF56984A93F7E9B5F47 /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3B70107D40BE55E30774BC0078FF9FF /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9024B5C25F3D2F4BE9645F4A329B383D /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC1785BC9BB001696FB59FF91D49219 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 902D3335FAA0F6F74775CFF11E08A329 /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F2C4CC0D9B573EA6DAD45FEC6E9B42 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 903B8D58BC98E141B032A2FB6C77C54F /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CFA0EBD7F4500B21BF90401E326DF63 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 90485BDEE33C69D4E7F133B6FE7BE2D3 /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 870D09E5DF349263AF142037BCEE2CF0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9096AA4F027CAEB0F28E35105D10BCE9 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 819BC4C7E0710EA600E464B4211691F5 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 909CF4D2BEEDA6562553BD53C5AE4DE9 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BC5D02F59A8A5C2B0135859140E3A54 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90AC36E8F28EC86B055ACB4988775AAC /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F2255703B41BAE2EBA4A8126C32A8154 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 90BF7C3C3C43C1A2E90E2469B01E5512 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90D3D539650B3DD6CB6FD82BA95BCB78 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 481CC08F5ADA547F7DE48D6A890ED486 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 90E4C7D73A2D82D6E273CC7FFA2A116D /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 86A24DF12BC90DF6A3E4C8FE864C7D59 /* listener.c */; }; - 90E8A481807E6EA04BF21B7464FF1759 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BC6B710B012DEAE094D1B1412724FF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91086A4E707DA11ADFD2B8007783352D /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 911B18979F3C1435E10CC339ABE6EFD4 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F1F2E4B9C79C072284F7FB4D8D1482 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9132B075B8C04D184293C3EFB3D8052F /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C46353071C46B01F731E4CDE42344506 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91476616178EE2D605927A29E4BC48B5 /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = B998DA4FF688B612EEC988BD3692216C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91718F9015EE01F2150E7796B81B5B21 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = B8583CE65E0340962185331F990AA529 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91ADE14503349C46AB9BC2C102A28D86 /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49570DF58F4892ED30C05041A5467F07 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91C314FFCC1548ED874E4E9152B88332 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 91E012215DBB361D16C7F3DDEF11B810 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF2BCDD2D4A277403E06E47BDC95BC8 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91E68233B0E8C0A79C4671749A720AF2 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32998D68A8950B660EB126837DC74092 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - 91F28919FE97869C079B00E3242602B0 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 91FD3BB946D84134E16D48B25A61FD26 /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37EAEF1F8F45A170F180691126924AD8 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 923419755578A225FEF95DC7BCBF166A /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29939472145D242E113B31915FE185BD /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 924EE91DE3DFC12A786A4EA2282AA59B /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3E7EE5D64F3F7344A495626BF10CD3 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 925CF7CD41AE898D4DEEB7616CA5B541 /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90AD6240EA960B5ED7BAA3968D014A4B /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 92631E35C61C42A8C1A94018DDAACBFB /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D843C6B3633B0F34F5C88CA4C483714 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9277EBE958088EA510AFB1DB562153F7 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = E9189D2AB1E78F078E3503A7E984BDB6 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 927A326C821BFB79AFF464A5503B513B /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0310C51E751EDFFE7BF01F529E8CD45B /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 928676E5C84C71184A1FC7A1E9E086DE /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92899F9A69AB3DE227B52FE86BE6AFD4 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AABDEBF8D9B593F35F9DE17572E16F /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92A8544B73B2FA29B9CFDE72C5FDDBB6 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B75BE9F8EF3E604003A8C85A938DD1 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92B2F21CE96D7AD2698BB36A842687F9 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = D877921C0CBC5B1811D802759526D355 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92DF03C1EF97D1CEEDF0844B96E9BE38 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408C8789D03DCEC361E19CB81C1644F /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 92F4758BF3860316B5A4C92A73A75944 /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D6EA167769949B9E35C1A104948035 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 930EDB9963C64656BCA8CC2B1CFDACF3 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D660EFE296AD4D51DE9D2FE92B6EEB74 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93217B96C741B58843C4C19DD5860DB0 /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 73288BE623B8D4A4ECB0AE42C6ACFD76 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9337F105638004FDC032F314A66B2625 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E0F856D188C0799B426989B838775B /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9374215612D3DFD0C3DABA34B98D83EB /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 083901B6F0EA31A29AD1DC2228E31C8C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 938CC4C73102F0AAAF70971F94029317 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C84A847C7A96B70D1A2BFB102673C87A /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93C3E7CC04E98D66B2F8BF43C88D134F /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BE92382CFE93CFD925F928A2C0CBB766 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 93C983CEDD3ECFF1B930F7C13D35A419 /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E266AC3C3719B88CBD362AD8B97CAC13 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93EAB4942A0D514842A7C6C8AF0C75C9 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0925416FBF70EF1C01A7354966D0588D /* React-RCTAnimation-dummy.m */; }; - 93FCA411E7B654F62807C2958F7D6978 /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55133247894F502C2E944B4CE4088D2A /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 93FCC65147B3EED471A3EFAC1656BEC3 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33D8A15C5FE085F02C97B8FF471B0031 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 94228194B20F12302465B4CA114DCC84 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1E754F60C440418FF82BB0902184C2 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 94370FB4B24C3230AA5A8F74C98EA4F2 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 208DA95582883B7AC06A89201D7DFBEB /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 944E159199BA7145D9B4FD8975D52A2C /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 061270F77017ADED958947601710F70C /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 945C8A216689F5643722A008644734E8 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A01439C6B2E8EB95592C9694260E74E /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9466B1B7C34FDE0AC67B95A29ECA1D47 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4557DF8D618AB0F6FB22C732CB4C7510 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94A1D2E0A64D7695409280C57C72C973 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB4967A499C79CCD125F5B61F7CA817 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E37802E0E9C519A9AEEEC7AE3C2549 /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94E65DE5D95C33A16EF2D80FB9A23B65 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F9FBBC7BFF49085E11FA78C9F1DBDF /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 94F51F8C5F3435673EC40C38650FFAD6 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4512FB26283A5BA9C810F158C2AFBE97 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9537DF5AE6976642C1D6ABEF178C99C3 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FF2EA9507D6AEC96C4EEBC15D61B88 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956B0A8046E4665CA1C0408F6C915E66 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF306B8D4CDFB40C670DFF34E589AFF /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 956BC8145B98BB9BF2B6C83B25753162 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFE5F2049BF7C3C2939C744E90B9E01 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 95C0EAA456A571DE40255FAB0844D51F /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41FF6E2844328F39E0F0980DE4C266F6 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - 960F60EBA20A33C25EEC6B14EA9B4955 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F0609C37037E3AA45257919698A9C8 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 963DFB09DAB4DBBE715082D650F56D54 /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B3208C7829341A76998D65275951EE /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9643FA2C05128FD8AAF17C7A22CEA754 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1C953EE2EA1DB55126DCCF684CDF27 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 965C1B633FF4046E5DB8B05AABDE4B42 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 966687AE7AAF5F1431C1A445386365C6 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4906837A433E0301C3EFD343CCD79CBC /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 968F71702F287A5F9E2AB812D856EA6C /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBFB1F4B3D3A5816CE8FFE04E4906098 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 969B9B75D32185092F4387B9B61AE3F9 /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886372F83458FE1F8BF449827D7D8BA /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 96A80F2D4193AA83210E29D79B267342 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9723982C5D98B238E801F4933229C266 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96D54827539A9D387A163EAC5045AC46 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DB17A0BC5D5053E93A094A66725DD421 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96DCA3FF455E90E7CAE9E7B02775A5F1 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCAE9098DF52F2D00B2ECE68AEC9F21 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96E249C1DAB9FBC2D9A6730B07535D8B /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 96EAB8F931DB55D799179AAC78896FCF /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 783E828E4ACC21B443CFE96ED95B1C61 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 96FB0C979F7F5D17CD2DBB204B14F1C5 /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D019A9C6128BDFE922FB8B6A1D0E08F /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97AD12F4B662D4AE722A4512F81F3260 /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906A0D30C9C5D3266E1B2A12CC8C4EA /* React-RCTImage-dummy.m */; }; - 97C7D1ABD068F40BD18967ADA47B905D /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 062C9C4F95A9A9259E70762F93B14B23 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97CEE95C2BCB6A0C8A64C2E7E1AD83ED /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B0117D00BDAD1CF2D3A10E6317FA39DE /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97D9D687049476D48D2B998F52E5B1AD /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = CD657CAAD584A2F7762C27D3C36D5D41 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97EB59E89085A5D8042AC531D5C0EC70 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD388BF037F8BB244D81E7C7C2D30A1 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 97EFB583AC649B1A6D18C0F797B6D256 /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C315ACA284B288B1B0384A76D258B8 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97F33DE0C863D680562276B6503D1587 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F7735F85712E9A2351AD62E54893490 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 97FFC22D07335945A2D52795976C4FA6 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DC155B71F6CD1E706C6280B5A52EC2 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 980982ECDDB76E6912208CE926F480D2 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DEF24C795E0BC84EDC5A8E7A6D9BB0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98150D6325C12532DF7AA7889F6764A9 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EEE0017410D6E235C5B609A4EA3F532 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 98B4989263EC47DFE6BF346A24CCE95C /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A892B2CB2E44B853041A21B0CBB542B /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 98F7C67C6DA954EDCD8CAC7B26BCA0A7 /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3A1E18859C00A225B7935D540F039 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 991D5F810EA529D6F3262356743FEDF9 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2DE16DB639D7A91904B8D3F6ABE17D0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9928CC9B454440DEBABAEEE9F3A3DD5E /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BEC8E9F3F363146BEA0CF91262073B /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9940CC9F712632C437EB47F9F788111B /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 585A16DDD7AAEC8380A5ADCA2DE19BED /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 994474E4B11FC421D77C43625490D5EA /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F0FE27DF265875E250F80ACFDE7C80 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 994E6A081BFB76C0CCD6A0B1C0DB115A /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 996A5A450F6781139B19549A6CADFBFD /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F93903AAEAD0B7868F9383A47A2986 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 998FEA5E48A5C87B341CB6783FDFA4D8 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E4C6EF709624C105540BBA4D53B6AC7 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9995F9836D56E37A4FD8DDA66DE36D8C /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F691C589C346AE5CF3DC4D65FE0B9D /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A03B281687ABEB2D563A5A97FBB2E37 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2BF9FFA669FABF7BB176459531EAF3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A312F4455C474E5494FA246E2B4C765 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAE3372899549E5F99D2567017DFFD0 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A381A2C749C55F58389CB2A3BBC7872 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4690141267CA3C800D00A4ECD33088 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A3C6C8CFDC7AE4DC9423F8E5F270D1B /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 226EBF97EBD348609A9C046E430F05FD /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A48AA4C255F5371101A1A24F99A7685 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8345514B17F2DA72CDAA5B946944464A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A5D0EC9B97AF9875ABED13F8C3F8A90 /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4F260ED986EC764D4F2FA9FB9831C0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A694CBAD7FAFF91EADC02FD5ECFF77C /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB5023C2D4CAF3D17C27FB17CC0DA0F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A703EFC6795F374A5C628939B66B7EF /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA47A745E8471511C02CFA277C2D1A /* format.cc */; }; - 9A76511F236B79E430737C085D0D3917 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AD14E9B68FD276276AD14CF2DCA10E /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9A7BC3C3B02E57B0D762D3C91C7102E2 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9ABC72D2D7C37CEDF9AA59CE9628E91C /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 157B9C024231B4D5AA33E3E65081B675 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9AF6E1710919F7B6225C12EACC47164F /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2104F98A24CF7204082B2E94E15F018 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B04030946E95371A2ED2054C50AACCF /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AD50F4E963DBC1AB36DC8A812CBA8B /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B4926CB2068FC41C607D9E0C0F5AF4A /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A429BF5B8997B2CEFF31B4E58053829 /* FBReactNativeSpec-dummy.m */; }; - 9B5E57DDEFFB5ED16A2AD4F0329579BE /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CEEA616551796080820691B8C4009D /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B70266AD9A53DCBAADF784C049E55D5 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 75416609E2AD4BE01E3B877417FEF0F1 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B850C595B4BB0F32E552CEC060E040B /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C4DFC021C55C17D628FDCC3C62603 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B89972EBB0ADD8C97D7DAD9D0CA1087 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A72DAB4ED4ACC5397E4469F53DD2462B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B8AB90E43F7CC0A382EB2B942B0C65A /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C090946A7BF36D3FF8F3C509AEBB9FC2 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B8C031DE73087DECFA58404361223E9 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E2DF139084B891541DAC8109AB3838 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B938F400B7F9715730DD79779D50078 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AED06AC298E4EE63E63C3BD6A16CB15 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9B9B0B59910CD3CFBA68029B8533262A /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 331C7C9CE809FC0E3180BF47AD081A90 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C3505C773FC866741372A03329B388C /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA89ECF080387178E967172CA9B1D6B6 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9C783B4FF221E9E7E7998E755335BE46 /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4534BE3ED9906C9B91D318D5BC943B1D /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C7A9A79401CF36A3ED7B3DE8F9C5DEF /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B47497B2D2D886D4C31D233724AAAE5 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - 9C997BA2FD569A19453E1C17F538B75B /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A75BB320328199F6AAA83A05B9CB35FF /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9C9F07AF2B8ABCA01E5DDD1A9D93BD07 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B4FE1DADEEF2497DB8C48E519CBE20 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CA522730085D71C0444D29969D43019 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B441C571CE3735F20A53B51881BCEE /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9CDF91B523BF80078EC79E8F16CABA06 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1FFCDB58043B264035E10E1551B96B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D01DD01E7C69B99EF58143259B217E0 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AA7C9A9482D08BA6C96DE544E12088 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D1FB8189C6857D3443D56F4382A5E87 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9D6311D2DDA2F39F94C10B3AA398AEE3 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F68AA11BD25010453413B085D402F636 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9D7D307C9D576C2E53B98A23CB039BD9 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4510B2F18E925EA14E22C825FAF30E85 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9DF159D7E3427F9157E568AC5B62F3C7 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = ED27E489CDC6F30C5D39955E7574D4F6 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E094FF4798A9A93ADCCEAB56A0C5750 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A9A78E72C3E6CCB4C59F47CB1ABA2C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E29062A725E7276DA5E1277BDE1615C /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2701A03A7C036E95A93AB9E54CBE55 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9E77798B747EFBAE02D3E04B5C9D0845 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B820C2B1A4A9E8F5AF779E25C84401B /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EE6025B24400FCB2F40605CCAD80431 /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C93C94ED35CCEC4EFA61CC5FCEE129 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9EF943BF78E2F4CE9BE023076E6AB79C /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8E0FA50912A9B819B0F03A37EDEDB4A /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9F0ABCD9F23D9CB8255F4A73926C51A3 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D76FEE6EC7C4A0AE70BA38A891EEAD /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F16922F710145225DD8AB318DF3C614 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1938A13872B10B8EA9D55526D0FBC2A /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F1E52E9277D34CB224D0901FCAE90A2 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C026A12D9EE44169BD5DB4F134A8B674 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F64E763387DDD0BC9A256861F4445C4 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4D3EA3FB82971CF64D83879C8BD6CC /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9F8458E47876FB7142771426A2880183 /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = F283234BB2C8106E306D3614D0B494BD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FA0331495D38D7A62AE50814BB5038B /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - 9FADDD724CC37F3EF85488F764E14919 /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - 9FC23781D1D405C5ACAE6436275783C2 /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 046E000D3E14978F4828969A1DD1F554 /* NSTextStorage+FontScaling.m */; }; - 9FC2FE88B13FA76D5848807EBE41A723 /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 224F362FF97E732698BFB91D428B6DA0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - 9FC85C40C5DE09785CA6D4EEF2B3382A /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EA614ECF3D0C49338B6FE24957B5A512 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A01581F71BBECD2C6BAE24A0AA557A9E /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5E5AF63C22627E9339CEA5458F49FE /* YGLayoutExtensions.swift */; }; - A01BE161ACB67F905791394C3E8F406E /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C57DCB3477E5011DF915A8934C2BE3CF /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A07941453B5715475C60D74F6BEFC620 /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53782EA8CD98118AE71D18C6A9DAD2 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0C77F860A479ECD4EC097F3DF5EEE9D /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0CA6424FD63459C131A55524D69F6B4 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4DB9385887A533499E2CB46D73DA06 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A0E4345395EB39B676627952E606F5CF /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE71A7568491DFE091FC518E58EE304 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A13BC664C28FA3B084BDC41C4EC0B3F7 /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F64F5788D89CB3AA8B35F54FF8B4F0D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1405C065533A34552AFA470A4FC3F14 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9783BFC3857AB7028548DC9F3F7EB87E /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A140CFEFE97070EF6C90718148311F21 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 85193B8A577DC316FC645CC052E22AD0 /* evthread.c */; }; - A15661E29B8112000558C12CBFD085EB /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A16F4C74B0E16364E5326F7274ECFA9F /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1895DF0A9AABE1B878828E972015FB78 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A1773241CC6889A805B081E0BF627885 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E441FE53F2E683B9149146B483C6E /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A17DB04B8D4E7DA18FDF95FA474C1E3A /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3C6AB5563EA4717B179D8C2DD1470B7 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - A189673CE87F612ED3488113F9DAFE98 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DC0B8AC713F7B5EBA5FF1B58BF9490 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A18B8072024E82A14187CA0C4E4DF078 /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFB20BBA7B2DA58F4EFED875A40561 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1951101C30376839912AF3EE86FD0D7 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC84AC02D21D0EF5400118587C1EE82 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A1BD3EF5F8E40C42F8C2E6311902DF10 /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3563C3A43537B15CDCCD57E94B04FC /* PTProtocol.m */; }; - A1BD4FE549E86A98CF5D68C4A7BAFF7C /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9E425F50BF3258C9776A835CDCB813 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A1E885E2DC0389C74FCD3AAAAF9A4B9C /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECFDACF378928A46D14D8C7B8E960 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A21AD2EB9B962B22E8D1708E151776E0 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BB1E3DF50610EC49D1B7AD116276FA /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A234D2B5097467BC91F3E075B9FA83BC /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD764B26458B45F7F021B264C7F2C2 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A24500D5FE53A7ED3CCDE74E5556CA74 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 854C289F400B52009E3924695128D068 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A262CEDC295E54CED62DA84E496BAA75 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */; }; - A276618C33A90A41F5F4E49B020A07A0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA41BFCD0B340AB539A6F8C5FBFD4B9 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A28226CBCBDF641697B1FD7B4505931A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAF06F38BB873B35CB43A2FEFB5DCB3 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2A88E8A9A9098F9745A08795D6B7E28 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB548B4433944FFFBBF7365BE8B9B96 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2DB1C4ABB0A8A7F6A049F8781CF832D /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABBD4506E25EC301663EB7A6D9B9C523 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A2DD8ECDE3704E4F7B8416CB2DCCBFF2 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A2E0487980518CC8C1969E139111BEE4 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E251B1C668CFDCCC0AB74DD2FEC65E9 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3089C5447019B06B991153735C4F997 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B52D48D73B361AA550BAC8BE9B8A06D /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A313613D54A4FCC5BB22C615B4EB7079 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0502CE378AED26C2414EE33002AB6C /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A32EAA088C86897A6E638CB961A5D2E0 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B69C4B62F42A4AE2692142252BECE95D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3A216DB7FE0E7E9BF6F8C26AF7C5D29 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F6C60AA2DBC32EA43F636E556FD48E /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3A520612BEAC463371A09313FE349D5 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B00237205BEB06A6C15AACA633973CD8 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3BC3F04D98456332DA1C2B38AD7E967 /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7EE605467868ECED26991BA02659B /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A3C24A5829C7754AEBE5E5BF995D4F4F /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B048014F4C45A849913E53123B36A4A5 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3CF106EA24D5103444B3F5A50E809C1 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B46D51A2467FE8F574CC5FD9B404035 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3D663D05C43543CCD4A9E581EDE8B65 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 266D32C5E14597C2B0E8360F5A719CFB /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A3EE66389AE23C408A84E13950F65C82 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6127211870119AEDA10BE2DA1AC1AD85 /* RNGestureHandlerManager.m */; }; - A3F23C7970FF9699AE340AAA15CB9294 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D9CADB3ECA68501F71BBBB02D05799 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4012197FE8EE5642258985370D6AFE2 /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A414438CA600FB6CA98CFEA66A76C26A /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E8F11A5A8BC0EF91925B1B4CF92CD1 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A44646F42EB8CEAAB585D02CCDE949FC /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A46D87056C2E91BE7EFEF2C80E0782F4 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4A52F4D762FDDB87FF4713EB5B0EFDB /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B50410CBB8A8644D8D7CD1273038C3 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4CCCE956A7D65D24F333212D96E6072 /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D31B165339A73EF37CA2EFAC05E0F1A /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F849F5F0D9CD393F337409679534FC /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B29AC3958E2708393198AC0721EEBA9 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A4F9F5DC9B5B6E6AC6E4002318BCC0BE /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C12AFB926BFC61F88BF8C3ACA256D3D9 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A50383F6AE864E5D66BC3ED47712FAE8 /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 203FE9A528DD5DC77925AF4022E450A5 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A51131882122FBB081221358196DB5B8 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = E83A6EB123E0DBDA7D8B7369350D2E0B /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A51D69362414295ADE790DFFAFC3E8DD /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 41071FC06AF3B0D27F48BA33E0427478 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A55A9901E6F92E6B8979FCB5279E0687 /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A57DB376FAEA31679DC89D16B910E4A6 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 064156F5E6CBD9AFC6F123EB49C440AA /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A58DD114E2E9C5DC1E5E5DE61F219EA2 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD98E27CC077FF843EFB086D0646E69 /* React-RCTVibration-dummy.m */; }; - A5DB4FEE6EF23BE65C4F9E0E2904C567 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF1C3BC09C0874124B8148626392A09 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E39E6C53A8D3FFFCC298CD22443A15 /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5E8CB04205707E6B7FB1B71AE61653D /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D8653FCA4F54A7CDE3FD3AF4A57603B /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A5F4A4DFFE96A2EC6E96536CFFD2039C /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 532B91993AC65B6E8C8FACE888C9816B /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A5FB5F3A7616722F269CB215D37C1215 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13BDAB5EE738F5D4662DC86C2F01A113 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A623C02C41FD4F4ACF19BEF671D21BF5 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 3135DE472C21F1914952DFA2F10C81BB /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A630FB5EE45ACFD6DC52476942781C22 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C245E9F9241983E3C1D21D63609D232 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A64BFE699317549EA070BA1E0BC74004 /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A19FDEEEB5AD0772B288B13CDBD834D /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A661AFD04858C6176E3B95CC754DD29A /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A66FD3970C3A99D7C3C58AE1CD8E667D /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A67567829735BEA287ECC043387D444A /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F10AFC3AC62199A6D15C445B137929 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6905346C2F5B9246D9D2FF96D66019D /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A6A2355C181FA3BBFF3E6066382159B7 /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = B03F7065C09F384BE16050CB9E9AF532 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6A58275EDA4A06348DF57756194565B /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A33A5C65D23B5D31C09A9725FB5C92 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A6FA77EEC5BEB3A19A0275426D802119 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A75F67BAE109D953729054CA3FCE37CB /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F824926224F0C794A76E339EA4113B35 /* Flipper-PeerTalk-dummy.m */; }; - A7947BD2823ADABCE1F1CD370D7153E8 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F12F841578A44F79FC365F91B4ADE2 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A797757BCA62DCB2DA63763AC95E605B /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */; }; - A7E4DA4C8C260154E05AFAEC9B816909 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A807B803DB84AC8447810937110C1219 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D62A3B2ECCED4610679785B5E436B328 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A82237AEE4F5C22DBC8CFCA12808E448 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA650AF1434BDC6DD4FD5FE7F7354B7 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A83E3ECE53FDC790892B4B51D73CD1F6 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = D6346EF7D7F9A86B75F74F6CEC9A0273 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A851DC459BC3908BF5CF930C9A4E790B /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A85E709725DDA6DAC37A1A971CECC398 /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BED150EA79C7AF762BB00B50D1B1A2BC /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A87C69F51A401773A848DD5F7643A10A /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00773A06980E91B2D5AC0D5F2AEC75CC /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A89926EDD3993B4D45365F2EDF6B354C /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E32C63A31BC22CCBF5D936E10D084D /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8A2574792C5D132106D534F06A5B1FF /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68752A228A16A5A43FCA2EE3D59B97DE /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8B8350C850CAEFA5CE5C0AD018F07F0 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 537C2E6878CC1C7D1500B538674334AD /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8C4D40CD52B49D2FD6ED077E7D68269 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8A336982DB82A75E3537314CF257C0 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A8F74F09DCAC19048E4921CBBC1AD9DA /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68EFB860C63432E0FD42D908D0648589 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A8F8A0AA9DEDCBA00FED6266DB69F6F1 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - A91AA70A9D143D3802C4FDB0A3EB928B /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C4106DB42E94BAC2C1E25E8B8EF86E8F /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A92A37468C9FEEE337618B12B885554A /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE436D661B0A400A2B070D6F99C04565 /* React-jsinspector-dummy.m */; }; - A9303693905B5A6D505DB4ABFF6D650F /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2C40D89901976811E234C0C36725D7 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A94879A12ED8FCD03B396BECD6CDEFB5 /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5F1D10831009F5A4131300CB38B67C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A95A9A02293CC856CC107F691C083121 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9762E2224A4FDA56F20EC482E7486361 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A979E7AF06BBFCE1B95813B405637133 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 593716EB42320D497992F8C146A784EB /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9982BEA90E18EC7BD3FBAED2F877A58 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = C360FF66A9599CC9F671199AA33C44A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9B0FAB6867985FCF71B86E3F1ACC5E9 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD96024252EA663F83D9DED1502C297 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - A9CA550D184CBD87AFBD3B0F3D7E59B4 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF742581E6EC34B85FC2398074CE902 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9D802A0EEEE813D56CA859BC8476088 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0A11D582E3B8F6C78849CFE3DD53FB /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9DFE2E53ECF1DBE218A0C8AD7D246C4 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 931FEF8A0D1F752ACFF9FF38DFDCB080 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - A9E0C808A6089B6BF0C70525175212AF /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B64FEEDDA1C83E21D35B2DAFBCE5E3 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - A9FB7F0C8E37971A252A04D5252B7ABE /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F23E23580E78D6A9C27340CD5041E30 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA27AA414E748FD52982CE4A4C956A97 /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0027E6547E99DC457ACBC87E10B38094 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AA38DB9AD673774AE7CD8E5B92C6196F /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D81D4A2D73BD31FBAC25CE7778414C7 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - AA39D19B82B348CC4DCE53A812ED9791 /* RNSSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D855472E6601C53B4F3F3CCD94957662 /* RNSSearchBar.m */; }; - AA4C4C8CAE3051081024E1FE363F287E /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA54A0E35AA242213D0B72853BD786D0 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B150E0FA0B600CC90485F03AFFFA7077 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AA5752E1D91211B2BEE6C0436582DEA4 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1A8685BEA6B43CE991972AF8AB4AB04 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - AA6D076D8346F084461C7ED869E15F1C /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C0677586087E8355FB96754BE416DBBF /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAC14B4979373C3CB9D0DA298B7C348E /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E6E231A9EF550FC248E4FC2C9933E /* React-perflogger-dummy.m */; }; - AAC163958DD12057694488226D1726B9 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B3AF17CF9AA869F048927EE662945 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAF7F13A2820AD25423EACE79F7E2053 /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = CADE0170D737C3CCFB59C1506FFA5DF2 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AAFE32A4D40A772451E65158863ABCCC /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = C37C27769CBF43FA4312422AE2153629 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB04BFB9C653BD7071C3EC1A746D7514 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F63F2AED47C5751C71ACD38E5D715C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB1AB3E2B25DBE4DAA395DC9F595CDD6 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E38DFE0C8049269C7AB49E361E87A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB26317E3D5F7CD9F140AABB1BC755BD /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D667ADB89A6C56DD1A71A396AF86CB42 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB4F92E667240856C1EC9285294C6B96 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4589E54333ECE035B0051A4AF6D9C0E /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB5CA136B396B4713E607BC32C0C65A9 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB5F876998749B49E24760C505B0FE50 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB6EBA8324D348DD023BD9D771340A69 /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 580E0CF224D3BFE56D2AEDDF929091AB /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB81AC0CDA02DE2192E51509C98EE6B9 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = BC216F4FF79ECCD54D416EB88F4C72B1 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AB9FD5CE5C4F648466F963FE4A88D722 /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - ABA8D1277E73BA795E3181BC1198AEC4 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 870E9C56719FEED4D75AE48A56841448 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABB677A4ED2318E96B6A5C190E7BAD85 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CEE332BC0A3D3D35AF7868FAAB029C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ABC0A1E8C027E4D086E541949FC6D0CE /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F14509DF4B9E58995AA268FEE8C4DB31 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC07949E783BFDF67AC22940998E8226 /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E98072EEEE9DE6975ADACEB494678E5 /* RNCSafeAreaViewLocalData.m */; }; - AC0B9698593D0BDE210E161BF7494DB0 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC2A1E4797EDB586BE52B3421E3E2D27 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AC4C28D1895184ABCABA05AC1A5BA86C /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8D64B064470BFF1DE300201E28B5BC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACADF9CB946CACFD0BB455D948CC69ED /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACBDD77754E4FB3F858BA809A186F6E4 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC6FDBC8A79950C349B540F221EDB65 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACDD660210548EBCDF61066994227F72 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1C7C7242B6CF9AF441FB80B75CFD991 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ACEA0EF6B69E7C8E1DF9E80DE7EB3981 /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = D05621DBC7EED33BE891FA356F13D4D5 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ACF172B98AC938A00453BAB120F53118 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 152BDC33DEC64DB0BC5D6E46F086886A /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD0119D3FB32D5C2D12972CAA2E28A14 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA0858D0336CEF51207E1DCB42954BB /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD159BAB1701F55F7832EAB8CB5D37AD /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 9895BB7656BB4449DE52CDAED0707C82 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AD74398D0DD5ADA213399CCB52882A7A /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADB7068D634CE9F1D87AAF3CF6920942 /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9E92613F887FDA0F18C04F8B0BC3209 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ADCFDFC442DDDC76A34BCE97945AA6AA /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2256A11032055D585A4B54E0E609B8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADDCA44B422CC9AB18BA73DEB39BD23A /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D282B8DE4B6A175A495404798E078770 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ADF245935593BABA53971B385B6F5068 /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EE829354082462C292D4F8A0CB6087F /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - ADF2B6EC7A2F3145B22196B67ABDB27B /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D9E5C765053A7552922EA5B8486693 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE048A0F9D6E5A2A119404C651426779 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 433D1DCBA0693D7CF49D5F6508652810 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE05F0F0DE7BAF3DFF56E905EF58F04B /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0EAD8D3FD116EEF3E27CCBDAABE3A2 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AE19EBCE5173E66A55320029794C0859 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E36E0266AA5E6F3FFD882C9150F0F1C /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEB615237350C9D7263AA6AEBC204531 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D550D2A26097F44F9D821AE27FB48A57 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AEF0A308A64DAE18D45F5719BE16BDE3 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C291AC38789803129D2385D0138DAE4 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AEF52DFCD2EF0986E129B812189F020E /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB627285DA897E8D9E3402E236903D2 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF04547C908AECAB4504E532360CA652 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926F3BE35E594AC65D9048174CCB295 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF26CB81CC7EC2C23B03220BD68C049D /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FD3167ABF947A3FFF92F327212777A /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF4AEED4FA0DD4A82D4CB0E1B5413633 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1FC8AF1CE917589719B731AF773A52 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF78D9BC9F79C057FFE97E77F6DACA9E /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CA108FDD87A616B4785CABFA0BB824 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF7B183D88D316859EF866A5595CE38A /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9AAC8B5A8F47B9151EC637926EA9EC /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B660B236C0E34D8A98DFB7000E5CB8FF /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AF9CE3B68459B598290B4FC6E2C74B3A /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - AFDA7D380A973A43B0B93CBF6C4BEDA9 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A28E573601A7B88F3002C67D689E99F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - AFDBADF254D0848DEEEEDB953B123BC2 /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 38245D20F7149671B41D231A3F93C514 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B01757EC0BF348CBEDAD6B5357A7267E /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B02F3B1F4C310693AA09C0B03102D832 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 366FFCF70007C7D9091777211FD3CFFD /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B07D529D193B8F9074C61ACF4032B817 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0891FC929BE7CB8086AFD92B138BD9 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B096F86A5DA4C7F227C6D043FDF79B91 /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0B390798E49F4E1B3A544D4F42A5F95 /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 4792568423F3FBAFCD1429949BB88B6E /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B0B995828746975A2E1027A9F84D7E1F /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2EA9C1E6592BEE69744094F9DCD43628 /* RCTProfileTrampoline-i386.S */; }; - B0C601827E19667C2B4E7AB22DCF7744 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0DDA5C946999CB3076C42A98F6CBB70 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE2D188010F67558A6BFD895A35215A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0ED107F3AAF83FDD3035D0B3D864953 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 78797BDF3027757C4049CC30BCF9851D /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0F864B94D0D113E9DAAF3FD0D19228D /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B0FD07390C36010D23C177B4323D40E3 /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6109E4A777144EBC185180C773EA6AF /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - B0FD505FCEBFF829B10DF8EC6D42E65E /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = F680E04A6FECE0F1398F74EF9CF0E56E /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B11945B8ED26CEE59EC2722CDAA180DA /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D22871E1BC549DE27F74FB61872263 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B138CAC64FC3F5C88567D860B37E33DA /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53BFD1834EF514130098B3B8448409 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B195FFFA3E91422E30EF4DDB790A4A03 /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9157CD3C8C1F875F3DC66BB1ADC7D1E5 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1CD0DE357EA5FF295C65091A66C9EB8 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB6438819920426AC7869F0C84E38E4 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1DBA8B4B7E53267F6E3C8351BC34B88 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B1F61B1FD6108E4F6729E432FC815E96 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2544C98887A2F6C72369030C8FE41D7 /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFC89ACF531EFE450DE1E0D59812199 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B26D1B2A5ED76E0D5ABDDD7FE87CB2C3 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F125AB1241C19A59F8E483A8C25CF02B /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B29BB934107F2CF1DE07D35123B29523 /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 578B71C299EB923AFACC49A3D7637BCC /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B2A01A6B989C511DA084510E9F5D0C42 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 837D52E17368A0D3E07AE7DCED1DDD10 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2B3A577EBA9368D3D93E07440ECD41E /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D42044BE7FB95D5486ED5E944B7A63 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F4F71FB68BD5F8A9687823DFBF58C8 /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 734EE32D3120AE7046B2B9828AC797A7 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B2F58C75AA87F8BF274BE40B42759019 /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1DDAF4046F2A8BC86EEF2CDC91A567 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B31B5BA44176844E8E5907C83770273E /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27FC09672B0674E72175C6B7174499B5 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3403103788710BB268056D1976EB9A1 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610E2115AA17D56D047A4A2A6955F4D5 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B356D10464BD8E5B806A10AAAF298310 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7628D7EBED96386B1DAFEE0D444B3EDC /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B3D936D022D570DC3F2304B8E1BB05EC /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E29079056C9F66A6456AE59CA9C93776 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4126D1FE0D730A5B21A4E117A6A9B15 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEA1FDF1A66385D71D221AA2118D64A /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B4D1F8569D8FE7BB3B115A2D07982B20 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D12932317AC6A9DD14332B0A0975A9E /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B51CE15EC317C5ABB1E8672CBD4C4A74 /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 3610FB2ABC0F193F05860135DC9ADB20 /* log.c */; }; - B51E21F38B5415D4E3F1EFF0AE8006DE /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 931B739392BCB5D3049F9E99FA671F16 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5437A4FEBCD4F2CA175C9FC82A3AC68 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B9B4C0DF02BF287E7BE42C43F2F2C9 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B54C4647277304FCBB334A4FB414987E /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 2379C295EE8587A29238E3AA06DCB5FF /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B56715FE23095F47E97C517E99C5B455 /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44314FEEAF9AA1C9B3B735419DF45E38 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B5671A5A377DA149EF4419E97C3D37A9 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B30499396765EE1413597F9B3EC5595D /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B57BE675BCED7E410F9F7DB68A26B65B /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13467F6D4216ED976B525DE166A0C34B /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B5AEB999EDAAFE4883D0AB78B7A98BD2 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E64EF469BD0F836BCF6F932C81C89A0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B5E4B557D813A74DA0BC517112A025B0 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A0333CD6D7BAA40A84517F0F6170F7FF /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B644751AC48A22A73E7D192D27FB8F35 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E23344B415559E527318EF8EF39D416A /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B64A6FEBB21359C4DF8779A935EFD4ED /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 267BD3483E730FB114989CBCB3806686 /* React-cxxreact-dummy.m */; }; - B678090675046F72C58348F0731EA822 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B67D60CA9812317131122406FC91D8F1 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B6F044679F7D8CAE6B943B1F625E9A22 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E56C8A4ACBA442CC17D8C10EBC171 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B708A4D32009DFA3697BAD7476CF2EFB /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59CC2AE6A3295A82AE6ABE30291449A7 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B71B41681929875DFE6D3B197A32343A /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1BA91A24B27EF487E9886FE1A3E764 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B735B4D37E37C2D97DF77AD5705D7476 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1D55AECAF0E017F6B0514F5227FCB9 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B75F28FEB4C8E08B0ABF50EFC7D07891 /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 12608AEFCFB8FEE3EE339530C02ADA37 /* RNFlingHandler.m */; }; - B75FD6D8A348A975391C3064E9A10F5F /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7B11A2D33AC64BDE8B68638016521F1 /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF68B42A419EE32F9038DA618609C22 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C1851DFC05DB5F16A423ACED54AC32 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 39486DD676D4D3A172AE2D468899851A /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C4D196ADAA38E7428077D3C7D09A47 /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DB101DC32C831CCAA12AA5C8C498D /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B7C7A3BFA99C64811855B347B2AAAF23 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 296923F0C9DFA6A84BD551B1F0BD973D /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B7E98510CBBAC11998249E02E14FC208 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A419A85A6D7A4A449877B15F224B8ED /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B7F5B0C9E14332FEAC4F6F619301AC71 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8027B1910619660BC4B7832587A6BC9 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C116AE2D8566BA639936332A2E0448 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B813363ED9A07455FCD21D9D6B645FEC /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B81E606BC4DFE61DCE7AE301922999F5 /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B81ED04D0F0347CACEA93EECCC366B80 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 012CA7C21002BA5CBEC49F6DFA575177 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82A72186E8F7425EAFCE122A388D686 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3851C725563AA7610F3D0B33357E763 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B82ED51D49049008D1B48C3C0BB02484 /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B6B26EB976F325D1374042C647225F /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - B8350C29AC1A065487BCB49025BF71CA /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFD83AD7ADEA32030E69984B48B427 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B84786D723DA20A8DB3396699E302C89 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 425C236277DF2AF63DE2854462927C46 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B888FDBA8F4D9F6D309425F53FC5DCBE /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3884C95D9C30C0C24ADEAF0E30F652 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B893A1A5E35F431E601D05B9DCF5D935 /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5635B00B5942895B0D303A040B71EC8E /* RNGestureHandlerModule.m */; }; - B89905191945E31AF481A29F73F3ABD9 /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75162085A4EEEB496A3E30575855CD85 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - B8A6CB9C6B99FB55E59E13509CFAE41B /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3F47258485412BF9CB873AB130997E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; - B8BC1401EFBEA7E0483E3FBD64AEB051 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15593A84444D392694A6FE6B7091B86F /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - B96CE956A45309B426FD3AAE6A33A252 /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA4B5F801655157F312B28B945ABF57 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA1F859DA9C7D7E97692E817984C15A3 /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1962E47C6B14FED0C788E24606C3BD /* React-CoreModules-dummy.m */; }; - BA23359AD070E24162801A0A8497C018 /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 278B9B0C25A10237C65843909CF11662 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA5A33549CED04BF3AEE42FE9CE06947 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A048F7D17EB1989732AB5FEDB9313B3D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BA642D4FE5902EDD0421DD02347B5FB3 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 537B35EB5C0E956BF983F2CC2CD7BCE6 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BA69806535C5A49E1C74F2F0ED71D442 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BA7E55350F29CA990D2996AD387B28C3 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FF14741E96009E0CD2A95F214B6E31 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAA9D14DE48711826081713609FF48E0 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BAB031BE72E83A216318F58EE1BF7912 /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC4DE7AD60DB810E17645405FE52F9C /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BAC84EF21F592D2987249A6B488A8B1F /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 185A2520B26F04661D44199A47A748AD /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB05E729C8EA8C7A2E8CEB9CBB0218A9 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1C967CF035869B7882A6F64B1F077E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB25B43ADEAC9B94DF129A05C8814092 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 362492CDD52F6931D05A7127597AEC7D /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB2F3CF1AB978E9C95DE2C4D0798FED2 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29291A120D9A8511845B1567D198E2E7 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BB32892D8B4F0A5A106E7FE6DF633F33 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20CFD943D40C64279580A7216C8476EE /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BB692FD5C067AC3446D0700FEE97EF15 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB91E2542DE1571CFA494A70F372DD2 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BB6E0CBEC0581796249A77737F95A20F /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = B89215DD5844E0755F7C21A61748C0B9 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBC7A3182A551AC537AE17ADA423CF70 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B69AA263092C9464139BBCB885B827F /* React-RCTNetwork-dummy.m */; }; - BBCA45D0BC4E0B116345A1B6E4EDA811 /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A40CB4C10FE7A5575D83C9D8CBB18F4D /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BBD4F0B47B14C12B13400B8581C3B44C /* RNSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F025EC6F86394F982C91997A5E9370B /* RNSound.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBD6F3ECB81783761FEEB3F03C160FD2 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C72897DAFE4583A399FD04DEEB09BB33 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BBE53726DB62322D49893092DDF51829 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C58DE25FD026435C363CD30C46646A29 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BBE71D5752DFC12C066109C137759B0A /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC0CAC68FE6F1FA90FEEF192627281B3 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB810A8EEF3DF7477057C0CED709F21 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC14637988880627B49528938BBDA441 /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B20CF0D11C773AA2E5C28B5794B36D5 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BC252CF853472D76ED95ED5D2900D3E1 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ACB218ACC3341EB3A0DD86FCD21B61 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC270096DA92E527CEF325A0B64C9E05 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A7C52E4E3C2B65505B09671B10E86AD /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BC2E89F8D82C209DF700599CBB398BC2 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E29456D931052E0A869AC75931ECB6 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC359EC2511B9BBED4703CACC51343C4 /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB0D1B6895FE6921EA07896EE9FDEB4 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BC5FCDEC5746FB39B4932844D136C80E /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE9612757CEE23F2C1DE8372488D373 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BCE0CE7977B19EFD8CA95500F19FAF19 /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69B015BF74E80576EF70EBA9B2C70B6E /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - BCF62E214E1B181CA26DC488CC5A7F95 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 63662B18C5CCDF72589497E36C3EBE2C /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD1D8DC4CA2FE840F559D3976F14A49A /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BD35820E2EA926C279EA0A91A5BC87A1 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD483E2AF616B67AF069A30D2C2FA8F0 /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = BC41A305B7A8101FBF03ED6C915C0341 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD5DDA97AA9E4938F96BC384018A764B /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B66C849D3767BDBD079B891D7E077 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD62179A111F06A5A60CDA6CFE6E6F9A /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D85065292837A18DA01A3D36785793 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD6FCB167BA4478098DBDAA83CD5F08F /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D36EC0E44C227073407DA80EEFF390 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD80E85BE2A909B8C5CF9480E01925D5 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 080092664E56B92DDC7D50543653BADB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BD9537EA0F076F00B45A5D551D44C2E0 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = A53464A8375DDB0DD967D77D2FFA7157 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDB600CAEEC8FBC39CCE391E0986A660 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA5C54A728263D7705BBC09214A36F5 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDC2359364A377433B2EFABB04D5DD92 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = F3256C06AED48D37533E4A28CD7F7438 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BDD7B2D43DCB8ECDEACB51AE11C3F9FA /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EA87D04A239DA92DDD4C9728EC38BF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE2E20BC90921A8415110436686F9FD0 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB6091CF7D8335EF03CB438B1D36F1B /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE30DC2574E644D0AFCF1C1E6D18ED79 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BC5F9B7B66BB410B7CA253FCB6F739 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE81C0CF7AAC5F792882EBDA959931A1 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C820847C9D349357E627A05521229E /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BE9111930A53F9427B75DAEC76358FAA /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF6E0D6B4EC10E2FD63DE51022B0B847 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BE93CBA47D692A0A9EC3F53B2422B89C /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69903540D495EDA6E40DC0948E8D667B /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEB020AC013A1C4918D77D7B35646C1B /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC1052E6EC8BDA846B649FFD43F6826 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4401F67D95770C27DB8DD1BC777AF78B /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BEC24E98B193979B5F1385D618E029A0 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8489E1BAE110DF19DBD0B6775C068666 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF28A52A70E60F21F70B31414A75F35D /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB0C1831B6B087FB96479D0CD2F07F /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - BF2E3DA4F68299CDFD2C8EA9711AE82A /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A44908722D33976D21C1AE7AE7EA60 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF4F74A91340EAD6E62F9BD0F2669699 /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28394156411C5367E01C794B6E6BB633 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BF563F43AAC4DC64F78306C3C2AB2F74 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34550A366A4C09A7136A457B195F95FB /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BF86B7B808EE614E6B3B30B71434855F /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C3596AB73BE006B80DFBCC318EDDCA /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFA3A3CF41677E925ABC1D365A15D2E0 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 143C6C24FB1524AFC71AAA0DA1B73001 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFADF3C16EEE1DDE38E984BA91EE83B9 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 723071926A9D4A47FFF592235B9BE349 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC24F46BBA77C99C62DDD65C9AEEC11 /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFAA2A03FE4362A4D8A4348117B75D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFC9DA74CB7AB0B9872C91BE49EC668F /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 685EE70B7B1B844B8D05FF339D4E6900 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - BFC9F8C56DBCFB4C86507D55BD0F1B26 /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - BFD50BADDEE45BA32134B1774DFE6C4D /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F1EBD0A7C6D70C23AB3F7DC4BD8E11 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; - BFE3F0C8B3046D4031A0A6886EF89455 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C708017FD56D68A58BCB9AC2983F8B /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - BFEDE59416E380750A27049D2B666B3B /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2F0B31CD6C399B0DD2C3E831E7F8D2 /* RNCSafeAreaViewMode.m */; }; - BFFF31FE771A857821785DBA5BE312A3 /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA06FBC259F0562620B9DC617FE7EA7C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C002314D09C5DE2C117148D4C8D4BA98 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C3077EE039D9375542B86DDE593A3F /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C01A2690B9C18E0CEA2110F0FAF92A35 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6F95884C6F9C210C284F640C34995B /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C022E0A5D20C0C25666329D2492306B6 /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4052F78157C29D0CA5E3B1B98A2838EE /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C046B49A8F9B90C5BD68048467EDFD15 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C899451DB1EAB167F9E43801D7618A /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C0636660F948D4FE8F968C83905397A5 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64D2816C07CBFA4529C90913884446F /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C085F4A89DD1B12F07E9A72DD99F9358 /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AA1F42E65C4693DCE7811B73E8F3F2 /* Flipper-dummy.m */; }; - C0D0C1F61F924F640C1A2FCDE0A53399 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA99760E4362947E2B3E095B2A88E48 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C1297B38D60BFFACC156E607350CB862 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C95CEE209EB629CB5330BE16A264869 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C148357A1AC854339F050944E3092A8C /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 317D4599F6AA494C01E463C0D0BD96AA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1493A9F5A5BDC830711F0E1D457CCD2 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BDC440555051BFCE15C9664EB75BC4 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C175EB5D5B78B198E5CE031E555C236F /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C180EFFE3B6AB9DCACB76456B8B5E5B8 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B114A07D303818E2B73ABE8E6A25449 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C1940034B022603CA76115D48BD2A0C1 /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1B34B0D5A9EADED04061DD0965A2BD /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C0487C29BDDB7F2A8F7D0A037E027C /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C1C68A6F78D24D124920BE4AF0C57234 /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A957599416C19252DF07C0B4840E8C0F /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1EBE69300A58868FC5F851680613D84 /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E275EB8CC6871EF73E6E102545EE282 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C1F3E900AF7056CDEFC1BA6141C4DCF0 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C66EB927486F6D97090190F362F2CC /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C1F8FC69681FA78CEBF4DB788AD9DFA5 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1E2BFC655796D1E34E7A7B3C953C0B /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2074FE10E2CCD2C123C1D40D63FE563 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8363F7ED3861401C0D0837FC30400E3F /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C208C5908E10396B9156CA7DA12FAB2F /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58BF368C4AE5399145D7DB97A3C56C63 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C220FAB0305EAE0EEA3378DF1C181DEA /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C24CE25B384CCFE1E12A787B11B3562D /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306314B34EEF69CE10AD1AEABE37098 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C25BD3B0B908A21A015ED5632EF26214 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3ADA391B25A958151D130F7BB8487F /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C28AC02192B4F1F3E4BF679DEDF23A23 /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA47D18297F19EB0F26D2158E7CD9404 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C29977B4E772BBCA2A3AE226D6ABA857 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D92D27ECC10CDB6AB78C990C410F34CD /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C2C6E5185D44C3DB76505E682BF25D32 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C33BB10E60604D7CA6AEC4196EF3A0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C302A5740CA7486F419303FC7154699E /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B220D61041FB9D225D3D9CDD130F1B /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C346B099F2CA0366B622C1C587648F56 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 319DA741C7F7F2C1A3D7C5506377539A /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3880BB6F38E07F8AB875A883CAF5516 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF3E5A223D8C05B5ADEF49FCE30F38 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C38E894C12EA5DBC05E51CA52285D72B /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D454BA8D6BD942D3396E8D44A2C132A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3B022C28677EE302E5409178DCF5EB7 /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 7092343B1D33DE3360870D1ADA3A9327 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3EA97A6FB9E0AC3FA5E2BACADD22632 /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2199C45602110A3FFD4EDD58F9FF204B /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3EF4F00E989CCD406526F8BF5EC5AE8 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F35C5A76948F07130277EE978776B82 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C3FC3EA48700BA024FB5A12BD7E70A31 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = F29B196DD0F5809D7D5A3E6DD4DC648B /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C414A4FA4114DF4B8A8A91F1CE0B0A2D /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 559CAA1CE79018FC5131534287ACF964 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C41F8C480CEE336578C9DEA72196CB62 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BA8727445A85103B20A484F6A9824 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C42161CFE3967CA18D108D1E163FA016 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316572DBBBA4214700F0DE881A4FD92D /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C431EA0125623DB642BFF489EEA53E0F /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFE23C42E5133EB5D77EF80A648F79A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4333C79405311EF697FA5CD529FC07F /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E48A84A2E6838297AD1923F264118B7C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4342EB72B3BA79DAAEE6EA02E28BB6B /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E04E3098EA8C67B1DDCED07834DC958 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C45402A8D83582247F04B901B8B342CC /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = AE06C3F45E8ED1217E6364C29634439A /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C475E6305C24718FFCC27C40A5D35938 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C479B5D931058E8AD2F3E16A3AA2B610 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E954738A6FA445136FA1DEDD8AD25 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C485664B1A09B93DFDBAC02223A40ECA /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6B4F389D05DD08ED1C242489DEC44 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C48EC43B119F56B6BF0C87F11AF1377C /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 49144539559F122AEBF2DF84E309A3BE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4BEFDF7D00809AD5763A761B61F09AD /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 109365EEA69A33EBFBD9558F24C5717A /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - C4DB13E0F9C72A3A1FF8610455033590 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83195A9A1B4C10BE984DA6B1ECCBC3 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4DC33A2165C9191192FD32680514251 /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 88188AED3DD45D4427399BB1C8FA673A /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4E7E2D752C21BC5A9DBDB10D72DE621 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D561D5F88DCAF5ADD8784EF0C0A0C05E /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C4F8AF6A907BF7D17AD5DE79B4D00F22 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C51C560125160B4B307CBB2EB4206EF3 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = DE52D04A4D2C98286B4DF4AB71B28A8D /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C531F65084BFFD6B49CA4C87F6A68150 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CAE6956DC63754F4151FD341B8150B /* RCTInputAccessoryViewContent.m */; }; - C53BFD6C7D99C4FF30CFA7A44B4EECA4 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A61A01371B08BC5CED7076E54456758 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C562EA61556C9237027C739EEAA69863 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AE600242A61E4CB2BD1D4F39D964DB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C586D634D95E7C695024F7E565F686C5 /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C370D0C190B7E7C98442328B7E8493 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C5AA99D9FCEB76EBA167DD2D549889DE /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5B2AD6B88BB65FF4F12988705168564 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DA077B18475E1915605A0E41B031F042 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5E3542359CB53D6BC014C758004042E /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D04D488F7784CCEB19A10783A608A5F /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C5FACEBF521A948A3FDEA1BE9D982A7F /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C02CDFE19C2466A12C9C5C91925A8794 /* RCTBaseTextInputShadowView.m */; }; - C60D717DC6EAA83933A3A42A8BEEFE9F /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E399230B72C445A09CD1A3815384A3F2 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C61DC5C1E1F38173E1606E71FF08148F /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C11B0C69CD8E1FDD11D079C547CF28 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C688AB9A098BDFBD62CD5059EEC74692 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C69F364394395B60C58E9AE1E3CC6408 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111ABEC41FDA677AA0D6F159C78F4EC /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6A9ADE636C4E814E3F94A54022F8282 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E43DB2289E042B983177083FB17F5B /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6AF5680524EB724FDA42989F1F93919 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F38DBC4B447E091F21632D2E5F334783 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6AFB0F7AE206684F8DF2FB9D4811744 /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1049515095397F1274A1E3C42323C750 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6C4F56CBBE269F9EF1E3FAA5928F17C /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF44A98B5123B003C9303CC3C471407A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C6CAFCCB30CEC2CB6ACCFA23125FE869 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF4E4AF8B63079B5069A02F79F7F662 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6D9A96BB731A6DFAD7F38B346BF7A2A /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96996756229C1A176DA9E4552476B631 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - C6E5A137CABBBE985D0D68C3782616E3 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5950C073145205AA7E54D5ADDC2C61F1 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C6EA26C4931BEE17F484B2BD4F693DFA /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E119E1FAB4BB8F3B6B354D763140B39 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7004EF0A851C06E2B666280491ACE5A /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E49E479DB1908121E3B3CF0056D027AB /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C719B7AA6CF090112C1FB2E461FD7866 /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = EB93DECA3DC21173DE88BDB84A1F9770 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C71D4FA5C43BA1F32A69047349850B11 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 234BE6C9BC68453723AA910E80F6170F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C7360B45C8676B3F6BACC99A396E11A8 /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D17A71485933786564ABCF5B5617BFD /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C73FDD2E9084CB6AE038461DAB58C58A /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A307BA56EF7AA0A855180DF8534F8B1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C749A35F2BBDA26B9897C4480878B448 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C754BCB092B8DEE80DBFF981C46F2BE4 /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D70999AD8391E6C128A8DAC3293E870 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7657C0ACEBF275180FC66F5D819862F /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF678C9A3F698F587FD8179A4695CEE /* react-native-safe-area-context-dummy.m */; }; - C78142750EF367A0490A165A449E4BEA /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3550E571FD7C0BF9100D32798938CBF /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7B0062AB82A0D491220BE93AF1EBA2B /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C7BC1360CB66C844A2112F0634843603 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8667568CAD7BE538D7B8B147C6F9FB2F /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C81B1AA067894C877689CFDEFAB5C708 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = DC918B518B7570D8E7B9C92D305AFA58 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C82E4376C246299836287FC01E1D86B1 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24751F0FE608A5CFB3E03BBAF55091 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C84AA4982E532A5A266884BEE0ADD12F /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A890B3AE8FC8EC0511CCDA49A60D60DF /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C851DD317B0E3FE579736029539441A6 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C87BE73E67C77B3DCB49A0FBF265D2FC /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F70A8690C0867CC4864259708F225ECF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - C8E7D8C106ECD54D5365CA1DBE12244A /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA726645F5848C06A1F665F7A871429 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C918B262B36820B5E0F08F9C3B048892 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C914C001A70C6D0213EDB03AA7F5DB1 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C932549DE381793E7BD2B6E8510A8B71 /* Downloader.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE279B79CE8743DE6ED13BD8CDD6B9 /* Downloader.m */; }; - C94764637D33144DC9DE537393C6E275 /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 296BF08FBE4801C81BF144AD487F17FB /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - C9524BE84A9F7B7FA7B536E850C53C62 /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 47436719A8CD489012C991505BA62ED8 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C96863EBCC08A18D69DCB3A85A55009F /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE14AF99F22DEE4D3FBF15D727A514A8 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9A2C48A89B8B82C1BF90ABB2CC953AF /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1385A0DE90C129DF72DFDEFA9B8D221F /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9D225B63D1FCEEF678056CEDE4BF902 /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B8556B9B4496FBAD8CA587401863ED8E /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - C9DD069A637D04AC950FEFB4C4118A4B /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 310D44D0F1AE32494B0EE36FA649FA0D /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA0C3376DFEF1FD718CAB7569EFE78B7 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C770179BCD0084D20DB918109851FDD /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA19CF52D9F228F1805941AD85C18E29 /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E17ECB880F4682EC5BAB7113B8A5F4D7 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA3A904F6BE874D5A6D485EB1C5A7CF7 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EFBF388FDBC119680E631058BFA6AB /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CA55FD2F5BF2D01EDF0D2E4D1370BF7C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FEF93D1B768E833A9DAF5D1997DEB /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CA89F736DA7129D86D74D64E42066C9D /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = A603A8B59A3C57C13E844A2B440AEC4D /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAB32B7B3FE526634946F2C852A815FE /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E56F5263404D525A91C19D4510DE81 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CAC9E218C0D2339B5D599CE6A32A63C7 /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BDB0F7EC1AE9FF02B43376EF4DA6D03 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CAE37131CC11D0AA47D3C392295C6044 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2896391C15EBCE508BCB44924E3A7F3 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CAED20D04326D0BADBF27103D20378DB /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBA4392767C5E04855D4A1DC0684D89 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB085C9B040E85BB331B0507E33CDD7B /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D22CAD7B41DEEF96AF65F8F9E8D93A3B /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB13E1EAE34F8D5EAEC1DC9E06758B47 /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD04770CA426767A5C2AC77537D603 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB1BCB777DA2B78157EC2130787FE903 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AAC31DC35E1C7B22C6CE8505263FF5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB3C52EEFAD808FADF43BB4174BD6C0B /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1214102348D72EA0EB70BCDE98F689 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB41ED0FB1BB2FFDA460975D32670EF5 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9F95C360C58814E7E7B7267BE77C99 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB6971C0FE4053C0C1B92F7526513730 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B059EFC75C33B83B9DC39E65E19F96D3 /* Flipper-Boost-iOSX-dummy.m */; }; - CB77833E4351A82C6F369C39BB956D45 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = A36F046324435EC8477E25716A3E27F9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB82E879680F52CC99D1C18B0B0CB45A /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 599D94CDDE9A56C3BE2D8ECA5F9B1EAA /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CB8705E7EC94124ED032B99EB5134CFA /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1726BD3CA6FD24E39EFC7E0963E31BC8 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CB9B4274208E795C6E7B62AD73D85CB3 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9423CB753E1BE92B8AF67511094526E0 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CBC40219684714EEE15FAD5311C3DFD1 /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1DDA77C31999D60488A6C795EAF647 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC15412F89C0649A6BC01E14435D5791 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BE50BBC1E923242A75AB0E64A0CC0B /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC262EB8D4FDBED8A9BE24BB2A20C4D7 /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DCBBBBD3C47E4874DC4FCFB2757430 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC381F8DE9C87D1393106D98CB048D3C /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC4AECA0C7811CB3B8A94AB34F71DD2A /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC1C8989F4BA64EA065744609F0F16E /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CC5F05823BA46FC86965B83A49A4D3EB /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5962163A6161BE06ACCC86B76485A9BC /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CC952AA53C7FFD24D92F4F3D946B555F /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2E62E10527A54702D7B76BC75970B6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CCC0EBCD30FFF0955401D6BA69B84ED3 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3A2DAC3265254504373CB84CF33439F /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CCC4EE2C333228EF4E73AC49AD10BE6C /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CCC84C35A4690B73C0ECD674B60F4B11 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACA88212EE11138DD6E0B8A90F45B16 /* RNCSafeAreaViewEdges.m */; }; - CD2E5A81740D2AA943C6E2BCB9282B74 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD8D7E359FD0E1C621AC25A8D8FAB6DF /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CD967FAF7C505FC0920A7652E87F0067 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A0F653D0FE36182CC0C01DC0BCCC92 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDB1E7DF0501C0FBE176474AB1BF7131 /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CDB8E44F871312F36DC46EEDFC04BEB3 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7AFD0430909142721151DD04A3B50D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC17B0FC1B75B822CE0FA0FA4B24DC0 /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA233B6F9EC362635DEE7B799415BFF /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC7726B199F0D00245845CD846D2416 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA5F918CC8696290DFA60C44EC64A32 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDC9B08B58FDF3C1DEC08A68F6ABD8E4 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDCB203CC27632ED547D3686E9F3F8F5 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 918252241A8D5BDE2E8702BB6C35F59F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDDE963A0AEA6B15A02F235E78F66C6F /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA0A500136C6E7CC77AD66AE4E62E39 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CDEB13DCC0D0C4A90B74BBCBBCFC9A48 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E89227B8E627702F61706B4E81CB3D90 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CDF55015A91C96283DFD8C86F5EE196B /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DFA7D8249616A3DF3391AAEB63EB931 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CE1183C18BD52D3B794F5979C36724BB /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5A538A1B54AD8301E1293C4723FE75 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE1EF58CE20585F85BDC2E2FDA7A048A /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 65765772B0AD5D372F437C4965338AD0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CE2CAC9465C5C8727A86FCD6AE7D1103 /* RNFS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79416A66096F7BABC8D90E6E496E9DED /* RNFS-dummy.m */; }; - CE490863EDF31EDEC2AFACA6C5E9D2FE /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52C3A26DE64EC549AB71150AA3F8A6AE /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - CE838CA47BB68152DB5CA047ED02EB01 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - CE8BAFC856C96E5782EC097AA37F41EC /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1368120C8B255F21300142F40CC51AF0 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CEBC8D06F49BCC8706DC140B838E11C6 /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = E429C0E613AAADB75786D45FB752283C /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEC999770B65385FD63EE7B878190052 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEC9EF1EE3EBCE6D7493884A30325F69 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 486FBE52207E52465649F3D35DBB2832 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CEF7D2998EA5ACCAC01A1D3C41ED6E36 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 248DFAA960C19A98CCB4DD50DBC1CC55 /* strlcpy.c */; }; - CF0AC9539D87DB59AF6624E3AD1E354F /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060565455E28B0DFA081DF7405A1EAD /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF313CF8C7884C32DBCBEE14713C208B /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440CA227BE2EE5FAF05B5FCF00DE3ABB /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CF35866E7B538479D45AC3D310DC5A50 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EF64CF0B9FE07CB54F9AD87B79ACE3 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF37BD40C5F6C8743E76420359090387 /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = D1913E3E3D1574583C6B8B72364308B8 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CF46A2F93CDFE9DB77D7EF26ACC643C2 /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06E52299827A5A71C4951132FE05B53C /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - CF48F9F1A20F6DC9A9211814D2F56492 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EB426A3692C95F2D45E8FED7305AC16 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - CF6B978E96D4AF9BBD6347AC946A7858 /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ABA7C1626E0F7404A708583764F96B /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - CFF220115BB7DE30640B98E9EEDA32CB /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC480AF16376C4D9B3BF10E9CF93205 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D013126C641859A7F594B83428CE1BFA /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A9EEA1407AA91F84A0196ADA3713065 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D02964810A49FBBCA18B973DD798E899 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D044ECA1A51FE00804B01F2E3C825F56 /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 790A80641739EDEF689A7AD7A2E5C178 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D08A1DAF896B8FFC43DAFCCBF7CD33AF /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3137292B2661860AA20CAD8A7F07484 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D0E14655D6955BB987AA8B7C3C6420E2 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D0F77716836A184FFD80F63467A9955D /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C741F27ADA047E119E20E9E979960C47 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D116FBBB2A4E5BE34566110459CF4A80 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D06424EA4FA8610E269D2523EEBFB0B /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D14BEABF40D4FF11DE76214900192340 /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1526C4C68ECB65AE924EF5621AAC933 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B7D6C3E73EFED1B452A3C13721AC70 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D183A7CB129E2D7C22E792EEA1271AD7 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = D6091C69F6B592A187DFE080DE1AED95 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1ABEBCF8F77A9767A96AD5508F97E70 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1380B82F2F936BC5A50B3C12CA8DE645 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D1BC053FC974CB737AC2141A6D03FFCD /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D2B974C0B7DB90A84A530649220E4 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D20801B5BBF78C5BD7F961D46FE740A3 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7686C167B67680D61F2DD7DC38A341C /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D218E8F03A15852546D2847572F0D88D /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 464FDF3170347A6380ED99A3B54B72FD /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D29107A7B7CFD33D3A65210AEDDB7C65 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E588C5EB2AC14366ED603A297AE184 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D29760FAD4D69F06FF9A81876EFC1A2D /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D29D0ACC7964D0271A28DD2EB143EDD4 /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 42450E1DFB56BA7C5BD1AD4B8D305337 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2A1AD2BA573F97E771BB8EF1A477AC7 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC98B2070A4EC5870208276DF296B74 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2B806A28B565C7CEED3C59123A89A4C /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3635E0D8ECE1185D8C84F75B35389008 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D2BB3AC381695EBC18F73138D388A4C7 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C06132DC7917E0477ABA963C31C268 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D32A5A3C0CF6998F9F4617E79A6B0ACB /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 915D2A5626BBCDB6D1C22C7CDB9F713A /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3319770A285D7FEFABE7D4CE214E33A /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 164C6A460C12BA1366E459CC769335E7 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D33E0F5934010E8D5539C4B04B632C11 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B401C6FCEAA81E383D30EE52A396C4B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D34C4808E2874268E4B30885350C6B13 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F7CAFBF7D62857776F202DB7294DE0 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D34EA75EC1263B768231332713358581 /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CA81C60DA2C1C06D5D25236AB6722 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D35058C2F3498813F0B7610E81C4DD49 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B95DC7772680B9AE470B6562921004C3 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3764CF35FCF53342A4AC7FB98C9BD66 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C132A8BDE3F1C717560F9A1F10CB7F57 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D3BEB7A0721D9A28A0274D0E964EC0F0 /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CFB69010842FA58A336E72735D41D8 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D3E914FDF07FDD0BC99544E6E11DAF39 /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623FB11930AF3E37B82EFA5233304F19 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D3F46875FAAF7E4F0240176B40049E5A /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B552D1EFEF541575E228D151202E644 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D44C6A7BA4B0B2A06951207E1456B617 /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEB060FC0C7EED8499CE73855CFA8F2 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4532BA2F62243EFC7149A27C15B8234 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8555C0EA56871609F305237F8C2DE546 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4622DC60DA45F7165A66D573744005E /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D841FB6ED6ACE38B3EEC6989971C39 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46601E79967E7DFB89049D2336CB30E /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B424E2C3EABD731B143CBC8939FEF3 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46726277B3868065D21F73E2F246457 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69354C203ABC4F487BD2A5F9B79A81 /* RCTRawTextShadowView.m */; }; - D46CF84BE00F2CBDA459A24548BCF83E /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0EE59EE353D2BBE364A6C22BCB508 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D46F2C3C63ED5A396CF8582008303ACF /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D4751835B72FA1290B8777AEC7120CF3 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FF13F55CC4AAC886AC1655B67B2CF7 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4BDC8F8037CDADBF887FF5A6AB8F6F3 /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB49437EE6662AE3F79D5CCD51792BA3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D4DA91A7E1325BFF8FF4698C686DFD38 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D80238F4A32910A3C3FB4AA8C8BE4 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D50E62A153C44C6CC9ABF79CBFD48102 /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC27BBE71CF896A473E9442705F5C9 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D511760F682C5164378EDB224C6F7EE6 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB09C9C94A7F82495AC97A3F1227268 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D524657E775A9CA4A65E759E975BA472 /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89018834D534769B75F8DC590BE1B936 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D52F4A2DC2334FED9963B2B2302E92B0 /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7935B83BC24DF19D7956C52B5F0FD9AD /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D566A2486E13F6E1DABB65A14B33BDB1 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E519D49602CAEAC5F3BDA5098AB1A1F /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5697870E7280CC18EAEEB7A08E6E42D /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CB2935256EA07996D8EA7D1D69CF1D /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D595FC6C187DC1528C902F295765A2CE /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34F263893795DF638CDFB4BBBA1B64E1 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D598434AA7BFD5E7568290B146470B8A /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51DCC33865E389A68F9FB1AD9E429 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D5DA7FDD90A69D15733EFBC65D7F9B46 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5267CE5B1FB92B94F1B2E029F7927D89 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D5E14D9F04797FDF01165C325615760D /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 95195942758D876BA106A6603AB4CD9E /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D62CEFC5FFE2D0D1E6A526806353A616 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3560247C6E46DDA3B30411435C7E1A1F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D636E7FAD40CE34860CA94BB65C53C53 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = D4284B649987FFCDFC846B07E9E1E383 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D64BF2417AD4E222D18BB0D518BA77DD /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE13C53C40A4DE3388B5D63D41BD451F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - D6785E69AABB9B83108A4D5224D3A615 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CF0A0117B039E5FB5EDC434A029166B /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D68D4B329A8BF0BD84193D0CB1FD903E /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A284B21F5FAED59FA8A35F863AB4FCA7 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6957BA8AE8792E8CD6C7C93799BA1E5 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D50449A0C52E56FFDA06D422DA0688 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D6ADDE5F2DB795A99676F0B4B8DD5A93 /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68F9095BC49613AB556508B230A337A2 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D6CAAF9E82CF0B0703CE316A18C69ECB /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; - D6EEB0CCAC842C5084765AC47C7CA28A /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8F34C28A3467C2F89B08FD4B16050E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D70351ADED509E67F300B15FEA58821D /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B46EE3E25940AC908C66811A34A1667 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7088287E774FDF0755908900AC8E32D /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */; }; - D7229F4E2BE77C49FFD4C9C76A80B83F /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4EEE64DB388662057CFDFAFB42528E /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D72BE1C5CE6B01D9202828EF43A2B535 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A773416BDA54B843A6B250EE5C0DEC17 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D752E942FFC4EA7BD44FD34BC186775B /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D75D68262594AD560AE7EF9BFC2191A0 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CCA1E139B68E3B9FC446CF5886F40D /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7B61BF57679D9A602EE9D48DA3F26C7 /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4FBE679DA69BB2666679AE9F5BF878 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D7C4BA4CB7AE262E7D419E056EB118C9 /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D5ED2F40665DDC7957BC6B4DDB1673 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - D7D9782CC4F90E9314183D62871D4C8F /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 134F0D04FF8A8D1D7A28CDC260AE7781 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D86F0AAD9B58E6BCBBA3ECDF404524B6 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D884B9DCB79D69CEB9A90838E6274CFF /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6883BC5EB041B40DF7AB2C1130903FF3 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - D89BA75883211F1113630B0827A51F02 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8A518B86ECA3DCDF27243BE02AB3497 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEFB975DF39466F41BE2F5855D1278B /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8AD269AB7F763F52B434676DFA317FC /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7CDC56D6028643CF8EF4DF99A8D5D0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8B9E62F1A31E9899B133D0A8FAF57D8 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B28C5C264B060B9FF25F08309558996 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8EE94CC6C7A9227088576E7E1550E69 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1268A95F1A58F3EA1AC85789DB2A6077 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8F7436444CB84598A9A0D4053B4A498 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C580B97F36D58B9BC212C9F46DF6F87F /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8FAD9EAB5286B939AE385C497B53851 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF474746FD313D8E8496FDE44A98010D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D8FEFAB103598F83D4288510BC34F532 /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EA15F9CF8862F3570AF4914DC754C5 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D910B0D1A126C6C4DE6BCB2490E9765A /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9282A245796E9DE62F3894311023886 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1E80AE43DC84B849F0AFA26E4349BB /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D941BFD7B83D8424B905EA09095BC0B7 /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C8121F55F0F6EB83C17DF1C99D92C7 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D94D8087907C94BCA56BF4E4E3738049 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E349D8CC5F54AF6A723AEF764E8604A /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9506B18DBF1172F2843B56EF60880D2 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D9B1FA2CC490AF956E376E82D534FE /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D955A36E581E5BB439E1FE0DAE938601 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D601244E007A1B405CD39E44E38CC84 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - D977614A0D34C13E18A6DC5F4C070114 /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F075A4F39EBA3044CBC9451FEE99B5AE /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - D9DF68295481CDCE73B7CFDDFD064745 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A9D95B6B33893138BD930F10E50C80 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DA367F71AA2F445D3462AA6BB9E7EAB4 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E1507635FB3A6B7DE79AC2B0BDC498E8 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA3BBB40AD0EEE5B225A05D1A002E0F7 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = FACEB6076300CA9679DF7FE305B64C7B /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA5340A5386F8EDD4DA7887A6D3EC2A7 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 62330B7E1CA33260E262D72292FB2564 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA66587A75268FA7B7AAE3EC9AD3434B /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FD325C463FF44B34CCDDF2574BD0F5 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DA855B4799B4010FA0561564907CDE42 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3FD87E8D3685FEC4D82B0C4645705FB /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DA9BE5F1CC4843F8DC4B4C82BA7D50CB /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C782B0971E28444D5AE09C8580D79435 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAA470BEB07DC2899E85CF5EA7906F02 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB696DAA46DEFAD66FA6780FBAD04BCC /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DAA47B5A58863AFF7CA77F48EED875AF /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717FB48C565A515F9CE9BF60592582C7 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DAB797CF397C4568657B54A3D8367058 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DABB931125F1425121B3CC1124BEB01F /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E89E7D6CD4AB18A5AC9E2C777D9F55C4 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAE0681B9D03263B34393EC6CC850491 /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1D420D455EFA5EAF6FEF74475F5D54 /* React-RCTLinking-dummy.m */; }; - DAEEA93B997ED66D763ACB0567550B04 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F614579E3985C51C8ED2E4037912FB /* RNSScreenStackHeaderConfig.m */; }; - DAEF666C1D4B5A7B7B951BDFF4D04037 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866778BE666FEEEA577F6111F3EAADC /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DAF6454E60A1B3F9286E0B1C6028ED16 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E49BBEDD3C3E5926A39C940729F502 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DAF8F8BDA05E2DAA00A72086DC560FC6 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE846EF1DD9DD88BB8C4E52C3F03FB1 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DB199E7D3E4E0D877B287A176EEF3CE1 /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE05D158994FBEBCAD230240A845761 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB2268E2809AFB87FDA3A1E8F5DE68AA /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7765DE553AA96A930B2B993A3A9BE9CE /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB28A0845B6F272D15C6799AB3109CDC /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AF5C76547E28D942A8322024EAF93 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB499775365AAEBCBD66BC5EDF02D820 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DB61F8E288B0924C4A0DB02DAFD84911 /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB45DD1B0AC7F6AE5A60AA62873F714 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DB6A23357BE7BC6509DCDEF5B4378506 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B635324625BE3E988BBF3BB7300156D2 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBB7C6A12539B4690B9A6406FDAB4538 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 878FD6B98E602FF283F8FDC85CA5D4B2 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD0195D363BA1BB3CC3462C315D0BBE /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 602D5CC6712247731B817BE5150A6B1B /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBD462C81027F7857F8490F752BE5EAF /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F94D80D073F02A43420AD4D66D1BD5 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBD8896568155EEAA17C95361582FF4D /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBE804DE9CEF67E1623754AE04D01EC5 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBD5FE66FA339472B4BAEF7CB6650C7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DBF50B2B9BB054F4372C419992BA98F3 /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 526C4BB2CE3D8B5940A129B9B15AF8BD /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DBF84EBBDF43C741A5B3A2DA9A90623E /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A44E020E5B15A1D893C8EBA09DC0072F /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC0C9797707FEBB9BC641970639B6A41 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 62D9B85BBC1CC4E991ABA857D3146DC5 /* evmap.c */; }; - DC44C2AA1EFE56F5A38E4AC9FF4C847F /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6DF753E72643E4ED36FD225C9249 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC54FFB09F78BCC9E04864BC85AD537B /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A44987F80CD7936D4065EFBA3F6ABA33 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC68F41CD0D711CC3F800EC091188F00 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1959C6DDB752A16DC60D3EA7FB3697 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - DC7B6C02A926023240203039C10E163B /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E5733090ABE9C4A129DF7D7DF3D29 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC96F7A06538AE5390B241E9E3AAA154 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 566903189F64A2CEFCC8FA57C309F6E7 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DC9B2C1E9AA3F50556C4C6B7F73EC5CD /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB21C8AB637D887FF795AE54809B835 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCB885BED86AF85EB774342F66F855C2 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 557A4EF6293C9D3B7AC2609835885816 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DCD9A8F1E6311BDFA5717EACA78B8147 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FA651216E5171A38230135A63794EF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DCE82FA8BF1A0D93929E89D8096A59CC /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 181E06A36FE52CA8FFD348745452B944 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD1917E1C0396C8ED69634A0901ECBA9 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 581CE49EC111C9E47933FB3DBAFA7529 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DD319CD23AA59CDE596846ABBFC440A1 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C881044F22CAA58C6A71C46E7BB21C /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DD4156B5F01833C7E21AC57647F0F19F /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 72194A1754F2C3D06F9B102512379422 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD4A45FFB85240D7284DE3DFE1485EC8 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB758B38819BEB96C41AB3B41C42880 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DD4A5AF65B4E46A771F647A629E9924A /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFFCAB6A668CC8083D9FDDFB21F12A16 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DD4B930529658C5730C0D0910E77ACA1 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0694198CD56C1A83B138E10F0611B123 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDAF4341498AD3CFA5D7DE181DF0C331 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDC1D28A222F7F8B5FCE170E9CCF2E17 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F3A1BD5D2F0BDA29EA68352F082532 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DDF0D3D1AF06DDA3F5FF94E7ECFFB17B /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3301DBE01170B251F85420B4E17C7191 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DDF916D1BDFFE10C2C33D0D59AD85F2E /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07628ECD580436372FABAF0A61AC31D2 /* RNSScreenContainer.m */; }; - DE0DA0A9F7C46915C4ABBB9B80E76602 /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3917C30E99F5061D5E4F4B02F1A5E4CF /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DE2BABEC295E3EB3F98060732BDFC9EC /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737F88CD628108AA8E175C2DC58A144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DE50D1EDA37E587E5426FB72A1DE490D /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 69840657BB147FACE1051D29CFA3B3EE /* kqueue.c */; }; - DE7979492A876EA082D7A9D9D3C6BC6C /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 27716042DDC5A5116584BB0069AE8059 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEEB202BE612449A5A956092C966D4CC /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BA67564C344789FF80CE63A95B3956 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DEFD875E766E9FF5B184656E70AAD265 /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6F8FE3970F1BF9A7D294340E830EE2 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF5FE8F93E0DCC7C384109A420442B1C /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF64E2408CDE86B330C05471907EB9AB /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 370BE1295F24AF8F54BF7EBDD0ED9142 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - DF7834967A9A965F19A5565417E8DDA1 /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 5840ADB5D06973D084C44748B0306C35 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF78A04CFE030E6B4502928DB3EDC67E /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B6867710FFD0F3595932D7CED43986 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DF7EFB6074417F6E5632ED6A8D9D239A /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 859B60DE21CF193FCB61B5F3A5D93AB3 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - DF981DC26A0157A177E871DFDAB15EA8 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DF9D21EE61A565E67A915AAABBC662EF /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD2ADDD2136F77D56D6DCA5A9EEC11B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - DFB9F07D9C8C13C184D0C9A35BEE064A /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE00273E79C3EECB668CF0195532E8E /* bufferevent_pair.c */; }; - DFCBD9F6A33609D9152AC7F59B8D24B1 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C62C69D900C6375D9A3FD2B9C4F5C5 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E00E44C6F3D0739CF4E77CFC4AE9D068 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D9EDA71B96B53D6F178BF8A94F59DD7 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E013986002DC6F905113FAB5A5908802 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E07DF9D413D175D48D735234D06725C7 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF5CE0870A093115842635070C31DB /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E08BD66FA3B80170874D701CCA57C407 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65C6BC961861AAAE14F506F525154305 /* format.cc */; }; - E0979662095B85486BEE661D93F7CDA2 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 205848CE013CF0F6A82C7111C75866A9 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E122057F63E8AE951580ED777D08CA57 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E128A7C38AD47F3FD0BC6AF3EBFCA1FE /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B606415AF1D4B4A249668D9D9AA41B /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E13DB6951DBD7BC2C669720630316E91 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECC6128C9E56D0D7F0280C011D9008 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E14C2F13D3826C128117FC3F21B7CEC0 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1691C6E1DA7D81D9A7CD1BFA19B5DEBB /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E17C8D3EE083FF16CD250E0C70E2C77C /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40BAF975A071BE1349CD3F33BFBFB014 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E1A334C17E2687554286F325B11167BF /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9A93A19D32D1081C325F076109E172 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1BCC4B1531BC01270DC579AD23ABCC4 /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = C99394619052268DE463CF56303433A6 /* UIView+Yoga.m */; }; - E1C40ED595EB4928EB8989F2CA5837FA /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E7D09E85167861A2431708E6A76E86 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1FC2C3F4AFFAF1558A0BEDD18F4311C /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 329C4B9228CDA855266F5E4284433F3A /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E1FD7EEF07B8079C1BA938E1C7522FD6 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DBBB0D26ACFAC130E174B47593908B /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2053AEC1816860B57490F440F1084AB /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E05E187B2D2A5B1952E8CA8E15F2AE /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E22EE25BA0AFCDDBBABF8D09138A8D40 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E275864857518C091CD5FF4CEEE87FB0 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6C067520D9CF32C7812E8B8666877A /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2903179F7DB30AB034C6A23968421E8 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7913A299A9B2B5AA96D6BFD4C3866B8D /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E29865A621F5BEAF28F33AA3E8869426 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 366207BA9EF22A7C9550F411FCFC6C74 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E299C8A33FB36A4793CA01059CB85042 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAAEE9ED5AD7AE0DE5EB55A37C8E937 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A1BFBFECBD7D362E1272A0B9B4911E /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2A4A08DE523026A701EEAB1DFACF878 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2BE85FE2A4876ED18EA405B3597A9A2 /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D25205909C5820B07E9A10864AECC8 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E2C1FE6D4F33AA5FA41A4229DC4493AA /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05549E686B609D3EC452BC8237A47B /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2C419CFAE58E6C484CF58F41B340E31 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA59A362DF27A60F43504E35FBF3897 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2D48EAFB03E2EB8EE7361FF74409125 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FC5A3CB282D2C1733ADC0756D5945C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E2E16C5A891AA50B977D10AD3A13CE5A /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D88B1D0AA40CF57DBD5D482E6B7F0BD4 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E39567F6A313DE5DB539C6F8C02246C7 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EE09B06F68846C9FC9E57B3187C415 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E3BD9BFB51EAE6F13656DCD39D5089DF /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F04E0FD3E318415DEF0B0CE5778F9FE3 /* RCTBaseTextInputView.m */; }; - E3CD4679E6ED6546B381478FE590CE47 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED6EC59D9EB9058DE09709B2C1E19A9 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E437C802668254C0E08CAE9CE4FE53C4 /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E44D7A2C054C6E5492C515F877541D23 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF15077D3F32C094BB6A2C4EA6895A3 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E46AB4A1F4011A352ABAC15FBEFFE12C /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D459996C8D199B278DCEB621FF3FBCC5 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E46FC715D989C7B5CEF7CA376F1F82D2 /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DC8BCE0B16A7C130B40A6E48B243D3 /* RCTBaseTextInputViewManager.m */; }; - E47C31F18DAB5B2E7B17EBA385995B80 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 911A847FEFE78ABC2511672C2F7AF421 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E480AF56AB203C04F4FA058BE36E82B4 /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49005BB90BA88BA9B8D97B90B3D9F1A2 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E48ABC9126C85531DE35635C9F63DB0D /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DF8035E3DE6854F5CE8530FAB268888 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E49188CCEC47F2B014FEF6031EED26C5 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F503335521BD9E50642757737E5A00 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4A5D4B6B6E51731DC54DCEF2061BC80 /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = E61E05ED71A6C4F9CA747FB587173F72 /* PTUSBHub.m */; }; - E4BD745C55BE57EA87C14B4E7F8C5F18 /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = A135AA31C4DEF5ED89164D42B364859B /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E4C59F5D985D6AF81C40630BB5F042D4 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E4DB49F8B07605439E3285823EDEFD56 /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8C6CC9F54F5FCAB4E2A7D49CF052FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E4E96C5A609595F895588C104262975B /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FFAF78372A6B8AA0ED3B06253386FD /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E50CED42F8A433CB191666686C00A5A3 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E32C94B79B203FF823FF01D6053472E /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5153BD74D5359F72196ACE31BD82F5D /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B63399DF7BB14971E96ABD224D409F7 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E53F8116BA30AB1E506300A1A5394C36 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA8942391BB25692B95EA8AE03BD62AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E54668AC9DFFE5B9FE014C7BBB1F72D8 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD271FCEE121FE29A39DA5FA7992063A /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E54FF6C4D27A77C1B805D75E7BFD1355 /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A6577314AD266CE9069AFD9C8EA591 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E55202C9A17DEEC54605ABAB63B329F1 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E5CFC6E5BBA7182EE33A6DDB0D6A8 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E557A000450604046656D73ABB02905E /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */; }; - E592531CE39DAA391C42543110CC50F9 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 345DB3A734591C08E8CD63C1B09A6787 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E59632FD0BD3AF930BC5453D232EE116 /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5990294C7F71135333F44EC9E378BF5 /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F596D311BEBAAAF63D1608CDB51BF8 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E5D058095288E1A8D996AE4C65B5DC1F /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1D14DC8CC641A1F72379F273060C7D /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5D1CAB60C324077E138DBFBB52419AA /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E4EF9D0E0CD45E6D558BA04BA5B645 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD3A96F1AC3EC9227ACFED9CD8D7978 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E6EE5820EC7F1659EF4683E45FEB5E /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D942A7AF80504800F840BCEC3B5D258 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E5E8E8119382513714FD0F3C8102362B /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 985B1BEEEB3523A69ECBF24B851DAB89 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E61FD6CFE2317924E45DAFE9EFC11FA9 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82567DA1C6A658398372D50699E8863F /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E633B22DAAF41AC8F8A2E08CE6AECFFF /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 22674D3B3366C14C5A886CB0D300062E /* make_combined_all_macho_gas.S */; }; - E63CE800D6401B04DC6A8E41314DD2AC /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59737DEF9411E245B384F02F1712080D /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E63D9B410E301EA8786711F287DC92D0 /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8009FDE1879B9AF596C2B7F6EEB1A0 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E66B30842D413DE0029F89539A550CF6 /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E66BEC137FF0933404E4343140F40B9B /* NSArray+Map.h in Headers */ = {isa = PBXBuildFile; fileRef = B20130E225E7E248D5BD128F60A625BB /* NSArray+Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E68447FCA4AC394114710B4CA1FE8265 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48A004EA2A963EDE65191323BB6DB0D9 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - E688352A73C514B356DE50C892D60988 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2080D44EE39EE883D8CF491A775C4 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E6AE2C06273C1B2F20E2FA92A198616D /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB78F97FCDAB7A8E0C479C575730692 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6B6FE5FA268BD7E8A56E1CA4BCC4B56 /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F318767A8CDCC692929B7821190527 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E6DF15096C53ADB172156699EDBF9DA1 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A48D9F33C1B078CA89F5C81F3F879F10 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E702E11BE90636400C4840627DF7F175 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693654C9E9A9F8C3F710EAFC70F936D7 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E720A07E09DDBCF421091E59A544B2B6 /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9C4E4C7CB5576887DADE868D1D35D3 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E72A250087B7A73BA20E9A12E6C3E5AF /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0680A502E2A17C3EF531E236F28F29C9 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - E76B9924616F10EE60A2386B60109138 /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24971A438813A2B19369A6E521A600D7 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E7CA1525B44BA477EF10422B8E06BF82 /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B223F39B8852A43883E130596331A5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E7FACA08D2B50B6052606FCDC141CB30 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E80CA12F81EB6A39A021383A904B408E /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C832A55D8682D12B62F89CCFCBFBB46 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8230222C27127A5B8C4B828DF6972AA /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = E767731126AB948E874B970EF1BE7AFF /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E82F4C8731650D2C101CC039FA9547CF /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BB89C268CE435089C4531886FF937E /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E85DE6E2E1C8995860DD4132D41337B1 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8977EF2209E88A1C76ACE89AE139B5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E87957730C741EEC52C1B1960FBEB137 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E87B29D3C1716C91BA9D1DB823E3404A /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB902FEF5E3B8E76F96B2A39AD4EA4A /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A0948F54CF4DC178B9160F56C53162 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8A0FB2ADA10DF302CBE8EAE12796348 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B2234606FEB52BCFE1EC0CB3C8A13F /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E53B3820297CFA55F0E95F0A0F24E99 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8B5C6977CC809859567616DB4F538D7 /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21479F41A69BD70AF0BC1B6F5C346CA7 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E8DBE7D5F37E21DA5BAF1A3472B2FB1E /* Pods-PocketTorah-PocketTorahTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2A3A770A47C3B40FDEE98174A54759 /* Pods-PocketTorah-PocketTorahTests-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8E4CA8829A628529A8C2D1F06084676 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B110D356A2384A3387573DABF96705BD /* evutil.c */; }; - E8EB6F48B7919F8F0F5DFEBBAAD64274 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C5AC027D097FFB1A98B0799EB1FFDD /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E8FF284D6FE7707D7721D916CC37E0BD /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - E905184EF7D8753CFF9D7CCF1F6382D7 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6196398EF9A93DD0FC638C56649AEA01 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E90AB03B7332CB7B295225896F1DFAD0 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BF1BB5D347FCAF9BAC7CA0348207DF2 /* bufferevent_filter.c */; }; - E92D206BF41854AC86FD7948F9FF689D /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E93AEC49BD440B21DC6B3854323D1D74 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FC70249E74F930D4851FE4975964AF /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E943626B3F9FE3FA68D19D21A4018790 /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708DECA4A15932361BF726582EBDB58 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - E953548BA212D0038557EBF302E5FB1A /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F62E33F0F51D8BC5E4951330FE3DA38 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9702B05B4DBDDA1883727C572D0F164 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 187910F899833FC9D70ED5D05BE4AF17 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9718761D2CBA581E508C76598A7419E /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECA7202BB34315AC679A52E994E29C /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E975731B61807007171DB2ED1C23AA7D /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4554F52622C8AF0D7D3BBB8D7D0BE6C4 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E97A962F15889971FA8F7DC568553468 /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F79EE77CF8C6A6393EC47355285B448 /* event_tagging.c */; }; - E97DC4AC0A8715A6C6A61875CCBBDC69 /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FC59A22F155226ABB1D12219E5323C5 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - E98D3737DC0F4FB4CF332C4CE01E23A0 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC88FBE381ED0BA6A6614CA3A08DF40 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E99563E95E65151714CDEC4992BA9013 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF97552DDEFB806ED6C339BFAB7DFB27 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D173ADA0D346425D066FC8BA2FC1E3 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 301ABF3F2A4F5813FB276181CB585506 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D291E176E3E09ACE6BEDDECD550D4A /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D4A8364489D206437B51D142918FE /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - E9D9981CBB57D240AB763DBC92DAB8E5 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 97664F7F97C1D7F1A40B14470F2E08B6 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9D9AE33C065BA4500D1D5BFE59CC697 /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B83DA7354475737493C4DA3E59E5428F /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9DD38E9466D37938076B85D6346A169 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 862182A82AF9A2F1C1B02C44F29FC2F7 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E30FAB4AFFC8D00550652824815096 /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A2A52AABB17FF2878DC4117F6AF504 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - E9E697820478CBC72FB1B7AF87DE70EE /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E21C516096440394B4FE6F6C87DCD /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA0439541BA01A07DF03E9BDB9402556 /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */; }; - EA1BA7E9AC502DEE21C460AF07F13CF8 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BE773D55EBAB66F156A532DDEF39C6 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA31A21E8987D47CFA4D774D8DB6D85F /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA4F637F75A9E3FA971877CBB1DA877C /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 232A922D2DBFFACE84798E53FCE13117 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA55F18066A9AF49B71EDB22FC022230 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92E1A3C0B3D9E1A025BD74F195E43BC3 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EA56242A1AE9BDA9FD7EE6C2643F894D /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D23A27796719003161563112418CDA /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7391D45DF5AEFEEFED3E62AB4BD24B /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00E2DFDE250675BDE9F7579396C1EBE6 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; - EA75A95C1B45E7FF5F97A2A20E67E167 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC32709DCE19273858F8C0B061FBD0 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA7B28F302EDCE8217513AB19A1AD2D4 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 4130A5ACCA6EFF23A23A3BB955B8D0A3 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EA8F5370BCBFA81EA30836B2BE742054 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34205B64B6A66C24015D607918E608D2 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EAB6CB82E9D390CBCC02DBD3CC810F66 /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1CCF886E153E054E11425759D114E /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EAFCB0C8E933F88DD0CE49987F993543 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A2673F63032E40510A03F8B41758FFE0 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB4A12CC6619B739F2847B37980F6424 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB561BF06269128A0FD1F87FDFBCB45F /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC66DA440F96FE6EDE7C48BE3C2E99E5 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EB59767A6CCC79F9341AC35F2424E74D /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF68F65545CD4127830A13FA089D047E /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EB7DE7BA15F1695C79EBA25F28FDDD12 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D72AD290B7F1305411B9F0AB9301A99E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EB84B3EA5A690DFB66A6FD01B3BCBBD6 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C172C2AC8CECF2D55876796EAF9136 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBDB54BDD1531ABD081440F727F2D4F4 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4403E2252782EAC71F12A8E8511A35D9 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBE25824698811CA5B08E8B397D796FF /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F45FD38E7D63130DDBC450CEE794475 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBF2DC6C77F843BB5AD4574C7F4E08C6 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7087737310AD93EB6E58A920ED555CAF /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EBFD6B5351705AA3627CEAAD69D8735F /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63C37011AE46ACD7DA57392DA7E9264F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EC1A06A7624B2C7CDEA4F9A7108E9BDE /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = DC86FDE65694EC1882455BF21EC6433C /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EC49DC644AC102C5B7309D4486ED7E70 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72086FCF0DC64B39CA97D5546DAB8DE0 /* YogaKit-dummy.m */; }; - EC76E93FA92256BC7C522FC6A2A50CC6 /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24353E11C2066459B75324DE956102C /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - ECB5488FD0AED02A38BEA55EA7ECAE4E /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4456A958761B3AC70D23A5FDD299DC /* http.c */; }; - ED104723FED207976BEBCAF3AA5BB1B8 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5BDE449D967E54E3B89C8631FD9F49 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED3B64D0B0246095E49A2905503C736C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C284F6230F276B009930072A0DEAB8 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED4C9009029CAE7C477B8883EB0D7376 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E018B141AAB76D59DFF9587E3C4B71A /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - ED8DE13CAC870D1763D18E3B225FEDFD /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1932B1D65BCD050283BB9C2ABD61AE /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDA1E3FF88D267C9938B928816F14384 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C43981102668A46B15E99845CA99725A /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDBE83108D09E2310C305791B8706107 /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7777D92621445BF0257E10F0F86ACD /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EDCCD054982971D84CC2AA9518D7D153 /* Pods-PocketTorah-PocketTorahTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF60D3F88C5D5AC810BF03BC257FF9ED /* Pods-PocketTorah-PocketTorahTests-dummy.m */; }; - EDEE04EF79CF10115A759D46919AA1EE /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7DF8CF3F60C532F00794B61EB72DD2 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE387EA30A0F46372A53860B2BDACBEC /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54AAE3C35B7A3282C19FCAFBAA1098 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE3A550888F80DC343EE32DC8480CB44 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EE4008AEA39CE6167CCE046B8AB0EFB9 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE593974CD5FC835F7CE900EF0B6672D /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A884779B437B2F780CCBC1B235E2CC9E /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE630F7B37DAF19904AC57AA95A90605 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8800BFA7C423DE55B79D0BBAF96E07 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE736F98C8EB6340A50177697CCC1FED /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EE97BF6641D599746B3FAD742740491C /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 642789143FCED44970FC89FC9ED02076 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EE9F9141A96EEE2F261651B9FD56F13B /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEA89A07AB3A2B17474C94BCF0B6398C /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B086A4330C0AD5C69B023ED3A5A530CE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EEDF0AB0E85109C41ACC87CAF1045D64 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC1104C46B075BE7C612CB2CF026D2 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF48F6ACB8F2EF7850F4CCE3C57E0213 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F32ED5DFCFB86A8C891E7FB88D4D37 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - EF50C64E26A794E976D9C705722594C2 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A4ED7EE1798A13A53A6943A56B909 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - EF5752E48D0A90209506A18949229D58 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7593784F7F7B9489F4800EB0DCA31CA /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF7F30569A36D55A19EDDCD9E76DEA0F /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA821AF452BCA0DF297118D5C08D190 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EF8015E57C8BC50A02AE455C107D24C6 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E04D5E6F7758C911C78A8F2C9330991 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - EF8E06E12BF9E382A58D6699A60783D7 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = B43F9E1D766BC8A3CDE1D810DB905D4E /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; - EFE1DD6DD9B13668E58A8A60A61C091A /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8907EDA3BFD3370864303D8879F2A6 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0200672854751847954D177CFFAFDA6 /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB0E0E0FB8E6079D2751D4B9292889 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F031EFBB04D85BDF1D3CE1603D03A720 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA5BC897FB48083288C669DA5BF70A /* RNGestureHandlerEvents.m */; }; - F089F33D807E628074104DD4D0166E5F /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4364E71F687B75D965CDCBFFD505DF26 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0A65AA978F5761BC44AF039DD6ED767 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AB0BEA70A1745722B585DC5EB21EBBC /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F0AC141D2BF3C396F34B1F230E039C04 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F0DCEC0FF964EF5CB2CC24074839C68C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E981ED29B5B67E990D16AB3350BD778 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F10066FFFCB05691561796C75A21D831 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = A17B3BE7712A4141EAECE30D5429FB8F /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; - F12031F81659138A16837B7729DC6D09 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = F617EB88974F7A9F8B1E81336CE97CBA /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F13444C30B355D4D57F501F668BD0B40 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 95355AE2B185AA69CEB2212FDF6A0C5E /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1A4331CC86D8FE43E33C1F58E475978 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1AA497BC246CF26FDBB4E773EA144DA /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09B84401E7363B850813E0B7E7060CBD /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F1B95A3FD0FA9103E9A49363059BECE3 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBB8BD5D0F704F0198C3358FA585BA9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1C2434D7455A486ABBF2618833DD870 /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = F997CDFDC3F950F4321544ABA1A6FBA3 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1C637DA5E3CCF7CB5C8FD48580CE8A6 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D8284150801A62CA7E047500EF644F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1F76EA0B1E982ABE19206F0F692F3C0 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AADF5B14C133962B4DA914DC4BBB0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F1FAE23D977BBCACDC961879EC80C2EA /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 616C1C80D899AB471879C55DB0AF5AD0 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F20D596F7CD415D3AFD84303D9393063 /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E481D28C154EF3890946004BBC4AA0FE /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F2171715A8E987FD96524175D5431E0B /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03754738FE1C6C2DB32A407E13988594 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F22CC32128EB28C1B0B19CFCCF9B8DBD /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21136489EF0918C0CA925FD75031201C /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F26BA284EAEEA6487A44C5F0D662F6FF /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 941D502FDA5F931A5218BF6631F228F4 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2761979738D37446DCC3FEF1C76B37F /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2970910CF9424403F576E30A89D4C6B /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E08ACC272ED6B459E6C95093C5C43D /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2C247DB363678F3DC306A0CE4C0F76E /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 892EE75436EBB2EED13791DCA0F304AD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2D294EB3CA9801EF8D72C0F2C390392 /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B16B55A28D94C3DBC963722A2B360 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2D93F5FBA8C9892662DDE4FC1E24E56 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EAD435E5F12DCB3602C909D1667A40 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2EC99F11D5864673C8C3D746C012092 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04B88D1C743D994F31A79AE586024654 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F2F318BFAB4C7BE1F30C4B682F30BC9C /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = CD36B16D26FE47D9B2EFBF363B489E80 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F5BF5FDF31EB0474CFC44516D7B51C /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B698000109AA8D5925E35FB4720F2051 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F2F6DA7F82EABD052DD60F6BF00E9BA1 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39065F212EE27FAEBEE1EDBD603C999A /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F31271EABE68E04907ED2E06DBF97A11 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D44576BD9116ACB2F1CAA4A5F1E2B6 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F325782D6C930D9D4F38BDE60AFF4E9A /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC905D622F26BC529606C504C75AC5 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F339733408C6F47DB8F8B5F5006792D9 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3412E526244382A4B1A93D6DF2A5214 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A2CBC2F986BD86376D47AB4678EB54 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F350610A8D5B847DE766C99AB03F5C2E /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7EF89C8323A3F60C59729AF4F8BF71 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F353A9E90FE4A06A8C1D419F96E703BE /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FDB6AD7D684B0DD23F222E270EC62 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3702748B3F3DC2584C50EA60EF84F24 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85661831E7A848AE409B5F8C193F51FA /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F37E11D2E6EADD387D02F4929E40D3D7 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1706057CB8DEE69C738EE8165697D41 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F37FAEF367C69475DA31B98606F50AE6 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E16051BA7BD627C9AB75B48E0DD6F898 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F39ED1FDABC34CF8863A9E75D3E90EB3 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3A16669A9187B992F2752A21222ECAF /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F476B1AAEFABF46F6A7E75BDED7FB8 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F3C44ABB2C7C2DE97D911A26C210F038 /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7C77CA417908065DDFD485417C2112 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F44CA0D7D752814FCB27A2653A8C6199 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0936719542299A7A47B01D65358B2353 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F466FD1A825158171BB105F385CE38FF /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C76256057A0341883ACC15FF403F57 /* RNNativeViewHandler.m */; }; - F47834738C3399C03CB112AC256CD918 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 539684657BA19BE9F7D4E4E08DEC08D8 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4C07AC498E193D01F7FDD07A05BBABE /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 579FB2596F4990AC591309C89E855282 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4DCCF69ED1E5E13B5B83A9C2AFCD243 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A75690F45D1B241C11F87CDA9C9099 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4E28D1A9A7B4979E541F1952A305E2F /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4E867078D0B77FDF15AEBA1EC609DAE /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F4F0A66AB6EC8800C964068BBBCAA627 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5ADFB605B8C8A7D3EFAE771A31EA317 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F50700DD8B762BAC3CA897955D17229A /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 9253E47942126D94991D7FC3EB7BE96B /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5074EB40B929214373B7B5052BF6CD4 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9918FCE1B59BDA1730BE0D5351618952 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F537D0E7FDEC95EDC02E63526DEB4707 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0161A1977ED5A24F2684E0CC23918B /* RCTTextShadowView.m */; }; - F5454F659A305ECE34662FE4085EB602 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8B004748103E03DAD3B65FFF4DC5DD /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F54EA1054DE8DC14BB84006AAEDB8D23 /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 13835FDD97758D2FC12518E68308E94A /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5508099B73B75C57B5F3D44DF739988 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E161985708E2F9BC60485ABCCC4854 /* RNScreens-dummy.m */; }; - F56BD5CB7C40AE3B5BD089AF0B202886 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F57B7E124F92805253A074ECB091CA6B /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4093C6C84BEFC50EBFCAEA946AAAF18E /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F57EE452FA5C2DA56006CC898DDCF109 /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9690A3FA35BE5F86BDF2F083E7C1BC23 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F58DAE748DFA409884FB2D24F39DF21B /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B750836A1F8C2CDFB2C121C9A7F06F /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F59D3802E68A8AC58DB6C2BD24F43509 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F5A95F1DF5BF7978C8FA6D656544E492 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9675816D613911331E79B1233FB826 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F5F70200664CD997CBD73F703CE5AA83 /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 894AABC43BB995A4FCBAE713CAC89AB8 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6357A61B76836F258561BD9A54C8E23 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41336D60BB8F42E32D0556ED9ED8767E /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F63AFAA4D03B3CC3099E12244840C969 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 97066889E6264F98AF2B000F17E84C95 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F64CA34CFB153459C83EACB2C3508319 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F64F3B7461C26BB1BEAB00DCD555D4D3 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F67F823CA923ABF8333A01C1E7DD0A43 /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 57159D28816431B552E8638AAAFAB87D /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F67F8AFB69B4FD5C901519DE73D6A8E1 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 60781BC8185F6740EB14D70CCEC71EC4 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6926C7721428DEC68F295586A4AF249 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CF4029BA130BCD265C8014CB2016F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F69E7BE90C2667C917C5CEC2B45685EC /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6A97971FB44B83D9913FBC5A237CBCC /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCDE045707349A13EF741E0B5A830AA /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6C9E5C1FBB3B8E7008D56CE3DDE4B70 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = CBED0CFE7C701F3F82CE9F6D51C8D3BA /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F6DBE28E82ADF1F07CCE41043242DBD6 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5382F4B22049F6BCACBDCF80590CBA0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F6EFF1C140FA04207053C809B8CAF974 /* RCTWeakViewHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC4521F32E0BE1AE496403358CBDB58 /* RCTWeakViewHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7008F4E54E2070AA7576EADA3F63D7A /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F714313E3248DFE9A4CE2074A19160E2 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 86887B295E195B4823ED2094604452C5 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F71901B84F5DF07CEE87EA173F83CBA9 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A9CAC2EDC5FB6CB8779F6A74D9A6798 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F71C6015584E5D9D4C7603AA780F6F01 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EFCE1712AC3B4B562B9A6AF697797 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - F75A61A7B3D556C89394BC300BE7923D /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A535D13DF2B6A16C6E11351DDD4F14D /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F78F87FC10FB8462432A84F29EDEE659 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB703BF1700EE2C37C9A6619993BF6F /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7A1306EBD449F65F1055DCC89783DD2 /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5A6DE1504421AB3F7972497240B278 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7C66CC03AAF94B783484ABEE5C3B16E /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F30F8DFBD584C23306AA6609F39605CB /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F7CB8740EA5F92AA4C55118CC794F1A9 /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A0BB33A3ED915AD91F44FA4BD0696C /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - F7DADD5810D465ECE396CC7B3F9891CC /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 895FB49C292C7D98777E20119FD62162 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F81AA1BC06F6F67B3B0F0EB0E9B18DE1 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CABB154F90324995E4AE3B490EDDC52 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F82667B7219D966CC9D195FBC83B1D57 /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0DBED9AA06BBD50ED3FD77795AD34B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F839D85A1A39503C94F9367D65818F12 /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = F3463515B975A0F8730B0D7396545990 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F84A5618898221ED4167189B39C04CC0 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17E51E807CE09FEC00030AEB10D23B4E /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F84C063F6276B9DB507D459F1CE4037F /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 786973C9E14B615CBA8E35021827B2A3 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F86C472CD83E17E77DA8D309C7470F32 /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = CD02E45313EB5B57C1F0B60570E700C2 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8A8612FBA6A49C1FEB4CFA7EF35F86D /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A19D25EBB4B72DF62BE8C9596AA5B /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8C7577C8DABC84EFE4F057EB5DC4F35 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEF8D6D51EE9654CA3153CD06E38181 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8D8B4471F7E9C0898E25769413E9EA4 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D832E5E8D443151EAA0DE4FD3C1DFA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F8F5E39637B71DB5012A10D3D766E400 /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - F91C5B4BC291A95539C64CAE5024B7B4 /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AE773D321878B89B9DD52036DABB8E /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F965DFC65E9A687E0FAA05A21BE89D91 /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F9882C22051E2E701697E9C8E5C53B59 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B92697BD1F3C17CED3BAE77E797EDDB1 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F98A4876D5BF0E0C3EC9D45135BAF833 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 481F2F9828431F52D8A5D15079D62ADF /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - F98B281C4CBB361B17216C2B912B959F /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1DA2D1B2927D4E5F64C7BB107602B6A /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - F9FA5CF10193AC6EB3D50C5F5CA4B3DB /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE872751A23184E29358AF6141B2901 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA35E24FDA2AF119569A6D7D71DE1C62 /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1AFD923B7EF1571C232F7FAD4BA508 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA41C654DD4E044323A991D9DA9BCB37 /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 960F396533C585E6DBD0C070374F324F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FA674782411DF1941A97EBD72EE14FF2 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 821623E26485D6B6BECEF967A2394009 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FA6A90F4CBED2BF22BDD5348B460CA85 /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0BA2D90C3C1AAD185ED9AC53D51ECA /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FA868B3D1C99A2CAFFA51EB7C1572479 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20CB3E5C0266061AE5305BE77E2B3CFF /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FAE5D591FAD4466CC7B2CA56C95D0962 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E665EFB85E7D96C1EF2D9263D2D36 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FAE5E67FD96E2ED6640558D8DF3BFD4C /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E6C3570F4EDA55947E6C543AAE54D7 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FAFDF3FE4E3215D95EAAD0F734428AFF /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB00EF2C5EAA02E6E6E4058C3B3B9FD2 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1586BAFB4966C4B3555A0D19061A3BDE /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB207C0751FE845B40183CB9686F19A5 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BD7C95C66DA051127D712C91807817A /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FB332B52B971BA431EDC2F3A0B5BD57F /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFE81577F0F8CB79EFE274DCD3230C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB8AA8144FABCFE8FFE3A4380CB13356 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D84BE54931FF24BA032F44401F35C2 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB908788343A9762F393EC05C175B7B8 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 155173B327F4B122364E2865D4CB8E4E /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FB921A53EE97252D891CEEF85064C8CF /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84111C002B69B2071B9CFD7831DFE289 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FB96E81F998A3F5544439088EA430E3B /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FBD6A75E1F943EE7010AACA0755454B7 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A355E139E1A7D027E79E30047A0F232 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC110ED5EEF2CF32062B023797D38EB0 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0E236C476AD7919503F1A8DFFB7807E /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FC139B24457C478EAAEBFA6C8589595F /* RCTBundleHolderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A018F03609C1B3CEE93B1F8DAEC5530A /* RCTBundleHolderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FC8A998B2B87E2B8684D15F3A672B359 /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D58F38A7DE8535C59BF5554A407C70 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FCEB42558EF0B97A8A1B09FD39B1FC22 /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B66B4F07C8326F0109D7463260AD969 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FD3104E2CC37FE17C5CF8FCB44546DAA /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AB28FE125C6D0F3711ACD12DDB8FAA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD661EEC32AC744B12D69B4861533B65 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD6BAE0F2E879BD3B5CC1A9AB73DB711 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5B5C939F26EE3210621E71B4496512 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FD81820358D4F6123CFB27176D32F879 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C36DC1AB407DF041E74925570A1C9B31 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FD81E7D5E6FE10E243114A752DB267EC /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BC6E32796D6FFD82258102EB8F4D87 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FDBBEB2D201363ABBEF91CB15CBD4DA9 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C25724E865D89FF6A24B130399CD384 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FDBEC5CAD6FC7E2E5A539817B9670721 /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D822B24D75585724F32397070E810D7A /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FDE6F1C9D83AD4E7491B3C975602618E /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E03E8423D33C640AA4AC9B5EAF4C7D /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE0EDB326F76525EF7D6F3262CE2514C /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE168A651BA70AB712F170643721AFF9 /* RNFSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBA3C14D6E9B6D29C1B31D72D89282E /* RNFSManager.m */; }; - FE1F31B321740210E2A7660D51E3F923 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2C55B59A62BFD2CE89C374812C3A83 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE23A1698D877DC567BC8EE7AD3CE6DC /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 244E1923F2E04531CF2F06357ECC0D7C /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FE3218A715F0E54279B5EA1908B9F351 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBCC0664BE6EC6D372E85C9EA504382 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE39B8375760092243491DE38F589D99 /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F06AFB3EF8C41AADDD5624388AED2F1 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE40D13805858885168556871AE3A6DD /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C57822A2406DAD17116072A50C725BF4 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; - FE42D558AEB0F5CB4180C398C118B4EE /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A5367AE6BFA606D4E11ABFD2B0E16F0D /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE54CDE6BE19432D90D43D1FD7442F1F /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFF825EDDB380002C55AFF2CF1BE39E /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FE870A96F95875881DF1D2106E1047F4 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 327331FECC65A2DD61BD9D2E0F31DAA2 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FE9E3900ADA32FF2BB894E4B1460358A /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD9CD46F71D9B2CB704FCFB2090E2E4 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEA294AA043D52FA0188C731E4ED3E17 /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EECF907F4D60C0D7EFE50EC6A79CC5 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEA5FC593BA84536CABDC518F758A813 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFF2C464D3BCB1A642B92876B18DA5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEB36F1B0527C45DD1B377B7E26DFC58 /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 262D28155040273041E2E3C92A1E02B9 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FECC716F4106BBC1CEB842D1A3370579 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3671788BCFAB3C0E329BB28599CB8873 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FEF64FC10909AFB11BC13A5954662C7F /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B5A9D305D50885008EEDD2609AEB86 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF19E4D2D0820F2781D08F59F302E4F3 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEF9C944B36DA6FD504021B7D45BF6C /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF6048F48555885A8EFAFB330BEAB301 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */; }; - FF640DD30A3EFEBFA3E5D957FA731949 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD47E9E507068BADA59763DB96455A3 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF69A167E72A21613AB002C2DDA3EB3E /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43ED3D8737E075D6CB7AE2AC9404AD1C /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; - FF763B2DFBE7645C079F90B2475900E8 /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97D27CE0290DB7F2AC5D00DE81C3B4F4 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; - FF946701CF6DAC8B4DE38080007736CA /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 226B295B4F12785725DBDA0B510CB992 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FF9C48E2A238F8574E632C408F79445E /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD1A867E2E435D33828B33684D591C7 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; - FF9D593A19A9C5F538D7DC691D898FF9 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20816CB2D86C9A3A6160A10A7BDC43E5 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFBA41317FF692C86BC03A7A82681122 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A8EC8E52EA0F89FF4B23E6ADDE5CEE /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFCB89066E8555D5302D40796F8F32A2 /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9E356CBCF41D667DFC32A24D5E814D0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; - FFD82C0AF4D7ACE6A3CDCB9399DE761E /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE21CF32B7017DE4CC928ED808005BC /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C93100305406F07A35C81C46BAC35 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE41A003B2A985232642D42426A2290 /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 271218B9394DE4C2183D665DBB5FFBB8 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFE4847290DD9A0BCBAA347331736A3F /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1DDFC6A65AA312B46202C901CF3898 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; - FFEAD2FEE16472E7394D2DFCAB71B063 /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E0596DECF5F390564DFEFF032A7791 /* signal.c */; }; + 0008E7B55E253DD0F8FED753C01F64CE /* RecordIO-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 03754738FE1C6C2DB32A407E13988594 /* RecordIO-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00141250B535176C58BAD2E83A7689AF /* ChannelRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 88188AED3DD45D4427399BB1C8FA673A /* ChannelRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 004E4D1D8616A94C8CA27C59ADC6E7EB /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 5840ADB5D06973D084C44748B0306C35 /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 005BF8E0A292680C28D165F5C6690AE8 /* SKMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C6203E2F3DE255EB2539CA8AA78F0F3 /* SKMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 006C6F9986A8F6377966FD14E13E3F81 /* SanitizeLeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F125AB1241C19A59F8E483A8C25CF02B /* SanitizeLeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 009634B38FF0B42C1EC2FC77A2ED6E66 /* RSocketClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 406394966EB10514F897D0D6AAEBA282 /* RSocketClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 009EB561687B35763A83C88DD5C09C31 /* RCTScrollContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 00AB2FCD464123A8956B46D043533193 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D07DF99618EC06774F1C02290546281F /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 00D048F0A7403410FE41995E0597B5A6 /* IOBuf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D22FDC36F1D12B6D38566C9E627651 /* IOBuf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 00E31BE440E471C6C5C12195C05FD2C8 /* RCTAdditionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = A37DF7979FC3E2158CBC9421500C92E8 /* RCTAdditionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 010A872FC34324611DA502FA530D1FB4 /* Libgen.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6E0D0566F003FB5C7B6502ED3991 /* Libgen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 010CB58172B562C548BC26C6D9502CED /* SKNamed.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A19FDEEEB5AD0772B288B13CDBD834D /* SKNamed.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0112FD62F72319CED98B610E971E61AB /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2E62E10527A54702D7B76BC75970B6 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01480CBB01971F7052CC0C0D7FDBECF2 /* SKViewControllerDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B4FE1DADEEF2497DB8C48E519CBE20 /* SKViewControllerDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 017452C4516327B27AD2BCB2E55C553B /* RCTI18nUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 9250A01316581A641ADDAD4C948F638A /* RCTI18nUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01752934B9788FEDE249D64AD6E27809 /* RCTWebSocketModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A5D50449A0C52E56FFDA06D422DA0688 /* RCTWebSocketModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01B3E1F21D960A1658B4BFEA270E2E4C /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = C9E8801BE83668BAA657EE3CC91CC682 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CA579758C310F82F955681D7F3AB01 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 98403D210AEC4D0F4A1469B26CD0E9A5 /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01CF8736D9437701F49DA14AF808828F /* RCTSurfaceDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D942A7AF80504800F840BCEC3B5D258 /* RCTSurfaceDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 01F288F49D7AC9CCEF89B086C6535539 /* Barrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 845292F3BDDD255B6D20E1F188BE5AAE /* Barrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 020BD5E0139B8CF985336067482D1EEC /* UnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7F28D48A35744448D47431429E87BB09 /* UnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 021C198FE10C90913966B192011221A3 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 8B46D51A2467FE8F574CC5FD9B404035 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02576FCEEB89A5BC24E83940FE638F5C /* EventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B6234C08FD5E27EE8EC78AAF97D807B7 /* EventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02692A83CFFC27BAF389D2B759D60446 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 026B361B851ABDB4400DD32DEECC87FF /* AsyncUDPServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 166765215E3CD63328BA195CBB0AA6CC /* AsyncUDPServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0292A301ACAE2566FF1A48C6F7DFA7E6 /* threadsafe.h in Headers */ = {isa = PBXBuildFile; fileRef = D0EA87D04A239DA92DDD4C9728EC38BF /* threadsafe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02A1A0925B8A9040BBDFB7261DCE1B2C /* PTUSBHub.m in Sources */ = {isa = PBXBuildFile; fileRef = E61E05ED71A6C4F9CA747FB587173F72 /* PTUSBHub.m */; }; + 02B5A900DBBEF8E297DFE5D4D96BA072 /* RCTManagedPointer.h in Headers */ = {isa = PBXBuildFile; fileRef = A07AADF5B14C133962B4DA914DC4BBB0 /* RCTManagedPointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02BB0A2D41A41693B0F5FB2E454430A6 /* FlowableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = C782B0971E28444D5AE09C8580D79435 /* FlowableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02C52A733C46641EB35137A8AD34782D /* RCTImageLoaderLoggable.h in Headers */ = {isa = PBXBuildFile; fileRef = 526AA66A72BB1FA6730FEC5B708E4910 /* RCTImageLoaderLoggable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 02E8DD000556639AB81C212BA1716DB3 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B98A1E4704733CC61D865CA6A8967D96 /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 02FE178C1A30181C61895DF3DB38F493 /* RNCSafeAreaViewMode.m in Sources */ = {isa = PBXBuildFile; fileRef = CC2F0B31CD6C399B0DD2C3E831E7F8D2 /* RNCSafeAreaViewMode.m */; }; + 0300C005B5590CF8587DA854CDB42583 /* RCTMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B9816686ED6EB65319F3950BC977466 /* RCTMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0333FD4C53A7A12705204AE6CE8D3DC1 /* RCTJavaScriptLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = E347FA8EC8E2CF200AEC60A735D85208 /* RCTJavaScriptLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03374F026A11EF4DC4C86C5FE138AFAB /* ChannelResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 90DE5C1EE87669FF26F068AEAB57CC07 /* ChannelResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 035FD58B363EE97C3309BD343ADD7C1A /* RCTBlobCollector.mm in Sources */ = {isa = PBXBuildFile; fileRef = A135AA31C4DEF5ED89164D42B364859B /* RCTBlobCollector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 03A17C9BFAE60DBBAA96E5E5B915F394 /* Baton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9A3804C01E774EB3C866E7FC2E92B5E /* Baton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03B4052189C4770CAE325A76294C9B1A /* ResumeIdentificationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = CE06EE125D8D6E50C90FAD42905541A2 /* ResumeIdentificationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03C8251493A4E58CFAE872C049C856BD /* AtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FBA4392767C5E04855D4A1DC0684D89 /* AtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03DDCB17E0A373A5AFEB82C68D700FA1 /* SKRequestInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = B6F3C4FA5DBB44207305624510DF9FA6 /* SKRequestInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 03E53C88ABFBF1AEAF0E43B2898D5398 /* FlipperClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2675804FFF6666B5C06AACD4FB5EC9AD /* FlipperClient.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 0420364915157CBC8792A5260DF018DC /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 69A6B4F389D05DD08ED1C242489DEC44 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04254940BACF1BCC5370DD001F7C2B58 /* RCTUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6BE9612757CEE23F2C1DE8372488D373 /* RCTUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0445E1A7FC08CE161E8254DEE0092141 /* RCTBlockGuard.mm in Sources */ = {isa = PBXBuildFile; fileRef = ECECC3C44FF5C2733FDCE96CCA59FB35 /* RCTBlockGuard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 044BECF1A8B1CBD68A4A0F3EBA387112 /* ScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 35E1C2559A5BF87F350DA10110613364 /* ScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 044D587C0C34533CE14EDD59545C582E /* SKScrollViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 680BDA0E6D1FEC57120D2A0E3E4C7D54 /* SKScrollViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04531209595CC00D5254766E3B9A5AF1 /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B32C4AAD24C62F06153E791F0427A809 /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 046D985F7AA6986C0BD26B552F95BCFE /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 79C0D9F1A9BBE4D330BE0E76392A1178 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 048742BFB92CE4F17116BD385AD8F851 /* Filesystem.h in Headers */ = {isa = PBXBuildFile; fileRef = 863C57C4B51FEE3F78CDE65668DE005F /* Filesystem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0497605F99BC609608698970ED0AC9D4 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = C10F0C4A5EB18414128FFFAAE2FFA115 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B7E634C6388455EBAF25A84C6AF192 /* RNScreens-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 64E161985708E2F9BC60485ABCCC4854 /* RNScreens-dummy.m */; }; + 04B81A8CCA3F3F540FF5DCB8A332299F /* RCTDataRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D282B8DE4B6A175A495404798E078770 /* RCTDataRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 04B85A2FC5483FA374E75FD0470C4501 /* RCTScrollView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD3F983FA32B5A35DAA7EC873D69E4F4 /* RCTScrollView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 04E64CDFB355A72A56DD66F11CCAA53A /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0549A366348E4B3141B4E979FC053DDE /* RCTKeyCommands.h in Headers */ = {isa = PBXBuildFile; fileRef = E88A3386A428E73C00B3E54ABEF6B4BC /* RCTKeyCommands.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05841898625D0BF838D922CA86C45D6C /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9918FCE1B59BDA1730BE0D5351618952 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05943B8C41B2FD0A56EBC3B6DDFCB13C /* RCTNativeAnimatedTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 44314FEEAF9AA1C9B3B735419DF45E38 /* RCTNativeAnimatedTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05972C3E9ED201C6707090175D8D3A3D /* YGLayout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 95462A9E050F6A5D33A4B9639E8E2874 /* YGLayout.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 05B4CAFEC156AF204101411E76794021 /* mm-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F93903AAEAD0B7868F9383A47A2986 /* mm-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 05CD328966902884BF037B8C1B929CB7 /* bufferevent_ratelim.c in Sources */ = {isa = PBXBuildFile; fileRef = C547A08EC202157DD2CF320B6CDA8B00 /* bufferevent_ratelim.c */; }; + 05D30AED0BC6231306C4C524DF8B2A04 /* ElfCache.h in Headers */ = {isa = PBXBuildFile; fileRef = EC9A71628F64E7EB62105DBDA7C75712 /* ElfCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 060DB0EDCC4D3D87C43F0F81F65F63F1 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 062A7CA7E61CC3E136E48BF2589B7E2E /* FLEXNetworkObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 065F8EBFD1AADD84F3C85A3FF9895A31 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 5A23FBAC585078DF037080F8B11DD8BF /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 068884631AB6CB1B7987CA81E65D0286 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06931219F2FDAE94B021A559647962AD /* log.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DB627285DA897E8D9E3402E236903D2 /* log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 069CC00E01F1FF1F5C476C231F4932D9 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 06E2F7D5F0D9BE1AB9DD0EB7A66AEF61 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 837D52E17368A0D3E07AE7DCED1DDD10 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0730F794A0B184793942DB8EECC85277 /* NativeSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = B89215DD5844E0755F7C21A61748C0B9 /* NativeSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07B2688C5A6DC4EF9A6742850D35CEFF /* TurboModuleUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 790A80641739EDEF689A7AD7A2E5C178 /* TurboModuleUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 07C5DF193495CB2917E5E2D81DF39180 /* FrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = C360FF66A9599CC9F671199AA33C44A2 /* FrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07D08F98894730AE2108E0E8F7FD6335 /* YGLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 333B048382EFF3E05714C44737E8FECE /* YGLayout.m */; }; + 07DB5F9A6000FB87722B60B317034D46 /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3561C42857555012EBA2317AB7A17A13 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07DC2355BC966074AABE369467E2D501 /* SwappableEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 07E715A50355B20C6E9FD472E248F224 /* RCTImageLoaderProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 74AABDEBF8D9B593F35F9DE17572E16F /* RCTImageLoaderProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 07EF7A1A238A6AE8E22301DB6D2CB941 /* fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A1D2E61CBDA4B5B3C05E5B48617E87F /* fmt-dummy.m */; }; + 07F37B136730DDEF184A8636EF850B53 /* Utils.h in Headers */ = {isa = PBXBuildFile; fileRef = A55D56A646001538AC26B61CB6B447D1 /* Utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 082FC987F9BB628256A7223ACB6195B1 /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0849AFDC75A3A705F3129F540AEFD66E /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 7092343B1D33DE3360870D1ADA3A9327 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 084A958EE3A3F5C6FEA18C15D7800EDB /* RCTAppState.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CBE0EEDBBC7C3F5E1C1593C73B7FD6 /* RCTAppState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08555B883D4F8431E0BCA50DF4C7925A /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BCE5E8A6769DB6C502C3A73B0BF632D /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 086901935ABDDF06FFFC25ACD24375F0 /* RCTImageBlurUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FEF932892395635722A5E2D5574F33D /* RCTImageBlurUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0891FA52147C349B1764A0CCDFE73CCD /* RCTDeviceInfo.mm in Sources */ = {isa = PBXBuildFile; fileRef = 90AD6240EA960B5ED7BAA3968D014A4B /* RCTDeviceInfo.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 08B408A045C7E4F657945160875142B1 /* RCTLogBoxView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3513F973A4DDF6C03C08134B628D9C16 /* RCTLogBoxView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 08D1785E3A8004506DAC10F038E97924 /* RCTSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 74CEBB24EE6C172CE5C37B1917A1BF06 /* RCTSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 08FA63A978893C3CFCB0B90911F9CC46 /* MicroLock.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B245661A8374CFDAD3E85B006EBC1E65 /* MicroLock.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 08FCD71E18A57213BCDBA2AB3D95D882 /* RCTViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 787922EA4CF032C4F0F0D84B324BC2B6 /* RCTViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0919671A81407C959346C3FCAD4FD675 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 14645535C90D006B4C998ADF46A83176 /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09459BED3C0265051CC6E2651265277D /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = B268A4F1805BF5B52117FD5EB2F83C0F /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0961557C6F52166BD1110515C7CA30DD /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = 06656CCA8A793DD230A393FEA328A00D /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09834715D605D2F56B38FB79516925C1 /* RCTSegmentedControl.m in Sources */ = {isa = PBXBuildFile; fileRef = 581CE49EC111C9E47933FB3DBAFA7529 /* RCTSegmentedControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0991ADC4BD5CAD7CF018CD353CF1D37E /* ScheduledSingleObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 477CF87B8F45F6961FEAFE00915DF132 /* ScheduledSingleObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0995F5A1FF725A43C1D8DE511519C7F3 /* RCTPackagerConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = E404F7B8D082BDC9589DC02C05E896F6 /* RCTPackagerConnection.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 09BC8D45B0B7408B85495BB3BDF97312 /* FBCxxFollyDynamicConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = D6F6EA5CD778A4781FB3D198F6AD5D30 /* FBCxxFollyDynamicConvert.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 09D5628DD05655C862B50A76EF7AF634 /* RCTDatePickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F18BFA79989820D99FFCC9263C9464D /* RCTDatePickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 09E84EB33970B54F503734A7FA8BC370 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = D44F9958B8C17BD0ABE418BE3A74C18B /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A129011232614CCADFFED2753498562 /* WaitOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D4F94D80D073F02A43420AD4D66D1BD5 /* WaitOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0A391C877E77B7F4392C18CB35FB2CBA /* GCDAsyncUdpSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 3ED591977873DDD315D87622B317EC01 /* GCDAsyncUdpSocket.m */; }; + 0A45333A61CC7CC505DF47D6766B4BFB /* Frame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F70A8690C0867CC4864259708F225ECF /* Frame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0A4E9247A05A338309524A9C0DBDEB86 /* Mutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 85ECC6128C9E56D0D7F0280C011D9008 /* Mutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A54D4B1BDB729F9E7B7DF1009D1DC1A /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = D89F38492F09B3B4A90736262F6DE5E3 /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0A5E15AE38D2BF523C3527ABD261F84B /* RCTModuleRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 70B722F821FB74468DA8D3DCB0C7FE46 /* RCTModuleRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0A76C4FBF791C771BD52B03980C800DF /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = E1DCBBBBD3C47E4874DC4FCFB2757430 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B0F5F96E0ADEBE1B798BDF45528DCA0 /* RequestResponseRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C50B797ADFB86D701434E82E51462DA /* RequestResponseRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0B2D4A7D6361E6231474683044C6BE0E /* BridgeNativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E0440FDD0B5456F9117A1B8BC8D2F1 /* BridgeNativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B51A9E2EC117499629C78D2DD3D5A47 /* RCTEventEmitter.h in Headers */ = {isa = PBXBuildFile; fileRef = A368B3EC185DDE79A8A50F6D2214787F /* RCTEventEmitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B6FEB9911631952929FEAAA6D0F5EE3 /* UIViewController+RNScreens.h in Headers */ = {isa = PBXBuildFile; fileRef = CD36B16D26FE47D9B2EFBF363B489E80 /* UIViewController+RNScreens.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0B8BE6E648BB736E09B0AF84A632181B /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FFB1660EAFD9C417EC49383A42932F4 /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0BA25F6EECDAE27457BEF715A8F22C07 /* LogCategoryConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0BB01EA53D6FB25A87F5DC30947F8D85 /* RCTUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0BF0D6EFAE827BC0750B8230BDF8716B /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 819BC4C7E0710EA600E464B4211691F5 /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0C0AD37AE307BAC4CDF2E87D1BFAC45C /* StreamsWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC74F858629FF882D0466E8469E1B583 /* StreamsWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0C3C8ABC1AF99345E49F632B8A8E0053 /* Time.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 42799C27F8BBD3704E93518488F391BD /* Time.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0C7CF234E81E5D3A134CA1B819F06376 /* RCTSurfaceStage.m in Sources */ = {isa = PBXBuildFile; fileRef = 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0CB49F99F3A01421582BB4074AD30322 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C91D80238F4A32910A3C3FB4AA8C8BE4 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CCF2F3DAE2BB3E6D3C525D71BEAD6D7 /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = E285B902B4C6ECAB00BA27BCB7CEDDCF /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CD1D98DF962B6B9198EBBD0B55F3433 /* RNForceTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 343ACBFF51516FD5F147F1A62DB55535 /* RNForceTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CE7B20766C150A6D360D2EBE9BC5636 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0CFF43836F9A9C72C962F72A0F736D04 /* Symbolizer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 599D94CDDE9A56C3BE2D8ECA5F9B1EAA /* Symbolizer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0D0A83E57C9B8F31620E5F4E0E665EF2 /* ConnectionSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C6E5CFC6E5BBA7182EE33A6DDB0D6A8 /* ConnectionSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0D1D9E97CACB70A80C3FB87FC1B8B819 /* EventBaseBackendBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D0234C21F1ED1900495394037B0A334 /* EventBaseBackendBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D3603D6C6295171CDC205989D549000 /* RCTImageShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 959B09C304EA4A905C9C966BAA013B29 /* RCTImageShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 0D4E45ED1F014F0DA78D53CB701E44F0 /* RCTImageDataDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 29512FB8C9364FAC82433EF805225522 /* RCTImageDataDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D67B061CA8E4E076492F14AD3F02FA3 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 91DD7F186FBB4E0CC65A4F3984D8D877 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D8069035D9A9B646FCEB9C0CF30B960 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D7DAB6C523370F958F58A5C659811BB /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D8CA72CDFE00BAE6A4105BD9A34B925 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 01DE17F1BCCFF89BB5E5084FC6259A93 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0D9E04A04206366C86B044BB895A02D9 /* RNNativeViewHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 3560247C6E46DDA3B30411435C7E1A1F /* RNNativeViewHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0DC35B7D4BA9B432C3BCDC6223A04A71 /* log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4D3DC13ADC3A52EDC337C1D63D6F0196 /* log.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 0DFDD8605EAEEB0CF65788A0FD62DDC4 /* AsymmetricMemoryBarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0E017AE2696D5127874849A0ADCD7A4F /* NSTextStorage+FontScaling.m in Sources */ = {isa = PBXBuildFile; fileRef = 046E000D3E14978F4828969A1DD1F554 /* NSTextStorage+FontScaling.m */; }; + 0E1ACF3A0A9C9BBA61A8E36478A465B0 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 15593A84444D392694A6FE6B7091B86F /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 0E2179890EEB7AF1441BC5ED52CCC448 /* ParallelMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 366207BA9EF22A7C9550F411FCFC6C74 /* ParallelMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0E6B3E403BE3021438075B5BFC384591 /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 43C2A6D616B01C9E02C8BE7457F26735 /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0EC9B6A7A8F625727CBBABCC61180653 /* SKSwizzle.mm in Sources */ = {isa = PBXBuildFile; fileRef = BE13C53C40A4DE3388B5D63D41BD451F /* SKSwizzle.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 0F5CD1F4C729EA7F8E4871F1F66BD28F /* AtomicUtil-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 15FB20B54CD28EA7D58DFBA45BED2558 /* AtomicUtil-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F657B3BD8F60DA81E5E545BEB90EAA4 /* RCTTypeSafety-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CC3121962FBD3225705104EF4A46D8D /* RCTTypeSafety-dummy.m */; }; + 0F6E3FCC46F9CF4BA09FE93B55B06237 /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F9CF6F2DCAB649C9D9C5D3C9C9083DA3 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0F867300D9FC297CAB44ECADDDFADAB0 /* RCTScrollViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 1D4B0196467DB7CB20A07CE038E6515A /* RCTScrollViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0FADB7BC290F3511728F35D57C6CA3E2 /* SKDispatchQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 0FC0CEA215B247271ACCFF6E6199A975 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A773416BDA54B843A6B250EE5C0DEC17 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 0FD280C3D347889EF9D2A76EF6C9AC7B /* JsArgumentHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1DDA77C31999D60488A6C795EAF647 /* JsArgumentHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 105A1BE1CB2836BC540A8CE41A8B7D7D /* React-RCTText-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8AE425FF852ED1446949B4FFA74BF7BB /* React-RCTText-dummy.m */; }; + 10602A185D367F75F44FBC3EC7B6DC96 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 579FB2596F4990AC591309C89E855282 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10684A73F1D69B42CF658919A4859CBC /* TestObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 3ADE6EAE9822AFEE73753E25D747249F /* TestObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 107598A104131C40F1F687324E9CE1D9 /* FrameHeader.h in Headers */ = {isa = PBXBuildFile; fileRef = 17F0FE27DF265875E250F80ACFDE7C80 /* FrameHeader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10786810E8C876327F653DF61EE6EFFA /* STTimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D7ECF00D6A9939D86922892D5C1983 /* STTimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 108AD08E70FC29158269C6CC985F5CE5 /* ratelim-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 17CCA1E139B68E3B9FC446CF5886F40D /* ratelim-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 109963092205C98BAEF64B6E1F15D575 /* SequencedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 76E7C6147B7140102E5486FDF2B87491 /* SequencedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 109C80F53B9BC28B9D4CF56E61095CC0 /* RCTModuleData.h in Headers */ = {isa = PBXBuildFile; fileRef = BBF3365750B28E5303A9713B438F442A /* RCTModuleData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10BDFF1E58F5F89C47F6833A870D1756 /* SKNodeDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4364E71F687B75D965CDCBFFD505DF26 /* SKNodeDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 10C60684E9D9B534EA328D4425D8075B /* RCTUIManagerObserverCoordinator.mm in Sources */ = {isa = PBXBuildFile; fileRef = F283234BB2C8106E306D3614D0B494BD /* RCTUIManagerObserverCoordinator.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 10DB9DE581C363CB42C14BE0F2903A87 /* JSIndexedRAMBundle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11121EB3F538EE3C0374896FF61A9F0D /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 42F7F6B23E502BA01C6C8225A8DAC582 /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 113A4A99620CC453B58A967A850E8122 /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = B9D3E9C70299CCCB285DA5A4D57E94C0 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116539D3774510C37CF34CD0747840E7 /* RNFlingHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 116B682D351E8D783648E5169B1C9227 /* TypedIOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7085A217525AEABB13236B72D32268 /* TypedIOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 117DA897050065FE5B79FFD8A6AF3B8F /* JemallocHugePageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 57159D28816431B552E8638AAAFAB87D /* JemallocHugePageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11CDAC39454C52C90D4C908E2D74087F /* TurboModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 808F7FD8BA188A305DEEF79A018DC94D /* TurboModulePerfLogger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 11DAA9355059465C61C2653A503F92DE /* ProxyLockable.h in Headers */ = {isa = PBXBuildFile; fileRef = AA6F8FE3970F1BF9A7D294340E830EE2 /* ProxyLockable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DC6F7D7D39D23864187E09D6D5DFBE /* RCTImageLoaderWithAttributionProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 55AEBCACD5E7459CD4DC35C5D6F297DA /* RCTImageLoaderWithAttributionProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11DFA6BF7B4030703765A0CE69D5B2C5 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = CCBD5FE66FA339472B4BAEF7CB6650C7 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 11EEE6086C8B840D5B9E85EF28C03568 /* RNSSearchBar.h in Headers */ = {isa = PBXBuildFile; fileRef = 47446390A804C02F6910A50AD58044FE /* RNSSearchBar.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 122CF817B91489202E09ECF68EF4A18A /* Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 61BA67564C344789FF80CE63A95B3956 /* Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 123FA432D5AB9C496F8EC724F84F17DB /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E00437B5B88C5A16FF27610054AADAE /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127160A437CFC8897CB8521D0EDD082F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 127822D046B0FE79AED0BB3FB031F560 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EE71A7568491DFE091FC518E58EE304 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1298A08931A0207E0CF1544887EEFBFF /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9045B38A5C0743AF660A849C710F49A1 /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A24B692F4A15CB5FC064685F127506 /* SKViewDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F24751F0FE608A5CFB3E03BBAF55091 /* SKViewDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12A29EC97A7C0EB53616978A39BCBDA1 /* ieee.h in Headers */ = {isa = PBXBuildFile; fileRef = 81DC0B8AC713F7B5EBA5FF1B58BF9490 /* ieee.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12B064285E5E9857868EF30A81DC51E5 /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B606415AF1D4B4A249668D9D9AA41B /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12B6F31B180642CF6A98269E4041B9A5 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 0B5DE3312BEF5DB24EC7938A9CD8C401 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12C10D011C68BAC1C84E616DD4E6831B /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = 29F34547C6C0CCDD99BA977C4FF1773A /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 12D4CC86C3A8079687A9264897BF21AE /* React-RCTBlob-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FEA2D7DD4F9EE8AB4268EFDB45160CA /* React-RCTBlob-dummy.m */; }; + 12DCB35EEDC7FBBFB487DF103A1AD782 /* cached-powers.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0A60DE85867BD2E700FDA5A43D39B0FB /* cached-powers.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 12E62CDF915591A120C7ADD2D739F0D6 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AA5A538A1B54AD8301E1293C4723FE75 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13176DE6F3D27044B3AFB6D3B39559B0 /* AsyncSignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 131A88C0DEA5D2B71A1E9B6477298CD7 /* RCTFPSGraph.m in Sources */ = {isa = PBXBuildFile; fileRef = B23CDA3E4E71F7954C36344264A810F1 /* RCTFPSGraph.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 131DE23662A26855F24BFB947AED9B6A /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = F990E906D46436268180123E34A1036E /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1369C77D96A919AE6BF3E4873B14C828 /* RCTScrollContentViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 877ECFDACF378928A46D14D8C7B8E960 /* RCTScrollContentViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 13742E192D1132D91BD868C341AFD4A3 /* ImmediateFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = ECBB4235756F94E94980BCFD6940F1D9 /* ImmediateFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 137BFA02B95AB9A57447A76967D682D9 /* React-RCTNetwork-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B69AA263092C9464139BBCB885B827F /* React-RCTNetwork-dummy.m */; }; + 137CD1E8F1FFE5C27359EE1BE6C5E92F /* RCTUIManagerObserverCoordinator.h in Headers */ = {isa = PBXBuildFile; fileRef = 1801238D726A60C4E37853D55857ECDC /* RCTUIManagerObserverCoordinator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 138AF5373DF0E0731FFAEB4025FF276E /* SanitizeAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 464FDF3170347A6380ED99A3B54B72FD /* SanitizeAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 13981AC26543B0D00FA5AD775D268CDD /* Collect.h in Headers */ = {isa = PBXBuildFile; fileRef = 9166FA9C5AC4407FF1904DA232B276C9 /* Collect.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 13BB30F688423AB6EE619CA1448CABC7 /* RNSScreenStack.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */; }; + 13E831D83D8FF9EB78DCB5AED2BDFC73 /* CocoaAsyncSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3526F33A5C1FE6966545B35D5A80B075 /* CocoaAsyncSocket-dummy.m */; }; + 1414089ED9BC32FD61DE9ECAC4730F38 /* Stdio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 18FBE6791D07DA917DB0352B0175182C /* Stdio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 147E33C218CD3626C37C59DD66D98B1B /* GTest.h in Headers */ = {isa = PBXBuildFile; fileRef = 5DE05D158994FBEBCAD230240A845761 /* GTest.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1482BA0BAD138D8C5A4A410F9FA7277C /* PTChannel.m in Sources */ = {isa = PBXBuildFile; fileRef = 6318B540C032DEE88E041320984B139F /* PTChannel.m */; }; + 149D6AD7BB7D86E12A8CC623096023B1 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BFB59819565B98810B2A812CF5B5BF1 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 14B12FF5EBC429876A962D073B4EB9D9 /* RCTMultiplicationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE3365B24231054495B94ACD5A4B42DB /* RCTMultiplicationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 14BD9E9D669BA5E9E7E742EEB126892E /* RCTScrollViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E74FC23869D125D7577CB7EC2561E27 /* RCTScrollViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1512D1CC1AAACE64E3A764D686D319AB /* HHWheelTimer-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = F0CDD419818374803CF96E73A980B2F5 /* HHWheelTimer-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15245274201474A5B379579AB0951FB2 /* RCTVibration.h in Headers */ = {isa = PBXBuildFile; fileRef = 5267CE5B1FB92B94F1B2E029F7927D89 /* RCTVibration.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15347C18DEEFE12C8E8BCABC6026AD82 /* AsyncGenerator.h in Headers */ = {isa = PBXBuildFile; fileRef = 23C6F28100485590C5472E05F7C6B2DB /* AsyncGenerator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1586831F3A7882C0E8F8788C8224B8A6 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F143A1D7764D57EE6E586A375AFCAD8 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 158CCDA59CE536CD3B95C736052245A6 /* RNGestureHandlerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 862182A82AF9A2F1C1B02C44F29FC2F7 /* RNGestureHandlerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 15B0EAEA2FF302B438CAED06876D3BF8 /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1605A45F1421D2A28AE9B83E32B8E459 /* RCTSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = D18D6CE4FA2371B783A24A6D170A1F0A /* RCTSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16218C92C89B5B6C5CEF2E9058DD5676 /* Sleeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5EF2BCDD2D4A277403E06E47BDC95BC8 /* Sleeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16936226440B6E4E1CF11E386A4CED64 /* FlowableObserveOnOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F8C1FD1EB29223453E8FE83D2C81A5BB /* FlowableObserveOnOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1699DBCA40D2B41676425E33CB72B92C /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = B538BEE8A70D1D42974F2C038D4B3791 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16C5C9C726EA751C916A02413742F95B /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F1E0DBB592D89926C037E6CB0608F9C5 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16D239DD91096961FAB224B7FABD7FC1 /* RCTSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F0FFC72DBE4D3A217D4BFE5C425FE1F /* RCTSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 16E79BF3EC81B72EDE9ED24EA8EA9095 /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C291AC38789803129D2385D0138DAE4 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 170672615D71E160339A203444607513 /* QuotientMultiSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC3B113381E904448C88D8A5902A30C /* QuotientMultiSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1731FC9097EFD49C8B68F149F2931EFE /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A19A57F23F928BDAE6F8C27DA422B84 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1733138F86870DEA3661A560A76194C4 /* ProgramOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 14EEA0AB0894ABEE9EA7A78AE9A428CE /* ProgramOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1742C10FAD6D8D5DA4779D85FCAB91B1 /* NSTextStorage+FontScaling.h in Headers */ = {isa = PBXBuildFile; fileRef = FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 174CD5AAE3A6021B042C944D54A96081 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = FBEC9D645678A174021EC4C1314B0061 /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 175137F0C576F75103110728B1081787 /* RCTVersion.m in Sources */ = {isa = PBXBuildFile; fileRef = C132A8BDE3F1C717560F9A1F10CB7F57 /* RCTVersion.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 17583DF540FCC855CFEA6916DF299DC0 /* ResumeIdentificationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17DF278B17D1E0B2CBF510E95DA653BB /* ResumeIdentificationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 175F9061C18C0C00329BD9AA016DCB38 /* RCTJavaScriptExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7764B47AB1420C405C2040171A4644D7 /* RCTJavaScriptExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 176198BB179A5F1E098756D59210A5E2 /* BlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BCF920942105D59CBDF8AC26AF11EE81 /* BlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1763235EA2EF68C7344DE4DD9CA12F9C /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = F075A4F39EBA3044CBC9451FEE99B5AE /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1793B48859D6219F84E66C10F1571C1E /* TimedDrivableExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4E275EB8CC6871EF73E6E102545EE282 /* TimedDrivableExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 17BEA13019480091FDEC0F76318B16E1 /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C075E8192976E1ABF248A5E8A9549A /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B49023BC83906B7A3718EFA943B9366 /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 17C70693886A1290C509BCAB33ABEDA4 /* RCTHTTPRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 918252241A8D5BDE2E8702BB6C35F59F /* RCTHTTPRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 180539BC4E99A7D986A68B97BCD44B6C /* RCTPointerEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C59FB226B4F6BC31453972C704A9FF6 /* RCTPointerEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 182CF10C6B092DA3011E738AB2104C9D /* RCTClipboard.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8D53B5AEE7DC4CEE6614EE9B4F76BF34 /* RCTClipboard.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 182D91220AC55CA4AFCA336CF13B327E /* RCTSpringAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = C1FFFB9DF9F4DBF89A4C23C10661FC7B /* RCTSpringAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1839F50BDF7C321E850FB8284337CC02 /* EDFThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 187638CB6BDD7413C101FC0933D8C72C /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 580E0CF224D3BFE56D2AEDDF929091AB /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1893D155C76C79CAD22188EE137DA1CB /* AsyncUDPSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 71D841FB6ED6ACE38B3EEC6989971C39 /* AsyncUDPSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18A46EA146AD40EC977EBDBC1916550A /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 67FDA11B031E280F1B2C859430748E43 /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18D52ED637B30DA90AE271879B27358F /* evconfig-private.h in Headers */ = {isa = PBXBuildFile; fileRef = 44FD325C463FF44B34CCDDF2574BD0F5 /* evconfig-private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18EAB88805DA858BCD7CA53E4E47AB05 /* Atomic.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FFFEE304D3D9BCAC368FE71ACC88C3E /* Atomic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 18F792D7347A6B01FA4669F3101B1A35 /* IOThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 689EF50BA35FB0724569378C2E0A1729 /* IOThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 191515F44BA643C05D8AA63215D8586D /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 70C14D23C3F31C56389256B567168050 /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1916B46A9FADF7391F032CBEA7EA458A /* Merge-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F8907EDA3BFD3370864303D8879F2A6 /* Merge-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 19313C225B4F376798DE91EDABAA2287 /* PasswordInFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B7FC8CE6A42F82E98D59CA2846F9FD8B /* PasswordInFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1939C74BB1DDE1E8030A4E5DE73C26FB /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A4AE4515287627AF59945F17C98BA476 /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 19547C6B694C886F0B3E3C8591CFF5AA /* RCTVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B0BD5C62B585473E46A133282644A64 /* RCTVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 196AB1CF982ECE79C246EDE8D8D318A1 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1726BD3CA6FD24E39EFC7E0963E31BC8 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 197D70906AF13E19B382CA0573112573 /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 199F172BE75D6E07E532072095FAA552 /* FiberIOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F037B7DC082451C85B050990F4270C5E /* FiberIOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A11D0A3DE4A692FD7E14918441F1BEB /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF2C2C7E2C2606DDEC64FE1B0EA162E /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A29B8899A13FDAA932E4C89DB881DDC /* LogCategory.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53782EA8CD98118AE71D18C6A9DAD2 /* LogCategory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A3614AA59B63246A66CB36C558A8AE9 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A38D0574BF7FF01344141B127C038E8 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4947C32708D767B19961DA93E5ADA302 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A4E9B5EABFF8B9D16FB1419DF21C5EF /* event_tagging.c in Sources */ = {isa = PBXBuildFile; fileRef = 6F79EE77CF8C6A6393EC47355285B448 /* event_tagging.c */; }; + 1A6496134604040A454FEA502E106962 /* RCTPropsAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F05A4D19CDAB21C6C202E6DDDE55D70 /* RCTPropsAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1A6D518B2E55735527CEEBBD0C0C89EC /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 27716042DDC5A5116584BB0069AE8059 /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1A7289017F2035D262307784279E4128 /* FlipperKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 950B41F889B82A60A5887BD4EB9DF76D /* FlipperKit-dummy.m */; }; + 1A7CD406F3279E21547A2AD312BD4FC0 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C01053F7EE549C2744512EF64E00671 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1AF425BCF6172B35E3795733E1D50978 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C54E73C063031D845AF36CF81D2B89B9 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B08AF55874A014E415A81A8FA8784AD /* SemaphoreBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A18B432DBC48D1FA7AE8E139B4459CC /* SemaphoreBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B12A085872F7C84B68246968026A60C /* Flowables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1368120C8B255F21300142F40CC51AF0 /* Flowables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1B26906879719A0441BD87446CDC2394 /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0BD995A23EEDB8F1C1414109D8172EC2 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1B471D8C0C03FAA73B6FC11126424A64 /* FiberManager-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA567A1A4E232B3C2A7A9CD6A49CFED /* FiberManager-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B4995AFF6E944C9876A843BF3F1AAD8 /* Timeout-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B5ACFEA82D57335BBA3074C6D962482 /* Flowable.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E36E0266AA5E6F3FFD882C9150F0F1C /* Flowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B75A57DCEBC224777EAC823C19823E3 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C54AAE3C35B7A3282C19FCAFBAA1098 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B7725CCFB67EABA487C7C298A9DBF45 /* JSCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E519D49602CAEAC5F3BDA5098AB1A1F /* JSCRuntime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B807B8B8A62532AEFA5ECD2DC922ABB /* Combine-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B898AF1D98CD5E21FBD1E5A9319FF5F6 /* Combine-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1B98301A3B30F63F1536748916C34082 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 97664F7F97C1D7F1A40B14470F2E08B6 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BB8697E658C7E344856DEBE48792DE4 /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = 2852971F02F4CE14DCEA3FCC38E005E7 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BC0AB006291AD7DFD4124B3F177B595 /* SSLOptions.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 81F054842B32747CDF7EC5B4899D516F /* SSLOptions.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1BD95C30A9816214E35881DBAE29E2B9 /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C38FA84EE1A94A383A12EC9F3ABFECD /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1BD9AA87D702B8757474668EF43DE129 /* Core-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C4A513A3291B6FE19403CB64F563363 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0DEA47A745E8471511C02CFA277C2D1A /* format.cc */; }; + 1C652558F1C1EDDF945E3EC32DA064C8 /* SingleWriterFixedHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = B27EE8CD168BC543A49BFA25B71E8FC1 /* SingleWriterFixedHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1C7C62B8B1D0572E7AF366B79AACBB63 /* LogHandlerConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EB426A3692C95F2D45E8FED7305AC16 /* LogHandlerConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1C7EE0FC736259433B0C9BB5440AEA52 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3671788BCFAB3C0E329BB28599CB8873 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CDA54DDE47C03A1AE725123E22963F5 /* RNGestureHandlerRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = D88B1D0AA40CF57DBD5D482E6B7F0BD4 /* RNGestureHandlerRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1CE5D223CBBFE2018301E6342A900D4B /* RCTSurfaceRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 40BAF975A071BE1349CD3F33BFBFB014 /* RCTSurfaceRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1D326FFF8D6F65C18FDBA89671C1B3AC /* RCTScrollableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = FACFBECC1DE749B6343FC53AF6D209DA /* RCTScrollableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D5B87BD4F0DA8A3B450675291276CB6 /* RangeCommon.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4093C6C84BEFC50EBFCAEA946AAAF18E /* RangeCommon.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1D62BCC4F5C170E401864789E63BA104 /* Sse.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1D62FB701FBB4E81F6FFFF57A2393582 /* GtestHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E0F856D188C0799B426989B838775B /* GtestHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1D6F15873217829B53BBE34AE0F829B3 /* RCTProfile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1DD7C88B7E1A68EE82784E410FB87B30 /* RCTModuleData.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9799E005AA7D73AAD7A41BC415751D58 /* RCTModuleData.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 1DDA5A5341DABF37DAF6F8279FFA3BD1 /* RCTTypedModuleConstants.mm in Sources */ = {isa = PBXBuildFile; fileRef = 75472DD8C91F2EF6425A96337DED4F32 /* RCTTypedModuleConstants.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 1E08C9012D0F52CC8CBC44C33A136D3E /* ObserverManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41A33A5C65D23B5D31C09A9725FB5C92 /* ObserverManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E17E922623296D0095F5F05780AF51B /* AsyncSignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49005BB90BA88BA9B8D97B90B3D9F1A2 /* AsyncSignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1E2E9039DC3EAB0659DD96211ED7FCD6 /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = F6EE09B06F68846C9FC9E57B3187C415 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E63C00D17E6A3E4CB3B9DDC57A82ECB /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = CF3E5DB2B7D8BF00EC05CF151A2AA5E5 /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E916E50FCBA086A035A9B150B78E801 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07928AB04A273E40AD5114E2A1FF2545 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1E9227AA342ADB64D333694840EFF153 /* RCTTrackingAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = DE171B8D02DF186FB3C0033F82C04F82 /* RCTTrackingAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1EA17B644B3C61F3437F6918235AA015 /* Framer.h in Headers */ = {isa = PBXBuildFile; fileRef = 11C00C9B89B73381E0FE14920D40E13C /* Framer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1EC9CC03BE5C7AE2E8BD01A9445C1BD0 /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 9EEE0017410D6E235C5B609A4EA3F532 /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 1F0E885423ED0241EF41DF3AA10F34B4 /* RCTSurfaceRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CF306B8D4CDFB40C670DFF34E589AFF /* RCTSurfaceRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F44EF4DBFC1D98C22E2E24704081432 /* AsyncTimeout.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E4DB465D1938196B532680CDCAA0773 /* AsyncTimeout.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 1F4659119CCB582B58521C9464BE7746 /* WithCancellation.h in Headers */ = {isa = PBXBuildFile; fileRef = 84F476B1AAEFABF46F6A7E75BDED7FB8 /* WithCancellation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F4FFDFD1FD116B52649E70C574D68B1 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F6A701C76B69EE340BF416DF0F14CF7 /* AtomicHashMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 85AA7C9A9482D08BA6C96DE544E12088 /* AtomicHashMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F7B92A0BE00861976277DE3FA22DAB3 /* RCTReloadCommand.h in Headers */ = {isa = PBXBuildFile; fileRef = ABBB8BD5D0F704F0198C3358FA585BA9 /* RCTReloadCommand.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1F9F8ACDEC7A00F34E930527B1652DD5 /* RNCSafeAreaViewEdges.m in Sources */ = {isa = PBXBuildFile; fileRef = 7ACA88212EE11138DD6E0B8A90F45B16 /* RNCSafeAreaViewEdges.m */; }; + 1FD0C645774BABE39A710F9105576F0C /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 781E757B98D04CC76A1808D6A45D808F /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 1FFB2FBD6D24BF6F3E1F8DAA3075792F /* RCTAppearance.mm in Sources */ = {isa = PBXBuildFile; fileRef = 06E52299827A5A71C4951132FE05B53C /* RCTAppearance.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 1FFFA3B4A136951E784A23042390EE0E /* RNGestureHandlerButton.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E389890B28E568101A2243F3F8B9FA8 /* RNGestureHandlerButton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2019CB65540F470107E12AF2FF908292 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 205596977FD6B3508FC60A3BB137B6E7 /* Baton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 366FFCF70007C7D9091777211FD3CFFD /* Baton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2072542F6A712864E61535436B3B8AD4 /* ForEach.h in Headers */ = {isa = PBXBuildFile; fileRef = 8DB78F97FCDAB7A8E0C479C575730692 /* ForEach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2090209E9CE3B98599D4BB049355A63F /* GlobalExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CAF815308F027A9D85182CB728FB49AF /* GlobalExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 209F64CA4DECE0BFA336BEDDAF94BC5A /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 33D8A15C5FE085F02C97B8FF471B0031 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 20B5B9502F18EE6AB5BBE62F8A4377D0 /* VirtualEventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 20C17893945A1FB61A6580407AAFCDB4 /* RCTInputAccessoryView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5879CDFC34BAE8285CB8379001BAADEA /* RCTInputAccessoryView.m */; }; + 20EA9C10DD34B76F7F4D8F2674762448 /* GCDAsyncUdpSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 78797BDF3027757C4049CC30BCF9851D /* GCDAsyncUdpSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20EB0995CD8C69FB1D4D153441505550 /* Sleep.h in Headers */ = {isa = PBXBuildFile; fileRef = D6346EF7D7F9A86B75F74F6CEC9A0273 /* Sleep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20F4C0FE67CF410B1DE70F67B548CDD9 /* StringKeyedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 20FF39CCAC8F193E70A04A961E12B5BB /* SKBufferingPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = B3C6AB5563EA4717B179D8C2DD1470B7 /* SKBufferingPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 211B4B9F095ECAD34F93FB0429574E32 /* EventBaseAtomicNotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 628E921912621D5DE7133C3EC8DECAA0 /* EventBaseAtomicNotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21430D25363C0B89A6AFC0DA42F5A1E9 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = 8489E1BAE110DF19DBD0B6775C068666 /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 214F298CC3B8BB1EE7167E9F276DF4D7 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = FAA0A500136C6E7CC77AD66AE4E62E39 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 216C5FEAC4AE273EAE2F1B297BD3A98E /* RCTI18nManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = FF6E0D6B4EC10E2FD63DE51022B0B847 /* RCTI18nManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2181C3EA5E96EEF625AE03EE8FE8B476 /* Throughput.h in Headers */ = {isa = PBXBuildFile; fileRef = 595E4B37587954B324E595AEEA8ED2AF /* Throughput.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 218610C5AAC6383E7D04A9D4DAE023B4 /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 878FD6B98E602FF283F8FDC85CA5D4B2 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21A5D64FA1DDDC7B604B4A7E1A0E8D8A /* CppAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 889BB9B7777889944AAE4DA788CF6BFA /* CppAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21BB87FDCD0CA1673110DB07DA6E9592 /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AFEFCD21FF612FC8246B21ACA8D3887 /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21E057AAB996347248B41A314A66F467 /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 21FC16D69B02E1A34A1C54A5B7158D7C /* RCTGIFImageDecoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E824E92108769081C2755AC398F7AE0 /* RCTGIFImageDecoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 220BB6F6FD466BF27770C2B1DB6811D4 /* RCTSurfaceProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 9423CB753E1BE92B8AF67511094526E0 /* RCTSurfaceProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2212A54F9B623283A5512133BFC39646 /* ExecutionObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7B83CA7FE7EB07D352CE852E44D568 /* ExecutionObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 221A333D3E9E08886851BE6DDC7313AA /* RCTViewRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = A93E1C59137A70CC462B9A1DB1E1EBC4 /* RCTViewRegistry.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 229A2C647EA849252A8999D065DC2024 /* AsyncSocketException.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 22C93DC44CCF84C080854E5577EEDC94 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 76A75690F45D1B241C11F87CDA9C9099 /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 22D3261D5A02F0FBF525FB69C6A36B4F /* LogCategory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7734C145A8433DFD2C5F26CC4AE6FF71 /* LogCategory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 230619F381C5A1735E452BCA5B0B91B3 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4DB9385887A533499E2CB46D73DA06 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 231125BFB890C955ECF3246595C85333 /* RCTView.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E0A11D582E3B8F6C78849CFE3DD53FB /* RCTView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2390DFAD1DE953B6447A8889AAB34271 /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E155F2CBE477F86C7D3B59C50CE6E67 /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 239C060E55752BB419CAA6D8434EBF0B /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 23A73F0D0164F168BF0E04592C303C92 /* SKTouch.m in Sources */ = {isa = PBXBuildFile; fileRef = BA56E5D6DB8F6894D7BB0B1DC68F1746 /* SKTouch.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 23F4BB37A689BC83D238A31C54733214 /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = B80A19D25EBB4B72DF62BE8C9596AA5B /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 244F332605033A8A164973CBAA22BD8C /* RSocketStateMachine.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 799B4CF68E13A865E14534A09372DEE0 /* RSocketStateMachine.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2464B5B169296F28CB594830434D3CF9 /* NSDataBigString.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3278C9487CD4F52EA168F98AEF826670 /* NSDataBigString.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 247584700C0F31BD6EBA377D82D26F07 /* TLSDefinitions.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B5BA8727445A85103B20A484F6A9824 /* TLSDefinitions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 248860125DFEDCC382C743300C2254F1 /* KeepaliveTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24ABFA2616609CB1B788152A3CB5F10B /* ExceptionString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BDB0F7EC1AE9FF02B43376EF4DA6D03 /* ExceptionString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24B38A0C2327B1CBF5FA576F60FC7518 /* RSocketConnectionEvents.h in Headers */ = {isa = PBXBuildFile; fileRef = C691CB90FBC181EB582C709A3C557BD1 /* RSocketConnectionEvents.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24D325CF1F07ABD0E2E26E67370F06A0 /* GlobalExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B1C7C7242B6CF9AF441FB80B75CFD991 /* GlobalExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 24E592540B1BB4BE6B46BC4AE8EB5D34 /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 854C289F400B52009E3924695128D068 /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 24F7348BC38498A63089EA23D92C0DB0 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 250DB9CA1F07C7633A38F215FB4A4E86 /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 86EE347BAFF5A406827DB52341515260 /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 251EE8498C08AA226A09C6391DC1557E /* JSONSchema.h in Headers */ = {isa = PBXBuildFile; fileRef = DD5EF10C0EC05B0C0D2C9D33F9D75487 /* JSONSchema.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25226123E3D4CF8A5C1BA6A4EBE82A83 /* MallctlHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = C64B98EB1C60BAF911E1A7D56FAE7014 /* MallctlHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 254A0CCE26FF36AAF45721958A837DCD /* SKTapListener.h in Headers */ = {isa = PBXBuildFile; fileRef = E266AC3C3719B88CBD362AD8B97CAC13 /* SKTapListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2576F56A9F73AF9A8C3730C29857E131 /* RCTImageCache.m in Sources */ = {isa = PBXBuildFile; fileRef = B70FEA55F4F5E3689A95B30999735EFB /* RCTImageCache.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 258CC42E3A01848F5DA938F5F4DD235A /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = A5B7EF3EC85E42EDFD44CB89CBD5F7F2 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25C9CD17B3D6A7116F58DA6E6EEF67B9 /* FiberManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A4589E54333ECE035B0051A4AF6D9C0E /* FiberManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 25E883BD85A0CFAF403509317E5E5FEE /* RCTSurfaceHostingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A6C13B24FA95FFFA1BA0D73F0B2D1C6 /* RCTSurfaceHostingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 263B30FB870DD5D3B96E6FA3C036DB9C /* RCTImageCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 9157CD3C8C1F875F3DC66BB1ADC7D1E5 /* RCTImageCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 263C7D57AC964651643FAD279EEF3B09 /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 268F22FE38C4B8CDA1FBD493E08725C2 /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 90D4D96042AA9D396188A0CDCE9822F7 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26A71725176F24AF9F5AD7C013DCCFBD /* RCTConvert+CoreLocation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E8E7E29485BE254A58EA62510D7FE9C /* RCTConvert+CoreLocation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 26B96DE41FC3D0F17A43BCB7EC124440 /* AsyncTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 87AA342B3240EFEBB928D364720B57C4 /* AsyncTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 26D05D640C13BC839952CCC43149371B /* RCTAlertManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA8CD1171E5477FD570B4EACB6A6761 /* RCTAlertManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2713A5C98762C3DD8131CCFB33BC62CE /* React-jsiexecutor-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF22A2F0ADD667A8463B45A21C881DC3 /* React-jsiexecutor-dummy.m */; }; + 27211B1F374531557C5FA613A4C509E1 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 72B6D9980B03397EDA7BE8CF61FD57D9 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 272D37556F1081CC89443E015A89E3DE /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = EC4F260ED986EC764D4F2FA9FB9831C0 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 274B72428BF429FB71F5CB6ED565AB09 /* bufferevent_filter.c in Sources */ = {isa = PBXBuildFile; fileRef = 1BF1BB5D347FCAF9BAC7CA0348207DF2 /* bufferevent_filter.c */; }; + 27546DCCA2CB0FF94254B87C6D5A46C6 /* RCTNativeAnimatedModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 0069DD0204BA8E03F0D2EDBE3E80DCF4 /* RCTNativeAnimatedModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 275B75B10A4C0E6152A93ED5DB9DF819 /* RCTImageEditingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = B92697BD1F3C17CED3BAE77E797EDDB1 /* RCTImageEditingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 275E0594DDC049563B563A7B8B4273EB /* RCTRawTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 80AAD0E2466567EFC0DA9F03B84335FA /* RCTRawTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27647A4C22A8F2D8034DD6465D9B463F /* RCTDevMenu.mm in Sources */ = {isa = PBXBuildFile; fileRef = 244E1923F2E04531CF2F06357ECC0D7C /* RCTDevMenu.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 276783EA20100FBD0BAA9FF0DD99E3C4 /* Parallel.h in Headers */ = {isa = PBXBuildFile; fileRef = B66E9853B2AC064122BA26C986B1835A /* Parallel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 276F5B42E248D710D360D014FB077ED4 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C026A12D9EE44169BD5DB4F134A8B674 /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27908D1934D43A4EF3AB4F966BAA0970 /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 279149665868E1E15882471C736DD593 /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A6D5ABB0B88FA7420A6011553CB9904 /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27AC70FA5DB2067A03A9DBA86363A17D /* YGNodePrint.h in Headers */ = {isa = PBXBuildFile; fileRef = B74F1301584E0AE32C0EBD24F398A0D5 /* YGNodePrint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27BA0BC837A1DE8144D4D35592A9C69C /* RCTWebSocketExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0651B056FC760A403006F793B0E4C8CE /* RCTWebSocketExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 27C7968A768CB77DF237B82ECB7D0C1E /* SharedLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D7ADF09EF0D7A10170EBC74AA6A8088 /* SharedLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 27E801122DA8200CE496AEEF971B723E /* Stdlib.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4AE2818B14E3F5717FC8E1A16BE00F1F /* Stdlib.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 27FAC98A4369CCA897A5DF57D906AF4F /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 4052F78157C29D0CA5E3B1B98A2838EE /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2811D2D56ADA95441F30012631794E6E /* RCTScrollView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20A6577314AD266CE9069AFD9C8EA591 /* RCTScrollView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2813CE06D229DA5F09262FFC557E8B10 /* SKNetworkReporter.h in Headers */ = {isa = PBXBuildFile; fileRef = 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28259DB68F715E7D0559719C729C4B57 /* StringKeyedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 54EDE3EEE993AB385A79E553E5CDAE5B /* StringKeyedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2840E3E84E39CC821E38684115BD9E3D /* Generator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69ED4632DAA40A6870550843D525D887 /* Generator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2845596B0F0165049E01CAE4DB1B3629 /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = A662CC1CD539C07FDC0F72E802586581 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2849A9E900F461F96DF714769ACCF739 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 285642D53CDF70209EE98316407FAEEC /* DetachOnCancel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4534BE3ED9906C9B91D318D5BC943B1D /* DetachOnCancel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28A571A4AC3F235C1570153FA442F855 /* RCTDivisionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 894785670DD5D53AF1020B7B73B1F334 /* RCTDivisionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28B7533956CDC50C1EDA3929B75A4C97 /* MemoryIdler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A7C52E4E3C2B65505B09671B10E86AD /* MemoryIdler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 28F1F778F6ED998688E5F285FACFC9E5 /* BlockingWait.h in Headers */ = {isa = PBXBuildFile; fileRef = D19B626D80378A518582E83B94573772 /* BlockingWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28F649D9BCAE6AD08F71413DB266DDD7 /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 157B9C024231B4D5AA33E3E65081B675 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 28FC678DE6C9C5090FAAFB04FC9A434A /* Instructions.h in Headers */ = {isa = PBXBuildFile; fileRef = DC86FDE65694EC1882455BF21EC6433C /* Instructions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 292E6FC46037AC85A236B1A314492B36 /* raw_logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = 30168E14DC9AAD6A2CFD68A9E99F0D12 /* raw_logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 2930CAAEDD506BD11572FD3E07BF8E9C /* Dematerialize.h in Headers */ = {isa = PBXBuildFile; fileRef = 1804326195F0775552E247AC3FDC4144 /* Dematerialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2935FAB42139FFA016E99618987C0C49 /* RCTImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 294A7CC55583475C8B2F0D28DB71C2D7 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A355E139E1A7D027E79E30047A0F232 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 297D8197D7874F749893C37B0D822813 /* RCTDevLoadingViewSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C840741219E01A76C26374B681E57C3 /* RCTDevLoadingViewSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 297DDE56225EF0F8664E4F1A43C22B5C /* RCTSurfaceView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F64F5788D89CB3AA8B35F54FF8B4F0D /* RCTSurfaceView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29AD77CAB78713CF09EA28B19D7AA8B6 /* ThriftStreamShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 29C290BDF4EBEE54784BDA7FCA99F51F /* RCTShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 29FC64D8E278C5E270476561852AD5D4 /* FlipperResponderImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 71A26503DA5D2A7AEE41B51B9DBC0F51 /* FlipperResponderImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A16AF092C51B81CED6CABA24389E7E0 /* SocketAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FBA7CAA1FE61D77E8EFA7AC4EC5C5A7 /* SocketAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2A210FC1B5D31AF0BE7731B96D7B22CA /* BatchSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = 8905BE9DFE104C70D5BC5DE32EEEB2EB /* BatchSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A24DEFC5AED63EB335BE6179807A1D2 /* jsi-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D9C8D1144AC1305911BE1C479C8634C /* jsi-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2D96AAC73E98AF11A12ADC33CE73FE /* YGFloatOptional.h in Headers */ = {isa = PBXBuildFile; fileRef = B2F1EBD0A7C6D70C23AB3F7DC4BD8E11 /* YGFloatOptional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A2EAC5CB8B44EF197EA94E3AB48759A /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B55DB9D1C484E0803CA8A3DDF5F92D8C /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2A76CB2C533F850741C0B993B715AACF /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B46EE3E25940AC908C66811A34A1667 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2A82D81D4FB6F53E062788C24403B2C0 /* StreamFragmentAccumulator.h in Headers */ = {isa = PBXBuildFile; fileRef = 63BD0191677E7EFDEEB3EA5A58071B92 /* StreamFragmentAccumulator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AA5CDA41D1C29657398D4C53327D5CA /* RCTConstants.m in Sources */ = {isa = PBXBuildFile; fileRef = 960F396533C585E6DBD0C070374F324F /* RCTConstants.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2AC440E274C9C8B24812B35DB4212CA2 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 325707970240FB975CE1DAA9DE525C8B /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AD59E5508F200D07A67322991351D67 /* YogaKit-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 72086FCF0DC64B39CA97D5546DAB8DE0 /* YogaKit-dummy.m */; }; + 2AD924D96AB313F7A8D1EABD531C68C4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B99187B73DF6EABC4E78A13B2AE63085 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2AE2E320B2A31DD006975563B565B84E /* RCTModalHostViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C4B99335F2061A076134AA376D6DCF5 /* RCTModalHostViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2B0A7F0AC6868333380968CC7B8F70F9 /* NativeToJsBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 65765772B0AD5D372F437C4965338AD0 /* NativeToJsBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B7057E78E81C05603F61A7AA1F7144C /* Benchmark.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D27A09EA203EEA3BEA25615A05C56F64 /* Benchmark.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2B7324798284128DA828B203821F301A /* ConnectionContextStore.h in Headers */ = {isa = PBXBuildFile; fileRef = 97369C228EF8B5C99986F892910F3704 /* ConnectionContextStore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B745A142C08920E15D6FCD6FFBDA8DD /* TestUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B8556B9B4496FBAD8CA587401863ED8E /* TestUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2B888A5F578DE6E85B7EC3405B65BD0F /* GlobalShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68F9095BC49613AB556508B230A337A2 /* GlobalShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2BABFE56F5359DB2480A3CD61CFC84FB /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1936D1DADA0B629DCEAA104A755C21 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2BBFC8567EF3B48E23353B86BAEDD929 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C043C3A132DF0D7EEFC6ABC13856F08 /* UIColor+SKSonarValueCoder.h in Headers */ = {isa = PBXBuildFile; fileRef = 461B0B1222717797D36C29B289276FC7 /* UIColor+SKSonarValueCoder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C0E007C286FFB06B471F94B2E8FBF17 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = C37C27769CBF43FA4312422AE2153629 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C1701D3A9E1E79D7A9379AC171CD37C /* Executor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C2C6B2BE027A947982434926155E455 /* MemoryMapping.h in Headers */ = {isa = PBXBuildFile; fileRef = 35C11B0C69CD8E1FDD11D079C547CF28 /* MemoryMapping.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C3FB1E7A7D960BAA78714930BF315E7 /* EnableSharedFromThis.h in Headers */ = {isa = PBXBuildFile; fileRef = E9189D2AB1E78F078E3503A7E984BDB6 /* EnableSharedFromThis.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C424D586C13EC51C1B2E75A178D6D5D /* RNSound.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F025EC6F86394F982C91997A5E9370B /* RNSound.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C4F53A87C2FBDF417C94F78CE82AB81 /* ObserverManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0B16721598F802B670D582E0E7B8BF39 /* ObserverManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2C7F159BAB483D483D0F2980420D8598 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 69DACE4D331C1E6741C0E56F0792AFE5 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2C80C1EFB9F9033A7B3501A2A0E228FA /* Instance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 2C979D07B693C7312ED14D446E28AEC3 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CC383E9C60F089D384AA98F18F6BF1E /* IOBuf.h in Headers */ = {isa = PBXBuildFile; fileRef = 86A646D8A12D12AD680632318AE2FE7E /* IOBuf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CC576353EFCA3AB5B61E69B711F0FC3 /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CDBCC0664BE6EC6D372E85C9EA504382 /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2CE29EEC6D4CA4BAEB589AED54CC3EAB /* Pods-PocketTorah-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 973970D34D7DB6437D971771A1373226 /* Pods-PocketTorah-dummy.m */; }; + 2CECFA844B302ABED92F1889FFBB1BE5 /* SysTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 602D5CC6712247731B817BE5150A6B1B /* SysTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2D19DEBF1BC07CABE382A73764A7B41B /* ThreadName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1886372F83458FE1F8BF449827D7D8BA /* ThreadName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2D95D3F50D16DC33CE2A320673D60CAE /* glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 1B6C504F5E22C71819165243C2772F9C /* glog-dummy.m */; }; + 2DC145BA4993080003A3839358FBE392 /* RCTJSInvokerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = AEB2F11A092575CF8B3294D4E117F221 /* RCTJSInvokerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E80B8C76D893A4EB3192FED183BD6A1 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 051CAA59AFB24C274B04806FCD688CEA /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E82B7E04F435DA8504E3D15C0079583 /* HardwareConcurrency.h in Headers */ = {isa = PBXBuildFile; fileRef = E5A8EC8E52EA0F89FF4B23E6ADDE5CEE /* HardwareConcurrency.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2E9CAC826E0CC9A192406F5FCA5E0F9F /* Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CC4DE7AD60DB810E17645405FE52F9C /* Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2ECB067495CA23329F7F65A4739193FC /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = 445514320E89119D3127BA5CEC7FB7CE /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EE06B667F15654E6E8C07912C118B83 /* posix.h in Headers */ = {isa = PBXBuildFile; fileRef = F14509DF4B9E58995AA268FEE8C4DB31 /* posix.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2EED2F50AD7F4B8697FC0C2E37F0A2A2 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = D12F3348AC20866A7315438EDB958EE5 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F033075A85210D3A9566E6FC44F9412 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 68CCFA53E2429B053FFF182CAAEA95D3 /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F2D30392820849FF90B85E61692FE00 /* Elf-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 07E1AF399710B012BEEA86F4D62A64E5 /* Elf-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F469B822451DDDEAB711DF87295F84E /* GMock.h in Headers */ = {isa = PBXBuildFile; fileRef = C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F4E8191D1A2EC412E5BAA5D29151805 /* FiberManagerMap-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 64DA410E9CDEC6B0BC5598CD761717AC /* FiberManagerMap-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F621F4F9E903108781304D253963E42 /* RCTPackagerClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 2F9196D8D11152EB2F7146548B6E6250 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 17E51E807CE09FEC00030AEB10D23B4E /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 2FBC6C1764546D3AA0372D981E38088B /* RCTSourceCode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0680A502E2A17C3EF531E236F28F29C9 /* RCTSourceCode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 2FBF7DF8FB76D38DE56EFD778586D25C /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 33493909D2B8284DC667057A2F50F2C6 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 301585011500BEC3E892EC7D8FF55D97 /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 24E061AF6B8CC2B692F39BBBF26EEF4B /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 303BE7DBFC468D805C325E67E6CAD6CA /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304E0F005FA6ABAFA3F9996E4F0B48ED /* SSLContext.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F8BF52E536CD73241106E07095B9938 /* SSLContext.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 304F07C1B6520ED9B4E97400A9726222 /* RCTObjcExecutor.mm in Sources */ = {isa = PBXBuildFile; fileRef = F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 305F3C34AE97DA29607EE5266C4B6E75 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 306587CD37A696B2609AB6E7FDF25982 /* AsyncFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC66DA440F96FE6EDE7C48BE3C2E99E5 /* AsyncFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 30E708AF08775EE9F4FA414D953A270E /* RSocketStats.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6883BC5EB041B40DF7AB2C1130903FF3 /* RSocketStats.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 310A89EC8C67B881528778E8740FCE7D /* FutureSplitter.h in Headers */ = {isa = PBXBuildFile; fileRef = F30F8DFBD584C23306AA6609F39605CB /* FutureSplitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31499C1EA4108EA4D8F3F367EE9C8681 /* SetupResumeAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 141C21C4F6F654A50F5863C9A1BCA767 /* SetupResumeAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3150F3CF6B4511BF2DAA7E92B555C75F /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = A2E7D09E85167861A2431708E6A76E86 /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3152F26633B1B6F0536C0135F069CC04 /* RCTUIUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 867B6DC281720AB2B1F283E5BC82601A /* RCTUIUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31820BF389178EA6D522DFC5271E59C6 /* SingletonRelaxedCounter.h in Headers */ = {isa = PBXBuildFile; fileRef = 68E41F3DA37DD4BF0C96EDDD94052246 /* SingletonRelaxedCounter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31B0B8A2426403CA7510F17E1F1C3910 /* RNLongPressHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 022862357339CA4479806B31F4C51E7C /* RNLongPressHandler.m */; }; + 31EB76A2D3A7A56A8ABF850F75FBF401 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 01BE50BBC1E923242A75AB0E64A0CC0B /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 31FC30FF8E70120E6504283E5C97B2B2 /* SKSwizzle.h in Headers */ = {isa = PBXBuildFile; fileRef = C3F4218D1CD5CC18780205CEE3BA7AD2 /* SKSwizzle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32027977F4649F7D873684F7BF3FF33E /* Preprocessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EFC89ACF531EFE450DE1E0D59812199 /* Preprocessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3223CB08A7CD0BD3C0A0AC3AA390895E /* Yoga-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 28F8696B0B456E0580AFDF83FCF58170 /* Yoga-dummy.m */; }; + 3224FE9B79EBEACFA2649045A63E15C8 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = A7FB3829703ABB34103D3FABA89F1AF6 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3235E517AE279643C16E1EC13564EFA5 /* ScheduledFrameTransport.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FD0A4ED7EE1798A13A53A6943A56B909 /* ScheduledFrameTransport.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 327F2F7F16ED76A878F94EB089756590 /* RCTSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = F61E665EFB85E7D96C1EF2D9263D2D36 /* RCTSafeAreaViewLocalData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 328410B7378CC2B224A2C7609F0976A2 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFB2EFAB2A286C8F568F5EB9CA66446 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 329B76DA62E68378EDC77D50AED9E3AC /* RCTNativeAnimatedNodesManager.h in Headers */ = {isa = PBXBuildFile; fileRef = FD1256AB077755D17ADE423EA654F443 /* RCTNativeAnimatedNodesManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 32CBA9E246CEE84C545F415C814C8C52 /* DuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C1DDFC6A65AA312B46202C901CF3898 /* DuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3316C7330C8D34AF5814C2CEBE6FAA5D /* FunctionScheduler.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C4FBE679DA69BB2666679AE9F5BF878 /* FunctionScheduler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 333B11ADCF268A98E0FD8021C907BF16 /* RCTUIImageViewAnimated.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C243CCA34A09C91C11935C8F80109B /* RCTUIImageViewAnimated.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33630874389B4589F1B12F00BCDDA739 /* RangeSse42.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3F7735F85712E9A2351AD62E54893490 /* RangeSse42.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 338D89D7CD023AE8A0A46A237016B81D /* RCTEventEmitter.m in Sources */ = {isa = PBXBuildFile; fileRef = DB294E2B4BCB25CFE7FF51274D924314 /* RCTEventEmitter.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 33C3777A2A060C2C948A70798DE11627 /* RCTDecayAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 33CB6D1A6FFD74EE5306EA619B457B33 /* SoftRealTimeExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 931B739392BCB5D3049F9E99FA671F16 /* SoftRealTimeExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33D3AE789B357D5BDA6B1B2B1FE656C5 /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 33E9CFA3F99A30EBED1FF3696C2ADA9F /* RNSSearchBar.m in Sources */ = {isa = PBXBuildFile; fileRef = D855472E6601C53B4F3F3CCD94957662 /* RNSSearchBar.m */; }; + 340ACF576D8400DF319B5AF1FEA93A6F /* FLEXUtility.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9E356CBCF41D667DFC32A24D5E814D0 /* FLEXUtility.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 342703A54CACC1F09DDC72E2CD400A05 /* TurboModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2BC5D02F59A8A5C2B0135859140E3A54 /* TurboModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 34313163D15E33FE7C6C67B84B60C94D /* IOBufQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AF68F65545CD4127830A13FA089D047E /* IOBufQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3438843BC3ADCE0990DA07FA428DE1FF /* RCTConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 17678821E8D1C5B61D85D9102F9C6689 /* RCTConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 344450656F0B35098C1B045F43D0E694 /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 962C45277B202FC96D30DACEAF25C449 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346155E266204CCA2FE111FB465EFC76 /* SSLOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C62C69D900C6375D9A3FD2B9C4F5C5 /* SSLOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346B75C07DF1CC1D613C551849DA73D8 /* RCTBlobManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1BA19783C0D6BA9DA388AE581EFA8349 /* RCTBlobManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 346D7384CD354479F547621127F30338 /* ShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E5C116AE2D8566BA639936332A2E0448 /* ShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 346D74866E6C80A8C968B080277B64AA /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = 82F9724FF980809D272A854257AB8334 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 34B1E7A745E1B1EA64BB23C107562ACD /* Payload.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FEE8A068F5FE1D1364C8461DCA3A8AE /* Payload.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 34DB330FC6315045AD8B7B3E82C90095 /* SKStateUpdateCPPWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3509001180770289DEC7D86A8DF3C743 /* RSocketServerState.h in Headers */ = {isa = PBXBuildFile; fileRef = 72DA7D9016EF40B14DA1EF5F3A8E36B0 /* RSocketServerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 351524A6CD7078E7F0A79A6816787E05 /* RCTSwitch.h in Headers */ = {isa = PBXBuildFile; fileRef = 47DB91AA2FFCB6B6FDD1D24F238BEE1D /* RCTSwitch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35194D4D0BB5AA9751766D5120C94B6A /* utilities.cc in Sources */ = {isa = PBXBuildFile; fileRef = 03715D477780A22E5642C6321116808E /* utilities.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 351C4A4254A440FD48649AC0EEEDFCDF /* AtomicSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 95BF1D7D179890BEC3EB3B5D5CD41A50 /* AtomicSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3544C88ED8A09EFB50552D1B580DC6D9 /* kqueue.c in Sources */ = {isa = PBXBuildFile; fileRef = 69840657BB147FACE1051D29CFA3B3EE /* kqueue.c */; }; + 355A2C8B6440CE5CBF7DD671DC575F3F /* TimeoutManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C1BFE462894F7A3DC3C2C05A8834A52 /* TimeoutManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 357E53A1E216DF4B1D72995579804A79 /* StreamRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 064F88E0C314D7917C3AC455B6B16D41 /* StreamRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3580704A1653A7F5F6CEB4825DF41F4E /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = B72C6DF753E72643E4ED36FD225C9249 /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35A05603712AB5732215D24E39CD121B /* RCTInputAccessoryViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = D2E8E69144CB6045D445F3EE89032F8A /* RCTInputAccessoryViewManager.m */; }; + 35B3AF8C03A090820DFB060B6032417E /* PublisherBase.h in Headers */ = {isa = PBXBuildFile; fileRef = CE9F9B4BE928B32046D7D1FB7C7D3758 /* PublisherBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 35C8F7FAEE4E8D8C12B6AE40593005C1 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 593716EB42320D497992F8C146A784EB /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3604D8EDA5D5FD29BC821B078A66FAE2 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FA99760E4362947E2B3E095B2A88E48 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3608A8FB04B1ED539D0F2AD4430607F9 /* RCTCxxUtils.mm in Sources */ = {isa = PBXBuildFile; fileRef = 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 36097BA298469C834436FE5E2B0D40A4 /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 413491E026B8C93AAB1EA9353EF94359 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 360E95A99FA56A6C1E878C8AC56659A1 /* RCTModuleMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 10BF4C462114E425320B025587E34F91 /* RCTModuleMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3627C0BF10A3EE91C41A0EFEE684F38A /* RCTVibration.mm in Sources */ = {isa = PBXBuildFile; fileRef = 490A3291779D204766761E2636D37C08 /* RCTVibration.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3629C504D86CF293D390A1FBD235D76A /* RCTAsyncLocalStorage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 365202B24670B360C782D9A2DDC15813 /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = DC33B707A7E5983231D384A99DDD8425 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 365C73651984DEA1C22FE5DBA2751F61 /* EventCount.h in Headers */ = {isa = PBXBuildFile; fileRef = D7FFAF78372A6B8AA0ED3B06253386FD /* EventCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 366EF256A4109CEFFA4415F0AE94DA74 /* StaticSingletonManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D3A2DAC3265254504373CB84CF33439F /* StaticSingletonManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 36A7E3CCAB96A58BEDD8E37ACFB8FF55 /* Downloader.m in Sources */ = {isa = PBXBuildFile; fileRef = C7EE279B79CE8743DE6ED13BD8CDD6B9 /* Downloader.m */; }; + 36AAF4AEFBF6E9983F55FE0447B5D79C /* Log.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00E2DFDE250675BDE9F7579396C1EBE6 /* Log.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 36B6FC7A43136E9E399BF84DFDA36C9D /* RCTConvertHelpers.mm in Sources */ = {isa = PBXBuildFile; fileRef = 1DF8DDE95BA05E3BFBE94AAFFAA20912 /* RCTConvertHelpers.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32"; }; }; + 36F8B603E04DEDC9911BF74AE351721E /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 958E51FEBD04D1E19D9FF4D6E74DBD95 /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 371041FB190BC1E550A855844426A3CF /* ColdResumeHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 894AABC43BB995A4FCBAE713CAC89AB8 /* ColdResumeHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3738E3C4BB98EE830082E772A4DF63C7 /* RNSScreenStackHeaderConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F45FD38E7D63130DDBC450CEE794475 /* RNSScreenStackHeaderConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 373DFF0F20217A98C3CCA44CEB4A1D58 /* RCTDataRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 12AEB3A52CB763C838A0BBA4AECFF691 /* RCTDataRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 379BD47C42EC697D6813FB39D80DF2C5 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 37CC173A36CC27C7C1E7AE6581B7E27D /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = D1A0F653D0FE36182CC0C01DC0BCCC92 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 38B0D57173EF76C55389FF07529CE19D /* Future.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 717FB48C565A515F9CE9BF60592582C7 /* Future.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 38D6C57E12730A34E8AC2322FBA4DA1D /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0EE74B53CD88DB04E32EDE53C5868E59 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 390AEB2A8F2BC79CCB7E5DBFF3D55613 /* EventBaseAtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3A8B5840B5EA1904FAEC3A4F9B4ADE0B /* EventBaseAtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3910C7F201E0A8A73C962CE8958BC637 /* BitVectorCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B820C2B1A4A9E8F5AF779E25C84401B /* BitVectorCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39275B865370B5D39883587255DE397E /* RCTMultipartStreamReader.m in Sources */ = {isa = PBXBuildFile; fileRef = CEB1AB956B6E9607F4FC3A309A4496D2 /* RCTMultipartStreamReader.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3931A59FB3A5F3521018080D24505032 /* RCTActivityIndicatorViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A1706057CB8DEE69C738EE8165697D41 /* RCTActivityIndicatorViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39B9FE327E351758F47377B2D51C5D75 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = BF97552DDEFB806ED6C339BFAB7DFB27 /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 39C68D54F76C49812C8E80FBF56FA552 /* SymbolizedFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D36EC0E44C227073407DA80EEFF390 /* SymbolizedFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A13D258451A227895A9B5CF52C352CD /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A606D9CDFBC562DDF8E7B15B98B1F8A /* RCTInspectorDevServerHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FF68B42A419EE32F9038DA618609C22 /* RCTInspectorDevServerHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3A93118AE02B5DFEACBB5BCC8720F6A1 /* ScheduledFrameProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 96EC4E5393EFC87DE5AC654EFB27F229 /* ScheduledFrameProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3A9A3B61FEDC845A66206B1028457B88 /* RCTRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5FD96024252EA663F83D9DED1502C297 /* RCTRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3AB303EFDD25B01002536EC2307BB014 /* RCTSurfaceRootShadowViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 1268A95F1A58F3EA1AC85789DB2A6077 /* RCTSurfaceRootShadowViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AB8C842489A40AF221659CE80FA61C3 /* CodingDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 25B45BBEF43A6C81D322DA8E7AC16BE0 /* CodingDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AC7CD705624379154D54A047AD00CD9 /* FKUserDefaultsSwizzleUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = A6FD764B26458B45F7F021B264C7F2C2 /* FKUserDefaultsSwizzleUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3AD20DDC62AB5DB62E80CF48C5CACE3A /* RCTActionSheetManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BF4161DA62BFD3FC59C6536E5160718 /* RCTActionSheetManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3B069609F9D6EA452BF2F6AFF6A474C2 /* LogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B1EBA02D29105DC27E29EA23FFE5967 /* LogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B23D8B65B97C3B2701027C27C9F9E09 /* RangeCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = E11668202A90500738C421568FB750E8 /* RangeCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B75D7ACC177AA3064FB4AD3C7CD8A14 /* TestSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3B76A31C7ADD7B160BB5DFD16616D012 /* RCTSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 81D832E5E8D443151EAA0DE4FD3C1DFA /* RCTSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BC77CEB9109D27C3922C58D1C7220A8 /* FlowableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BCDAE414F198014ACC6F9549FD48F11 /* Yoga-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D8B3AF17CF9AA869F048927EE662945 /* Yoga-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BDA106C1DC5ED3DE602EAC2DDFFD488 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A048F7D17EB1989732AB5FEDB9313B3D /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3BE0EC7846512A2FCE30FB8FCD3CB92F /* ostream.h in Headers */ = {isa = PBXBuildFile; fileRef = A31DD266D8B42CAB4C022357A01052BF /* ostream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C07687284E5E7CFE4CEFEA3860B63F7 /* RequestResponseResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4BC292CCBB55CC4C2785F6536F12A618 /* RequestResponseResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C41FCAB8324AD83150189689799A444 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AA41BFCD0B340AB539A6F8C5FBFD4B9 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C64AC3915BF4239FA180950775EF977 /* minheap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C9FCBCC7B9B72F7599877B664821A082 /* minheap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3C6CB9863D19AC83A2AD49E2E76F6D23 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 8306314B34EEF69CE10AD1AEABE37098 /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CB9EBF6A924DBB784AEB0163D5364B7 /* RCTSettingsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3DFA7D8249616A3DF3391AAEB63EB931 /* RCTSettingsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 3CD62EB3B8D6B2428D02FA7B7B14AD10 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B043EA5D7F817A8FF3C7D7BAAB1FEAE /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3CF7829A6329DA0977B8FE83E8CA7090 /* EventBaseManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3CFCA081C6703D21765E2047315EF769 /* RCTReconnectingWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F3E7EE5D64F3F7344A495626BF10CD3 /* RCTReconnectingWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D17F030EB456D780A7FC6F9E15FB2FA /* ScheduledSingleSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = B6109028D4C572FC3B55F0A694823E87 /* ScheduledSingleSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D1C3DAC0E470C62D452B354A499A23F /* InlineExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D39DA88F3C78B7E348E3FE9D9071EAB /* event.c in Sources */ = {isa = PBXBuildFile; fileRef = C94EA59E573031E41549A2EC098AAF18 /* event.c */; }; + 3D420B0D42066CD7A48F79D20784BB7B /* RNGestureHandlerButton.m in Sources */ = {isa = PBXBuildFile; fileRef = D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */; }; + 3D83EAB973856C624AFCA8D2822FB8DC /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = 786973C9E14B615CBA8E35021827B2A3 /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D86EA04B64DADE246A9DAAD03D66ECF /* InitWeak.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DC9A15CE5DF71950B278AD4A46F01596 /* InitWeak.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3D8F041EF8CF88973E45E483C2378148 /* LogConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = FC5D3C8AA1A111D203B27806D8653517 /* LogConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3D9D6C302C53D1D9C5678E7B4363DCC7 /* ScopedTraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = DB2701A03A7C036E95A93AB9E54CBE55 /* ScopedTraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DB364ADB2D5D80C923DC3CDF0F89631 /* AsyncLogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 3DDE936FA21D97DEDF1C966CBFA62D4B /* AsyncLogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DBEC8CB656C31E96BF8DA530A125656 /* StackTraceUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3DEFAD95D4FBA866BD256A8970D4605E /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = B1A2A52AABB17FF2878DC4117F6AF504 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E0A9E9F589BD5CFAE3C0D8FB0726361 /* BatchSemaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A54E33083B550D684115185C80AD6E74 /* BatchSemaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3E4D3F6CD4478BA0921D1759B26E12D1 /* UIColor+SKSonarValueCoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6196398EF9A93DD0FC638C56649AEA01 /* UIColor+SKSonarValueCoder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 3E623000FD2BC9A9C00D9E9525F4D378 /* Lock.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA650AF1434BDC6DD4FD5FE7F7354B7 /* Lock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E7E607F2E26FA24BB5D5ECE2BC486B0 /* BoostContextCompatibility.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DEFE733B947CC07895815AE43D23205 /* BoostContextCompatibility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3E812B4851E7172D798843C802124F17 /* JSExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = B36FE68DE5BED274FB7808B57D10EF25 /* JSExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EC8263F6676D0C02354EE31F27DFA32 /* Retrying.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7AFD0430909142721151DD04A3B50D /* Retrying.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3EE0AC94A9E8946D4BE19F2E73DFE86B /* Request.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2E7C48C67B4C4F6D82B4DA17A10FA244 /* Request.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 3EE176997BD9606EB674EA1C232DD903 /* RCTSliderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 91A7A9527213421D4D056A41BCFEADAD /* RCTSliderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F1F27243F9EE106AC612044924DCC29 /* React-RCTSettings-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DF344F8BF0C107C69163296F07774D8 /* React-RCTSettings-dummy.m */; }; + 3F301EC4D23B99774F8B609260697E94 /* RCTJavaScriptLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = 30F7CAFBF7D62857776F202DB7294DE0 /* RCTJavaScriptLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 3F4D809D9197F4031E16CFD5239AB24D /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 40795F4ADE71EC85D96D6B31ED24DB7D /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F791B792C8ACF974E014F3774FC0981 /* StandardLogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = F699D4943F4D33279261AFFF62E2E7EB /* StandardLogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F92D4699A5206FB07817A27AE2295F0 /* CoreModulesPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 83060F1CF7AADD6EB245B52425F97843 /* CoreModulesPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F97FB1FE091E69231DC37EBC12BC445 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = 69D72BAF3C9E58367DA704C2DE7DCEF3 /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3F99E5E18AD21635ED67DDCE503A92B1 /* SKDescriptorMapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 32998D68A8950B660EB126837DC74092 /* SKDescriptorMapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 3F9C1F953C77D6426C50DC644802332C /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F2C40D89901976811E234C0C36725D7 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 3FD2A4631EFB38670095694C73A7B450 /* NativeModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 698BF75FBD0B786A52A90D043F3D80CB /* NativeModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 400D403AD0D454298C48EBD8DFB872BB /* TimedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 400F57C721015F8DF10CA2AB32D98590 /* StandardLogHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 9723982C5D98B238E801F4933229C266 /* StandardLogHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40124D076681E0C70B8D26FDA722E14B /* RSocketServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D019A9C6128BDFE922FB8B6A1D0E08F /* RSocketServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 403510D0677A23DB66C1393387CBAA00 /* SKApplicationDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 12C708017FD56D68A58BCB9AC2983F8B /* SKApplicationDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 405D548C1E89F6CDA759C596CD4F929E /* RCTErrorCustomizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCD04770CA426767A5C2AC77537D603 /* RCTErrorCustomizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40742A2E0FC7D64350A13D5CAED03E91 /* Fcntl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C881044F22CAA58C6A71C46E7BB21C /* Fcntl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 40B12306208FBFA5F3B46523744E6F33 /* demangle.cc in Sources */ = {isa = PBXBuildFile; fileRef = 3AEE2FB82C802859A02D994170AA480C /* demangle.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 40BACADD74463D46C45D071CBA63A65A /* RSocketStateMachine.h in Headers */ = {isa = PBXBuildFile; fileRef = 9690A3FA35BE5F86BDF2F083E7C1BC23 /* RSocketStateMachine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 40DFA28207EF287C032E04B3286DB138 /* RCTActionSheetManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AF21F56787EC8FC86F0D709BC3B6E791 /* RCTActionSheetManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4100A50B6E06B7E7371F41E6C72CED11 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = CF9AF138139744F4BF0A53A7CB191460 /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41249B67F3D6CBFC045292200FE38FD0 /* SocketOptionMap.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E2670B04C5B301D573A6EF48EDEEC493 /* SocketOptionMap.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 417947E9A1FB9420783CE01BD87C094E /* TcpConnectionAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 32668432E952FDB2FA69FBB37D87D377 /* TcpConnectionAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 41800F2D2976DB745F724C7B1535DC41 /* RCTStyleAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = F2104F98A24CF7204082B2E94E15F018 /* RCTStyleAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4189C79FC4DDBDC65E2FF140D9CCF495 /* RCTRefreshControl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CBBABCF47B45861387AFCD430239B40 /* RCTRefreshControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41B31958A77B52D7D986E35E582051F6 /* CertificateUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 30E668B49F2B1469C788E5F401AA1E97 /* CertificateUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 41DA0507458EEF4F307A8C26262CAF67 /* RCTNullability.h in Headers */ = {isa = PBXBuildFile; fileRef = 956D47CD098DE124F33FDE14254C2A3C /* RCTNullability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 420EE1BA63EDFEC4A2D266C924E17505 /* Fingerprint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23AA0F5D35CF155346A45FDB74934C03 /* Fingerprint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 42234362AE4CC385B64B274C9EE28D9D /* FmtCompile.h in Headers */ = {isa = PBXBuildFile; fileRef = 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 424DD917456BD0A6E6A5AEE5939BFFA9 /* SysMman.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E64D2816C07CBFA4529C90913884446F /* SysMman.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 427AB002C4F10399C5C3890236C4BA02 /* RCTDiffClampAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E018B141AAB76D59DFF9587E3C4B71A /* RCTDiffClampAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42850A19AD476C66B757EBF7C9C5B39B /* QuotientMultiSet-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E47AADB49E2969E4B6DFD72A845DA74 /* QuotientMultiSet-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42906F9BF11072E6A03E2082860BCB58 /* iocp-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 405DB7227BEA3EAE06BB6C0C581E2C65 /* iocp-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42C5E279DDFC4C648FD113947DE992EA /* RCTRedBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BB5023C2D4CAF3D17C27FB17CC0DA0F /* RCTRedBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 42E0C4B60C428A5F38D22962CF9574FB /* RNSScreenWindowTraits.m in Sources */ = {isa = PBXBuildFile; fileRef = 27F720FD7E6DE7B1758C66DC316F4F90 /* RNSScreenWindowTraits.m */; }; + 43444FF3336429288B35D2BA195114EE /* RCTConvert+Text.h in Headers */ = {isa = PBXBuildFile; fileRef = C9548F3AFA849D2CAA6BD3918E9498D1 /* RCTConvert+Text.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4372149D65B64897F2FCE6303747AD92 /* Future.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F23E23580E78D6A9C27340CD5041E30 /* Future.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43A0A0542786111FB55F167D23F3DE41 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 2111ABEC41FDA677AA0D6F159C78F4EC /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 43B4B6022A74CFCF8E244FF380C5E361 /* RCTTurboModuleManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 682F2CCDCEB404F366E11A021BAABA85 /* RCTTurboModuleManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 44322B4A360012839790F102DADFEA9A /* ExceptionString.h in Headers */ = {isa = PBXBuildFile; fileRef = C2A04D1BBC5C3902FE18C3EDEF929B25 /* ExceptionString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 445706F305B023065D4486CA9D9C3BFC /* ReentrantAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6B71B0C0E8149D9006C667D206325F08 /* ReentrantAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 446F4E31CA9C2274DA268CB000F14463 /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A890B3AE8FC8EC0511CCDA49A60D60DF /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 447234A214854B496D1F7F8D4F9FD6AF /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0E981ED29B5B67E990D16AB3350BD778 /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 447D02383CD5702A075EA7A1B6625FB9 /* RCTConvert+CoreLocation.m in Sources */ = {isa = PBXBuildFile; fileRef = B2FA298764D7B5E58F90898AAAB1321E /* RCTConvert+CoreLocation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 448652F0821C3075F4E42EE217050CF1 /* RCTComponentData.m in Sources */ = {isa = PBXBuildFile; fileRef = 280A056C513F9A54DC8C3BB641344732 /* RCTComponentData.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 44D6CAE7692518A3DAD6FB3D374FAFAA /* ManualTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7796029FCD0AE6B22925E8EFC55AEF2B /* ManualTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 44F84B59348482DD3473A51A1DEB4152 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 74BD0DF004099DDA6B2B60F0156305E0 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 450C64379008B86DAC01C2B3CACCC656 /* epolltable-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 34550A366A4C09A7136A457B195F95FB /* epolltable-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452B0D78166B063E0DDA1A6C3B797609 /* Select64.h in Headers */ = {isa = PBXBuildFile; fileRef = 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 452BBEEB7FE64221E3DA99533743E586 /* AddTasks-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A4434514A400F517C34B36D8E1A73E9E /* AddTasks-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 45763E413D3F93700574732BF2002F46 /* FileHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4597056662F42EE03859EC732603F9C8 /* RCTImageStoreManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9152C268CCF62E49334BBE047EFC39CA /* RCTImageStoreManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46029CCE3AD30E15F5856CC4DA02832D /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = F3463515B975A0F8730B0D7396545990 /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460EAF1CC9CCB37F63C2B8C3E517DC13 /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E06E9EDAD2A1E8210FCE7094861D815 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 460EC7939BD5E5B063AC6587893395F1 /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463DB7338EBC5FD5E2B051664496F1DA /* Pretty.h in Headers */ = {isa = PBXBuildFile; fileRef = ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 463EB179534E68A3E66C8C7096DAFCFF /* vlog_is_on.h in Headers */ = {isa = PBXBuildFile; fileRef = F1BFE175CE4F1F4C39499C6B070CAE03 /* vlog_is_on.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4678E3AF28B68D95C5DF80235BF83F07 /* TimedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = F86FD43AB5B62D875F08BFD5D46A0403 /* TimedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 468F3EE46E02418C1A4BF1C8A3B652B2 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 46CB1295A9F70CD12014FD564B932EA9 /* RCTAppState.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8C1C1359D7D875B44E7CF5F2281160F4 /* RCTAppState.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 46DB83F6EA3CDB193FA4FDCF8B23766B /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = D1BF3F3CB7B4E98A8CC239BBF3B78409 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471409AC9447C75C16F1C20D956A60B1 /* HazptrRec.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B23F370069301FF55814CAC881D12A5 /* HazptrRec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 471F2D6BBF674620C3126733E4F63405 /* RCTBackedTextInputViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 772B5F214FAFADB39771E4E877CCFD3A /* RCTBackedTextInputViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4744D51159AE0BD6EB09DCF250B12346 /* RCTAnimationType.h in Headers */ = {isa = PBXBuildFile; fileRef = 8555C0EA56871609F305237F8C2DE546 /* RCTAnimationType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 474A5823124F0640D89A1D31012C27EF /* RCTLog.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 478254B4F586C7DCAE58F13085657092 /* ht-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4AEA1FDF1A66385D71D221AA2118D64A /* ht-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47947F51DD9A1B07BB4769B90AFA1B8E /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 75416609E2AD4BE01E3B877417FEF0F1 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C1FF673D9D876A35D97F4D3B9F7250 /* RCTBaseTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 73D35436D6190C1A0484A9EE5A3C11E0 /* RCTBaseTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 47C53A42ABEF5D9308B2548FEB341558 /* MeteredExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9F84817DF1DFE5D6B70E4A5166FEECE /* MeteredExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 47EA24E9E1DCE35D509598C7DCA8F16B /* RCTInterpolationAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 25ED3EB9E53303CDC06391A199009EBC /* RCTInterpolationAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 47EDD16AF57A03350239DB37CADF677C /* RCTBridgeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = E342B6CC6AAADA811C7F325812922D69 /* RCTBridgeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4802F30FA46C9129C20324A20CE8BBB7 /* SanitizeAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 021AC123AD9F9611A267289B603EA164 /* SanitizeAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 480B4AA08C7E43421E992FAE76F19B01 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = 56EE652D990EA33113CF8F258B2BE349 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48669390BB4B6452FEC6E5C2FAA9908E /* WaitOptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 1385A0DE90C129DF72DFDEFA9B8D221F /* WaitOptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48746B9A7378D0AA7E7A4E2F21CA7136 /* SKObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 616C1C80D899AB471879C55DB0AF5AD0 /* SKObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48AB452D3DF2B57C327820F1031AFF94 /* DispatchMessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = E1507635FB3A6B7DE79AC2B0BDC498E8 /* DispatchMessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B58DC9CF428213900B176BC83D50D5 /* TurboModulePerfLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4715AE5BA41877EFEA164C0539AED2 /* TurboModulePerfLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 48B6FE7796210F11A28D1D5D14ECAB96 /* LockFreeRingBuffer.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ED5EF609CF0E9CF8E8D1E18D598C2E0 /* LockFreeRingBuffer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 490B1930CC3D6D1C1A461C2C152EAA95 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 9895BB7656BB4449DE52CDAED0707C82 /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 495F8A70534F324AAF51F3F5FE3AF427 /* CString.h in Headers */ = {isa = PBXBuildFile; fileRef = 04C33BB10E60604D7CA6AEC4196EF3A0 /* CString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 49BFA5514624BF8CF971B9CF27BC3930 /* RequestResponseThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 758ACE03904649087B07FD4E53C3EB97 /* RequestResponseThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 49F4459C16D706792DA1695C7D33581D /* evrpc.c in Sources */ = {isa = PBXBuildFile; fileRef = 01708F274708CDFDAE5CF51D63D2772C /* evrpc.c */; }; + 4A15F685D9926091A678D7A87D8BCAF4 /* CPUThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C36DC1AB407DF041E74925570A1C9B31 /* CPUThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4A3391FBD1A3F56074288FE9847F8DE0 /* RCTNetworkTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0936719542299A7A47B01D65358B2353 /* RCTNetworkTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A3BDDAA9787935122D0884801921629 /* Pods-PocketTorah-PocketTorahTests-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AF60D3F88C5D5AC810BF03BC257FF9ED /* Pods-PocketTorah-PocketTorahTests-dummy.m */; }; + 4A5AF6FC3921F6B7CE26C72BA5D60D86 /* UIViewController+RNScreens.m in Sources */ = {isa = PBXBuildFile; fileRef = 21049F85A0376DF4BC42635B02E86625 /* UIViewController+RNScreens.m */; }; + 4A61F79F7FA769209EF5A4AF551AC135 /* IndexedMemPool.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D2C3E6352465D6BFC90D36F55A9BC7 /* IndexedMemPool.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4A7BE37FFF5B54019F34B10D206D0D53 /* Pid.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A25187A779AB5D3E08BFE564BBA0E23 /* Pid.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4AB17CB6EDB9D6346CCB7F848AC85670 /* RCTPicker.h in Headers */ = {isa = PBXBuildFile; fileRef = EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AC53825F4C68FF1DA724133245F3825 /* LineReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00773A06980E91B2D5AC0D5F2AEC75CC /* LineReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4AD080DC8C230C6C14071C87A6FD4AB6 /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = E3550E571FD7C0BF9100D32798938CBF /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4AFE771E3FB102CFD6AE40A45DBB9703 /* CxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DE74B85F915F73CEA61E2588EE235516 /* CxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B39C0291A26F57C9DAB2C871248B258 /* DistributedMutex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 78E56F5263404D525A91C19D4510DE81 /* DistributedMutex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B40CDF5F9C54070AB939AD3D8F6CCBE /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B4853699B5CD42C9253204AFD5725C6 /* Concat.h in Headers */ = {isa = PBXBuildFile; fileRef = AE25E56F5B03E9A5B3A73BF4AECA78BA /* Concat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4B94910FEA542C42E37B3883A83C415E /* evutil.h in Headers */ = {isa = PBXBuildFile; fileRef = 75ED4D46530146D973B4E6FF80AB25AA /* evutil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD0C4F22F6E43527A14979990365521 /* RSocketStats.h in Headers */ = {isa = PBXBuildFile; fileRef = E1B5FA86B56852B3501C338AB8266527 /* RSocketStats.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4BD4C0A34970741A268EB7F79D0AB988 /* FlipperRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF3530FDA5BBEF430BC2F9865CB4D1CB /* FlipperRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 4BDE3517A3EF9615D1DA5E2CAB02812A /* Random.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43AC5D47986C1BE1F484F95A7E080281 /* Random.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4BF2AF88D8D2D33FF0B57874C027C13B /* FileUtilVectorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7305F5F233F11E6DC13E98F47B8C93E1 /* FileUtilVectorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C7B91F0146636DC7CA7CE13241A8B19 /* traits.h in Headers */ = {isa = PBXBuildFile; fileRef = CB9675816D613911331E79B1233FB826 /* traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4C8FCD218C050C482BC72061E5630112 /* RelaxedConcurrentPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CFE5F2049BF7C3C2939C744E90B9E01 /* RelaxedConcurrentPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCB2C383658680CEE1BCE8D64473D2C /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCB88DE3117A6C2DB12347478A89223 /* File-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E5E44D17D7520E70A5FBD90A01FC9D3A /* File-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CCE23088FD685038FDB76DD81CD6CFC /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB738BEC3119912B5241D51D3BD34D0 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CD72077373FB72B4260A9F730835F5B /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 635E47E5FF8415F888BBEFD4D3EAB7A4 /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4CF25B65C6506C6D0457B6F8C2487D14 /* TurboModuleBinding.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA2305A0C651D1549C01EE007A5F747 /* TurboModuleBinding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D092F64451D55EC19BAF7E6957FEA6F /* RNGestureHandlerModule.m in Sources */ = {isa = PBXBuildFile; fileRef = 5635B00B5942895B0D303A040B71EC8E /* RNGestureHandlerModule.m */; }; + 4D1799542E403F68AA2BFCCDAF9E964D /* FrameSerializer_v1_0.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F24353E11C2066459B75324DE956102C /* FrameSerializer_v1_0.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4D455DC36228659682B95B5CD95767C9 /* RCTMaskedView.m in Sources */ = {isa = PBXBuildFile; fileRef = 70F14790EB365EDD3A118597FA366892 /* RCTMaskedView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4D4E95B80BE3ED39A80590477FD09F42 /* RCTDevMenu.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FC6FA89A077B23F332444D37A16AE08 /* RCTDevMenu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D56CCD0E9852AAF34BEF9A42DB479E2 /* CancelingSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 21B458F12A4DC51576ECFBA5A6FC0C90 /* CancelingSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D59A04EEAFB378941F0E84CDFF80F48 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E2DF139084B891541DAC8109AB3838 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D6213D7F4F58F4D3C9EE87E279E3A48 /* ConcurrentSkipList-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3C4DFC021C55C17D628FDCC3C62603 /* ConcurrentSkipList-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D92A01AC9733D3664FA6800E70C6A06 /* format.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C83195A9A1B4C10BE984DA6B1ECCBC3 /* format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4D9B32F4F7706D6850CCCDC5335225CE /* React-RCTLinking-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3C1D420D455EFA5EAF6FEF74475F5D54 /* React-RCTLinking-dummy.m */; }; + 4DD49221AC2F681A7812EEECA3F8C092 /* RCTLog.h in Headers */ = {isa = PBXBuildFile; fileRef = D95336007D4418B84A453E1E6E638123 /* RCTLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DEAFC3CE4CFC786A5A84222A9D3310C /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = D4284B649987FFCDFC846B07E9E1E383 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4DFDA58645E4E6E29DE4DFE7730F95E3 /* RCTSRWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD1A867E2E435D33828B33684D591C7 /* RCTSRWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4DFFBE840FF7BD40F7669C6AFF55C6A7 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A61A01371B08BC5CED7076E54456758 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E4E13E0636D39EC0DC9ACF5DF56B338 /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 84111C002B69B2071B9CFD7831DFE289 /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4E614301DAAC6F021EC1FE7B6DE6CC67 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FD6F472EF6438D116C5A085332EC338 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E70654BCF094B46912CD864E9F7B765 /* RCTAppearance.h in Headers */ = {isa = PBXBuildFile; fileRef = 5BBFD97CB98D6A412874128923D0B586 /* RCTAppearance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4E8EF08384B51BE1DBEAA5247E1EA92B /* FlipperClient.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0027E6547E99DC457ACBC87E10B38094 /* FlipperClient.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 4EA30F570B0739332D51B23CB36702B9 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EBE7582870A6472135326778455DE6D /* jsilib.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FEB060FC0C7EED8499CE73855CFA8F2 /* jsilib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4EF5DCD06CAA4A034FC9782A764D3069 /* RCTSlider.m in Sources */ = {isa = PBXBuildFile; fileRef = 1408C84AEE32EF5B9AE3C6712667EE0D /* RCTSlider.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 4F1F59FF05F433DF4DE1855EA893FD88 /* ExecutorLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 46BB1E3DF50610EC49D1B7AD116276FA /* ExecutorLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F28AF0037D3A70CD572D5C408897CF0 /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F4F037D8F3788A1D308CA13290F30BE /* RSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63C37011AE46ACD7DA57392DA7E9264F /* RSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 4F726086D03A59DFC09A0ED85A400191 /* FutureDAG.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B401C6FCEAA81E383D30EE52A396C4B /* FutureDAG.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4F778255D3688D6A157102326AD2D62C /* AsyncTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = B998DA4FF688B612EEC988BD3692216C /* AsyncTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 4FDE1D16EDE2AC606E98C9EF91FD08D3 /* ThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DE23DBDFBFA39930F6547997665453E /* ThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 501DC57EB1DB404ED82F553B356A8BBD /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = F1FF2EA9507D6AEC96C4EEBC15D61B88 /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 505D085DCD32F7B144A31F794C0F5898 /* LineReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 415CA2F49853D24BC92F24D6F478246F /* LineReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 509AB1B1B052809F79EEA91AABF5B90D /* RNFlingHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 12608AEFCFB8FEE3EE339530C02ADA37 /* RNFlingHandler.m */; }; + 509BE31C7D08AC00AC7608ABA12BB3C1 /* time-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B2D608E8310AEC3D616E26C2CAA52B65 /* time-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50BD2DA9E63C43C7B6A5CBE25794DF7A /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 50DD2914E486A96C3A7910A6BF403CBF /* NetOpsDispatcher.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE7629DDF8F8D34B1BC5CC08586952B /* NetOpsDispatcher.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 51074A3012EC4053E6F6681DE181C2B9 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5170E84BD46E3B1A927D6AB7D250D598 /* Tearable.h in Headers */ = {isa = PBXBuildFile; fileRef = 13F6C60AA2DBC32EA43F636E556FD48E /* Tearable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 518C2A528B99675A2F81B1923E1D50F7 /* InlineTask.h in Headers */ = {isa = PBXBuildFile; fileRef = A9B0AEFFE65877511253CAD70B364B3D /* InlineTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 519310658692B7722DEBD914C457C017 /* StandardLogHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4BD7C95C66DA051127D712C91807817A /* StandardLogHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 519D88248AE5B73E057B968ECD575A31 /* OpenSSL.h in Headers */ = {isa = PBXBuildFile; fileRef = E29079056C9F66A6456AE59CA9C93776 /* OpenSSL.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51BE94CCB1DC3D365377A9548D78FCF7 /* RCTSourceCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DD2ADDD2136F77D56D6DCA5A9EEC11B /* RCTSourceCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51CB0C1921918EFFE74A4069434B85BB /* StreamResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E99BB031A2304421F594AEDCB6909A9 /* StreamResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51DA9FB3FADC947B2EE7989E4522B929 /* poll.c in Sources */ = {isa = PBXBuildFile; fileRef = A40205FC5DAF460D1555EFF2168A50A5 /* poll.c */; }; + 51DF9CD642DC07D0B8EC10699781F189 /* RNSScreenStackAnimator.h in Headers */ = {isa = PBXBuildFile; fileRef = 62330B7E1CA33260E262D72292FB2564 /* RNSScreenStackAnimator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 51E32B5489CE757CE5B9DB5B6FA7ADEA /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 06D24FECB3A93FE8BBC6D759FB735011 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52241B37FAFD50B4619D508E79EE1AD4 /* RCTInputAccessoryViewContent.m in Sources */ = {isa = PBXBuildFile; fileRef = 31CAE6956DC63754F4151FD341B8150B /* RCTInputAccessoryViewContent.m */; }; + 527CFE08D11A6009536FFEF454E67D84 /* RCTI18nManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D3851C725563AA7610F3D0B33357E763 /* RCTI18nManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5297DFB0E2FE976944820F9E66E0CAA6 /* OpenSSLLockTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = 342C7CA5A0194CB8A079C01EAD326582 /* OpenSSLLockTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 52A22C11DE66A4B99AF09DEC66E99E00 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5333166E9C106B1E496CE38DB02D2B29 /* stop_watch.h in Headers */ = {isa = PBXBuildFile; fileRef = AF4690141267CA3C800D00A4ECD33088 /* stop_watch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 539A5DBE1B1B1FBA80FB3789A852F739 /* SKSearchResultNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 35777B618F98E54CD984BD8100990F32 /* SKSearchResultNode.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 53B86CFF5AECAB61C3E32FA0167D0720 /* RCTRawTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 768157E42359A7F40BD68AC3E4CBDA00 /* RCTRawTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53C2D455E8C0B1C6E747BA4A6FD629B5 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A9C39A6C3B7F26C69B82693780430CC4 /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 53C6259F13804EE98D35D7069FE8DDDC /* Retry.h in Headers */ = {isa = PBXBuildFile; fileRef = 42450E1DFB56BA7C5BD1AD4B8D305337 /* Retry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D1E4182523909B3D1954068D32C091 /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 4FD3FE9CEFC67E758A6E76D03174D4FA /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53D8C85D647AED0FA559FD17CCD93065 /* RCTRedBoxExtraDataViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = EAA59A362DF27A60F43504E35FBF3897 /* RCTRedBoxExtraDataViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 53F952F384B240B34B9CA7FA4F2DE7EB /* MoveWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 25A805B318F116BD492087B456B8C5EA /* MoveWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54027FD11EFF8FD562FAA195C3409A82 /* RCTTransformAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 4B114A07D303818E2B73ABE8E6A25449 /* RCTTransformAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5417D26D26F92F9F59F1261B24D7B86E /* Flowables.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B1AFD923B7EF1571C232F7FAD4BA508 /* Flowables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 541E1A9E80136990C5D9D32CF1D894A9 /* FlatCombiningPriorityQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B2EF64CF0B9FE07CB54F9AD87B79ACE3 /* FlatCombiningPriorityQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 547B37258B0DECE684A81A053B5AF73E /* FireAndForgetResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D549BE8B11D869215C6059695F3FB01D /* FireAndForgetResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 54805617A5383362A3676B42385A87C4 /* RCTCxxBridge.mm in Sources */ = {isa = PBXBuildFile; fileRef = 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5489E898A7423542C25BFAE0FF07FFEA /* RCTDevLoadingViewSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = 3EA520D5FC815078100D9048CDD2B7F0 /* RCTDevLoadingViewSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 548E2739B52BA5CD1D6CB9D59175F3E6 /* ConstexprMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB6091CF7D8335EF03CB438B1D36F1B /* ConstexprMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54949B0F1B491015DC76DB7A61370CC0 /* RCTFont.mm in Sources */ = {isa = PBXBuildFile; fileRef = 34F263893795DF638CDFB4BBBA1B64E1 /* RCTFont.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 54A6992A1399269371BB27537C0954C9 /* WithAsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = C234316DC0653347D953D887EF77851A /* WithAsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 54CE46DAA7657062E122300E64163EAC /* File.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B04CA5C5D51FC952F1FD29903464C5A2 /* File.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 54F6840B5915D236DB1ADFAB9B6D29E7 /* RCTDevSettings.h in Headers */ = {isa = PBXBuildFile; fileRef = 413CC5236DCF2C15E2FE5B6737535385 /* RCTDevSettings.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5505D9AB71600240668F4F02B15185CF /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = BC41A305B7A8101FBF03ED6C915C0341 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 551154625012D9B5D0594ADE04F5BD0D /* BasicTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = 60AFB20BBA7B2DA58F4EFED875A40561 /* BasicTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5541CBA258AAD97397181CD6A060C1BC /* RCTSwitch.m in Sources */ = {isa = PBXBuildFile; fileRef = 536645E84ED4ED56F2E00517FE6D141B /* RCTSwitch.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 554E4E8BBB108F345D37D9FDC34C2DBD /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = 38245D20F7149671B41D231A3F93C514 /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5558F214577EE29A1873E64110799D49 /* Ordering.h in Headers */ = {isa = PBXBuildFile; fileRef = 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5565799205623B941D8B6EC1A3F8B818 /* IOExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 557A74FD8746011750EB1E6EC9AECE69 /* ScheduledRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E37BB84A6C88C4C12A3B97D84163331 /* ScheduledRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 559979199E5B386DD1CD3AB4684620BD /* SignalHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CA4B5F801655157F312B28B945ABF57 /* SignalHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55AB32E78381C9E04B2D2AE0AA0B5A0B /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 55C72BD32925091CAFD37B168C8B2FED /* GlogStyleFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 100819CA9AE63E735C4542915F95A0DD /* GlogStyleFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 55EE13D855A043047DA22C3DACCC832C /* RCTSurfaceRootShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 308273E77B713AFDF71E07582EB4D94D /* RCTSurfaceRootShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 560CDB5F3ADDBB0DF05CB5BA859AE083 /* ExecutorWithPriority.h in Headers */ = {isa = PBXBuildFile; fileRef = DC918B518B7570D8E7B9C92D305AFA58 /* ExecutorWithPriority.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5658043D48D9800E7ADA6E302546A5C8 /* JSExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2281FF3B92CC0C78E87AC084898F69D0 /* JSExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 567CCA3A61638548CF286736D9833F40 /* RCTNetworking.mm in Sources */ = {isa = PBXBuildFile; fileRef = 13BDAB5EE738F5D4662DC86C2F01A113 /* RCTNetworking.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 568E99A3E379FFED22AB990C8A3F2721 /* Checksum.h in Headers */ = {isa = PBXBuildFile; fileRef = 4130A5ACCA6EFF23A23A3BB955B8D0A3 /* Checksum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56968482536AF4D1FAD13FFA07179F7C /* RCTNativeAnimatedModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = A2DB0F3FBDFB1AD4CC4376BC7A304E0E /* RCTNativeAnimatedModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 569F490E66EE3104261615B61B58B8EB /* Observable.h in Headers */ = {isa = PBXBuildFile; fileRef = E506F619B7D9832C8A6A55BF29FC98AF /* Observable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56DD3D049B01D00C71929DA7496F7372 /* ExecutorLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE461F94A49E78E53F67A51475FFC3A1 /* ExecutorLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 56F27288024AD48A48CC39FFF7A53EB3 /* RCTBaseTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = F04E0FD3E318415DEF0B0CE5778F9FE3 /* RCTBaseTextInputView.m */; }; + 570BDB9C228B48C746980CBED34FC4AC /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E23344B415559E527318EF8EF39D416A /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 571EE0DB8C63FEA2E705FF359AAC5EA4 /* RNLongPressHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 03BAB2FF7B7829B1B82B66B4FD6316A5 /* RNLongPressHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57276F784F3B52DCBADF98CAC04D4E02 /* RCTSurface.mm in Sources */ = {isa = PBXBuildFile; fileRef = F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57407727C8819D551F8BAB6A939D843A /* TcpDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D91CB8098B67E74DDA6E1FB8A6217EB /* TcpDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 578B55A858AC47B62F1D76600BB27195 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 48A004EA2A963EDE65191323BB6DB0D9 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 5797537BC22D0F0F7BD94FF313A26259 /* RSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A9CAC2EDC5FB6CB8779F6A74D9A6798 /* RSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 57A31A934E9AB7339028B3A71AD68FB2 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1932B1D65BCD050283BB9C2ABD61AE /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 57B460C6E0E4407120A39E4EF0B10E6C /* RCTPerformanceLogger.m in Sources */ = {isa = PBXBuildFile; fileRef = FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 57E43FBAD23B637B047A3DBD1F09D383 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = AE8EEF2CB96767D51649A68398181E23 /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58066B4DEC92F08A5542EC6C8705E5F2 /* StreamFragmentAccumulator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1FE06A2E04B27C5BB61690A32DC3726A /* StreamFragmentAccumulator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 582E1822BA5C4AD3F90C26E0EC03EE67 /* EventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CAFD8E7D1AD7B567D52A4FFEB16A6E09 /* EventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 586464A1A150291AA7D0B188745BFED8 /* DoubleConversion-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FB8D16DC2F2753800284C8A38A82434 /* DoubleConversion-dummy.m */; }; + 58760E375A56F6C5F8887245D80C147C /* RCTModalManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CB49437EE6662AE3F79D5CCD51792BA3 /* RCTModalManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 587A867CB9B58FBB21C3F5BF6E42B619 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = DE7EFC8C1057284BC886700738D3BC88 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 589DA9E04D7F7B6DEE549E4B55500BFA /* EventHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 021310A003CA9D097F35C86187D3019A /* EventHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58D7C14DD2E2EE134515D5640E780120 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58D9296A929B444D67EF2C544C6C2C6E /* PolyException.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 58DB4F148CBAAB7C8C5083ED08415B5F /* HHWheelTimer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5C315ACA284B288B1B0384A76D258B8 /* HHWheelTimer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 58F70D66178AEDA4B9D2BD1B8A118F3B /* RSocketServer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 55D326FF03181C8EAE7A6A75BF779EFD /* RSocketServer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 593EFE3FBB6E3203B69D91B111D929EA /* GCDAsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BA622B22D82D669A9FE394DAF8AF3F0 /* GCDAsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595A6ADB6D68325BE26B613B90033AB1 /* event-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 21136489EF0918C0CA925FD75031201C /* event-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 595FC7BC8040EE4155EDC87A50CCFB3D /* Utility.h in Headers */ = {isa = PBXBuildFile; fileRef = F0A108277A2124FA73CF286BCD2C3270 /* Utility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5961BAEE20736C8C7E0700B53E3D986C /* React-CoreModules-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0D1962E47C6B14FED0C788E24606C3BD /* React-CoreModules-dummy.m */; }; + 5965AD2026A99A9964CC39223713F208 /* Random-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 895FB49C292C7D98777E20119FD62162 /* Random-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5976588EF6D88AC2837B21ACA6C437E3 /* kqueue-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = F19AFCD247824F63821BE8D551EE5DB5 /* kqueue-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59CBF685076045CBD3340BA815434A9C /* react-native-safe-area-context-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = BAF678C9A3F698F587FD8179A4695CEE /* react-native-safe-area-context-dummy.m */; }; + 59D3107B9E110EBA642C74CA514E89D8 /* CacheLocality.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 59EC220D7FAF6444A0E9945FCB8B159F /* RCTImageUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = A528BD862DBA9DB2718D18CCAD980CB1 /* RCTImageUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59F557814345D81361C5E33BE3045F96 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 59FF91DD228D9266ECD397C25F725141 /* RCTSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 296923F0C9DFA6A84BD551B1F0BD973D /* RCTSafeAreaShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5A5547107DFC15ECB69BB3E4352158E6 /* FBReactNativeSpec-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A429BF5B8997B2CEFF31B4E58053829 /* FBReactNativeSpec-dummy.m */; }; + 5A619527FB974148A119DAFAB043F509 /* StreamRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = D7B9FBCC38BDAD76FEB6882B6D88CBCB /* StreamRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A61A1F5DF7E556A76B6081D9579EA99 /* EventBaseLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D670691923A7E0A0EE8254B8100EEE /* EventBaseLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5A811E725EEB38FCEF59998397DACF83 /* RCTNativeAnimatedTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3E82A31FC89E75D08BB8326C42C0027D /* RCTNativeAnimatedTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5AD265D3096EDC8F589A13EBFC1FC755 /* ConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 29291A120D9A8511845B1567D198E2E7 /* ConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B06203D48FD2BFBE214225F8FEE3507 /* RCTAlertController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0CEBA8A56F54BC1602CDA7BA9EFD1801 /* RCTAlertController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5B257480C06F08B71C62258A895682A9 /* ParkingLot.h in Headers */ = {isa = PBXBuildFile; fileRef = B8583CE65E0340962185331F990AA529 /* ParkingLot.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B31453B6EBDE8B645AE44EAD78489AE /* SKButtonDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 438438E78A45CDAE16FA464C36EB06B6 /* SKButtonDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3817926F064504598D2F218C4C9118 /* printf.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A0EAD8D3FD116EEF3E27CCBDAABE3A2 /* printf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B3BCA90FDB12DD96A9EE9B789278532 /* event.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 54F8A64CBA73083B7881CEBB1F64AD17 /* event.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 5B800D70EECE3D4D5A04BE4795CE2EE8 /* TurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01A2947DF840D7DD0848392EEDC47DE0 /* TurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5B8482BF9A1DA43DE73563CDE022CFF1 /* FiberManagerInternal-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86D31CD0C23265F496387D933A820A2F /* FiberManagerInternal-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BB3EB327DAD0BC22FA1C82F4398CDF6 /* SKResponseInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 685EE70B7B1B844B8D05FF339D4E6900 /* SKResponseInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 5BD0ABA42F1079D166BD28432253C734 /* FileUtil.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 91382F601A78D919F80C3112ABF74676 /* FileUtil.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5BD8B072A5F955A942C4E9B95F70E86A /* Peertalk.h in Headers */ = {isa = PBXBuildFile; fileRef = 69330C731648F61238A66A15A0FA995F /* Peertalk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5BE0EE548545CDDF54FB079C109FD079 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = EBC88FBE381ED0BA6A6614CA3A08DF40 /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C161141A2A56876D607608F914D1863 /* RCTAnimatedImage.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B757BDA17F7E5D5DF31473467076643 /* RCTAnimatedImage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C1BDD624C9ED4BA252F9241EE4BEFCA /* RCTComponent.h in Headers */ = {isa = PBXBuildFile; fileRef = 73CFB69010842FA58A336E72735D41D8 /* RCTComponent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C2946FD52A2E525835FAE4EAD39EC18 /* Downloader.h in Headers */ = {isa = PBXBuildFile; fileRef = D8D388B8F15D229564332FC10CF40A6D /* Downloader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C2B6012C86F3F7F3BB0A868A4576ADB /* Multiplex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72EECF907F4D60C0D7EFE50EC6A79CC5 /* Multiplex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C38F4B2183C22F9D013F1EF6D4F21CD /* RNGestureHandlerDirection.h in Headers */ = {isa = PBXBuildFile; fileRef = 9790A12231D48CA295593060FA4121D8 /* RNGestureHandlerDirection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5C69A7E530F46CF368296795F83FA463 /* RCTTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 4510B2F18E925EA14E22C825FAF30E85 /* RCTTouchHandler.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5CA0D9D07A02747CA9839AD71468C74B /* RCTNetworkPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 095913D41661B3C7339251599CA7191B /* RCTNetworkPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5CBA291C574464519366116BE693A70B /* RNNativeViewHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = B9C76256057A0341883ACC15FF403F57 /* RNNativeViewHandler.m */; }; + 5CFB344115043115C5C117851BF4515F /* RCTTouchEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D03E7CFE2CDDF5B2AB273873051D9FE /* React-Core-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 688C6A8E5951E06F8A407B07DD682CDD /* React-Core-dummy.m */; }; + 5D0A2ED662A0E2C77322426ADFDC87CE /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D70999AD8391E6C128A8DAC3293E870 /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D349E2C93E418A621DE030E4D3B74C7 /* RCTBorderDrawing.h in Headers */ = {isa = PBXBuildFile; fileRef = A36F046324435EC8477E25716A3E27F9 /* RCTBorderDrawing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D47776F08B8492643C23AA3C743C97A /* RCTCxxConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = FF44A98B5123B003C9303CC3C471407A /* RCTCxxConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5D53D4428FAADE3C711D6A5B3D607139 /* Rcu-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = CB4C77BED77C642CED51AD321A61944D /* Rcu-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D54D610192636044A0BF51DB27B5724 /* RCTShadowView+Layout.h in Headers */ = {isa = PBXBuildFile; fileRef = 6453EDD28468A642429C0A97B87A600F /* RCTShadowView+Layout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D5B4333018D472FC1F7844CC72B4EB1 /* TimekeeperScheduledExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F9AB485E6572A0507619BCDA0B817105 /* TimekeeperScheduledExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5D9781FC8F04C1D731C094985C4004BD /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 63AD50F4E963DBC1AB36DC8A812CBA8B /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5D9E40346A62F9C85DC39619B81A615E /* AsyncSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E1BCAFCBDBE6643E703BFD273D2C004 /* RCTProfileTrampoline-arm.S in Sources */ = {isa = PBXBuildFile; fileRef = 3177924B76A336958BB6C88C091B0C7B /* RCTProfileTrampoline-arm.S */; }; + 5E2F00556A4F15B852A6F648955AB7C8 /* RCTDeviceInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E45D8EBB0C1E402BBBD9722515E9FE1 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = B30499396765EE1413597F9B3EC5595D /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E52EC328534BDAC957BAD9C137427A0 /* FlipperRSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = F2255703B41BAE2EBA4A8126C32A8154 /* FlipperRSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E66A88F55A205021D9A888110408EC9 /* json.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2896391C15EBCE508BCB44924E3A7F3 /* json.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 5E6D6C5A392F4EFD1538EDC194DE1374 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = BEB6438819920426AC7869F0C84E38E4 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E795232CB6CF9BB0D0D695692AB96C2 /* GenericBaton.h in Headers */ = {isa = PBXBuildFile; fileRef = AAC8E9D135E8B19CC9AE62C8417599D4 /* GenericBaton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E86A36C0BFB7BD615B5140B7E412947 /* RCTSurfaceSizeMeasureMode.h in Headers */ = {isa = PBXBuildFile; fileRef = A38E222B22DF32AE6EF7493FBAC2DEA2 /* RCTSurfaceSizeMeasureMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5E92B14591B38382F9FB0588A179E41C /* RNSScreen.m in Sources */ = {isa = PBXBuildFile; fileRef = E9D639EB49DF224BD48480088ECD9FA2 /* RNSScreen.m */; }; + 5EAAA60FDB3ED7368977A10FDD2463E1 /* RCTAnimationUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 047EC85640A6A1990B03AE6712FE7D2A /* RCTAnimationUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 5EAF26EF761E823371268AB25CB4571C /* FKUserDefaultsPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D0D5BB58167BE971D92FD73792B06C0 /* FKUserDefaultsPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5EEAC2D72B362346CC5FC69366619287 /* SymbolizePrinter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CB696DAA46DEFAD66FA6780FBAD04BCC /* SymbolizePrinter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5EEB0BF3D5E2D86D90EB5FB8B5B6E970 /* ObservableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 7898976C55FED104A1F41769CB5805F5 /* ObservableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F031260790DAB79B99D2456141092E8 /* RCTSlider.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EE5D96D741E1892C62A335769A0A95B /* RCTSlider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3771108F1309CBA3F451A9A946833C /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = DEAC905D622F26BC529606C504C75AC5 /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F3E9BA71EE82BDFB266DF54B326EF16 /* Flipper-Boost-iOSX-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B059EFC75C33B83B9DC39E65E19F96D3 /* Flipper-Boost-iOSX-dummy.m */; }; + 5F3FD9D1BE099F2B7545A9F939313248 /* SKViewDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 5F619F64BCAB11E07F5927D0486F52EB /* UIView+Yoga.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F6F071B52B98D676644B5EB7E75A283 /* UIView+Yoga.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 5F778B457C39A18E26833CB22153722A /* ThreadCachedArena.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F85F0E15BA9473250A828D37C0E07C48 /* ThreadCachedArena.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 5F9992BB204261D73EE284FC46510918 /* evutil.c in Sources */ = {isa = PBXBuildFile; fileRef = B110D356A2384A3387573DABF96705BD /* evutil.c */; }; + 5FAFA1A06F53C24368C96D30A440893B /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 600921D4668B94EFA82F8B2AD2FFB5AB /* FiberManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 224F362FF97E732698BFB91D428B6DA0 /* FiberManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 601CC93043B537EFFACD2AA838CCA139 /* RCTJSScriptLoaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = CCB7DC441D0D4020F8B0058DA9A08C2A /* RCTJSScriptLoaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 601F1027298A02CA0AE17F2E41E771F0 /* libevent-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 8BC27FE06014228AF77550F27A680652 /* libevent-dummy.m */; }; + 603CCAC6414CD5BE3BB2918F30017D69 /* FrameTransportImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = B4D601CE05E11A0E1B79B394D5656264 /* FrameTransportImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6049978E5910E745A1C138ADF4C15018 /* Range.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B1D14DC8CC641A1F72379F273060C7D /* Range.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 606C42F74B476489051584E10E743545 /* util-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = B698000109AA8D5925E35FB4720F2051 /* util-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 607DE539D1409814E5ACC4456547ED76 /* FramedReader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 941D502FDA5F931A5218BF6631F228F4 /* FramedReader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 60C95491B1EAAB824BFDE23F71523882 /* RCTTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6C0161A1977ED5A24F2684E0CC23918B /* RCTTextShadowView.m */; }; + 60E00753877F0AEABD8359740740A17B /* Enumerate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6101ED61A1B2D2AC16D21651CEBDFF4A /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E3FAF4715ADAAF0F85E57AA28F9FA51 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 610A3814361DF2ACBA00237F0CAF2A80 /* OpenSSLCertUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9640D9886CB8D74A5E508DD0C8C6CD62 /* OpenSSLCertUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 610DDACA4FA745D547F3DCEE6FD52BBD /* SKObject.mm in Sources */ = {isa = PBXBuildFile; fileRef = 91274C5B5145F8669D90071A8B12C65F /* SKObject.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 611E1430408EC1DE7387C127177CFD53 /* RCTLayout.m in Sources */ = {isa = PBXBuildFile; fileRef = 20ED72227D1C8EE515258B0727E87FCA /* RCTLayout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6124C5679C59286D6A59BD965126DA2C /* RCTSliderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 75162085A4EEEB496A3E30575855CD85 /* RCTSliderManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 615427F4E310BC8819C452C1F32C0FC6 /* RCTFollyConvert.mm in Sources */ = {isa = PBXBuildFile; fileRef = 22A580310C9FAE568A064357EC663FB9 /* RCTFollyConvert.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 61A8B22E2E74DE8F19C95EC4D35E1EEA /* RCTGIFImageDecoder.mm in Sources */ = {isa = PBXBuildFile; fileRef = AB1601793EA3A461334E9DF8DB14F563 /* RCTGIFImageDecoder.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 61B89DE66FC4E0182A1A06E69E4FB04D /* RCTBridge+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F0E881BDE949C4CC9843C0BA7323F1 /* RCTBridge+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61BD81BB867EA5A9CC1B414FCFAC1B20 /* MallctlHelper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7886617ECC1A35BAA21D422676D4619 /* MallctlHelper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 61C74C4D9D9E001807E46AD3517A0D84 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61CCD0FBE0A77F6844B6279BD20A3D7D /* Filter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1F53E76092A0657E4D4E13180BB7E465 /* Filter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61D7838FAB945391FDF018AF7A925390 /* RCTTextDecorationLineType.h in Headers */ = {isa = PBXBuildFile; fileRef = 317D4599F6AA494C01E463C0D0BD96AA /* RCTTextDecorationLineType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61E445CBD449C37489E74D5D897096D0 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = F402764687E3A48E0AC6E10E700C226B /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 61F1E92656CD8C95A7CEE35332760718 /* KeepaliveTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FB9555F7B8D493D351640F99BE834A2 /* KeepaliveTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62ADC7177A135D6D454154EDBB04851A /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 62E55D7F0BB36C66E26C6CC986561A33 /* React-jsinspector-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = AE436D661B0A400A2B070D6F99C04565 /* React-jsinspector-dummy.m */; }; + 630FE092FC3BD72C0D035EAA254F35F9 /* Observables.h in Headers */ = {isa = PBXBuildFile; fileRef = E6E32C63A31BC22CCBF5D936E10D084D /* Observables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6322331B73960F3165EBCD610DAAA2E4 /* Malloc.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07672549CC52AE7CE770E8AA3D33746D /* Malloc.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 632A847072068F49989E880B20007F08 /* Assume.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 63E49BBEDD3C3E5926A39C940729F502 /* Assume.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 632E625299077117A411283EDB3974BB /* SKSearchResultNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E8C6CC9F54F5FCAB4E2A7D49CF052FB /* SKSearchResultNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63475BBD71E3FC271ADF43CE0DE2A25C /* RCTPickerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 636F80FCC230419228EB854947741208 /* PTChannel.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B6C067520D9CF32C7812E8B8666877A /* PTChannel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6394CC0049AC3C64CD030396074E89FC /* DecoratedAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = B303AF54F9D894B134992F22DB1A0AE6 /* DecoratedAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63AB8AFC4AA7E611605467721AF35E03 /* ScopedEventBaseThread.h in Headers */ = {isa = PBXBuildFile; fileRef = C46353071C46B01F731E4CDE42344506 /* ScopedEventBaseThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63B9F388F7C8F9BF7C76590705F57EAC /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 226EBF97EBD348609A9C046E430F05FD /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 63CF72D3F6819840090CD68798704BA1 /* RCTConvert+Transform.m in Sources */ = {isa = PBXBuildFile; fileRef = F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 63FDC716C37E0B8A44E5BFFB26B5A2C5 /* WriteChainAsyncTransportWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = D15D00FBD2248129231ED45080A2C8B2 /* WriteChainAsyncTransportWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6416B7AA57B93BC1617CFBE885D07A3F /* RCTBaseTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6A329FA458DA9929C775B3AF8525C3E5 /* RCTBaseTextViewManager.m */; }; + 6452BA70C04BC3FFD9ACAFF9AD226ED5 /* RNSScreenStackHeaderConfig.m in Sources */ = {isa = PBXBuildFile; fileRef = 18F614579E3985C51C8ED2E4037912FB /* RNSScreenStackHeaderConfig.m */; }; + 64584D0AECE81EB8312A2CCA738B79F5 /* RCTBackedTextInputDelegateAdapter.m in Sources */ = {isa = PBXBuildFile; fileRef = C8452DF85B9CC852440334B0F24C4532 /* RCTBackedTextInputDelegateAdapter.m */; }; + 64B63B828355EC1C726D0876C8E0E664 /* DynamicParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 406EAC5E409148FEE468B622D4EC12B0 /* DynamicParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 64C33BCF1C8226A871A888BE1D2B2800 /* YGLayoutExtensions.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0F5E5AF63C22627E9339CEA5458F49FE /* YGLayoutExtensions.swift */; }; + 64F7E90CF3EE8C30D6BD0C36D3860A1E /* RCTHTTPRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = 203FE9A528DD5DC77925AF4022E450A5 /* RCTHTTPRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 65084385A7AF7A025EBA03B76D317ACF /* RateLimiter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B2D1561D76BE421DB0219FA104980621 /* RateLimiter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6516BAD43AE72C9387D7DA031CA2DE04 /* RCTPlatform.h in Headers */ = {isa = PBXBuildFile; fileRef = 1380B82F2F936BC5A50B3C12CA8DE645 /* RCTPlatform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 652EF6BC977E447889BDCE9D0FB5035D /* GlobalThreadPoolList.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 654C95618F4A6E4D4196A8509C115E13 /* RCTDevSplitBundleLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = D459996C8D199B278DCEB621FF3FBCC5 /* RCTDevSplitBundleLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6552AE2418AF8777B3C97968F9BDDC16 /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6553393ED3C5901990AC18DE03CBBEB2 /* RCTURLRequestDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C12AFB926BFC61F88BF8C3ACA256D3D9 /* RCTURLRequestDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65547707E87A4AB42358B12F41053EFF /* RCTWeakViewHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DC4521F32E0BE1AE496403358CBDB58 /* RCTWeakViewHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6574CC934CD40DA900FEF8A1F2B9102B /* FutureUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = A27656737BC45D954DEDF2DE634BCBB5 /* FutureUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65755B356458F6583786E866B819B113 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = D29880B2F0BEA46CCD0E8AC801F6A5E3 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6580F1C3FC7AF69C403FD59CBF4C5BE7 /* RCTSegmentedControl.h in Headers */ = {isa = PBXBuildFile; fileRef = B2874DDE27A6575C72734F7C89127449 /* RCTSegmentedControl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 659DFEBB535498905804A8182092AA5F /* WTCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = D5F318767A8CDCC692929B7821190527 /* WTCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65AB2AD319C1AA2D8579926237573AF1 /* RCTRefreshControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F38DBC4B447E091F21632D2E5F334783 /* RCTRefreshControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 65BB8080FC43E4153EA916220BC84673 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 89B9B4C0DF02BF287E7BE42C43F2F2C9 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66061261FB6B4B013B4CA6E0640FA124 /* StringKeyedUnorderedSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E5B5C939F26EE3210621E71B4496512 /* StringKeyedUnorderedSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 661F2624B706747A70B85A82FF0DC5C2 /* Executor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 754F64613BAE5C1353214CD1BDF4F73B /* Executor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 662C19A741A7A6EF8640475D7D674C2D /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 47436719A8CD489012C991505BA62ED8 /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6653CAD329791C8812B9A4596BBB82E1 /* Byte.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6655CCD0272D51C18460AA7CCD7B788F /* Uploader.h in Headers */ = {isa = PBXBuildFile; fileRef = 57FD0D70F6A1D7B4BE26F355B2EC30FA /* Uploader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66617936D2CC88CD0E77364909F8BFD3 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B0117D00BDAD1CF2D3A10E6317FA39DE /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 667D0D826A0E87B90888176593AE1D0D /* Flipper-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A4AA1F42E65C4693DCE7811B73E8F3F2 /* Flipper-dummy.m */; }; + 669A4175D29B6E45FB549B41D66C51D8 /* FlipperStep.h in Headers */ = {isa = PBXBuildFile; fileRef = C53E49B4620BCCF1ABAA4538E59B3F45 /* FlipperStep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66B1BBA7E31E65E65359DE4C6350C9FD /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66BD7EC01C36121831674982EE6AD2FE /* bufferevent-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A5CFA31D6AF98FA51F6F4826861ED80 /* bufferevent-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66D38DB2F0CDDCBC0CABC2D28EE4B46B /* TypeInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 223B100218B83CB1C201902880BDA9C5 /* TypeInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 66FCC67A1D6BC66F0563CCE69A85871D /* RCTSettingsPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = CFFE3554E176A112E0ADB340BEBEDBCB /* RCTSettingsPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 66FE644EFF3E9FAA42029C8A78595A6C /* evthread-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 42C8121F55F0F6EB83C17DF1C99D92C7 /* evthread-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67034209F2A1E8129C0058FFCC8134B0 /* utils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C8502A11CF3F7BE61B5458BEB1AB84A /* utils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6703704987490538DD042ABCDA4AB4E7 /* RCTJSStackFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 7527E657529339010F4C5B7BE009AFB7 /* RCTJSStackFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67346EF67AC2E4E6AA2C3AD688E382EF /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6736053680E5A13C548056B0A167EEE3 /* json_pointer.h in Headers */ = {isa = PBXBuildFile; fileRef = 36AB28FE125C6D0F3711ACD12DDB8FAA /* json_pointer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67432186947445350D4D764EAD920D77 /* RCTUtilsUIOverride.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B1D7B3F2CF77A00299F16992BB1F7F1 /* RCTUtilsUIOverride.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6745548213848C57A03E273EDD046422 /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = D62A3B2ECCED4610679785B5E436B328 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 674AF93B5EB6449B80D6DC154BBE3855 /* RCTModalHostViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 839EFCE1712AC3B4B562B9A6AF697797 /* RCTModalHostViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6780A15A9087624EEFDAD6202591093F /* LifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = C955913DC0661C1D89DC0F5F6640E2DE /* LifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 679AA74AD72810FCAFB1C777BC9B1372 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 67AE222411302371173E8B200BE14637 /* FrameFlags.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1C818680110475C158C8A6B31567D881 /* FrameFlags.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 67AE43971A9A4FBF875F5A1562E981E4 /* AtFork.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1F7F7DD5AC6BC1BDB3BB16EDC5198AFC /* AtFork.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 67D2598EB6CE626EB39F7DD6DA1B716B /* RSocketServiceHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 526C4BB2CE3D8B5940A129B9B15AF8BD /* RSocketServiceHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 680401EC750085D1A23C7F056DD73BBA /* CPortability.h in Headers */ = {isa = PBXBuildFile; fileRef = B40A7A09256952C8EDD740F1075973BC /* CPortability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 680BC129D75EE909D2D694CEE64CFBBB /* ThreadLocalDetail.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CF4682AEEDECF3D46B959B1CD9A3C318 /* ThreadLocalDetail.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 684E534B42502489CAFF5829EEE269BD /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D0BA2D90C3C1AAD185ED9AC53D51ECA /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 685F96D05269ACCB93109A4C0F0AD446 /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F437BF7BCAEBB12D271C6201659F87D /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6866E785E23005DE3F4B71FD6AB10BC5 /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 686A34E6725EFB6465435D41DA2A19D0 /* RCTPerformanceLogger.h in Headers */ = {isa = PBXBuildFile; fileRef = 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 686A9026E6A53F2061BDB63FA3504E5A /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = E1E6C3570F4EDA55947E6C543AAE54D7 /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68858BFBBAF37E5A4F136C79E54B4044 /* String.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D7F12F841578A44F79FC365F91B4ADE2 /* String.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6885A35F0EB62B6369E5CB781B382930 /* RNSScreenStackAnimator.m in Sources */ = {isa = PBXBuildFile; fileRef = 738C3A177B5147E5B0E07DBC8D1D731E /* RNSScreenStackAnimator.m */; }; + 68B7EE4CFD6D707B403256FBEAE948C5 /* CustomLogFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2EBD05B38D1FCD7241A981535F12D486 /* CustomLogFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 68C9D8B3323405D46C18104D7E6B8068 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 89AD14E9B68FD276276AD14CF2DCA10E /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68DD4EE7081F6E82C46B36D7A208FCCE /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68E226845119C38B51A80F5CDF9D8E90 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = 14819AE9C08ED24BA27D9A2A91153365 /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 68EA47B706EAC48DE50153EE509FDB34 /* FBCxxFollyDynamicConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = DB17A0BC5D5053E93A094A66725DD421 /* FBCxxFollyDynamicConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69396DAD351D7783A8C0DE60D35E13E2 /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = 53FA5FDD1150F80C3A96A4C62B51A78E /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 693F0B924113DF3F9B507D8A7730BBE3 /* StaticSingletonManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 82567DA1C6A658398372D50699E8863F /* StaticSingletonManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 695EABFE8964C99C92E970C4B0731ADB /* TLRefCount.h in Headers */ = {isa = PBXBuildFile; fileRef = C6ED4E2B9DFC187214285B36BC161FC3 /* TLRefCount.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6990EB8CEB140C4BE3A8055675531440 /* SimpleObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 69581CD9F9ED6389E978A878EC8B61BE /* SimpleObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 69FB0D262A836BAE42FEA60039605041 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = ECA84CD5C385B27BC49C6657CFA0116C /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A520E6AE88E0A8FF4FE1B3851446322 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A5FA3C19BA27309A576F1547463B72C /* Observables.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9CFA0EBD7F4500B21BF90401E326DF63 /* Observables.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6A6F357FEE452BDB0FAED5768FAC70DD /* RSocketParameters.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25E970EF15B6148D8C2A298FD2370D2F /* RSocketParameters.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6A8FF64706926D21B8A5BC08DBEF3654 /* RCTTiming.h in Headers */ = {isa = PBXBuildFile; fileRef = 211C3BD688AE5855B00A272F4E7BF680 /* RCTTiming.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6A97FCA0949A128C8526F70C1E62930D /* EDFThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6AD76ACE033860C063AFD554172DBB88 /* SemaphoreBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A3FD87E8D3685FEC4D82B0C4645705FB /* SemaphoreBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6AE67097638CC40BEBCE8F15B453BF23 /* FlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B03313D34AA29DADA3AA5ACEA804FDF /* ontop_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 1F4B9ABA2BF77797DBAB4A36D2E1A948 /* ontop_combined_all_macho_gas.S */; }; + 6B11C5FE7C879F7CE6BA25F5EAB80ED9 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B1E36BBA4D2C710C0647B2D068D8E03 /* FutureExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 566903189F64A2CEFCC8FA57C309F6E7 /* FutureExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B2AEE5EEDFFCA817A41B565409E811D /* PTProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CAD61AB71F8F9FB7AC542893D5795B7 /* PTProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B33B1004888AB094945BC5FC81ACF3E /* TurboCxxModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D0DB550A169BD0AABA0FFDAFC4EBC8C6 /* TurboCxxModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6B34A27E226FBB5AC3A370D4328115F9 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C2256A11032055D585A4B54E0E609B8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6B9D5DD2A6428F682CE897167E4D8266 /* RCTComponentEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = D550D2A26097F44F9D821AE27FB48A57 /* RCTComponentEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6BA0DDD6AC53F22A72416CE973AFEFD6 /* PublisherBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FED42D6EF2BF08496F970F0246DB6572 /* PublisherBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6BC1E0A1D6D22910001EC9572AE14552 /* BridgeNativeModulePerfLogger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D939C26F31BAB4D9EFDE4D4D37E01D /* BridgeNativeModulePerfLogger.cpp */; }; + 6BEC8A7D1DE801327F26C567A4BF5E86 /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1DBBDFE519F7F12A0FE8B58C45AD0C0D /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C00B26685A1C7BFCF9CF8C5D9C8F3EE /* Varint.h in Headers */ = {isa = PBXBuildFile; fileRef = 51C617D9C0E7CE93EEB631FD362EDF53 /* Varint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6C43A7A9CA41901EF97F230E2D571336 /* RCTProfile.m in Sources */ = {isa = PBXBuildFile; fileRef = BF4F91488724CF5711C02F42D7DBF88B /* RCTProfile.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6CBE5E910751EE66632040194BFEFCFA /* CertificateUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 52C3A26DE64EC549AB71150AA3F8A6AE /* CertificateUtils.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 6CD41DBCB5E33B70104777BE9AE49CB0 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = D3BF5CE0870A093115842635070C31DB /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CEFCD73394796811C4F9925443313B9 /* RCTJSStackFrame.m in Sources */ = {isa = PBXBuildFile; fileRef = 82B6867710FFD0F3595932D7CED43986 /* RCTJSStackFrame.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6CEFD6AFA48BFFDE7AEC15CD912A1227 /* AsyncPipe.h in Headers */ = {isa = PBXBuildFile; fileRef = CBED0CFE7C701F3F82CE9F6D51C8D3BA /* AsyncPipe.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6CF41072FFD80A8ED9545B653455E516 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E71AAE54A30038A5E29FC5724DEFE5F /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D4DAE5CA137768424D32081D2BBA036 /* Chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = 2EC1C8989F4BA64EA065744609F0F16E /* Chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D647C42FD1BFD7AF8B86D49F43F6D88 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = F79014F71F02A5BCDBF767649BD551CF /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D686D1B5514E71CB9E5D0C8A2095FC2 /* AtomicBatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = AE7E4201F8D4E7A7831824ACEA1A9F54 /* AtomicBatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6D9A6B6D290670D6599FD1E3BCB4ECAF /* FrameType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 419C65FB5E4B2D6924B04081395AB2D7 /* FrameType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6DA5CE3D252AE587DB44667DC60704CD /* AsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B4D25205909C5820B07E9A10864AECC8 /* AsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6DA88793B73B23541DE3FF1A18DB29D6 /* RCTNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F366B87D3586798B377FA6CA73F9ACC /* RCTNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DA8BBAF0B486BA33B3AB4194A6D139E /* RAMBundleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = 33ADACCC923AC1E1AEE2A6A6BEF94E08 /* RAMBundleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC0521D90A477D59B6B92845C25C7AA /* ObservableConcatOperators.h in Headers */ = {isa = PBXBuildFile; fileRef = D950471C76DB1B6A05572F059FD2C7F2 /* ObservableConcatOperators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DC73BBF24F67F52344DA6B6BE8C85E9 /* RCTStatusBarManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AA9CE0073268E70D881B593D557A7AA2 /* RCTStatusBarManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6DEC130B57B7433DA3877C66686A7AA3 /* RCTInvalidating.h in Headers */ = {isa = PBXBuildFile; fileRef = CE16860A64064DA1544BE4470ADA4A8D /* RCTInvalidating.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E07F8F86527F109C651A9B306F5B2FD /* RCTSurfaceRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = BA0227E15A73C3AFBE5B02B54B281F5E /* RCTSurfaceRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E12E3864E382DA2E4DB3E3E02699889 /* RNTapHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 460FBF50587F44609745057EDBD8E7D6 /* RNTapHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E1F46D571DE13F659A2F3A3B21B7E6B /* RCTMultilineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 27831EA433EC7BAFDFF8C6F126103923 /* RCTMultilineTextInputView.m */; }; + 6E30A05A22B25925CB91466DAF1A7DB6 /* RCTAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = A8FA651216E5171A38230135A63794EF /* RCTAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6E5B7D3B18D8768F91C6323353CA94B9 /* RCTMultipartDataTask.m in Sources */ = {isa = PBXBuildFile; fileRef = 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 6E6A6371E574F2D6E6084B73510AC8E0 /* RCTMultipartStreamReader.h in Headers */ = {isa = PBXBuildFile; fileRef = 04536393E023ECFBBE9EE37F19F1BF49 /* RCTMultipartStreamReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EAAF6EDE4CCA95A573CA642F4F8C77B /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 53CD808AD444B6CA166439D20EC1A6E3 /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EC32FBC9C5D971A74E62D0BECAB2B67 /* RCTFileReaderModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6B52D48D73B361AA550BAC8BE9B8A06D /* RCTFileReaderModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 6ED9A0584B019B3BD9275054E7E12062 /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6EEAA8FE9C748941D7291BD0AFB2E4CB /* Codel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5F84F4510539055CB95E56FBDC763219 /* Codel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 6F2D641112EC49537C925F5BA2EB6963 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = D42D543519FE1C8D35263EE18B46D565 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F32F872FD939874C3D2320BFAEDA583 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 2000725EFCA8AB9B88E32AE0A81CF7DF /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F56DB5BE828AA7E38EDDF77510F29D1 /* Indestructible.h in Headers */ = {isa = PBXBuildFile; fileRef = 00BE773D55EBAB66F156A532DDEF39C6 /* Indestructible.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F67E50D444383A6EF413D3BD17DDE5F /* RCTSinglelineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E371A5A020DEADD8B1D06D92ED4BF90D /* RCTSinglelineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F6F624CCF4B9C9457760F1D45348540 /* RCTImageBlurUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC227C60C614E40954C39B3D4F1104F /* RCTImageBlurUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F810EE9E30C4C30EF497D65074E27AB /* EmitterFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = DD1C1235902A1DE3DA43779A33B13735 /* EmitterFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8ABAB9EB2A6AFF3FAA0AA7B561C750 /* ThreadedRepeatingFunctionRunner.h in Headers */ = {isa = PBXBuildFile; fileRef = 0F5BDE449D967E54E3B89C8631FD9F49 /* ThreadedRepeatingFunctionRunner.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6F8CC7C7E5BEEDAD1339A0ACBD1A6042 /* Utils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EB8FC08C45ADF73E91C0D57E1C5AFFEE /* Utils.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 6FA9BEF1CED2FDEFEC2174E112D35C78 /* SKBufferingPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = B18C52A43F53D95036703A46040CD637 /* SKBufferingPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FC12F750C43D04254CFEBF30EA4034D /* RCTValueAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 49570DF58F4892ED30C05041A5467F07 /* RCTValueAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD41B796D5A117D917A136A6D2B6F7F /* SKObjectHash.h in Headers */ = {isa = PBXBuildFile; fileRef = 57CFAD62B0C31AA9DCBF31FE329F5A98 /* SKObjectHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FD8577AFDA904B2E045758A55467E67 /* MallocImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 6FE9B7BF86B8E2A15215B19FEDA39B76 /* RNGestureHandlerRegistry.m in Sources */ = {isa = PBXBuildFile; fileRef = 322BD7E5B5EC21B5AD9CD30FA041AF5D /* RNGestureHandlerRegistry.m */; }; + 700F026864EFC35456DB3AC316E83C50 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7017839727276434916E9B2E4EF5AE57 /* RCTFollyConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B85CAEE985AD04FCE729C0D28619BD1 /* RCTFollyConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7044944648AEB804564C9FE12A2070AB /* MPMCPipeline.h in Headers */ = {isa = PBXBuildFile; fileRef = 5428E8B7A216A24ACE562A2878E76B30 /* MPMCPipeline.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7067C14E961788E1806C73BFE49A5BE9 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C4E954738A6FA445136FA1DEDD8AD25 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 708FC84C4E6FD565E824247AEB77ACF4 /* RCTNativeModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = D0E236C476AD7919503F1A8DFFB7807E /* RCTNativeModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7096DCAC85EC86D9B77A349751A55514 /* double-conversion.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1071252E38179AC58994676D7F2E6EBE /* double-conversion.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + 70A6C9DFE145E8BA70230CABEE8C43FD /* evrpc-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AEE4F8CF26E044E4032D85CD05574EEC /* evrpc-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70BEB6C7E73C571B1C9AE79B395D0024 /* RCTUITextView.m in Sources */ = {isa = PBXBuildFile; fileRef = F8E908AF32152FFD689566289EA1D437 /* RCTUITextView.m */; }; + 70E7D50B45BA2C489E0DEA3DDD46D9F5 /* FlipperKitLayoutDescriptorMapperProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 70ECFE39C3BE0CA58B284DBF9D88539D /* RCTLogBox.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C5A6DE1504421AB3F7972497240B278 /* RCTLogBox.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 711AC0D8CF775F4FB0CF83FFA71AD37F /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 712C8D43A8978F8921AD46A6CAC28A0A /* decorator.h in Headers */ = {isa = PBXBuildFile; fileRef = 873E13892F52A4C634ED4A3ACB300063 /* decorator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 713022751DBC226C1F59131C3ACE3A83 /* select.c in Sources */ = {isa = PBXBuildFile; fileRef = ABC8EB8C180081C475112BF167B9C363 /* select.c */; }; + 713E2E937B32516B41E649338410F1BB /* NetOpsDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = BA3CA81C60DA2C1C06D5D25236AB6722 /* NetOpsDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 714B2F9FF9D3C7A6F091F9CD6E1C3A9E /* RCTWebSocketExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9539DBE6F8BE89D65AC6C94CEF0690EE /* RCTWebSocketExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 715187F20E5E49F9F6F7EF3958C84069 /* FlipperInitConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 319DA741C7F7F2C1A3D7C5506377539A /* FlipperInitConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7175B1A13B786C591BD674F1DFC35A85 /* RCTRedBoxExtraDataViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = BBB91E2542DE1571CFA494A70F372DD2 /* RCTRedBoxExtraDataViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 717CE478BF6C0A1AC092CF022E35F436 /* React-RCTAnimation-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 0925416FBF70EF1C01A7354966D0588D /* React-RCTAnimation-dummy.m */; }; + 719459D7DF662085580D5CC903C6560A /* NestedCommandLineApp.h in Headers */ = {isa = PBXBuildFile; fileRef = 94B06DE9660C7CDAB7CB687D3E34A905 /* NestedCommandLineApp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 719B8B9378A0E2234D9AC289CCE72BE8 /* Concat-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 937FBFE739ABB4AF8EF8B6E23F0A4BC8 /* Concat-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71C02FECE211663C9FAABF86DADA4C41 /* NotificationQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = D7075E5E2E8C0A3FB3C53A004D5FA05E /* NotificationQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 71F6DB1F62927AD11393F1C055649208 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB68D666DB329572E746C8E51908C2E /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 720678B1A5DF6793822AA08CD767CE14 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DB21C8AB637D887FF795AE54809B835 /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72136D168F42C67CBE3C561A93C1DDE3 /* SKNodeDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = E9813789CD1C5B9D36786B069FFDB93B /* SKNodeDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 721E166CCE4BB8DB2C1681185A7C49AF /* RCTDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = B8D23A27796719003161563112418CDA /* RCTDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 723693A1E81BB637B9FA01E68A42087F /* RCTBaseTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = CFC3215E917DAAEECA81944A41A3D7B6 /* RCTBaseTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 723A18DFC82D98416B20FFC1B3188BBE /* ColdResumeHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E39E7415842E04A64B8ABCA161FA5301 /* ColdResumeHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 72736D0124FF41B7C710DB84D994E388 /* RCTView+SafeAreaCompat.h in Headers */ = {isa = PBXBuildFile; fileRef = D8E29456D931052E0A869AC75931ECB6 /* RCTView+SafeAreaCompat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 728C02EBEAC06CD822AF70367345F4E4 /* RCTSinglelineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D52061F4A0F5D2C03390B6C1E21BCAC /* RCTSinglelineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7293C8745FB5DA5F6E227ACE5561A0F0 /* Wait.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FB94A2B54B34D00A5070BD2EC0E7C19 /* Wait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72C7ACF2C65313013DA0BF8F9D6E0246 /* StrandExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B73BE74E352372C67AD619BAC7622EDE /* StrandExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 72F74D34F36F8992A330217030BC6C8C /* Event.h in Headers */ = {isa = PBXBuildFile; fileRef = D1913E3E3D1574583C6B8B72364308B8 /* Event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 72FAB7A281127020D529935AAB593EF8 /* OpenSSLHash.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFFCAB6A668CC8083D9FDDFB21F12A16 /* OpenSSLHash.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7385844A46AED4763B3D6439FAC42EE2 /* SSLErrors.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14A9D95B6B33893138BD930F10E50C80 /* SSLErrors.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 73B1815E69FB40E724BA0486AA400B9D /* MacAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 73C58071AA9E5E420EB9F66FEC0CA6CA /* FiberManagerInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 6075DB946B44B2BAEBF9F3895E687B05 /* FiberManagerInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73DF109DBD8CE931255F112DDF612C92 /* RCTVirtualTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9CB04A3B60EFF23CB9C83C6C546F8AA1 /* RCTVirtualTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 73F51A8762DEA88B22EF2443F4A90DEA /* LongLivedObject.h in Headers */ = {isa = PBXBuildFile; fileRef = 271218B9394DE4C2183D665DBB5FFBB8 /* LongLivedObject.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 744302A5FAE87EF3EF847A5C454E7DFE /* Thunk.h in Headers */ = {isa = PBXBuildFile; fileRef = CC948F25A85602DCD1A7E4CC0B1F0EBC /* Thunk.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 745B10B5E5FA115C5B141306459AFE6D /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = C2264EAF7A5BB9E013F8218EFF101936 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74B310824C657C61B485395216555E1C /* RNCSafeAreaViewLocalData.h in Headers */ = {isa = PBXBuildFile; fileRef = 98E51C881022FC5B40B5BC9B3D9CE0E1 /* RNCSafeAreaViewLocalData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74B37BF8C10734F4CE15FE3A851F3E18 /* ThreadWheelTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 16CA108FDD87A616B4785CABFA0BB824 /* ThreadWheelTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74BFA2822C538D6D7D37CFD116E0A94A /* SymbolizePrinter.h in Headers */ = {isa = PBXBuildFile; fileRef = B885F37C6E24A3052473BD896E3BB0BC /* SymbolizePrinter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74CDCD10BE3252CF1209A0763B5801B5 /* AsyncTimeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 205848CE013CF0F6A82C7111C75866A9 /* AsyncTimeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 74FC344B7204A8654926EB3B5950B249 /* FlipperConnectionManagerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = A9BA7C52AD9F07EBE5EFF84C54A029A1 /* FlipperConnectionManagerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 750AA17ACE4A6648E4DE4FCC077C359B /* HazptrHolder.h in Headers */ = {isa = PBXBuildFile; fileRef = B57C257E93504E3F944CE741CCA50894 /* HazptrHolder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75386EE6ADF7B4B9CEAAB73F0427D9FD /* SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 134F0D04FF8A8D1D7A28CDC260AE7781 /* SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7553694D3DA80F9C80D76D6FA4F277D1 /* RCTBaseTextInputShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = A1452657E94EB7B65E9F88EA5F0D5486 /* RCTBaseTextInputShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7560252227617AD5D92F971E76E414C6 /* ThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 497AF328E0D9BE61F1C0C72D4EB600A0 /* ThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 758BFE80259CF66F07DCD04391973C8A /* evutil_time.c in Sources */ = {isa = PBXBuildFile; fileRef = 84901BEDBB7816A4B61B07A601AF4343 /* evutil_time.c */; }; + 75B61FE89EECE43A7CD4D9CAA0C5A939 /* Fcntl.h in Headers */ = {isa = PBXBuildFile; fileRef = 226B295B4F12785725DBDA0B510CB992 /* Fcntl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75B620A095409777A0456C21CA136802 /* AtomicStruct.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EB548B4433944FFFBBF7365BE8B9B96 /* AtomicStruct.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 75BE7C1BEEA16EE1959430A082D08098 /* ParkingLot.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 208DA95582883B7AC06A89201D7DFBEB /* ParkingLot.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 75D59FF43E6FF35B1DE0E7E1081D8DB9 /* RNTapHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */; }; + 75DEF285A2BBFD5452891B8A72A654BE /* MallocImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 760213A7119271B4A88148F72C7D0173 /* Asm.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BB758B38819BEB96C41AB3B41C42880 /* Asm.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76029EDAC67550596B1B14259B5C5C72 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 7913A299A9B2B5AA96D6BFD4C3866B8D /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7608FC63AE02B885982EBBBDE8597A52 /* ScheduledSingleSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1895DF0A9AABE1B878828E972015FB78 /* ScheduledSingleSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7615B15EC6FDFA289773835F0412E54F /* YGEnums.h in Headers */ = {isa = PBXBuildFile; fileRef = 965FB28B3DF50EBE280766D151BFD98D /* YGEnums.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76242D7DC83F04CB3420CF89B85AD17F /* DeferFlowable.h in Headers */ = {isa = PBXBuildFile; fileRef = ED6B7B3CDD01C3FB63FB8F283AF9B5C7 /* DeferFlowable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 762EB8F37B025F9D22314EB74670D24E /* RCTStyleAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 88738740EB1738EB25DDFAA6A66B215F /* RCTStyleAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 764952D6CF50491D2F5C3B3F5E5559E4 /* CurrentExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC085A2646149BBC2FCEC1836420F2E7 /* CurrentExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 767765B47EFE53458E217E88FDCB730E /* SysResource.h in Headers */ = {isa = PBXBuildFile; fileRef = D877921C0CBC5B1811D802759526D355 /* SysResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 768369B5ECE0D7839E3E5234764000C7 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 8B95179759B4E89892CC09A2CEBC6DB4 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + 76985FF377987443DC2F3077197ABB89 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = AEC3B825903B26034278931BF487466B /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76ABCF6D5A75091231161DA5A54C2AC5 /* RCTBlobManager.h in Headers */ = {isa = PBXBuildFile; fileRef = EFAA516FC2AC548D27355CB76C24F54D /* RCTBlobManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 76D3E3D92803A165AB1AA0ABB3F6AC47 /* OpenSSLSession.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 11C899451DB1EAB167F9E43801D7618A /* OpenSSLSession.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 76EC94CEBC562EA6A86ADD85EA42F17F /* StaticTracepoint-ELFx86.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E8DB9FF1D81BBC96E0D1EC6B6A38FAF /* StaticTracepoint-ELFx86.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7727EDEE415A75F2AAAE75C10A808703 /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ACA5ED7877FA8CFF3DEC54E9E7E3E9A /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 773A551067C138C4109A14ABAF5A9FC9 /* FlipperCppBridgingConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 125DB3ED8228FB6CE09A9A6AA429C957 /* FlipperCppBridgingConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7741A87358C8383A2062A5AC2F8B82F7 /* RCTModalManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 557A4EF6293C9D3B7AC2609835885816 /* RCTModalManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 775BD5A33549653BE34A70E7FE4FDDBD /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 268A32B24ACF3AEFDED7D5A83F40935D /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77676A12D8A8127E2937070FA2284AC6 /* FlipperKitReactPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = FD3884C95D9C30C0C24ADEAF0E30F652 /* FlipperKitReactPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77858A4F4E85D4331556455DD7973BE0 /* RCTInputAccessoryView.h in Headers */ = {isa = PBXBuildFile; fileRef = 38AE676CC143C1E8CF90E5F7A7F0A000 /* RCTInputAccessoryView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 779299F15D65CBF4390BD728BF7A656C /* JSIDynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 77C0D432E4451B600DE91705879B5C17 /* WhenN-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E16051BA7BD627C9AB75B48E0DD6F898 /* WhenN-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77F6E51AB4495662BBD2FB264B2C9B25 /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 77FCD8560ED94D249EBCCF66FF38B25A /* FiberManagerMap.h in Headers */ = {isa = PBXBuildFile; fileRef = A75BB320328199F6AAA83A05B9CB35FF /* FiberManagerMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 783147B6E4155B28AF49A14DF8BAFBCC /* Framer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E492C755013DE4664C8EA962F3037D68 /* Framer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 78361D305ED52F52D5AB88AA6939FEBD /* SKInvalidation.m in Sources */ = {isa = PBXBuildFile; fileRef = AE1C1AB329BA832DC2E5736E63884A78 /* SKInvalidation.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7888155A199DD6A7C305BD3DD05CA665 /* RCTSwitchManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 05BDC440555051BFCE15C9664EB75BC4 /* RCTSwitchManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 789A6DCE53D3AB09CA3671D41CFF7EC0 /* RCTReloadCommand.m in Sources */ = {isa = PBXBuildFile; fileRef = 2379C295EE8587A29238E3AA06DCB5FF /* RCTReloadCommand.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 78A5A19743A64E2022ABDAA18F333775 /* RCTTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DFEE0800A8B2D7743DDEB696FB96770 /* RCTTextViewManager.m */; }; + 78C4CE6DE8F806F39DABCE9137371CBE /* Observer.h in Headers */ = {isa = PBXBuildFile; fileRef = 08B9B790B20C31E1178FD757FCBBC379 /* Observer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 78E4439204D6DEA61B30F04737D4E23E /* StreamThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 06EC1878DDF591FF157E8AF1FDA249E4 /* StreamThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 78ECB38E4184E1BA275315533F90D5A8 /* FBReactNativeSpec-generated.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92E1A3C0B3D9E1A025BD74F195E43BC3 /* FBReactNativeSpec-generated.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 79030944E71CBDD3F45E0116FE88A374 /* OpenSSLVersionFinder.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA726645F5848C06A1F665F7A871429 /* OpenSSLVersionFinder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7933F59CDFC87710A3F6FB1B8C09175C /* AtomicHashArray-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BA233B6F9EC362635DEE7B799415BFF /* AtomicHashArray-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7941D159B653230F00B7EDA81F359626 /* SocketOptionMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 48C0D9B78639A507C16C9DCDF80D0DD4 /* SocketOptionMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79444C10BF786227AE4D09209D4AEEA9 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 794BF5C08F1461E88C3EEED599A6E8EC /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2894C664AC9D24DDC577277619309DAD /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7954D8729852F15F3F1FD0ABF75AF077 /* AtomicNotification.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 693654C9E9A9F8C3F710EAFC70F936D7 /* AtomicNotification.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7965AA6F61041FC2E5734DACB4DDE131 /* AsyncGeneratorShim.h in Headers */ = {isa = PBXBuildFile; fileRef = E89978546EB18CB3C30E4E335168B690 /* AsyncGeneratorShim.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7973621442736E887E54BA6E534D050D /* IOThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A0DBED9AA06BBD50ED3FD77795AD34B /* IOThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 797DDFD0754C6D81773A8DE2924F8B99 /* RSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 3866778BE666FEEEA577F6111F3EAADC /* RSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7988A2DC9D210AE50AFFF7FD14DEF9D7 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79A24728960A81DAA0E59A6D7383017E /* UICollectionView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A4233F004D8FF5DFE443AA79A462968 /* UICollectionView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79B1FE3E1B03793978AC997CF4588B8F /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79D3836DF38BDB0AE37974C788574F68 /* RCTMaskedView.h in Headers */ = {isa = PBXBuildFile; fileRef = E767731126AB948E874B970EF1BE7AFF /* RCTMaskedView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79D697065F93FDFA08F4BD1D5BF0FAFC /* ProducerConsumerQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 824B921BA1E44F0293359C9ABCA6E75C /* ProducerConsumerQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 79E4F73D454FFEFDFAE4B77D1A9AE1BA /* RCTTextSelection.m in Sources */ = {isa = PBXBuildFile; fileRef = 74D48384AEC145E893B5F709E82E12D9 /* RCTTextSelection.m */; }; + 79F92A6A7A61F5DC2B6644E4FC256217 /* diy-fp.h in Headers */ = {isa = PBXBuildFile; fileRef = 7FA87579D49957C3FE93BF1F386C56C5 /* diy-fp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A0B7C629E6029E2C859276870D246C0 /* Dematerialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A884779B437B2F780CCBC1B235E2CC9E /* Dematerialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7A34E1B4032D368027054F4EE19EF809 /* BaselinesTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4FACCDBB42010ED200752B0FCA73AAF8 /* BaselinesTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7A37BE514B055A87045CA1499499081E /* PTProtocol.m in Sources */ = {isa = PBXBuildFile; fileRef = 2B3563C3A43537B15CDCCD57E94B04FC /* PTProtocol.m */; }; + 7ABE98724B7A9E185DB0715ED9215299 /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 7458F397BE6FE5D095086B8666002063 /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7AE246B3E886759D7424FA85A2806682 /* SafeAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = A72DAB4ED4ACC5397E4469F53DD2462B /* SafeAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B0EB8F2AFF47AFE58CED1E4AFD9834C /* Flipper-RSocket-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 35ED33D74E3170EAFF2AD9FE7AA23818 /* Flipper-RSocket-dummy.m */; }; + 7B0EC2E3733000591A0DEA50B1EE772A /* SanitizeLeak.h in Headers */ = {isa = PBXBuildFile; fileRef = E98D882040B919C92C4A0503CDB9AE5C /* SanitizeLeak.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B41CEC0E01B9A7B1AF2A2C0B583E694 /* AddTasks.h in Headers */ = {isa = PBXBuildFile; fileRef = 942C6219919354EFAF713FBCE0925FBF /* AddTasks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B68834B6405A97FBC0551AE44B664AA /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = A4B0919C9FF7D5620A1738B36BF1443A /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7B7ED360FD257809F879ADDA4F04181B /* RCTUIUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = ADC778ADADC4E6449FAF55B6F6BA4223 /* RCTUIUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7BA6EB79479B9F7F0CE67FED0F781598 /* RNGestureHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = DAE719AD41FF7D09A301EB6115E4B43F /* RNGestureHandler-dummy.m */; }; + 7BA89568014E27A3B9BC0AED0669FBB2 /* RCTAlertController.h in Headers */ = {isa = PBXBuildFile; fileRef = 329C4B9228CDA855266F5E4284433F3A /* RCTAlertController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7BB61768FEB979AF7A103CDE85028CC9 /* ConstructorCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7C14D191FA34E8857309E283CA52B189 /* strlcpy-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8282C5E41FB321ABC0FF92D9F49DF3F7 /* strlcpy-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CCB402E74799DA7951F54216F02ECB6 /* ThreadCachedLists.h in Headers */ = {isa = PBXBuildFile; fileRef = 33E43DB2289E042B983177083FB17F5B /* ThreadCachedLists.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CCF2BA97075844A7E11520075E599A7 /* ObjectToString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C9DB4376E57B2A4FC33AFEB4AD8548D /* ObjectToString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7CF0FC5E1B52E3EAAE1F467240A5A4CD /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7CFCF99EADAABC92089D989F5A375D0F /* TokenBucket.h in Headers */ = {isa = PBXBuildFile; fileRef = D64215DB89058F5FAD89ECFA5FDE63EA /* TokenBucket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D09AD280072AE615BA4B6ADA78B903D /* Cursor.h in Headers */ = {isa = PBXBuildFile; fileRef = 441416FD44B099BE6C03D00E34B51238 /* Cursor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D1FE05BB6AFF497C5324AB68014E2C5 /* YGStyle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 001B32E1203D10D3B5FEAFDA5B0840B2 /* YGStyle.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7D2EFBF71E7F2613C5E6D53E584F3C62 /* RCTAnimationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E5E7FA58ECBD7EC5B4D31DA1B316380 /* RCTAnimationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D5BC1713E3281C397EE18AA103D8FB8 /* not_null.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B1E2BFC655796D1E34E7A7B3C953C0B /* not_null.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7D847E1407A80379FCDD80FF3BBF9AF4 /* RSocketRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 370BE1295F24AF8F54BF7EBDD0ED9142 /* RSocketRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7DA627470927573C9051AEA89983B114 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = ED31E2D33BFA0F0CAE597A9B3FA09DD1 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7DB919D1DA73D3B46479A1ED5E2B51A8 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7DCE7E21F2233DF0AF267732828B683A /* JSCExecutorFactory.mm in Sources */ = {isa = PBXBuildFile; fileRef = 93C82060D9A21A87C3D87BA54814E1CE /* JSCExecutorFactory.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 7DD198C88FB823E1E7D801D60A22FBBC /* JSIExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = F12FA965E1E205282FB9435B76E661EC /* JSIExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0D9D49DED326CBF54D0A6A9ADD648F /* WhenN.h in Headers */ = {isa = PBXBuildFile; fileRef = 97E1CCF886E153E054E11425759D114E /* WhenN.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E0F8797FC52277B11FEF932F7EA8C58 /* FlipperKitLayoutPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = C016F7F00C8ADF9388D553393C936A47 /* FlipperKitLayoutPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7E61812659CD06E706ABB9CCC4162F2E /* RNCSafeAreaShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 95B3208C7829341A76998D65275951EE /* RNCSafeAreaShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E6CB070D22DCA47371090E3F269A495 /* RSocketServiceHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 016446B10A5C7FB2CC9112270A68115F /* RSocketServiceHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7E8069346102A64CB52CB838E16CFE01 /* UICollectionView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2F125AFF8307528D21544F722BE5D48B /* UICollectionView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 7E87EA1778E1758C0311C9DDB2781F0D /* ThreadWheelTimekeeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8929AE1B886511F1B05FB639F1FED09B /* ThreadWheelTimekeeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7EA9458564D5419E44E2BE418358F20F /* RCTTextView.m in Sources */ = {isa = PBXBuildFile; fileRef = 36422C74F791FDB31F77364F3AC7E962 /* RCTTextView.m */; }; + 7EB4C7CC70912158CF4EE086C2BA1941 /* RCTLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = EE1BA91A24B27EF487E9886FE1A3E764 /* RCTLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7EFE417D54026DA67D1A8B3F9745427F /* LogStreamProcessor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9701CD8B20ABD0B6E7BD0F38876E522D /* LogStreamProcessor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7F0BE35FECE63191829B5C4EFBADB36A /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F1A55F862020DF0CF12A89DF1735737 /* FlipperClient+Testing.h in Headers */ = {isa = PBXBuildFile; fileRef = 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F2EBF962004901C3F47916B8C907AD7 /* Multiplex.h in Headers */ = {isa = PBXBuildFile; fileRef = AB8800BFA7C423DE55B79D0BBAF96E07 /* Multiplex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F323EA6F985D0A95CA673471198FA23 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 73EFD54A74ED4EEAD7542C5EE601C550 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7F466E0C9EFE8C177DED92A57F9EFAD3 /* SysFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9D12932317AC6A9DD14332B0A0975A9E /* SysFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 7F9C9E385D96F0B362DABD9B6E06EE08 /* RNRootViewGestureRecognizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C071225723F0A7C28F08D470220CB50 /* RNRootViewGestureRecognizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FBCBF958944289F7375EDFBEF6C8F52 /* RCTImageView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FD73C324A7CB39CA1629146AA56FB06 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = FA24B29CF1E2FD8262A240DC53472DC8 /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 7FDD13C46E4B6D4FB64448EBC2C80E08 /* Yoga.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CCF68397950076B1FBCD241889521E8F /* Yoga.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 7FE8EE5E179853BA8AE0D5AEFB1B65E7 /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 859B60DE21CF193FCB61B5F3A5D93AB3 /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 800E9D1F8746AF0009A273588F325007 /* UnboundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F833468CF0962230B33A1A98CE478C8 /* UnboundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80188F642A76E883F70BB9051F1DA88C /* Launder.h in Headers */ = {isa = PBXBuildFile; fileRef = 278B9B0C25A10237C65843909CF11662 /* Launder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 803B26176B598BCC09B83DB947290226 /* RSocketResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 82B7D6C3E73EFED1B452A3C13721AC70 /* RSocketResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8065AEA0D33B284071FC4021C4FECCA6 /* F14Table.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 806637767403F22675529DF2AEE6BECB /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = 6E863ED0A813D9AF4DFD73B26CFACF59 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8098E9420ED4BFED7868B7EF7716BE53 /* SonarKitNetworkPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 425C236277DF2AF63DE2854462927C46 /* SonarKitNetworkPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80B59175F9DCB85B60A63AE4C7984C6B /* Fingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 0BD9CD46F71D9B2CB704FCFB2090E2E4 /* Fingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80C2D327E0271D3D9C803EDEDE4A27A8 /* Overload.h in Headers */ = {isa = PBXBuildFile; fileRef = C090946A7BF36D3FF8F3C509AEBB9FC2 /* Overload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 80F0B8F4915F9295FB525FB3C035F52E /* RCTBaseTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 001FB46F92A9671A4BE450C598B6CC8D /* RCTBaseTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 812662DE18AECD857B37648361115F83 /* StreamThroughputMemory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9F085FFF71A941BBCAE5631D651C757D /* StreamThroughputMemory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 813B4F2CBDB5226B39AFD9A994F09917 /* Dirent.h in Headers */ = {isa = PBXBuildFile; fileRef = 29BC6B710B012DEAE094D1B1412724FF /* Dirent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 817F71050E356738A876E5ABA5D16FD3 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8190C2EFBDB09273EC6369262FB0C28C /* DrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4874F889D5953046FA4F16DAEF42BC /* DrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81BB8F51C237163E237908E4E4655C04 /* RNGestureHandlerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 6127211870119AEDA10BE2DA1AC1AD85 /* RNGestureHandlerManager.m */; }; + 81CA6ECFB04D9D865FF565F1CD086B5F /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = CC00A49C089118FEF3E74D6A261CDDDD /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81CBCF0444FFC4C3AE8D3FB82FB2E867 /* PrimaryPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = DE433456752CF5D378CFDAF3A3F075DF /* PrimaryPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81E66FB2FFD058945CEFC0A5EDA285F2 /* RCTURLRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 49144539559F122AEBF2DF84E309A3BE /* RCTURLRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 81F265132CA7C7F3BEC442217E4A12F4 /* RCTModalHostViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A0F3A1BD5D2F0BDA29EA68352F082532 /* RCTModalHostViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82298F9EECFF28C93A06E7886B4A89F0 /* SKBufferingPlugin+CPPInitialization.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C1214102348D72EA0EB70BCDE98F689 /* SKBufferingPlugin+CPPInitialization.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 822FAAFA9CC9EDB53BADC792892ED6A4 /* StackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DCF5266C2DD4A81C9352BB056F7970E8 /* StackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 826CE5C665F39576AE1D066203BE5660 /* RCTMultiplicationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C74EC1A843AC3D02F83EE0EA0AB7C22D /* RCTMultiplicationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 829A1B6D5460FCF8963A56DFC018E026 /* RWSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 7C25724E865D89FF6A24B130399CD384 /* RWSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82DD164A09185FE902FF138660A7FDE1 /* FlipperCppWrapperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F9FBBC7BFF49085E11FA78C9F1DBDF /* FlipperCppWrapperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 82E08553FB8DB17FD63535D3CBD71BCE /* RCTValueAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 82FE71054E6A8A24BB5EFC46FE4CDFBD /* Future-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = F997CDFDC3F950F4321544ABA1A6FBA3 /* Future-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 834BCE4DD9F9258B36EB94CFB84FEF87 /* RCTVibrationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 931FEF8A0D1F752ACFF9FF38DFDCB080 /* RCTVibrationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 83577FC2D464E21A62CE32A6A4DCEF5D /* SpookyHashV1.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E1E80AE43DC84B849F0AFA26E4349BB /* SpookyHashV1.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 837C7DBDEF99CDE386C69DBBC952F19B /* RCTKeyboardObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = FD302571E88DC0D638F97150C0009BFD /* RCTKeyboardObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83930EB6CBAC2174301DB466A44993C9 /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83B47C4E56AD6D7FA5DFA69E1B07B63F /* YGEnums.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D6109E4A777144EBC185180C773EA6AF /* YGEnums.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 83BD0F1D20401DAC0C60DF950B18B973 /* FrameSerializer_v1_0.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D3BBFE342AC78030BE9F88133564F39 /* FrameSerializer_v1_0.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 83DB6BAFAA7C2E0BEA7F8B095F806D9C /* RCTLinkingPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EAD5200CB5EA7974D2E999D30C3511AA /* RCTLinkingPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 83EEEE9B63F193E6EAF9D392FE46ACDE /* RCTProgressViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 843CF5DDD2832C76883E3178CF96CE87 /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 17D6C5AD6765484A6E978DFF23D181E4 /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84610D7C9D208083420F0616B3A06C7D /* Accumulate-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DCC4E92F65981E73E4627C92AB1EAFE5 /* Accumulate-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8470DB53030C67FE6D2E167F0B128307 /* RCTReconnectingWebSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = FC5FED0B95D91DFF218C3C2EE3E6AE8F /* RCTReconnectingWebSocket.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84767FECC8F0D3AC0CA209DACAC4197A /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = A603A8B59A3C57C13E844A2B440AEC4D /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 847E87A8973CB7F82452922D5756E6FE /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FF14741E96009E0CD2A95F214B6E31 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84971C21C99E8E0324296783EEE1CCF1 /* ChannelResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 849B61221D2B2EFD63F3D8D65E6431C8 /* RCTModuleMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = BA8942391BB25692B95EA8AE03BD62AA /* RCTModuleMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84A221677A8CE9D6B46475C976FC18E3 /* OpenSSLUtils.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59CC2AE6A3295A82AE6ABE30291449A7 /* OpenSSLUtils.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 84B8ABCC48D29D67DE40CC92B5C49B49 /* RCTEventDispatcher.m in Sources */ = {isa = PBXBuildFile; fileRef = EDAAEB39B89DC09D2D35D420CBE23615 /* RCTEventDispatcher.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 84C564515CD7B88F5FDBDAC0AA760AD0 /* Time.h in Headers */ = {isa = PBXBuildFile; fileRef = 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 84F8EA11D7FBE61C60221313BE90FDFD /* RCTTiming.mm in Sources */ = {isa = PBXBuildFile; fileRef = F35D7F0C1D3D6A263A2E72A5A7E487FB /* RCTTiming.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 8530B16DF50E63F7A901AE062C7E78B5 /* Syslog.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D26497877C8AB3B93CC402AE9CE5B08 /* Syslog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 853A3F225688C5F2DABDBE8AED362EAA /* RCTSurfaceHostingProxyRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E7777D92621445BF0257E10F0F86ACD /* RCTSurfaceHostingProxyRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85565562CE5A893D8DDD2C0C8CD32572 /* ConnectionSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8570A0EAEDC43A159E8499712EFF0FBF /* GroupVarintDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 42D84BE54931FF24BA032F44401F35C2 /* GroupVarintDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 858C8670E822EB6B43B070801EF81233 /* FlipperStep.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9FA0D786B8524A74AD94BBBAE60112A2 /* FlipperStep.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 85B07C2F2D7C4E6FFAAE2B509DCF62D4 /* RCTInspectorDevServerHelper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 09A7506EE3C0B1819CB2B589E9F3C496 /* RCTInspectorDevServerHelper.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 85B8E6D61118A45BC2901A0F6B8E9FF7 /* LoggerDB.h in Headers */ = {isa = PBXBuildFile; fileRef = 79B424E2C3EABD731B143CBC8939FEF3 /* LoggerDB.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85C4C1F32BB69E159B2D0F732827774E /* Rcu.h in Headers */ = {isa = PBXBuildFile; fileRef = FF7DF8CF3F60C532F00794B61EB72DD2 /* Rcu.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 85E3C3F79F6FC41736F0878588AAEDC7 /* RCTModuloAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = AF1959C6DDB752A16DC60D3EA7FB3697 /* RCTModuloAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 85F1F282C819CF6B95B3C8CD7E7FD6DA /* RCTProfileTrampoline-arm64.S in Sources */ = {isa = PBXBuildFile; fileRef = CF44EB9576CCBFA57DC957C87DE3929C /* RCTProfileTrampoline-arm64.S */; }; + 861FE751E5DDDC02F80F5A712FCF9516 /* LogName.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2B83EA61AF7E0824DC080143A7B15F67 /* LogName.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8650512D11728138279D382163E2CE71 /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F76BBE961F9480969E78CD30C63B36A /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 867343522FA24BF2D68D57BCDF84FA41 /* RNRootViewGestureRecognizer.m in Sources */ = {isa = PBXBuildFile; fileRef = CFF98A242258EDCF733E50F6AD79147D /* RNRootViewGestureRecognizer.m */; }; + 868297A20FDFD69982B3309F782B452F /* RCTImageViewManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8BEB0C1831B6B087FB96479D0CD2F07F /* RCTImageViewManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 86C658AE55F8B7C7F9BD36F4205B7652 /* ManualLifetime.h in Headers */ = {isa = PBXBuildFile; fileRef = 7628D7EBED96386B1DAFEE0D444B3EDC /* ManualLifetime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86DC90785C6F5FA50F5FAE4F0AD057CE /* StrandExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 9D79D1BF9A4A41C5CBEF90B3F903A6D6 /* StrandExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86F6A605AF458552B5BCA9B2B26C3338 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = 783E828E4ACC21B443CFE96ED95B1C61 /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86F89D1281ADFD3B0E4F8E5CEE14E3AA /* JSModulesUnbundle.h in Headers */ = {isa = PBXBuildFile; fileRef = B524FF297E72E0EB9BC0AA57C5B4B4C5 /* JSModulesUnbundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 86FF7349B49207A1562C8E0FCFD4361C /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7B740F593CF212D09EF3F10D55C97B /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8704A34C66EE0B7964F7F71765C21EF3 /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = E31A0760216F0EA8E0312CADDCB862CC /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 871A48DA41DF3ECA216768F01FC05CEC /* RCTFont.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D17A71485933786564ABCF5B5617BFD /* RCTFont.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87756DFBB2C8E32D7ABD5C73F3EBD28D /* LogHandlerConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = CEEC396FB475BAEA889DE422A3A09C40 /* LogHandlerConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8775ECA097148C94E4BF37A014578058 /* RCTFrameAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 362492CDD52F6931D05A7127597AEC7D /* RCTFrameAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 878B669BFBC2D6F5356D1E590F9E77E6 /* RCTDevSplitBundleLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = BC52FF366D30ED3D6AE3101FAC521F93 /* RCTDevSplitBundleLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87B62C33675F517F697A8EF59760B16C /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 24CB7368AD642CECE9F25191DBD9F848 /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87DB70658A2A58BB4BFBB9BB1AA62D7E /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 58F479EFC1CC6C6698B7DBEB9F905343 /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 87E458C02E4E528055AF336C7A6A88AC /* SysStat.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5D2007D8F77EA6EB55A4E94CF20B7B12 /* SysStat.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8816E0D6F6961ADACDBE9B216C5E4EE7 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 882079DC749CF7A193E0F03577C11D1B /* RCTSurfacePresenterStub.m in Sources */ = {isa = PBXBuildFile; fileRef = 4792568423F3FBAFCD1429949BB88B6E /* RCTSurfacePresenterStub.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8823725E7492DE5D403DF8D6A6B0676E /* AsyncPipe.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 14C23A0ABA96B6CB515E3445FDE81E7D /* AsyncPipe.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8847E37F7DEAB15369E059D071F2C7DB /* RAMBundleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 885C8436D32D8925769BCC39B33399BF /* ClientResumeStatusCallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 12ACFC2CB3970CEA53D6304A677EA818 /* ClientResumeStatusCallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8870DB5A36C74EB6FCC583E22144AE2A /* FBVector.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B8517DD5D8B56A1A70E7A8E313606A0 /* FBVector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 888637F6BFE213301F1FF8A45DD97C8B /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 46EB54B1D0C851994CFCE97497E38F9A /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88932291EC57D256FDE9D08E4F488470 /* RCTSurfaceHostingView.h in Headers */ = {isa = PBXBuildFile; fileRef = A5DD2E19BF23A2B7E19B50E45088D00A /* RCTSurfaceHostingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88947323028258F32CB2CFB731EA9EE4 /* RCTRedBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 41FF6E2844328F39E0F0980DE4C266F6 /* RCTRedBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 889C37167575BDD17B368DC0018CBAFE /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2203D18515AB76E05967AD3CB9730EA8 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 88A65A979B2BC7E297207EB9D45C89C4 /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88B0E3ADE55E6A20B343BDE1632904EA /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CBC1104C46B075BE7C612CB2CF026D2 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88BB55C7206E997CB6974CC33E0A1356 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 242E56C8A4ACBA442CC17D8C10EBC171 /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 88FD50779E964446EB46F424791CF859 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89075FE26DC06662E72F0340998E5A60 /* RCTTransformAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 320E2DF9FB662DB62E3BE712C3F26079 /* RCTTransformAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892692202922D86A0B34A6EA32BB464D /* Subscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E96152BFE80CC4D17212C73B577A1E7 /* Subscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89272E4BC6637335BB8FCDD682967FF3 /* Invoke.h in Headers */ = {isa = PBXBuildFile; fileRef = B43F9E1D766BC8A3CDE1D810DB905D4E /* Invoke.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 892922B355B16A6338C9FCD098634235 /* SSLSessionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 893401EF2F56AB3AE5382DDB67E4232A /* CoreModulesPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 893844DFB7AF0C7D4167D8EDD6C3C7E4 /* FBReactNativeSpec.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F596811D95E9461EC8228E0043F3124 /* FBReactNativeSpec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8954C44E3A09A133E0E198260582EC72 /* RCTSubtractionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 39B0D6CC0642205F87846A98A38937BB /* RCTSubtractionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 897A4CEE58421651ED057844061EFC5F /* RCTComponentData.h in Headers */ = {isa = PBXBuildFile; fileRef = 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 897D1756E9E795FCCD40ABED7D04C576 /* Cast.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EAD435E5F12DCB3602C909D1667A40 /* Cast.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 899D67A26A11893ADF78CDEA5C8882A1 /* Arena.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A8F34C28A3467C2F89B08FD4B16050E /* Arena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89C3E2899E606CA822485E300EC2F5BF /* F14Table.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 68EFB860C63432E0FD42D908D0648589 /* F14Table.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 89D5FF6DAD5C4817342F84D36DE79085 /* EventBaseBackendBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6DA6398A5CFBC999D9D2106E05626E9D /* EventBaseBackendBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 89EC6406629951C3AC06146C4DDFDDCB /* RequestResponseResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 795B16B55A28D94C3DBC963722A2B360 /* RequestResponseResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 89F06F956B3B8CFBB611E54F4875692F /* RCTShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CA9E115281E34E39A609A88B050BEDE /* RCTShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 89F8550706514989AED06490E33C079B /* RNPanHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 05F592236D1CF05E181FD7C7F8C98C05 /* RNPanHandler.m */; }; + 8A114E0403D8B2820889638928FA29A5 /* Benchmark.h in Headers */ = {isa = PBXBuildFile; fileRef = BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A148D95C53495843EA75DBD05E3B366 /* DistributedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 385A3DB454F6863BEF69B6D05D3226EC /* DistributedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A151AD19AEBED0FEA9BBE346AACB975 /* RCTSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6F5D38305A197F268E87E406F71A7DA2 /* RCTSafeAreaView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8A16399A8AE7B7B8D151859978CE6B22 /* event.h in Headers */ = {isa = PBXBuildFile; fileRef = F163B8C0FD1158E08E756762D68DADE4 /* event.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A1B19AACFA21BFE7805ADBC1AAC7B68 /* FKTextSearchable.h in Headers */ = {isa = PBXBuildFile; fileRef = 039AE7D629F4EDF88A50E67C1344340C /* FKTextSearchable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A3EF8689D525946043D9E87785D0E4C /* QueuedImmediateExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 12E6DFA171967F457EAD75FD00ADC88F /* QueuedImmediateExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8A460363A3B361A9E893C02C4416291B /* Function.h in Headers */ = {isa = PBXBuildFile; fileRef = B9DFA95447F33470564B8F5A2CF14CF5 /* Function.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A52D42A4C6D102E6126195F2F989ABF /* MemoryResource.h in Headers */ = {isa = PBXBuildFile; fileRef = F680E04A6FECE0F1398F74EF9CF0E56E /* MemoryResource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6904D0FD340168A397E74C433D3730 /* EvictingCacheMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 7990548541F36F4F3367B1D7E4216782 /* EvictingCacheMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A6EC5FF1574AFAD386A733455E9FECC /* SocketFastOpen.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 889D1940D4960158EFA980CA019C3A93 /* SocketFastOpen.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8A7DA89E180F7F7D144BF96A59909223 /* SKStateUpdateCPPWrapper.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20CB3E5C0266061AE5305BE77E2B3CFF /* SKStateUpdateCPPWrapper.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8A7EE614515E1E44B09882F47540C934 /* RCTBaseTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = B8EB6AE463C0C6ABDD9A4BD0AE8AC7F2 /* RCTBaseTextShadowView.m */; }; + 8A7FAD85C25870F37B91298094629045 /* PTPrivate.h in Headers */ = {isa = PBXBuildFile; fileRef = 45F503335521BD9E50642757737E5A00 /* PTPrivate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8A9A06DCC187EC43E7CD7629B8589389 /* Parallel-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A2673F63032E40510A03F8B41758FFE0 /* Parallel-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8AA05E6013B2E89C705763B70270CB75 /* Sockets.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F9FC94115BFF28B5242EE3721E06A54 /* Sockets.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8ACCBA73DD856725A8DEDD0DA6C428F8 /* RNSScreenContainer.m in Sources */ = {isa = PBXBuildFile; fileRef = 07628ECD580436372FABAF0A61AC31D2 /* RNSScreenContainer.m */; }; + 8AF11AA05BFAF79314B105F5B19EC601 /* Baton.h in Headers */ = {isa = PBXBuildFile; fileRef = CD657CAAD584A2F7762C27D3C36D5D41 /* Baton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B000E424AC316943C809F40EB4FCAA3 /* Request.h in Headers */ = {isa = PBXBuildFile; fileRef = 81E484DE664FD405812B02B80DE8473C /* Request.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B02E89CB4605B00B6557880F8BFE4F7 /* CompactValue.h in Headers */ = {isa = PBXBuildFile; fileRef = A39F8229634377AC72776DCA6A1F24C9 /* CompactValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B0807F8E6BBE2D8826BC54E8EBD4D93 /* RCTRefreshableProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 7087737310AD93EB6E58A920ED555CAF /* RCTRefreshableProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B25E1AAC5729FDF703EFAB55C16D969 /* RNCSafeAreaProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CA6065D440E7989D080B7CCEB860073 /* RNCSafeAreaProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B363E94A08AEE38E926572C0D3A6802 /* MicroLock.h in Headers */ = {isa = PBXBuildFile; fileRef = F3256C06AED48D37533E4A28CD7F7438 /* MicroLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B439C65D64ED6ACF66AF7951A9A567F /* json_patch.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F751828F4DE80C7782447F461745099 /* json_patch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B71D6A81D3B4089D1280F46B46FE41D /* RCTBackedTextInputDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = C25C815673CD349B7CF72589528A7DEE /* RCTBackedTextInputDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B828B8DF88CBFA5133AC9BC3D8FB643 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8B95E7013CF71FA78DE6FD0C142431FA /* RCTBlobPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 6596ECF01A2A78F57C8C86D8A90D7C0F /* RCTBlobPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BD770F825A7B03185380067B762A031 /* SKResponseInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F051DBD6BF88D1F6A965613D82FDEDA /* SKResponseInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8BFEC570F8A97114C2C3CBCD95332A2F /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5775F3E43AD337DECA7061948CF9ED89 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C17B1849CA97E31D35B95779F2791A3 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = 86B861328CF637D28DD429D2B9C83724 /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C238BD1C2F4377EEA1AC2B20965C6C9 /* YGValue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8EF17DE2E9F28B9FDD94C84D348BA7A5 /* YGValue.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + 8C2393B839FFB6A4FC8CF2501CB0B464 /* RCTDatePicker.h in Headers */ = {isa = PBXBuildFile; fileRef = 78A011E4A3A7812819069078FC73719D /* RCTDatePicker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C597881913D3BD2035E8CF1A44DB934 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = 838B773F5C5501C367D6BDC1067A1F81 /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C5F00D97F096D25431FC5DF85EABE51 /* RCTCxxUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 14876557842587F0FAD0A3369BDC32E4 /* RCTCxxUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8C61ED371D6B27D6D918449BD0EE3293 /* FlipperConnectionManagerImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9301B429E01F4263AA48460FA094E656 /* FlipperConnectionManagerImpl.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + 8C6C5CFD1C4EB06F810E76E90BE758D2 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E89227B8E627702F61706B4E81CB3D90 /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C6F812E7EBC3DEFEC5A6A7AC66AA968 /* SanitizeThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D15FC030ED8EE2D18D9DC1ACBB98F9E8 /* SanitizeThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C7D98AF2AB20731D59F429889832774 /* SpookyHashV1.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8C9CE7ACE11A7BC165A907A76D1E0EA3 /* SKNamed.mm in Sources */ = {isa = PBXBuildFile; fileRef = B9FDBD8CAFB3A2EBA49D7A0E3278F3E4 /* SKNamed.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8C9DA9DC4925D40EAC20AE7D918ACDD1 /* FireAndForgetResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = AAA24D3D02EEC1FA31295417B049792D /* FireAndForgetResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8CB885168F2144F69D0CC5AA6D72F4AF /* RNSound-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 57EAE6D87C9E3D828FFC281A9FB51751 /* RNSound-dummy.m */; }; + 8CEFB1F26485BC95037329F4DC51AC27 /* ProtocolVersion.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 34205B64B6A66C24015D607918E608D2 /* ProtocolVersion.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8D12019C3D30ED92454C6567F333BDFD /* RCTSinglelineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 77775C9FACA56950603A1CD117BD51B9 /* RCTSinglelineTextInputViewManager.m */; }; + 8D424A8DE39FBBEE2ADCE9E895EF0815 /* NSArray+Map.m in Sources */ = {isa = PBXBuildFile; fileRef = 836F266F77557D402D1A34A5E87F6120 /* NSArray+Map.m */; }; + 8D4322ECEE7B679D7748AFE5F458C392 /* FLEXNetworkObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D04D488F7784CCEB19A10783A608A5F /* FLEXNetworkObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D7055C00AED680C8D5A1DD1D2B47132 /* IPAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 6185C1E47CDAC547C34864A36E707546 /* IPAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D71183909DA41FBD9A18866FA8F7D20 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = EA614ECF3D0C49338B6FE24957B5A512 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8D877E4C1761961A15A0F0C06EAF85A8 /* logging.h in Headers */ = {isa = PBXBuildFile; fileRef = B494A82A2396E267800E70207DF3027F /* logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE45D7A8A6FEEF27CCE2D4ED4AADAF9 /* FlipperPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EAA2F3BFBCB6E4DBF7962E37385C33B /* FlipperPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8DE55AC2DDBBE3C80E44CE8198ED66CE /* Demangle.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59B0F22AA675448C3C81F6898267FDFE /* Demangle.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E16408ADE0D459E64BAD098D72B72A8 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = DDC6FDBC8A79950C349B540F221EDB65 /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E37B253A7207370047ED5D60D57C7F2 /* CacheLocality.h in Headers */ = {isa = PBXBuildFile; fileRef = E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8E4477546FBFAC4AFC45566CD49767FF /* RCTBridge.m in Sources */ = {isa = PBXBuildFile; fileRef = 4708DECA4A15932361BF726582EBDB58 /* RCTBridge.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8E73E1585DD8C010BA2A19239F0FA589 /* RCTVirtualTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = C6361676855F6ECD1E6976C51CB8DCAB /* RCTVirtualTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EA7A8637C2018E517DACA471A711195 /* QueuedImmediateExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 39065F212EE27FAEBEE1EDBD603C999A /* QueuedImmediateExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8EF8F581BE8C84716F1BE13C0CF91356 /* Symbolizer.h in Headers */ = {isa = PBXBuildFile; fileRef = 8667568CAD7BE538D7B8B147C6F9FB2F /* Symbolizer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F22B209B1C07EEA25E0D4077C8B1AB5 /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = 717420DB630B98ABD89E4E154F4CB4AE /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F3296AB69F1727859F5ADE4CD94FF30 /* FlipperKitNetworkPlugin.mm in Sources */ = {isa = PBXBuildFile; fileRef = 8A419A85A6D7A4A449877B15F224B8ED /* FlipperKitNetworkPlugin.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 8F4231C2D7D5A0C8B5AF0E4A02A7463F /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D660EFE296AD4D51DE9D2FE92B6EEB74 /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F4FCF9433964AA9FD487E3E9BA386BF /* ErrorCode.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FCB74B363612F72D8F08716004E33E2 /* ErrorCode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F55B2265DDD2DA4A1180B262377FD67 /* MethodCall.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C2DE16DB639D7A91904B8D3F6ABE17D0 /* MethodCall.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 8F611D1783BBA5E7BE0A46A5CED9B138 /* WarmResumeManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4512FB26283A5BA9C810F158C2AFBE97 /* WarmResumeManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 8F67B2502A91A7E4B113E62739FEFADA /* RCTModalHostViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D05549E686B609D3EC452BC8237A47B /* RCTModalHostViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F6DBF9EABCF33E058985CD58C53844D /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 40C0390E0D9A5212FCF001871676E7A4 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8F85A9F75CBFEF6A395BFD7B916C3227 /* AsymmetricMemoryBarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 78F0FD58C2D2FCD8D06788BE47DE4B2C /* AsymmetricMemoryBarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FAC3AA6D0FD259503100319E231C282 /* ManualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC1785BC9BB001696FB59FF91D49219 /* ManualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FBC4C4CDB06290AA25EB12E3A4F1A25 /* FlowableOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = DBB902FEF5E3B8E76F96B2A39AD4EA4A /* FlowableOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FCC79A3035A770C2E5F3E675C1BA561 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = EC0D3CC3849D05AC4CC30DA5E4E76707 /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 8FFBFFBEA3C42BC47FB9BDB320563F35 /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9005322172CFFD603850429563716B9D /* RCTUIImageViewAnimated.m in Sources */ = {isa = PBXBuildFile; fileRef = B1E8F11A5A8BC0EF91925B1B4CF92CD1 /* RCTUIImageViewAnimated.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 900E3B99E12F22770E8F4F3A6CC9BBA6 /* RCTUITextField.m in Sources */ = {isa = PBXBuildFile; fileRef = D55CB50D0E4CC5FA141DA50043F3D37F /* RCTUITextField.m */; }; + 9010A6AC612A74A960BFB531C521986F /* Try-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1E058A1EACC2A38032EE2158FC7D77D0 /* Try-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9018334900BA1524230FB0DE463B7050 /* ScheduledSubscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 3135DE472C21F1914952DFA2F10C81BB /* ScheduledSubscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90608C95BA1D63BD4358B3E9458CEE87 /* Barrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 71CB2935256EA07996D8EA7D1D69CF1D /* Barrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90807FE383ED41E6014C0F9EC1256F05 /* FlipperClient.h in Headers */ = {isa = PBXBuildFile; fileRef = 4557DF8D618AB0F6FB22C732CB4C7510 /* FlipperClient.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90853CC1D06DB4DFB4B8C313B28B1F4B /* F14Set.h in Headers */ = {isa = PBXBuildFile; fileRef = ECF468111BC9891BB8A1EC2D91AFA0BF /* F14Set.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9087600D308D1246C106026160CCE507 /* F14IntrinsicsAvailability.h in Headers */ = {isa = PBXBuildFile; fileRef = 84C172C2AC8CECF2D55876796EAF9136 /* F14IntrinsicsAvailability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90DCA68967B47B33D7C312C2679B26DA /* Phase.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4CD90605F458E3190929C0450C2CB5 /* Phase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 90EA6CB554A78C4D3B522DAF6CA3DB6D /* StreamHandlerFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 62F596D311BEBAAAF63D1608CDB51BF8 /* StreamHandlerFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 911847BBD5DA01E5D387BD58E637AE5A /* PTUSBHub.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B29AC3958E2708393198AC0721EEBA9 /* PTUSBHub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 912FF4AA498437E6AEDB2D583D7A2CAD /* RNCSafeAreaProviderManager.h in Headers */ = {isa = PBXBuildFile; fileRef = AE49D47AE8AB6732CC8492DB2621A464 /* RNCSafeAreaProviderManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 913897C578F4CF1BC1EDB2F0CF6AC9F7 /* AsyncUDPSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 43ED3D8737E075D6CB7AE2AC9404AD1C /* AsyncUDPSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 913ABFF45D506DB4FD9E32074906B846 /* SingletonStackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AE39ADA806130445D5EA9AABEE9FBF52 /* SingletonStackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 913FA0EC02E8082A8C5FFDA01562B056 /* RCTInspector.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0CF0A0117B039E5FB5EDC434A029166B /* RCTInspector.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 915AD7ACE0305CA6F40B0A20C6BEE94E /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = BFA5C54A728263D7705BBC09214A36F5 /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91729C29D4ECEB28666F5C1C3940B0B8 /* RCTParserUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = AB529C524A1BDFA0DFD4D13103C7A615 /* RCTParserUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 91A499879C44BCEA9A51735F3E7C45B4 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BD3A96F1AC3EC9227ACFED9CD8D7978 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 91AD98E10CD6F00C3AC0A83226F52758 /* RCTVirtualTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FD951DA37390811D4CFB130B8BC780C7 /* RCTVirtualTextShadowView.m */; }; + 91B9F0809218A64561A320DC9C702201 /* JSBundleType.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B414DD7774E08FC9F166FB33E0CA81CC /* JSBundleType.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 920D0711C620CC4BE52C0CC17E9FAE9F /* FramedDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7737F88CD628108AA8E175C2DC58A144 /* FramedDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92286B3632443BFC3A8962D076E8DD9A /* Materialize.h in Headers */ = {isa = PBXBuildFile; fileRef = AE06C3F45E8ED1217E6364C29634439A /* Materialize.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 922AB8AC3E0D8D9CDC1518190E2251ED /* LogStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 25E8AD1AEAFCBA00ADD4B016E4FE934E /* LogStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 929A41DE802B81219109654A2361AC15 /* HazptrThrLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 23CEEA616551796080820691B8C4009D /* HazptrThrLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92A123D3CB69025851CFA5A936E93CAD /* Payload.h in Headers */ = {isa = PBXBuildFile; fileRef = 1049515095397F1274A1E3C42323C750 /* Payload.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 92A75B722E5979EE26DCD8F453EDA5BA /* ThreadId.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5962163A6161BE06ACCC86B76485A9BC /* ThreadId.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 92AD666EA554D4029D2B95E42E4FAE97 /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D1987D89098A113C9A34CEE83C0D22F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932C7BC8296919C1758540E5A9EAE560 /* FlipperStateUpdateListener.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BCDE045707349A13EF741E0B5A830AA /* FlipperStateUpdateListener.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 932FD6BD41BDA35EED6C6E46ED43E524 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9371A747AA5503CB280DA9061C1FD4DC /* RCTEventDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 93DB0E0E0FB8E6079D2751D4B9292889 /* RCTEventDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 937D287F7243304EFE2180651CC01679 /* RCTConvert.m in Sources */ = {isa = PBXBuildFile; fileRef = 4CFB3E9A39B00AB13E43EFEF8C22031E /* RCTConvert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9387412D6FA326DBAD95FDD33D5A3708 /* RCTProgressViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93A9D95E6F74BF9B6B442BD924952BB7 /* RCTTextAttributes.m in Sources */ = {isa = PBXBuildFile; fileRef = 1EDD1ACC1963906C39CCA9EE83861318 /* RCTTextAttributes.m */; }; + 93AE7061F3DB656915DA2109571B99D7 /* SKTouch.h in Headers */ = {isa = PBXBuildFile; fileRef = A384C645ACE3D1B860E2AFD189E08ED1 /* SKTouch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 93F9BCC60FC9430BAAF532BFA7E5C981 /* AtFork.h in Headers */ = {isa = PBXBuildFile; fileRef = 9783BFC3857AB7028548DC9F3F7EB87E /* AtFork.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9426458B5E15AF743E5B27BD3C101C6D /* TypeList.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B8A336982DB82A75E3537314CF257C0 /* TypeList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9462E0B6C8C88DF1D4C748A57BE088F1 /* RCTSurfaceView.mm in Sources */ = {isa = PBXBuildFile; fileRef = D4A7ABA2AC61166E020C106D4F73D0B3 /* RCTSurfaceView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 946627ACD6505DFD3BE2CB6AE51F48A4 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 164C6A460C12BA1366E459CC769335E7 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 947CFED98294EEBD55C97AF32454E818 /* SimpleLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = DC0891FC929BE7CB8086AFD92B138BD9 /* SimpleLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94982599008D14C064387E3E5D3757F6 /* evmap-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 8D39751AB79764FC7F566A7B40EA7802 /* evmap-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94C20FBC5108041559EBF4C5F83E5056 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = AF146905C85E80752BD1601E84458DA6 /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 94CA0DCA881CCE74524A22257F773264 /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7063FA95C884B51B41710206F1F864DE /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 94FD71555518BAD766A6F67191CC3827 /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F4EEE64DB388662057CFDFAFB42528E /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9501C663F5ADC1C85AFB0C586976C3B0 /* evthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 85193B8A577DC316FC645CC052E22AD0 /* evthread.c */; }; + 950A84B6950A41C64749A61C60D4B4FA /* RNSound.m in Sources */ = {isa = PBXBuildFile; fileRef = 5F962AD8E20DBB399E9529543631F10F /* RNSound.m */; }; + 95204627CC938CDFA546B8B5AFDDF237 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = D735F70B651D93FABB151FDD5C0775D7 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95336FE1D344A68F24A28990D0565FF6 /* Poly-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 061270F77017ADED958947601710F70C /* Poly-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9553F65C4AA7F57885A1B587D5F3BCCA /* Semaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = D22CAD7B41DEEF96AF65F8F9E8D93A3B /* Semaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 955C93C0C2454DFB7BABCB447AD73257 /* SocketFastOpen.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFF2C464D3BCB1A642B92876B18DA5 /* SocketFastOpen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9586E2B8C3467D3195631BD7F9E28A1C /* SKHighlightOverlay.mm in Sources */ = {isa = PBXBuildFile; fileRef = F6115F203F64D1467902F80278F84ACF /* SKHighlightOverlay.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 95AFF52AFDDF17C712B57D631264B119 /* DistributedMutexSpecializations.h in Headers */ = {isa = PBXBuildFile; fileRef = F9C3077EE039D9375542B86DDE593A3F /* DistributedMutexSpecializations.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95BDC0F5D238B19FE707B08DDAD69A58 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95D54E812AB5BC0ECCAA3D25945C9653 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1586BAFB4966C4B3555A0D19061A3BDE /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95DFCCD572664739A728C0888D58CD33 /* evsignal-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = FBE7A0D41676DF67ADB8D4D2C5F38DE9 /* evsignal-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95EA2D2C30BC862268521AB30348253C /* RCTUtilsUIOverride.h in Headers */ = {isa = PBXBuildFile; fileRef = F1CD2436153D235CF2F32141D8B7120B /* RCTUtilsUIOverride.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 95F98E85146D2F4756362A97D77AD58A /* RCTScrollContentShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 24971A438813A2B19369A6E521A600D7 /* RCTScrollContentShadowView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9613FC61AD9473D3C7F292DF0ACC0137 /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AFF742581E6EC34B85FC2398074CE902 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9652C732084699C89C37F0C70EE794D1 /* GmockHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = E6148005F60F622A205EEF1636F51E77 /* GmockHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9670B5C8EB701A4583147763CB9DCCC9 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9681D2CD9B54D41F91BA7376E55091BC /* Base-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2AC480AF16376C4D9B3BF10E9CF93205 /* Base-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96A18D34E0ED4D5C7E31AD90C1138976 /* RCTShadowView+Internal.m in Sources */ = {isa = PBXBuildFile; fileRef = FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 96AFAFEAE92CC313C1645CFB09760462 /* sorted_vector_types.h in Headers */ = {isa = PBXBuildFile; fileRef = 2E6D0E5F062D001C873E45BAAC01DBFF /* sorted_vector_types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96B47B65409E3FE35EEC28FA8F83D5E4 /* MemoryIdler.h in Headers */ = {isa = PBXBuildFile; fileRef = C06F25461298D539B4971D583A6E9429 /* MemoryIdler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 96DADFD75EF2C883F2B2C1BEFA08643C /* RCTImageShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 278F6A98B6DD8A1B84F659032151D167 /* RCTImageShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97394902ED326BB1B7D063C81CA576D5 /* RCTRootView.m in Sources */ = {isa = PBXBuildFile; fileRef = C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 976A2789C5F8DD69CB905EAD1F2160F4 /* RCTMultipartDataTask.h in Headers */ = {isa = PBXBuildFile; fileRef = E4CA20197EB5B0629FECCDEA749DECE6 /* RCTMultipartDataTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 976FBB45AB4B9CBF9CB2BAE309BCDB5B /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = FD80FA32D61F0A3EF22D6AD1E9DB0701 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97723A78BECB6E4EF08B78256DD7E339 /* OpenSSLCertUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A9E2DECCE14D389EE289EC2E03939B2 /* OpenSSLCertUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 978102B4F479EDB7192D3808B3975144 /* FrameHeader.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 806A14220ABD54C70CE58EFFB3AFDB79 /* FrameHeader.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9797607C81869DC017AAF7A16DD32D1E /* RNCSafeAreaProviderManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */; }; + 97BE0678EC71004ACA59E7940CCD9301 /* GlobalShutdownSocketSet.h in Headers */ = {isa = PBXBuildFile; fileRef = BACF3E5A223D8C05B5ADEF49FCE30F38 /* GlobalShutdownSocketSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97C0C0D7BC69F55D1F4374FAAC1DED3E /* ObservableDoOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = 69903540D495EDA6E40DC0948E8D667B /* ObservableDoOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97DE1D233A35122DC9451AEB37050733 /* AtomicNotification.h in Headers */ = {isa = PBXBuildFile; fileRef = 852BEC669D087586033D1C3245B99B36 /* AtomicNotification.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97E50BF6F51B104B29E76B71D35EBE83 /* dynamic-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 32DC32709DCE19273858F8C0B061FBD0 /* dynamic-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 97F8B055AEE54B8FB9F84139DDA9007E /* UIView+Yoga.m in Sources */ = {isa = PBXBuildFile; fileRef = C99394619052268DE463CF56303433A6 /* UIView+Yoga.m */; }; + 98152C74040C5435A521164AFEED1C41 /* RCTCxxBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 861044E0F723D0C83103CD21A19CE225 /* RCTCxxBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98218FB11BB211EFFC9114E276DEFBA2 /* EventBaseLocal.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4806609B2864A747BCC2EF92C413D95A /* EventBaseLocal.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9828469AF40643E56088AB57DD73F662 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 6DDDDF5391FC67075A091C69A7989A85 /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98340761A1E66E458F65AC0940C5787B /* JSIExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3E119E1FAB4BB8F3B6B354D763140B39 /* JSIExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9834D75702E5B5ACC0BCC6E773BDC32F /* SKViewControllerDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + 9845892069F776B6CCA58455C6E9EFCE /* RCTDisplayLink.m in Sources */ = {isa = PBXBuildFile; fileRef = 5C17138B6C6474BF2C64F8968E845A8B /* RCTDisplayLink.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 985F7CABC305D7EF970163F5A94A3EB4 /* DiscriminatedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98CA223EFCB434C632F335AB7325CB01 /* RCTLocalAssetImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 8CB578D54D72BCDD6A5853EBD35DE830 /* RCTLocalAssetImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 98EC243CC410ED54DBD5BA45BEB21223 /* RCTScrollContentShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = E1F60C0BC658B9858DB3636145C166FE /* RCTScrollContentShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9920CF3330BB387CDFE4B46A456B32DB /* SysTime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1F274697C93E62D83F265FB45477CD /* SysTime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 994881F0BD56B0010F4A05C85EE6173B /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9C1DA8B3732623A4D1637F153454BE20 /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 994AA0F71D10F4272640BD6E7B9EE0B6 /* RustAdaptors.h in Headers */ = {isa = PBXBuildFile; fileRef = 8283A1E63A5A22DBF4C73BF83FFE325A /* RustAdaptors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996EC4EF77126F6B3B221D990BE95931 /* BarrierTask.h in Headers */ = {isa = PBXBuildFile; fileRef = 97F607B058B43E5CE6B7D6763EFC5793 /* BarrierTask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 996F47421792D16E1EA4C4A47DE49749 /* TurboModuleBinding.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 23705347485CA5805991542F2B64A77C /* TurboModuleBinding.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9976A90187EEE361BB1F7A0831560E26 /* FileHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 915D2A5626BBCDB6D1C22C7CDB9F713A /* FileHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 997FD4167AB18B6F7A9D2B601B81AF8F /* Futex.h in Headers */ = {isa = PBXBuildFile; fileRef = 806CFD14CD66757D532F3AADEB04AEE2 /* Futex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9995110B55AEDA38C476EA7CA88230A6 /* FlipperConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 7B3ADA391B25A958151D130F7BB8487F /* FlipperConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99D065A1B74C3DC77EAFB10AC4888311 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = C741F27ADA047E119E20E9E979960C47 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 99DB018B95378AEBAFD0F329CEED7119 /* JSINativeModules.cpp in Sources */ = {isa = PBXBuildFile; fileRef = AD9520D6560D1A3217505347B504E7F7 /* JSINativeModules.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 99EC2D6163DE04EF6EACFE2A964919B1 /* EventBaseLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D148AF239D8FD412A753D12BBBE7F2B /* EventBaseLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A006AF3F124765F3FF3EFB32E7DB7D7 /* AsyncFileWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D9B1FA2CC490AF956E376E82D534FE /* AsyncFileWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A2FEF9DF020B08948A5CFE1E975923A /* RNCSafeAreaViewLocalData.m in Sources */ = {isa = PBXBuildFile; fileRef = 8E98072EEEE9DE6975ADACEB494678E5 /* RNCSafeAreaViewLocalData.m */; }; + 9A33F6EB3AF3B0C4BABC661D72D116DC /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 7AC98B2070A4EC5870208276DF296B74 /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A481BF851FCD02D5DB5B375E36DFB33 /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 8345514B17F2DA72CDAA5B946944464A /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A4C21D53F6FD42E80A3E07962937DB8 /* CString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4910E88661A106D3DC40F557001EDD9F /* CString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9A69166F87AE30B05A184AEB7F33D1EE /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 74203902116F50D98469FE641F1C5B2B /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9A8E726CB80313B664E9587291BE8811 /* RCTRawTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 565B09E8188221A060A4312F08504A58 /* RCTRawTextViewManager.m */; }; + 9A9C22CA92E903567B219441987E9B7D /* RCTBridgeMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 50143941D300EE21434A035E53EC92D5 /* RCTBridgeMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9AAC12BFA820AADD56FB64497A323819 /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 67E52235B2861B4DC153FD598C6FB6AE /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9ADA12BACE55AC55795353C8F8811742 /* RCTImageView.mm in Sources */ = {isa = PBXBuildFile; fileRef = A1A915ACA228E42EF65F4EB255BC6F78 /* RCTImageView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9AEC37B9492D32FF543EFE7D3B0345C2 /* bufferevent_pair.c in Sources */ = {isa = PBXBuildFile; fileRef = 4FE00273E79C3EECB668CF0195532E8E /* bufferevent_pair.c */; }; + 9AF09C9B1F355646C0DC0DEB4FDA0B86 /* RCTResizeMode.m in Sources */ = {isa = PBXBuildFile; fileRef = 81B5A9D305D50885008EEDD2609AEB86 /* RCTResizeMode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9B178D4C9BFF5B1A2807CD17F767582E /* jump_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */; }; + 9B24335BE3963B87C0D5A4F149F6C89A /* IPAddressV6.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C3B70107D40BE55E30774BC0078FF9FF /* IPAddressV6.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9B32D7B14912285E48A3D184B2427C14 /* RCTSegmentedControlManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EAAEE9ED5AD7AE0DE5EB55A37C8E937 /* RCTSegmentedControlManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B39C8B0B6CF351F75DADC29A0DD52F2 /* ToAscii.h in Headers */ = {isa = PBXBuildFile; fileRef = 11F0609C37037E3AA45257919698A9C8 /* ToAscii.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B5FD1B40909D2E3FA496F8ADBC45DCB /* ExceptionWrapper-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 892EE75436EBB2EED13791DCA0F304AD /* ExceptionWrapper-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9B72A9A4F04FA2B100D6B2D0122A054B /* RCTBaseTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F0DC8BCE0B16A7C130B40A6E48B243D3 /* RCTBaseTextInputViewManager.m */; }; + 9B7867F23847AAC8236EDD8B9D7E85D0 /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = 1078245AED5DFF6157868702278C5463 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9BE5C6271B6934531BB066AA1F388E49 /* Promise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BB07D62BBEEBEE867D32CE1BF1C849A7 /* Promise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9BEAE2D0E5C9B46A1848D5E7F62C6E93 /* ScheduledSubscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 659D2EAE0E266BFEF869618FD97F5D3C /* ScheduledSubscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9C0D993720F1DA90C50DD49CE9F78E93 /* Semaphore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 278C94D666FA75B4A8115CB80AE9BB10 /* Semaphore.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9C5E6238A78FFB0141631D2C3B419EF5 /* HeterogeneousAccess.h in Headers */ = {isa = PBXBuildFile; fileRef = 1111E65BF2B52E0D8190F78EE551B1FF /* HeterogeneousAccess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9C7C5F188240DACAD2FF9C1C824A4054 /* Bits.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A4346CCA44B075FD229B5BA4288E490 /* Bits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CB18AAD4FAE7DB76B05BB0077C794AC /* RCTInspector.h in Headers */ = {isa = PBXBuildFile; fileRef = D734EC65FFE019523193FFAC02D8B011 /* RCTInspector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CB3BC8AAE8E4B7408DEF123550954C0 /* LogLevel.h in Headers */ = {isa = PBXBuildFile; fileRef = 958327EBD063CF2694EE7BB8178A628D /* LogLevel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CD4CB452C1800CB942446565EC09125 /* F14Policy.h in Headers */ = {isa = PBXBuildFile; fileRef = D561D5F88DCAF5ADD8784EF0C0A0C05E /* F14Policy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9CFF5190F6B1AE8595CCFF6D3FCCB953 /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 559CAA1CE79018FC5131534287ACF964 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D09FA0C2F88CEE965B228F9CF91E29E /* Init.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3349D93A7A4CE5E6AD34F75FC72E9A2C /* Init.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9D0BA7748C3C344FB97219340D39010D /* RCTUITextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BC348D65771F10B8EFE9F1706EFC70D /* RCTUITextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D149A67A14048B314C6AC6F5BB27C3A /* FlipperCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = 5D98B66A48FB557917983796A157E821 /* FlipperCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4B1CC53B7C54176F1889E268ED93AF /* FormatArg.h in Headers */ = {isa = PBXBuildFile; fileRef = 0EA5F918CC8696290DFA60C44EC64A32 /* FormatArg.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D4CD1EED09329B60F4E777400A83933 /* RCTEventDispatcherProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 4403E2252782EAC71F12A8E8511A35D9 /* RCTEventDispatcherProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D8AD0D9F2DAB36B74DD0C8C5D19BEB6 /* FrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = C0677586087E8355FB96754BE416DBBF /* FrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D94957F233ADC09C3CFF734541A866D /* RNPinchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9D9D77E7C1F6D505AB054E2864E2B2C0 /* IOObjectCache.h in Headers */ = {isa = PBXBuildFile; fileRef = 68752A228A16A5A43FCA2EE3D59B97DE /* IOObjectCache.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DDEEBAA4E3ECC02EC1D0B0001A4D1A4 /* RCTWeakProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D454BA8D6BD942D3396E8D44A2C132A /* RCTWeakProxy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9DEBEAC4A1DFA5E231AEB4B917E91D03 /* PThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 804F833368914B9C8CFDE44970E9D236 /* PThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + 9DEDE4A780D83DCD99D03FCE57C85DC1 /* React-cxxreact-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 267BD3483E730FB114989CBCB3806686 /* React-cxxreact-dummy.m */; }; + 9E13101C8C69BF1F548542F3989D0A8E /* RCTModuloAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E4E7009D5B24D8F0A6B97A5EF00A832 /* RCTAsyncLocalStorage.mm in Sources */ = {isa = PBXBuildFile; fileRef = 92D0BD61C7C47E602BE8339C9E4F1F62 /* RCTAsyncLocalStorage.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9E521DF44A1EA2EE3CB6622C92E19365 /* AsyncTransportCertificate.h in Headers */ = {isa = PBXBuildFile; fileRef = FAD06B49376D0D11C484A97D78A05B55 /* AsyncTransportCertificate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9E87A9CE1B05FC3DB15CD53B9C93FA8A /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 4CABB154F90324995E4AE3B490EDDC52 /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EA55E4A7E65173CE3726DDA30D78451 /* AsyncScope.h in Headers */ = {isa = PBXBuildFile; fileRef = 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EA9069C181B84035E24F251B5CF68E1 /* jsi.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13583D50C301970A74D608B9F34FF9C8 /* jsi.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9ED262839FB292DFA2DC54A68BA4F584 /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = B4BFE81577F0F8CB79EFE274DCD3230C /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9EF1ACB104A3B07C87D2A3F147A51094 /* ScopeGuard.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + 9F48C491D81145BCCBAD53C7BEC61048 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F4C6760CF150DB71D5244838DE8FE1F /* AtomicReadMostlyMainPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B7312FC4375ED3FD9316940C362688BF /* AtomicReadMostlyMainPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F4DEEE3F99FE4B3C18B5AC7CAA828C4 /* RCTInputAccessoryShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9CEF62728771C85DFD9507B21F5383 /* RCTInputAccessoryShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F83DDE7796F55F4E1F5D368D6867D27 /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 75080D018FAEE92A6E41820913C0F077 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F8582ADAFC377E63ADA1EC19D53C140 /* Hardware.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BE999BEC6F585DB8C3F52C30DF56F01 /* Hardware.h */; settings = {ATTRIBUTES = (Project, ); }; }; + 9F97A772102D0D0ABF2BDE47DB57B817 /* RNForceTouchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A996B7E127268B2F016F352FF250D32 /* RNForceTouchHandler.m */; }; + 9FCFD15701158983F73300EDDBADCDB9 /* RCTExceptionsManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + 9FF09D89429A67F3101DD16EEF34EE03 /* buffer.c in Sources */ = {isa = PBXBuildFile; fileRef = 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */; }; + 9FFC23337B3A48660C5255EA7895EC4C /* dynamic.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0B0776BEF68D661B92D63C774E80BBB /* dynamic.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A04D48A9E93399E6431904A39825F82A /* Sched.h in Headers */ = {isa = PBXBuildFile; fileRef = B34DDBEB8E2A72E3E933CA7FCD419963 /* Sched.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0870753A5D0A0DF6D78DF6265197AF4 /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E263CA6117FC022CD15C9C4848A3B54 /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A0A127EECE1EDCAA066DA0B7D48DEE22 /* SpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CEF9C944B36DA6FD504021B7D45BF6C /* SpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1271D3D5C08A5ADB26168A60D3D4F70 /* NetOps.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2D06424EA4FA8610E269D2523EEBFB0B /* NetOps.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A17914D206829DB14A69E0D8545444BA /* RCTUITextField.h in Headers */ = {isa = PBXBuildFile; fileRef = F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A182E94F0B21B4B34557C9AAFA2DD6A5 /* SparseByteSet.h in Headers */ = {isa = PBXBuildFile; fileRef = 083901B6F0EA31A29AD1DC2228E31C8C /* SparseByteSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A183BAE986C72DF78B7517EA08CD788E /* en.lproj in Resources */ = {isa = PBXBuildFile; fileRef = CCDCC0EE34C383825BB4A51D28025A18 /* en.lproj */; }; + A191759C1622247939B058F80F160624 /* FlipperKitReactPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A19EAB249C6E11AAA3D459FF07105E0C /* Align.h in Headers */ = {isa = PBXBuildFile; fileRef = 53D2DC8E957E23944E61579B1E2B81D4 /* Align.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A19F7EBB043011FE3F97EA485ACC7370 /* Futex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EBFB1F4B3D3A5816CE8FFE04E4906098 /* Futex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A1D8CB4D589662E40EA94E8F62DAF556 /* RNRotationHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = FC8977EF2209E88A1C76ACE89AE139B5 /* RNRotationHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A1FFDAE00CF3DE92E4BFDE806F73EFE0 /* not_null-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 181E06A36FE52CA8FFD348745452B944 /* not_null-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2025235F968387CC22DBC07F6F6FA27 /* JemallocNodumpAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 94F6048675D98546EEAA078A4D222ABF /* JemallocNodumpAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A22E49BC106136B7D3F01383F6A3B811 /* LogConfigParser.h in Headers */ = {isa = PBXBuildFile; fileRef = 1691C6E1DA7D81D9A7CD1BFA19B5DEBB /* LogConfigParser.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A243828AA5E167981669298A6DDDCC43 /* PriorityUnboundedQueueSet.h in Headers */ = {isa = PBXBuildFile; fileRef = E49E479DB1908121E3B3CF0056D027AB /* PriorityUnboundedQueueSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A24505A65C532F95A206E17ECD7D0D32 /* RCTLinkingManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 22D9CADB3ECA68501F71BBBB02D05799 /* RCTLinkingManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A24837F6A0275A9BDB284E11948FCAE1 /* JsArgumentHelpers-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2505AED32E62DBBF172725F49D2ABE7 /* stl_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2514F531E863541705CCAB97C2B4EAA /* Portability.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB9144ADFED246D3A72CFB0DF4D2C83 /* Portability.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A25E831A3560D53A957DE2C5678436A4 /* RCTDisplayWeakRefreshable.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B180C8408892C83AB5579806DABEBEF /* RCTDisplayWeakRefreshable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A28DD3C6186A2DACEBBE78BA6FE6A3A2 /* RCTModalHostView.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FB810A8EEF3DF7477057C0CED709F21 /* RCTModalHostView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2930E37A3C1710AE47B24CC32DEBC81 /* AsyncStack-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = A44E020E5B15A1D893C8EBA09DC0072F /* AsyncStack-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A29AE879B557F75843685DBCBE6CD937 /* ThreadCachedArena.h in Headers */ = {isa = PBXBuildFile; fileRef = EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2B68C5C4C20161B3E434B3D9A90FBAB /* QueueObserver.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D364B68D08F784A9EFE3505489DB45B2 /* QueueObserver.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A2CB5D2A38E9CAB6926D62E3EC5A8096 /* RCTInputAccessoryViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2E2B00B5D36A2BF364F083116C11111 /* SysTime.h in Headers */ = {isa = PBXBuildFile; fileRef = F29B196DD0F5809D7D5A3E6DD4DC648B /* SysTime.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A2F3F32F718034E07C7E8F3AC3DDBE0F /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 0FF5480A13015CB262D394B853A7074A /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A35712EDAD28B1E5BD46F09B12B80589 /* PriorityThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 155173B327F4B122364E2865D4CB8E4E /* PriorityThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3AFECD7EFC455E0C51C8316B4630696 /* HazptrUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B00237205BEB06A6C15AACA633973CD8 /* HazptrUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3BD67557411E1702F99CE2C69874DAC /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB56B36305F848AE7E83188F06AA031 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A3E0E3B445276A679F94E25B2F5E857D /* RCTTextTransform.h in Headers */ = {isa = PBXBuildFile; fileRef = 94CE32D60F26877E5ECD884B335EB299 /* RCTTextTransform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A42693EBD873E7460B48380166C6E85B /* RCTAnimationPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = EBD232D59F8110C007C1C9DDE34E5ADB /* RCTAnimationPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A4677F4B68BE88E65D425D5E2B1ED4F0 /* ImmediateFileWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3A6473CFF1925809ED4B1A50D1743C1A /* ImmediateFileWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A47B43D786EE005488818DC130447CB1 /* Fiber.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C5AC027D097FFB1A98B0799EB1FFDD /* Fiber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4980A5EF7A2A4F8DE3705B889C73146 /* Memory.h in Headers */ = {isa = PBXBuildFile; fileRef = DAF1C3BC09C0874124B8148626392A09 /* Memory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4B40BE6645D714C316178AC602F872B /* RCTImageEditingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 96996756229C1A176DA9E4552476B631 /* RCTImageEditingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A4BEC7498C9D578F7296C464B997C44A /* ToAscii.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A957599416C19252DF07C0B4840E8C0F /* ToAscii.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A4D3C4FEECA100DB2746E7180FB9F8AA /* VirtualExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 870E9C56719FEED4D75AE48A56841448 /* VirtualExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A4E7EA55802E6E988CD74CEE08905E44 /* RCTPicker.m in Sources */ = {isa = PBXBuildFile; fileRef = 4FF2B6B585404DC16C171524E93AACCB /* RCTPicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A4ED44F098E792C56ECACE815B944F00 /* SSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = DD2C55B59A62BFD2CE89C374812C3A83 /* SSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A520C66A404A35A82D092B3629B3F44A /* RCTView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6D6E38BE270EBA01855C659D84B2B932 /* RCTView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A538EB6721A2262EF21BAC6CBF5C4473 /* ScheduledFrameTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = A5367AE6BFA606D4E11ABFD2B0E16F0D /* ScheduledFrameTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A53EF3B066466E05CC96117EA18BA2BB /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = 62BB89C268CE435089C4531886FF937E /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A55D6425CD7C5456262B8EA0DDBCE097 /* Format.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E349D8CC5F54AF6A723AEF764E8604A /* Format.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A57B93836D8E848CFCEA3B99F128B19B /* React-RCTImage-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 2906A0D30C9C5D3266E1B2A12CC8C4EA /* React-RCTImage-dummy.m */; }; + A57F2778047C8545210886566E9A1B55 /* LogConfigParser.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A8680897BF960489B1D68A00BC1CAA9C /* LogConfigParser.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A5BF81774A0E3429A90BF5D740516F70 /* RecoverableError.h in Headers */ = {isa = PBXBuildFile; fileRef = 331C7C9CE809FC0E3180BF47AD081A90 /* RecoverableError.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A63CA39ECE18B829E674299AE4C2E87A /* RCTBaseTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = A2A1FD4457D74D0D1CDC8D4DD701300D /* RCTBaseTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6452CB4C4AA7E12EBE75D5251F1DE2C /* FlipperCppBridgingConnection.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7FC59A22F155226ABB1D12219E5323C5 /* FlipperCppBridgingConnection.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A64CFBBA8C5B8B5BF7CC574F96039EAA /* TupleOps.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D7BD9B0C45D1C66603BE103478FA417 /* TupleOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6956307A72C01716F8B6352064ED2BD /* OpenSSLThreading.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 706EDDD2EF4666A1819943D2369CF654 /* OpenSSLThreading.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A69C4DBB5A5978D650D58DC53109AE3A /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E53B3820297CFA55F0E95F0A0F24E99 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6A65935195917167E9C1B3C286B1F05 /* Coroutine.h in Headers */ = {isa = PBXBuildFile; fileRef = 15E44DBD704F87F4A8EAB9AA0D1F9F48 /* Coroutine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B243DDCFCDBFD342D283AC7F2DE95B /* FrameFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = 016D4F96A82A9C5D442A00E4F8AD1811 /* FrameFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6B5DF51BC8F521187A4524569D949A3 /* signalhandler.cc in Sources */ = {isa = PBXBuildFile; fileRef = 0E4C6EF709624C105540BBA4D53B6AC7 /* signalhandler.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A6C75AB92F12F503B7D6E1AB0EF1D3F2 /* SKHiddenWindow.m in Sources */ = {isa = PBXBuildFile; fileRef = 109365EEA69A33EBFBD9558F24C5717A /* SKHiddenWindow.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + A6D2BE7B6EF3EDB81D9D2DE5C2611C6B /* defer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B9C5F38B7FD9E7244E93FB3D848EF69 /* defer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A6D7076A585AEC63D843FACF82F8FFA2 /* RCTFrameAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 735E949F00CF56EC1B52AD9328482179 /* RCTFrameAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A6FB180280524449E519BCAFE180872A /* RCTClipboard.h in Headers */ = {isa = PBXBuildFile; fileRef = 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7393E1871B0E0E7DE0177652466B9C4 /* NSDataBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7135BB1B19E7DE931BEA36D6000F767 /* NSDataBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75481FA09B4B84111916B13E58548C2 /* RNSScreenStack.h in Headers */ = {isa = PBXBuildFile; fileRef = AA4718870A6855BD44B5A98FF1CB53C5 /* RNSScreenStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A75A8F34CEFD1177809AE7EB40F9FAB6 /* RSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A763B2238C33E39AEEE4F23E5D922B91 /* CxxNativeModule.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1BF852E545F4388FFB8CDF705E84037A /* CxxNativeModule.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A768766688F4C3C15F542A79A92F8AC2 /* RCTDevSettings.mm in Sources */ = {isa = PBXBuildFile; fileRef = BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A770E5F362890BA6431457A22D41FD9F /* TimerFDTimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = E56AC75DE919E449537F300A0F2943B2 /* TimerFDTimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A78523DA1C73BCDCC7F7F7E35A0B0ED6 /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = C43981102668A46B15E99845CA99725A /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7860EE0591EABF91D4286818540E5CD /* YGLayout.h in Headers */ = {isa = PBXBuildFile; fileRef = D9823823394FA2CB510AFB50DB4DFE6F /* YGLayout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A797149AC0FB53EB2F1934568A886023 /* RCTTurboModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A7AACA01E663ACF65CF565F7CEFF0C88 /* TcpConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = E8C10B7AFCE88C78531B9BEB0FD7A049 /* TcpConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B6CD822897612DFD16F15ABFCC8BFC /* RCTRootContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 2199C45602110A3FFD4EDD58F9FF204B /* RCTRootContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7B7673122F8FBC579A4BFFAF7F82F43 /* RCTScrollEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0900CFDC968DCDC120FA1AD188942485 /* RCTScrollEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7C10E40AA88560C3E6103FBF5C2AA19 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = AEDD39377A56E5B46730E8998D2B38DF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A7FF48E83AED0DC2257C7C9F4C4745B1 /* RCTSurfacePresenterStub.h in Headers */ = {isa = PBXBuildFile; fileRef = 080092664E56B92DDC7D50543653BADB /* RCTSurfacePresenterStub.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A80983EA92D14D8013B59ACB922F1BA8 /* RNSScreen.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D8284150801A62CA7E047500EF644F /* RNSScreen.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A81240C9DEF346699FC718C6551EA6A8 /* SanitizeThread.h in Headers */ = {isa = PBXBuildFile; fileRef = B85A202876FA2036DFCC2B0D6BAA8D7B /* SanitizeThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A812F6CCB1DC4CA32306C3FE5561D64E /* RCTAnimatedImage.m in Sources */ = {isa = PBXBuildFile; fileRef = 281F25C1F5A88BC2EB28D3AC5D10BDF1 /* RCTAnimatedImage.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A816FC45A8729FA0EAE8AF0C5C0BE8A9 /* SKIOSNetworkAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 29007DDA2D0310384F2C8E992D815272 /* SKIOSNetworkAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A818A7C2D19A129CCF449A040DCE5EB2 /* FlipperKitCertificateProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFE3A4AF54E2B066585223EABFFD8CC /* FlipperKitCertificateProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A821DD30B0ABAF3336E85319BA05804C /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = B39E24523A15DF8FC0D12504FF58ED26 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A828F10DC04FF52D5F239B192844414B /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 13D0EC0BC98031B512A1F9A8A91FE6E5 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A82C2CCCA08B7F6D56D1C19C69533D6F /* SaturatingSemaphore.h in Headers */ = {isa = PBXBuildFile; fileRef = F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A83460F5D5AE74DC5CDEDD68C457C36D /* Demangle.h in Headers */ = {isa = PBXBuildFile; fileRef = 6332C2FD9168224CF49C0A43EE216AE4 /* Demangle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A839BEEE226337553B4C490FD9991CFA /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0408C8789D03DCEC361E19CB81C1644F /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A843FB8F6D3DA445979E3633C55C607F /* FlowableTimeoutOperator.h in Headers */ = {isa = PBXBuildFile; fileRef = F1DEA1978D246E21E36FB35F0923A8B1 /* FlowableTimeoutOperator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A853C98E87CFE3FEB79C52564A3D930E /* RCTLocalAssetImageLoader.mm in Sources */ = {isa = PBXBuildFile; fileRef = F8DE31CD9775EAEF1B94464800E92E49 /* RCTLocalAssetImageLoader.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A870BD43731CB8EF490567D74F841325 /* Sleeper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 40769A5F03D3E43807638D01BBB8FEF8 /* Sleeper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A880D610E012579D421DB60E027B8B07 /* FrameSerializer.h in Headers */ = {isa = PBXBuildFile; fileRef = B5F21833EA996307E1506428266994F5 /* FrameSerializer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A886DFFF5B15012D18188BAF44A85DE0 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A8AF9243354ABB2BD71F42676A43BAA3 /* RCTDatePicker.m in Sources */ = {isa = PBXBuildFile; fileRef = BE92382CFE93CFD925F928A2C0CBB766 /* RCTDatePicker.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A8CB97E6B34D2ABF173E4B21AB981D5C /* Hardware.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0FDB3B90A074B8AD38F920B9EBF28CAD /* Hardware.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + A8EA5A5B7E1AA2191EE1F1C96861678D /* RCTMessageThread.mm in Sources */ = {isa = PBXBuildFile; fileRef = 56CA3FD2EE62F4F13976357908A40E89 /* RCTMessageThread.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A90191491C3870E4BF0CA362D364E6B7 /* TimedDrivableExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 5575C08FDF9E7C8E8E61EFD9AD21A34B /* TimedDrivableExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A921E7E114F4A654267B5D1913402044 /* CurrentAsyncFrame.h in Headers */ = {isa = PBXBuildFile; fileRef = 911A847FEFE78ABC2511672C2F7AF421 /* CurrentAsyncFrame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + A96A5A8F676521617E55272DF495642F /* RCTAccessibilityManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 20C370D0C190B7E7C98442328B7E8493 /* RCTAccessibilityManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + A984A8145FD6408DFE8739D5E16C1E73 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = FEBC5756DC77FA3B0EAC683F839FF02D /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + A9A19172F3F2F4313558930B0DB289F3 /* RCTActivityIndicatorViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 8C245E9F9241983E3C1D21D63609D232 /* RCTActivityIndicatorViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + A9E95F375BBE638C4FB51B77712FBD78 /* SharedPromise.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 316572DBBBA4214700F0DE881A4FD92D /* SharedPromise.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AA145854BB357407A5D37FEACEF75629 /* ranges.h in Headers */ = {isa = PBXBuildFile; fileRef = 70E03E8423D33C640AA4AC9B5EAF4C7D /* ranges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA181B85B6D3984C1E0AFB381F8554D2 /* Combine.h in Headers */ = {isa = PBXBuildFile; fileRef = 60781BC8185F6740EB14D70CCEC71EC4 /* Combine.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AA1F469B373906BF992F3F1A7C6ABD01 /* React-RCTVibration-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 4BD98E27CC077FF843EFB086D0646E69 /* React-RCTVibration-dummy.m */; }; + AA3BA6007BCD8846D3CF118726B388C7 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1B47497B2D2D886D4C31D233724AAAE5 /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + AA481876E5AA3477A34972F69106F93C /* LogWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = C6B08B8A97C62E9CAC66DE7A0EA5C71D /* LogWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAA6164716B380876157CC196E1B2CAF /* RNCSafeAreaShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */; }; + AAAA912CC3D36C5D0D36142C4FB290C5 /* ThreadWheelTimekeeperHighRes.h in Headers */ = {isa = PBXBuildFile; fileRef = B7DC155B71F6CD1E706C6280B5A52EC2 /* ThreadWheelTimekeeperHighRes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAB4304A1A9CFA9D3436C086D28E225E /* TurboModuleUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAC9209224F7823846A493E378204E79 /* FileUtilDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 1555112A2702638F412E0E8BC7360DE3 /* FileUtilDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAD075E490A9CCE4DDBABFABB6F5C817 /* MessageQueueThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E9E0AD3831F8EC1271DC1EF378FA2F1 /* MessageQueueThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AAF6F6904DD2D9300B49B98310A8BDFF /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = F9E05E187B2D2A5B1952E8CA8E15F2AE /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB054ACBF680C31CC036E42DE35E7BFC /* RCTImagePlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D58F38A7DE8535C59BF5554A407C70 /* RCTImagePlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB11666C08454BA598E2499132400286 /* RCTRefreshControl.m in Sources */ = {isa = PBXBuildFile; fileRef = D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AB18A04407A78C1A84D1525BF3F3A542 /* cached-powers.h in Headers */ = {isa = PBXBuildFile; fileRef = 4401F67D95770C27DB8DD1BC777AF78B /* cached-powers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB411DBA956C643C1EAE797221BCB45E /* RCTDisplayLink.h in Headers */ = {isa = PBXBuildFile; fileRef = 13B437382778AB8AA5F1C2865FB3A6B1 /* RCTDisplayLink.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB42050E0BE3452AD7151867B6D6AA3F /* RCTUIManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 2D8DE6254B2D54A1F5BCE86B8854EAD8 /* RCTUIManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AB56659EAEE2407339057AD454037743 /* AsyncServerSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AB995AA7B0514786D88AE695D78BD305 /* AtomicUnorderedMapUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = B086A4330C0AD5C69B023ED3A5A530CE /* AtomicUnorderedMapUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AB9D3025C818CBB0B3E8CC2709A38388 /* evdns.c in Sources */ = {isa = PBXBuildFile; fileRef = 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */; }; + ABA45D8E176B254C8DBF7D1A0816E3B8 /* RCTDiffClampAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = 85661831E7A848AE409B5F8C193F51FA /* RCTDiffClampAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + ABAF030F42C00119B98F98F0C2EE3EE5 /* RNPinchHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F25D0946E6E25B0BB25E88685E4D0E8 /* RNPinchHandler.m */; }; + ABCA030FD43064CF2909182CC09FBA99 /* RCTConvert+Transform.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A01439C6B2E8EB95592C9694260E74E /* RCTConvert+Transform.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ABCAECAA9E189CCF63AE743BC7AE1A95 /* RCTJSIExecutorRuntimeInstaller.mm in Sources */ = {isa = PBXBuildFile; fileRef = EA89ECF080387178E967172CA9B1D6B6 /* RCTJSIExecutorRuntimeInstaller.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ABDC9BB372E90707FF8474F65D8C30B6 /* ipv6-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0E9E2402816C64CF09A0C4CF93A768B8 /* ipv6-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC23A006A67DD5C9C7B22E644EB7040D /* Hazptr.h in Headers */ = {isa = PBXBuildFile; fileRef = 73288BE623B8D4A4ECB0AE42C6ACFD76 /* Hazptr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC47B499B0B9DF8D025DA60FBC4C98C5 /* OpenSSLThreading.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D20249083CBD42F61650D5302DD9CE7 /* OpenSSLThreading.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC718F1314A608FFBBC3618AB7AD4D37 /* Debug.h in Headers */ = {isa = PBXBuildFile; fileRef = 18DBBB0D26ACFAC130E174B47593908B /* Debug.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC7BA32D3DA259319E35E95961CB8FAE /* Dwarf.h in Headers */ = {isa = PBXBuildFile; fileRef = E429C0E613AAADB75786D45FB752283C /* Dwarf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AC88210413C90BA8BBB59D1FA639B6F0 /* ClockGettimeWrappers.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B635324625BE3E988BBF3BB7300156D2 /* ClockGettimeWrappers.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ACA48F2BAA56DE7328AA2BD071B23408 /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B4599AA1B2B24C6FB9DCA34C2C4FACE /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACC6988AA813AD2E7DD5164310D4BEB9 /* GlobalThreadPoolList.h in Headers */ = {isa = PBXBuildFile; fileRef = 0694198CD56C1A83B138E10F0611B123 /* GlobalThreadPoolList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ACFE46885E0544997E3C449FC8560D74 /* SymbolizedFrame.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0DF8035E3DE6854F5CE8530FAB268888 /* SymbolizedFrame.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AD0A03A438C32F9CBBEDAA1FC7D35109 /* RNCSafeAreaView.m in Sources */ = {isa = PBXBuildFile; fileRef = ECE652C59178B31AFEE638CBAED7F4EC /* RNCSafeAreaView.m */; }; + AD0D1191B6B0438A7064885608CDAAD0 /* FKPortForwardingCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 3D5D0BAEFABB248FF420C68A206BBA0B /* FKPortForwardingCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD1D3B384B6AD934CB4C5FDC74BE6D83 /* BridgeFromGoogleLogging.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 479951A0E4FE0F1D277BBE25E8FF48A5 /* BridgeFromGoogleLogging.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AD40E5E4ED6CCDE48747114D2C461118 /* RNGestureHandlerState.h in Headers */ = {isa = PBXBuildFile; fileRef = BFB4967A499C79CCD125F5B61F7CA817 /* RNGestureHandlerState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD5946CF2197A59E631F9F9824F16DB8 /* experiments-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B04A6C34BFE68BD8A8AD60645EB53019 /* experiments-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AD62099E7183E986266A5BA0F2DDD37C /* MethodCall.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C7DBB91DA07446109BFFE2605C96060 /* MethodCall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADB9946C2F7935336446B9F07C300BB7 /* Array.h in Headers */ = {isa = PBXBuildFile; fileRef = 612C0D938F30EC2E0980D4AFFDD853FC /* Array.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ADE56358E1DE1A3F2DC2765FB2FDE5BF /* AtomicUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = BFE9DB9E7903BCFA51586A25FD6A74B1 /* AtomicUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE253A36D099A627358162D05E154DE8 /* make_combined_all_macho_gas.S in Sources */ = {isa = PBXBuildFile; fileRef = 22674D3B3366C14C5A886CB0D300062E /* make_combined_all_macho_gas.S */; }; + AE2F2DB394EBAB68EC29B6BA39EE33BB /* FlipperKitLayoutPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583A993E49CB6F3C5511D079015769 /* FlipperKitLayoutPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE82F830F928A1C5A200444128AF09FD /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 72A842EF51BDBCA4661FA11CF13F4E8E /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE88D97FF481FE2C8D90FAC5C485DC99 /* ExecutorBasedLoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F35C5A76948F07130277EE978776B82 /* ExecutorBasedLoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AE9959C6902E307C8D27E302D0BCCB25 /* IStream.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DD47E9E507068BADA59763DB96455A3 /* IStream.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AEEB125B60FDD4711565EA5DC5202271 /* CallOnce.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A584B7C1F82497FEFC2109EB8B472F1 /* CallOnce.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF5447CA10D3EF8DDFCCC86F8E67024A /* TimeoutQueue.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7D8653FCA4F54A7CDE3FD3AF4A57603B /* TimeoutQueue.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + AF64E67FFA7516CB2A1298CD3E726240 /* ReactMarker.h in Headers */ = {isa = PBXBuildFile; fileRef = 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AF7098A827A28366927C570062985F31 /* RCTMultilineTextInputViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 068EC6DBA015227A76B4AE2D73B63C3B /* RCTMultilineTextInputViewManager.m */; }; + AF86EC10F1A5997AE9E90708563AFD97 /* Math.h in Headers */ = {isa = PBXBuildFile; fileRef = D667ADB89A6C56DD1A71A396AF86CB42 /* Math.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFA1DC1E43F03054C59D32908D8F9D0D /* Futex-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + AFC23CE7FB79E4A629EAB8D9C947D0A3 /* jsilib-windows.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8E0FA50912A9B819B0F03A37EDEDB4A /* jsilib-windows.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFC5EC08A5DEE2B816467874ADFFCCCD /* Conv.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 234BE6C9BC68453723AA910E80F6170F /* Conv.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + AFE05FAF4D0FD9815D1923DE6856FF8A /* RCTRedBoxSetEnabled.h in Headers */ = {isa = PBXBuildFile; fileRef = ADA9F73A1BB3C6112362EBB82B6AD5A8 /* RCTRedBoxSetEnabled.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B006FA002BB20A6EABAB10FD22C3FE76 /* RCTErrorInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = 090E6462B15EFA2C3D0B3A2685040FC5 /* RCTErrorInfo.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B02C4A2762853233355BC364D3B5F632 /* StringKeyedUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 83FC5A3CB282D2C1733ADC0756D5945C /* StringKeyedUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0308187AC864D578D15D1722FA931F7 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7C45B7AC0F57B9D10FB9AB747C3F34 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B05F11001EC43E696A169481AF7CF930 /* SharedPromise.h in Headers */ = {isa = PBXBuildFile; fileRef = 0406AED3EF517A85467EEA76E4830215 /* SharedPromise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B07384C7577AD42CC19E6AF04369A279 /* RNFSManager.h in Headers */ = {isa = PBXBuildFile; fileRef = CC73AA554A5B9F74F2524843B83CB3E3 /* RNFSManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0CAC9B1626E96FC1DB8B1B01746B46E /* RCTActivityIndicatorView.h in Headers */ = {isa = PBXBuildFile; fileRef = 34B3DA35B1D0E5B22DB59A9E9AE28452 /* RCTActivityIndicatorView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0D2DA7F7BD1B7F0F99949D4E614EF3E /* InlineFunctionRef.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FA79DDEC5B7E32B029006F4C2A0CC9 /* InlineFunctionRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0E57F99E47DC18E956B05C13CCDD3DE /* FlipperConnectionManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 03E8B7105944DCCA04D4BE0B0C6EF0AE /* FlipperConnectionManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B0F34FA218BF618A89A1C7AF6A90FD48 /* RCTScrollContentView.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C7EF89C8323A3F60C59729AF4F8BF71 /* RCTScrollContentView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B102624ADA3C9970037AF1E781E4F797 /* LogName.h in Headers */ = {isa = PBXBuildFile; fileRef = DBFB64BD34FF1A3763DBBAD225E5F115 /* LogName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B12E3D64601813FD8A8A37E9A6AC6B7E /* Flipper-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = A1F534CFFE12090FDBEF218842413134 /* Flipper-Folly-dummy.m */; }; + B15E5A963257D89C46714FED6504F4BD /* Cleanup.h in Headers */ = {isa = PBXBuildFile; fileRef = C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B17319239B5C6FC79BB444E1748EEE42 /* CPUThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 46CEE332BC0A3D3D35AF7868FAAB029C /* CPUThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B188883D1A3320A8ED2370BA1E06031D /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = EDDB8A9B7C915E831467EE9CF6340A09 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B19B2D1AB2C2EDA22D13DC9643840563 /* MPMCPipelineDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 8BFB08DE17B2BF9AF36F3DF8F3B5366C /* MPMCPipelineDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21134DFE45A6C01A9C588FCE76E4888 /* Observer-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 63662B18C5CCDF72589497E36C3EBE2C /* Observer-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B21335F4EFA9A86C16C95867E1CDFC38 /* YGConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA4DEB831339FE8F745DB65211C3DB7E /* YGConfig.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + B214191F22A6FA0972C362812929B65B /* LogStream.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C4D4A8364489D206437B51D142918FE /* LogStream.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B22740F23ACC535EC3A2157D23774560 /* CancellationToken-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E7FF13F55CC4AAC886AC1655B67B2CF7 /* CancellationToken-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B22FA100EE95BE39DA107C25BC5498A8 /* RCTWrapperViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 0A28E573601A7B88F3002C67D689E99F /* RCTWrapperViewController.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B2486A0016B34134CE883CA4F417002E /* ThreadLocalDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = AAAFF911405BAAD216C3ED914C8AA0DA /* ThreadLocalDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B28F64F0CE66D8A293D423BB64B14154 /* FramedReader.h in Headers */ = {isa = PBXBuildFile; fileRef = ED27E489CDC6F30C5D39955E7574D4F6 /* FramedReader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2AA19952684E4608680EEA115D65963 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2B8570588C24A5529760BB1D8262D49 /* args.h in Headers */ = {isa = PBXBuildFile; fileRef = A94FE452A46275DE5A5F485E43899317 /* args.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2DDE77C471DC7F4F08008F7BE334D26 /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = CB3F47258485412BF9CB873AB130997E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2E458B9912F34FEF6B284628847E36F /* CpuId.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F7CDC56D6028643CF8EF4DF99A8D5D0 /* CpuId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B2F54F4C4CD5882D670DD6D3DD7CD572 /* CheckedMath.h in Headers */ = {isa = PBXBuildFile; fileRef = 94AB9E5B0667567295379F005BC291C1 /* CheckedMath.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B31AEA387874AA388240F9A70401BC30 /* ThreadedExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1072AF5B3FD485F4B75CB05D98982F15 /* ThreadedExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B31B31F0B08FD2C44C73D17AC753CAA4 /* RCTLayoutAnimationGroup.h in Headers */ = {isa = PBXBuildFile; fileRef = D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B32DEB7043CBA06A0ACBB9E563D9E69A /* MPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = B3C06132DC7917E0477ABA963C31C268 /* MPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B340E13E4225B152EF303CA23F65DECF /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 012CA7C21002BA5CBEC49F6DFA575177 /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B36ECAB1DF134C26B964240D5C7636A9 /* FlipperDiagnosticsViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C6A1915E1A55A9884B1AD2FEE520E39 /* FlipperDiagnosticsViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B37A080B60DE3E179F32DA15B3F5E443 /* RCTMaskedViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 00FD3167ABF947A3FFF92F327212777A /* RCTMaskedViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B387C2DC2D6B34CDEE01A64E0398BD2C /* Base.h in Headers */ = {isa = PBXBuildFile; fileRef = 8566F9D6F6F3CE89BCB406146CA3A7FD /* Base.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3A5DAEECA3A324A89FF0ABE0EB3AD18 /* Subprocess.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C72897DAFE4583A399FD04DEEB09BB33 /* Subprocess.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B3ABBB2BD5844AA2B9A87586C2F642B9 /* RCTFileRequestHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 7EC5F865B044B3CA2076BB1787CCFE3B /* RCTFileRequestHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B3C67023D821DB2D01DB21BE844791A7 /* Subscription.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0744984F91FEBB538C913D2A9F698D15 /* Subscription.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B3C859A9EA4DEA19D371A317CD1BF9D6 /* RCTRefreshControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = B3137292B2661860AA20CAD8A7F07484 /* RCTRefreshControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B3DFCE58D5631CEA024F89D5A4005676 /* JSCRuntime.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 146359A0FE6F9D633A1B749DBFC7D1F0 /* JSCRuntime.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B40AAB260FFC55D67C2CDAA7E4014D43 /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = 006BF845E2DABA7A653DD6E9D51642F4 /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B40DC3CFD8878F475F2F7549EF32594A /* GroupVarint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F38A27D1E66BEC1B9643C0E12E5C4BE /* GroupVarint.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B42B43BAE4DA93A7ED4D33146E3F99FA /* SKScrollViewDescriptor.m in Sources */ = {isa = PBXBuildFile; fileRef = F0A7F9AF4ABB9904416FBD2981623AF8 /* SKScrollViewDescriptor.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + B43334DC73A6B349B9AB44C35B13C51A /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B4469295F00CB801AE945D8E584AFFFC /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FAA4C3245E2E55CE4E58A58F79F20E7 /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B45656075F69DE84D67EDEA3D826B39F /* PackedSyncPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = B048014F4C45A849913E53123B36A4A5 /* PackedSyncPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B457E0E52901570D764AA6DFE3D428AF /* RCTImageURLLoaderWithAttribution.mm in Sources */ = {isa = PBXBuildFile; fileRef = 468FF27DED3B67C8EB7A5DFA50C6F526 /* RCTImageURLLoaderWithAttribution.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B459CEAB091824DA7EEFCB9D5E6A13A5 /* RCTTouchEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ADB7BBBA2219AF4F54991FFB2F22027 /* RCTTouchEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B469FF82FB33A6C3A783FD2D09DA9723 /* StandardLogHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B484F80F1C10B741E489C59AA7E5FC03 /* RCTAlertManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 76D2080D44EE39EE883D8CF491A775C4 /* RCTAlertManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B4CAAC30922F34BBC42566ECC52CBB13 /* Elf.h in Headers */ = {isa = PBXBuildFile; fileRef = 1D8FA6257F0FCCBD8BE6982F522FB786 /* Elf.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B507142D8CEB4512650605E7C1557F19 /* Pid.h in Headers */ = {isa = PBXBuildFile; fileRef = D74A7BD2D0B6D2D17F86EFE855B58D46 /* Pid.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B50950AE72E3A41E956C96EE0372D8BE /* RCTImageStoreManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2EE829354082462C292D4F8A0CB6087F /* RCTImageStoreManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B51E1210E1E12C0BDB5FB5B5F78E43B8 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A2CBC2F986BD86376D47AB4678EB54 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B52CF484C91BADBFF712543AA4FA3459 /* logging.cc in Sources */ = {isa = PBXBuildFile; fileRef = C57822A2406DAD17116072A50C725BF4 /* logging.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + B53FB4922AF4F4EEF580CD30A4EF79A9 /* EventFDWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 881C62746C79D71EBD934EE343B762BD /* EventFDWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B544CDB6F6C60DCDA16BB444D2C5E654 /* SystraceSection.h in Headers */ = {isa = PBXBuildFile; fileRef = 24367E13F609D8490FCAF7A0BD044BC9 /* SystraceSection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B57D3AE5EA73FA48C8DC8C6070974ABE /* RCTUIManagerUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 21479F41A69BD70AF0BC1B6F5C346CA7 /* RCTUIManagerUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B58DAB23B552C6C2505569414B15C764 /* StaticTracepoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58E059062F49BEC20438F3916209100 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 55D318CCBF05A49A681880D4588ED5D0 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B58EEA9C9F355A5C16A06C38B5632A04 /* HHWheelTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 4C402A8A4B4477D6980666C2A2714A33 /* HHWheelTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B5B76F192C7D187502D4B5CF31A38FA3 /* ExecutorWithPriority.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 20CFD943D40C64279580A7216C8476EE /* ExecutorWithPriority.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B5B7FF76424363EBA0409DC77222B4CC /* RCTLayoutAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B5CA7043B86E9261EDECA4314170A0E3 /* Pods-PocketTorah-PocketTorahTests-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F2A3A770A47C3B40FDEE98174A54759 /* Pods-PocketTorah-PocketTorahTests-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6137617BAAB15C09FA001696261C24F /* instrumentation.h in Headers */ = {isa = PBXBuildFile; fileRef = EDF3E394CEBB89CF7C60F6C375BB1136 /* instrumentation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B630CB57FE413C09EFE7F2BABD358363 /* RCTDevLoadingView.mm in Sources */ = {isa = PBXBuildFile; fileRef = C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B644B36D6439F78F599BF414BA526740 /* AsyncSSLSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = BF6A2EC14847FEA4CF5E31362397F939 /* AsyncSSLSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B658920E97DBD4FE2EB0DC069A4F2D86 /* RCTLogBoxView.h in Headers */ = {isa = PBXBuildFile; fileRef = 19B60796AF8059C3D02AD521E655C75C /* RCTLogBoxView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B65B78B86912C73C6BBCA21346CDEB5E /* RCTImageSource.h in Headers */ = {isa = PBXBuildFile; fileRef = E48A84A2E6838297AD1923F264118B7C /* RCTImageSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6A15C4853602D2ADF8B409126189175 /* RCTAnimationUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 82AE969DA3109FDB6919CFB2C2FB4424 /* RCTAnimationUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6B3E40F2384424CF75AC7E7052CB2BC /* RCTStatusBarManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = A40CB4C10FE7A5575D83C9D8CBB18F4D /* RCTStatusBarManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + B6D33446C04C0774A1E39116E1E0634D /* RCTRootView.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C214B8D3FA5244F701131E88F307850 /* RCTRootView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6E80D053D404805A90D0569ED2C66ED /* Lazy.h in Headers */ = {isa = PBXBuildFile; fileRef = CBB09C9C94A7F82495AC97A3F1227268 /* Lazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B6F1E0BDF42374CA42ABDC2814DB629A /* Hazptr-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EAF06F38BB873B35CB43A2FEFB5DCB3 /* Hazptr-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B728BFDFF7C4141E9FA9F489899AC495 /* FKPortForwardingServer.m in Sources */ = {isa = PBXBuildFile; fileRef = 9B63399DF7BB14971E96ABD224D409F7 /* FKPortForwardingServer.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + B72C191F06FE469C052BCE885CE35BC3 /* RCTDevLoadingView.h in Headers */ = {isa = PBXBuildFile; fileRef = 345DB3A734591C08E8CD63C1B09A6787 /* RCTDevLoadingView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B749D35E6670CD8ECF29DA8F6CCD2C9E /* RCTCxxMethod.mm in Sources */ = {isa = PBXBuildFile; fileRef = 3917C30E99F5061D5E4F4B02F1A5E4CF /* RCTCxxMethod.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B77C5C46B24640A502008F49B6BB3C0F /* StackTrace.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 79E76AD7BF23CC1516063BA0DBEBAA4C /* StackTrace.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B789D00E75ED3C57432F9DC51FFEF5B8 /* Builtins.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5395501B28F9FD6C5A48C187338986E6 /* Builtins.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B7CD78DF90725365891CC0B9B6813BDC /* FrameSerializer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 01E736EC9632D7830262989C4CD9DFA8 /* FrameSerializer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B7E9E923421A7EBCC14DDFDC0BCB9B58 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE1E754F60C440418FF82BB0902184C2 /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B7F527806284640DED7DB4CBD669A5DA /* GroupVarint.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FD913D627DC554874F1B9A69FF935EF /* GroupVarint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B84AA1657DCD345A6DE13D19B08009F3 /* AtomicHashUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = FA5E441FE53F2E683B9149146B483C6E /* AtomicHashUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B862661050D8E4C6B8344D730D7906E5 /* MicroSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 32286AF09C4ECFA154C32EDA6CCB22D4 /* MicroSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B862B58CD25AEEE0425C723E2BDC4FA0 /* RSocketClient.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + B8B35B345717721CAD751B49395E696B /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8B8A9B35A09A66CB757175CC0CEFF71 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 36A14A2FD9F5DC7AC7B1DCCD5CE09D34 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8CAE8E1888106D7A48FCC776B83E24A /* BitUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BFE23C42E5133EB5D77EF80A648F79A /* BitUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B8D55C42406585B345123434EB88C3A0 /* RCTTurboModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 41336D60BB8F42E32D0556ED9ED8767E /* RCTTurboModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9778654850F35D3945AAA102E293822 /* DefaultKeepAliveExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F44E7EF97E6D52D92E85A160A18B7FE /* DefaultKeepAliveExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B98D1DECF3C961880503CD9EFA03A274 /* Collect-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 72E866E61D94E3B770562F3A24022D48 /* Collect-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9926B688F5D2CAAD90C0FE593FEC743 /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = FC1C953EE2EA1DB55126DCCF684CDF27 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B99BE363D332580CB9F7462B694B2BA5 /* ViaIfAsync.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D73E08A1024DB085F441C030BC2021C /* ViaIfAsync.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9B3B6F59D5E1567F260B96A765F686F /* RCTScrollEvent.m in Sources */ = {isa = PBXBuildFile; fileRef = 5CE7EE605467868ECED26991BA02659B /* RCTScrollEvent.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + B9BB7C897FAC5B3E499AFCCE859CBBBF /* RNCSafeAreaViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 407EEEDA672BACA0BFC59A4D673471D6 /* RNCSafeAreaViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9C539A765434443E629286306608A96 /* changelist-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = C630160D1A80129B3245CFA2EF7AEB83 /* changelist-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9D2BA2853B3F467BD69034B50D3C760 /* ModuleRegistry.h in Headers */ = {isa = PBXBuildFile; fileRef = A7ED44E3B1DF8B0DE6F76C6485962044 /* ModuleRegistry.h */; settings = {ATTRIBUTES = (Project, ); }; }; + B9F0ECF6DDDDE505C7207CD8A2F64A2F /* Libunwind.h in Headers */ = {isa = PBXBuildFile; fileRef = EB93DECA3DC21173DE88BDB84A1F9770 /* Libunwind.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA05DD6A5053CB2CDA9C359FA50EFE9D /* Synchronized.h in Headers */ = {isa = PBXBuildFile; fileRef = 72194A1754F2C3D06F9B102512379422 /* Synchronized.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA23BCB29166CBFA81857785398FCCA9 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 76430F67C6823C092DD7D0B7A6D89C2D /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA39D317524101BB92211B1140B6F483 /* Format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9FECAD751122EA0DD001EE3FB8FEF529 /* Format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA543F088EAD629DFF1B99C98DAE5EBE /* Sockets.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F97BDBADEDB08D0CD901AC4308FA29A /* Sockets.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA58E53CC918C968E83C814A07E5DD30 /* AutoTimer.h in Headers */ = {isa = PBXBuildFile; fileRef = 64EC5F5B94537ED355E5F7A22D8D07A2 /* AutoTimer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA5B379476AEB869FA96F59724BDCA39 /* FileUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 2A9038E07B49691E6AD72E6AB365C46E /* FileUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA5CED32501EE60DB4908E3993CBB27F /* RateLimiter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0ACAD68F7E9B659E9A31C7B555F1FFAA /* RateLimiter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BA6DBBC4A84149F938427893B1A39E71 /* Types.h in Headers */ = {isa = PBXBuildFile; fileRef = B31E5733090ABE9C4A129DF7D7DF3D29 /* Types.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAAAAC9ACE8830289B5AA71A28024AA0 /* StaticConst.h in Headers */ = {isa = PBXBuildFile; fileRef = 34D85065292837A18DA01A3D36785793 /* StaticConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAB702913460A55D89BD86A0CDB5F11F /* ProxyLockable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 62D6EA167769949B9E35C1A104948035 /* ProxyLockable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BAFC2F495CBE1960B0EBAF55FEA8DAEC /* Flipper-PeerTalk-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = F824926224F0C794A76E339EA4113B35 /* Flipper-PeerTalk-dummy.m */; }; + BB422069A8394ECDEE3A36DB852994A1 /* ConcurrentHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 187910F899833FC9D70ED5D05BE4AF17 /* ConcurrentHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB52B3390D685A9F84ACBF270AEF8E60 /* Allowance.h in Headers */ = {isa = PBXBuildFile; fileRef = 26160BABB103E883D541972AC9E65A63 /* Allowance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB6C24ADE4BA0A7D1B2465059A6B44F5 /* Helpers.h in Headers */ = {isa = PBXBuildFile; fileRef = BB9E425F50BF3258C9776A835CDCB813 /* Helpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BB82685CD2B7D4970210E259157E37A3 /* ThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = AFC917C1636BDE6F0C65EB9BE90CF130 /* ThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BBDB32E439F005544274303895E71836 /* StreamResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 7B0779594AFD4D607829C8F8D8737410 /* StreamResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BC02C2863D57B1EF478B560BB9FD65A3 /* LogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = DAFD1E3393E0108A753C1EC496BE416F /* LogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC263EDD8C1E5C277E7B7EFC1F7E98FD /* UncaughtExceptions.h in Headers */ = {isa = PBXBuildFile; fileRef = 26177079CCF007025702BD1D99FF14C4 /* UncaughtExceptions.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC290C3248F50073F3E2240AE34699DE /* json.h in Headers */ = {isa = PBXBuildFile; fileRef = BE3CA4C29B5C71E97EAEF43F661C17BA /* json.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC36D6AA5B61E57603954B1BD38CC326 /* ThreadedExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 4B2FA00469ED2213E599CBC1616C2214 /* ThreadedExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BC5C56BB449A46780AB812CC67AC2039 /* SwappableEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B41A1368FE7DA67FB83232ECA4A3015 /* SwappableEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BCBE6EA2183AA4DFE7D0E140262751C3 /* LogMessage.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 857E9A237122769AEE904AB7C9E2A629 /* LogMessage.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BCD5390288BF05C9AFCDE5AF271E358C /* RCTDevLoadingViewProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 262D28155040273041E2E3C92A1E02B9 /* RCTDevLoadingViewProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD44AD831327B32F08BA93861A1073BC /* AtomicRef.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AE62216059D5098285DEFC5C80C8941 /* AtomicRef.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BD9EA2C9D7C54905743F33C144A817E1 /* ElfCache.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 00231DF05EF85F0468B416035936788B /* ElfCache.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BDA590330EAB05CAF14C7EE81293FE20 /* React-jsi-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */; }; + BDA99E19FD7F4FA5F791A064FDB06675 /* Cursor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A0CAC1BE2755C6628D1706F6182C9195 /* Cursor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BDB2BA086F34118865F7341ACE4FC7A4 /* Pods-PocketTorah-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 72ECB293615637D2E0FD628F7CBC128E /* Pods-PocketTorah-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDD8E2963174C6198556B05ED60856CF /* DestructorCheck.h in Headers */ = {isa = PBXBuildFile; fileRef = E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDE06229F4BDCB958034F0130AB02128 /* IPAddressException.h in Headers */ = {isa = PBXBuildFile; fileRef = 6060565455E28B0DFA081DF7405A1EAD /* IPAddressException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BDFFA0BF93BD70E04A19DB56257AA94C /* JSINativeModules.h in Headers */ = {isa = PBXBuildFile; fileRef = CADE0170D737C3CCFB59C1506FFA5DF2 /* JSINativeModules.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BE2AB5C6E508F2C967AAC182E1063A78 /* FireForgetThroughputTcp.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BE6D08B0A3DE15BA46DDFC473D8CA9A3 /* CancellationToken.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4A9EEA1407AA91F84A0196ADA3713065 /* CancellationToken.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + BE873058961519A7F642B51DC81F3E18 /* RCTPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = 68D8CD69443892E3ECCE5E0918B509B6 /* RCTPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BEB24FEDD7BD59002FB857F62FD130F8 /* fixed-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 8862C16A837D69FC9F5934668CFC87F2 /* fixed-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF25054A0555A523A496A6D5AB284698 /* bignum-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 1C3739EABF7A03FF92C3AA0B1C18C900 /* bignum-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + BF3E4910133FC0943FE2B85E0780F295 /* FlipperUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 636E7EF9CDB763A990B36F49C9E60930 /* FlipperUtil.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + BF50A61BBB2714B0B8F6B06D4AA6803C /* Stdio.h in Headers */ = {isa = PBXBuildFile; fileRef = B37E4A9F442E5CBC5B460FD2CF1469BD /* Stdio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BF6B8A58407B77F479DC1D43C1929B78 /* RCTInspectorPackagerConnection.m in Sources */ = {isa = PBXBuildFile; fileRef = 642789143FCED44970FC89FC9ED02076 /* RCTInspectorPackagerConnection.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + BF704F04F727F75377CC510B5836B076 /* RCTBundleHolderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = A018F03609C1B3CEE93B1F8DAEC5530A /* RCTBundleHolderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + BFFFA7136293556F95D6589E4CBF6A1E /* Unicode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D9EDA71B96B53D6F178BF8A94F59DD7 /* Unicode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C0357861EAE0616A3CCF6B9ED5021592 /* Fiber-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E399230B72C445A09CD1A3815384A3F2 /* Fiber-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0388D882C160F0ADD74012CD89B2545 /* PublishProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = F33522DF97945E97749B0BB4504A8B57 /* PublishProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C06A7528EFACD073B56E56211BB4CF7A /* TimeoutManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 89018834D534769B75F8DC590BE1B936 /* TimeoutManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0897C3AB99FB1F8AA499DD6BE82922A /* Accumulate.h in Headers */ = {isa = PBXBuildFile; fileRef = FA47D18297F19EB0F26D2158E7CD9404 /* Accumulate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0899F68C0C37EF4546DB1E56687F6DC /* RNSScreenWindowTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = B14CBC4318218449960EFF37EC2C304C /* RNSScreenWindowTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0BEDA2F5A1ACB5F51F69B309756D64E /* RCTNetworkPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E628F79145BEF78AE1A9AAEAEA9B4A7 /* RCTNetworkPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0D20D2CE452774A81A7BB046973BE59 /* NamedThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = D83FC512C6C5D167E95326D702A397BA /* NamedThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C0F3DAE6B83CCD06D878D97227B98837 /* BaselinesAsyncSocket.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A5382F4B22049F6BCACBDCF80590CBA0 /* BaselinesAsyncSocket.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C0F4AF145DBE22215F477D7458E72627 /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 3635E0D8ECE1185D8C84F75B35389008 /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C13403E72901FAF536691DECE5AF78D5 /* Fixture.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 573E84C8104BF33FFEF10FD605AA0E1E /* Fixture.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C15267223550F41FC88CF05009F5967B /* os.h in Headers */ = {isa = PBXBuildFile; fileRef = 532B91993AC65B6E8C8FACE888C9816B /* os.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15EB5A2DB4B9E7D3CA57D6B7A7F9A89 /* RCTTouchHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = CCC18C916124C33343938E66DB305724 /* RCTTouchHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C15EB628E02B3495618A9C8143EC5ABB /* ObjectToString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D5AF4267C1B5686FA094913636724B7 /* ObjectToString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C165A38968BBD7258A342BDB5FADF041 /* RCTConvert+Text.m in Sources */ = {isa = PBXBuildFile; fileRef = EB93507EF6D70F1EE9BE00A05FF660E9 /* RCTConvert+Text.m */; }; + C16D84C9085650D227D293F3B3E01900 /* Dwarf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2DC540D25FD1252159C4648F1B3F9B0A /* Dwarf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C1911ECC13FD23651FD2579DFDF194E7 /* bignum.cc in Sources */ = {isa = PBXBuildFile; fileRef = 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + C19D692C985B3CD24A70B80321A03D8C /* ReactNativeVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4DB23F9EB88F1F0812D6C754F6FDFAE8 /* ReactNativeVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C1A3DF524F4FD3A33B1DD7A5D82EAD5D /* Uploader.m in Sources */ = {isa = PBXBuildFile; fileRef = 39F8F2704281B997DFB6B9B6AACD5275 /* Uploader.m */; }; + C1F36F27166E27008C35B1CDAC6AAB70 /* IOBufQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CC2178AF7DDF1CE8B0E16CD7CCD0300 /* IOBufQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C235D463DC69DE7F9C53F8A4C35C5D2A /* PolyDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 686319D0CFDEDD7325EE90BA66A62073 /* PolyDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C23CFDE6C17918020D4F98FFEB1CBE9A /* RCTSRWebSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 1EA42589883697C3463D81CBE075560B /* RCTSRWebSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C25862AFEDF4BB9FF3FEFCE880539101 /* RCTFPSGraph.h in Headers */ = {isa = PBXBuildFile; fileRef = D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C283D2FE82CF27B92BA9770E0F7FED56 /* RCTPlatform.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B14666C87E2EF09B76286A2F266F604 /* RCTPlatform.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C2A8B33E158EF0D46AF1FA9B4CBAE2A6 /* RecordIO.h in Headers */ = {isa = PBXBuildFile; fileRef = D7CA90619A0A3C540C9B47A2A11A2293 /* RecordIO.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2C36F8AE57147AD80D48AE4CAC38BF2 /* OpenSSL.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0310C51E751EDFFE7BF01F529E8CD45B /* OpenSSL.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C2C9B06CB19E6EE5D83C00F7BBAAE306 /* Task.h in Headers */ = {isa = PBXBuildFile; fileRef = 63131B7B8B0706A1B47D2418427D766D /* Task.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C2FDB200EC0014E45D18B27DEEC3F90B /* ReactCommon-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 5DEB4A5BF1C7C8CF408D50F4318B8410 /* ReactCommon-dummy.m */; }; + C31D2B3918DF4B22C54BF03F99BC0765 /* RCTFileRequestHandler.mm in Sources */ = {isa = PBXBuildFile; fileRef = AD271FCEE121FE29A39DA5FA7992063A /* RCTFileRequestHandler.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C3355318E724397494B9BA93AE7AD998 /* SKButtonDescriptor.mm in Sources */ = {isa = PBXBuildFile; fileRef = C7686C167B67680D61F2DD7DC38A341C /* SKButtonDescriptor.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + C3605CA526AC17AE8287F05D512E0DA2 /* Benchmarks.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 643E8FC28550BBC7CB5408D937002318 /* Benchmarks.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C36C634AEF69269985D51C32CCF6D1CC /* RCTImageURLLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = DDB45DD1B0AC7F6AE5A60AA62873F714 /* RCTImageURLLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C377C11700CE7DDDAEA958711527394E /* RCTPackagerClient.m in Sources */ = {isa = PBXBuildFile; fileRef = 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C3A150D401B768FE6F68BF57D375ADA5 /* RCTRootViewInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D8B004748103E03DAD3B65FFF4DC5DD /* RCTRootViewInternal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C3E0BE5F75B332273508BA7CB4E5B11A /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C408BFFBC6555E72752964ADFBCDCA73 /* StampedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 04D44576BD9116ACB2F1CAA4A5F1E2B6 /* StampedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C40AD8E945C29E41D27D0904BF0A0EA0 /* SKHiddenWindow.h in Headers */ = {isa = PBXBuildFile; fileRef = 22860DDBE4C6E12CD6C08067BF9A19B5 /* SKHiddenWindow.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C41CF4ECD30365C8A5937FBCA18C0A88 /* SysMman.h in Headers */ = {isa = PBXBuildFile; fileRef = 207394649359263C8AB2435691B2794A /* SysMman.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4363B08FB1164104BDC856EFFDE8408 /* experiments.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + C44B1D178ECCF2652B742B06672AA54F /* React-perflogger-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 3F9E6E231A9EF550FC248E4FC2C9933E /* React-perflogger-dummy.m */; }; + C46193684AFE80441003A5E92BAF100C /* chrono.h in Headers */ = {isa = PBXBuildFile; fileRef = B4B750836A1F8C2CDFB2C121C9A7F06F /* chrono.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4711AD7B8C9E69E1CED16572E9450B9 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = AC3F7E448EC607E288DAA4610391FA42 /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C47DAB559983EC97F93CAABDA133C61C /* SharedPromise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B8009FDE1879B9AF596C2B7F6EEB1A0 /* SharedPromise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C49540258D22E4AEB93EEBB7724D1867 /* RCTImageURLLoaderWithAttribution.h in Headers */ = {isa = PBXBuildFile; fileRef = 6F9B34A915652C148CA0B65E9EBDF74B /* RCTImageURLLoaderWithAttribution.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C497EFA995FD20217672562990B3B887 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = 6ED6EC59D9EB9058DE09709B2C1E19A9 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4A084FE62B942C758B9B59CC83D0633 /* CustomLogFormatter.h in Headers */ = {isa = PBXBuildFile; fileRef = 76BC5F9B7B66BB410B7CA253FCB6F739 /* CustomLogFormatter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C4ED6DA266A069AB3FE84B5EBD678C1F /* DynamicParser-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 27FC09672B0674E72175C6B7174499B5 /* DynamicParser-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5284C7D75B315A47A92C20038164D3E /* compile.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A44D0D17BA1E313CA74B03DB19AC98F /* compile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C546DEED7667A4B5DA72A1944E968A44 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = B051F4B5B668BCC3AAB2C742C69458B6 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5627564A1570DDAEB99574BD110B210 /* SerialExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 481F2F9828431F52D8A5D15079D62ADF /* SerialExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5703AF1536B63AD070E26A8105A0261 /* fast-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = 17D8E5B9BAF4E9951D7A500ED30BAEF9 /* fast-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + C5C6CD24D6A2D0D3541BED76EAF4FC01 /* InspectorInterfaces.h in Headers */ = {isa = PBXBuildFile; fileRef = BC216F4FF79ECCD54D416EB88F4C72B1 /* InspectorInterfaces.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5C9F34069500597149B3BE196166E7A /* DynamicConverter.h in Headers */ = {isa = PBXBuildFile; fileRef = 0080A3B69398672079012931FA1498BE /* DynamicConverter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C5E70AD6ED8F8BF14F3CFAA3263C105D /* FLEXUtility.h in Headers */ = {isa = PBXBuildFile; fileRef = BD0A113687718501724E0CB3464ACAE3 /* FLEXUtility.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C604F229742C9860693BC71DA41C3118 /* FlipperCppBridgingResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C60C6AF3357B9ABE3572C5B33ACE268B /* StreamStateMachineBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 623FB11930AF3E37B82EFA5233304F19 /* StreamStateMachineBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C62F705CFF4DAB60E606D9B133D84657 /* SimpleObservable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C650681FC3E668A9AEC4D8A0BA5681C8 /* AsyncTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = C4106DB42E94BAC2C1E25E8B8EF86E8F /* AsyncTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C65A5E51F1219DBDF6F4D1CCA345DBD9 /* Materialize-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 5950C073145205AA7E54D5ADDC2C61F1 /* Materialize-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C678BD02055EBDBCC454A1CB2510A367 /* log-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 0AEF8D6D51EE9654CA3153CD06E38181 /* log-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6BE9CE643C6B411437296F7CABD439E /* NativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BAD8F0A186A50A19ED945ADFD291DDF /* NativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6C1C03DAC104186109ACE676ECEF1C8 /* UTF8String.h in Headers */ = {isa = PBXBuildFile; fileRef = 2F0D2B974C0B7DB90A84A530649220E4 /* UTF8String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C6E84C26FE245293ED7E838182176082 /* RCTEventDispatcher.mm in Sources */ = {isa = PBXBuildFile; fileRef = FCFD64B80FF4098F61A34B06AFEE6B38 /* RCTEventDispatcher.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C70D53B9491C72E5DFD91E2C6434E682 /* Observable-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = D92D27ECC10CDB6AB78C990C410F34CD /* Observable-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C727E484DAA14CF509C3A4B30049DE1A /* Stdlib.h in Headers */ = {isa = PBXBuildFile; fileRef = C58DE25FD026435C363CD30C46646A29 /* Stdlib.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C734A8A12930D6283052A97FC7FA9F50 /* SSLContext.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B326228E53BD05783FBF57A6AD35E2DD /* SSLContext.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C7450CD8D3973665C4FE394C1216B011 /* RCTKeyCommands.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D601244E007A1B405CD39E44E38CC84 /* RCTKeyCommands.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7510C2C5AFC0D7E8F423A06E779C2FE /* NSArray+Map.h in Headers */ = {isa = PBXBuildFile; fileRef = B20130E225E7E248D5BD128F60A625BB /* NSArray+Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C77F0562250E32C563F848A2CD3DD2F7 /* SKApplicationDescriptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 57605DB67060E820669113FF363EB43B /* SKApplicationDescriptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C78F2548D1C445A9EB425A3358ADE202 /* LoggerDB.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 6A74BAEF117A15EBE5076A3D5733F636 /* LoggerDB.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C79137942F9724C606A81E9E41E7FAA8 /* PriorityUnboundedBlockingQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = BD2B57C7CD9221E35B76096DFC518CA9 /* PriorityUnboundedBlockingQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7A3CCB05772B1190497E4396491E292 /* RCTDatePickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 850A2EB0B44161C632E717DC766B25A4 /* RCTDatePickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7C13B573B498AD0817F6E4F5BFE4A08 /* SingletonThreadLocal.h in Headers */ = {isa = PBXBuildFile; fileRef = D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7C88CF38016E8AECEBECDA778D96FF7 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = B7593784F7F7B9489F4800EB0DCA31CA /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E005214CBD426A1B7116220729241C /* experiments.h in Headers */ = {isa = PBXBuildFile; fileRef = 870D09E5DF349263AF142037BCEE2CF0 /* experiments.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7E2CC6464C89689EE2D986CB014B551 /* Cursor-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 462D6172891378C9956E3B51AB212C18 /* Cursor-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C7EB81D7E77A6FEE9AD31E95CA1DB237 /* NativeToJsBridge.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8FA6572451AA3D60067E276A20C9AF6 /* NativeToJsBridge.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C7F1653CF83E97218EEA8BF238448EEA /* RCTImageUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 54C661A6463D8CE8DEB4F7D3A7F841D4 /* RCTImageUtils.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C7FE88321D783E181DDC77723F3EEA10 /* SKYogaKitHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = F1938A13872B10B8EA9D55526D0FBC2A /* SKYogaKitHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C803A3046778D8CD93EA728D2CD7B516 /* RCTAssert.h in Headers */ = {isa = PBXBuildFile; fileRef = 15B441C571CE3735F20A53B51881BCEE /* RCTAssert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C805D889011521C7930DB02EA0EC3AB7 /* RCTTextView.h in Headers */ = {isa = PBXBuildFile; fileRef = 20286C79941474F1C2D794C2C62C0422 /* RCTTextView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C80FE83F29F3D83AC3FEA7EDC9AFC8FC /* MapUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 301ABF3F2A4F5813FB276181CB585506 /* MapUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C81B3A957AB77575DF079C9DD9D60940 /* UniqueInstance.h in Headers */ = {isa = PBXBuildFile; fileRef = A53464A8375DDB0DD967D77D2FFA7157 /* UniqueInstance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C837176B0B85ABFD8DCC7BAD6FDA7F2E /* RNCSafeAreaViewEdges.h in Headers */ = {isa = PBXBuildFile; fileRef = 29EA5C88ED69A170FF9CB2867F4CF10B /* RNCSafeAreaViewEdges.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8517EFAC913AEF148EA33E02156E606 /* YGNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 47E08ACC272ED6B459E6C95093C5C43D /* YGNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C85F42B12BD6562C285E1B1B88C2C68A /* RNPanHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C33B66C849D3767BDBD079B891D7E077 /* RNPanHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C85F5443F7A673078B937B7C9B16C062 /* ErrorCode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5C95CEE209EB629CB5330BE16A264869 /* ErrorCode.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + C8AB072711776148F2299F0B0DBD5A46 /* Builtins.h in Headers */ = {isa = PBXBuildFile; fileRef = 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8B2304129B4B293BF1BBF7D90F15919 /* File.h in Headers */ = {isa = PBXBuildFile; fileRef = A2B2D225DE62D006600CC76E6A990C20 /* File.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8B3582790EE23927ADE763D9CDA5A2A /* RCTPerfMonitor.mm in Sources */ = {isa = PBXBuildFile; fileRef = 9B66B4F07C8326F0109D7463260AD969 /* RCTPerfMonitor.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C8C2E46EC8D46583FA3E1B081D1B0891 /* String.h in Headers */ = {isa = PBXBuildFile; fileRef = 32C820847C9D349357E627A05521229E /* String.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C8FFD379E467154E5A4621DBE719C235 /* SKDescriptorMapper.h in Headers */ = {isa = PBXBuildFile; fileRef = 37AAC31DC35E1C7B22C6CE8505263FF5 /* SKDescriptorMapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C90B44123F7B91DB364737FF675DC647 /* RCTCxxModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + C93565F4BD7A2538261F3310581CF9E3 /* RCTEventAnimation.m in Sources */ = {isa = PBXBuildFile; fileRef = 3DF3520EA9B0EB7C75D394A4D1E4EC73 /* RCTEventAnimation.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + C9AA8A2C72BEE3DBCE4EF611845BB216 /* AtomicUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 8363F7ED3861401C0D0837FC30400E3F /* AtomicUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9BB1C12B5DF094F953B83A2703DF3BE /* SocketAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9C2500B373A549317B33C7DF47D6ADD /* YGMacros.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C1B34B0D5A9EADED04061DD0965A2BD /* YGMacros.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9CF19F3C582CE012AD579DC2A6106DC /* RCTVibrationPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + C9F30DB11A882B8C40273C7BBB56A824 /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B28C5C264B060B9FF25F08309558996 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA1F2E767F7E60CBAB50CB9C3AF1FF11 /* JSBigString.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 49682D90218D3CAFCEBBF65F938A4EE0 /* JSBigString.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA32989C50D8A9FA7536C87DFD54E7BB /* EventUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = B7F2C4CC0D9B573EA6DAD45FEC6E9B42 /* EventUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA44162ED2D36A9ED2D03C2F5D745916 /* RCTImageSource.m in Sources */ = {isa = PBXBuildFile; fileRef = 38D19F62BB56CAB37E4AE080519BDC9E /* RCTImageSource.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CA47BBBB46D6CBBE22D1E2487AB23EC2 /* Poly.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E04E3098EA8C67B1DDCED07834DC958 /* Poly.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA60CF31E213095E5255D1F09DF78B2E /* ExceptionWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = E17ECB880F4682EC5BAB7113B8A5F4D7 /* ExceptionWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6A1E126DF5BD4C4105B95A4A0B3427 /* FrameType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD94C35B591A8D0F5FD887BB13D9CD2 /* FrameType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA6C9CC6ABECD852950DC469DDAB017B /* GuardPageAllocator.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C9E92613F887FDA0F18C04F8B0BC3209 /* GuardPageAllocator.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CA7074A0E52CE4A987F90EC5103CA336 /* Assume-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 610F7941F8B3CDCCD6FDB6341FF7A28A /* Assume-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CA79BFE7640D8C7CBC4A167F70320D9F /* TcpConnectionFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAB0691C55AF0CBC955ACEB74962A2DE /* json_patch.cpp in Sources */ = {isa = PBXBuildFile; fileRef = A71AFCB4279E06022598FEF122082890 /* json_patch.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CAB216E548FB43CFE2BF058C938E383D /* Partial.h in Headers */ = {isa = PBXBuildFile; fileRef = BA367F507ACAC24CC3509AE3C7D41A41 /* Partial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CAB737C512DCE4EF9A201AE3CC0CA077 /* RCTComponentEvent.h in Headers */ = {isa = PBXBuildFile; fileRef = 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CACEF002EFB6A4C349951DE0FA5465A7 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 7CF15077D3F32C094BB6A2C4EA6895A3 /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CB3693F122069381373AE5D77BD1794B /* Common.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 69B015BF74E80576EF70EBA9B2C70B6E /* Common.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CB9E73A5C4245D69AD64BB1A47AE58B2 /* StreamStateMachineBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2480DAD523F9D52380671FA1EFAC50A2 /* StreamStateMachineBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CBCF0CD33FE7A4755EC766DD3B72A519 /* strtod.h in Headers */ = {isa = PBXBuildFile; fileRef = 92B75BE9F8EF3E604003A8C85A938DD1 /* strtod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC12719F40F41DBBC6D7A46BEBD32BB0 /* ConcurrentLazy.h in Headers */ = {isa = PBXBuildFile; fileRef = 48F4B21DAA05F358798A59450F871FB6 /* ConcurrentLazy.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC34D02B10ADD0EA4D1087BE78D00317 /* RCTSinglelineTextInputView.m in Sources */ = {isa = PBXBuildFile; fileRef = 5A48B0D6AB9CB43A62DEB123C7FCCA9A /* RCTSinglelineTextInputView.m */; }; + CC48291EC386A065BDB549F368E5F9ED /* HardwareConcurrency.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E1B582B06CFD8D8D6681B05787C57F60 /* HardwareConcurrency.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CC4B715ACFBF5D629FFEFB890B9433BA /* RCTI18nUtil.m in Sources */ = {isa = PBXBuildFile; fileRef = 296BF08FBE4801C81BF144AD487F17FB /* RCTI18nUtil.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CC4FD3553F3759AE6F038E645AE50B08 /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CC5FB1F602D6437E72B9CE3EEC320709 /* RNGestureHandlerEvents.m in Sources */ = {isa = PBXBuildFile; fileRef = 8ABA5BC897FB48083288C669DA5BF70A /* RNGestureHandlerEvents.m */; }; + CCB84121CBF2E1A903FA7B620289575A /* Common.h in Headers */ = {isa = PBXBuildFile; fileRef = E89E7D6CD4AB18A5AC9E2C777D9F55C4 /* Common.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CCE8378CF87055BD0A385B2792B225B1 /* ExceptionWrapper.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C01132FC3ACC08333CAB6B3AD0096739 /* ExceptionWrapper.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CCFD4C3BF408C1EBBB7EF0CF950EEC18 /* Replaceable.h in Headers */ = {isa = PBXBuildFile; fileRef = D6C3596AB73BE006B80DFBCC318EDDCA /* Replaceable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD1B0848D162007096A42B3E97F7A0DA /* WarmResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DB5DC6EEA915F3208385DFF7EDEF946 /* WarmResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD31E304DA226431D6AB7380727AB870 /* DelayedInit.h in Headers */ = {isa = PBXBuildFile; fileRef = 38D22871E1BC549DE27F74FB61872263 /* DelayedInit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD3902C94A9C3C647B4660B9E3433079 /* RCTFileReaderModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 43782CF8285CC0E9152F7A7E48C33774 /* RCTFileReaderModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD457461896EA9684CEA40D4CC938923 /* ConsumerBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 97A4F30351691FECD6D14FBC2A381BCD /* ConsumerBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD598ADEF036871EC3D90F0E124088EB /* Try.h in Headers */ = {isa = PBXBuildFile; fileRef = 0DA0486373A7602A20FBDD9169C7721D /* Try.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD84B18A9654EADDEDA716E4B6B6A0E4 /* TurnSequencer.h in Headers */ = {isa = PBXBuildFile; fileRef = AE14AF99F22DEE4D3FBF15D727A514A8 /* TurnSequencer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CD8538E5AC1DFF6BE433B8687DDB0F64 /* AtomicIntrusiveLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = D4E38DFE0C8049269C7AB49E361E87A0 /* AtomicIntrusiveLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDAB1077C63F73FF301E4249C5FE4D93 /* BridgeFromGoogleLogging.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ADABD4E30CAA9CDCADA0F150D9AE057 /* BridgeFromGoogleLogging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CDC079F37EF1A6872814DD6FB71C109D /* RCTImagePlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 2B0B1084B40FC15F65A8AF29E8C5B703 /* RCTImagePlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CDC4780EB1845E5672F20FA0A6C3AD1F /* evdns.h in Headers */ = {isa = PBXBuildFile; fileRef = FEC7324D8427DDFC5BB81BD18C3048D0 /* evdns.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0944752B80E22550A75A67A38F8F28 /* RangeSse42.h in Headers */ = {isa = PBXBuildFile; fileRef = 310D44D0F1AE32494B0EE36FA649FA0D /* RangeSse42.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE0E39F75647B5B73805E8105DF54566 /* RCTBlobCollector.h in Headers */ = {isa = PBXBuildFile; fileRef = 266D32C5E14597C2B0E8360F5A719CFB /* RCTBlobCollector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE149FFEE206AA7E367E53FE0A1A75C1 /* DelayedDestructionBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD469898CFBA178DE678BFFE5B5D75AA /* DelayedDestructionBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE2541A4ACB7A012151BA80A87E01C01 /* ErrorUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C5D82E1D59C4085089131ED9B1A24DAF /* ErrorUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE25AFB01DDF534B8C0701D034823E63 /* RCTSettingsPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = ABAB51758A5F1B7EE79381AF570114D4 /* RCTSettingsPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE3B554A904E9DF6D8F7784587C31CD6 /* ShutdownSocketSet.cpp in Sources */ = {isa = PBXBuildFile; fileRef = ABBD4506E25EC301663EB7A6D9B9C523 /* ShutdownSocketSet.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CE4C214626831749BDEDBD53B2913613 /* GlogStyleFormatter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5CB50DD6D712A40FAA526A8832CF1725 /* GlogStyleFormatter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CE6C9DC9F7241137D09575064DF525B3 /* Uri.h in Headers */ = {isa = PBXBuildFile; fileRef = BB53BFD1834EF514130098B3B8448409 /* Uri.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CE7800551A0EF2E89CEE4AE09B4F1489 /* fixed-dtoa.cc in Sources */ = {isa = PBXBuildFile; fileRef = A17B3BE7712A4141EAECE30D5429FB8F /* fixed-dtoa.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + CEA581C99A120834CBB7246E31BB196B /* Unistd.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + CED618BB3B516A19D20C74E6F75396CB /* EventBaseManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 1A892B2CB2E44B853041A21B0CBB542B /* EventBaseManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF1D0984D391DCDD4EBA5926E0B4F218 /* YGValue.h in Headers */ = {isa = PBXBuildFile; fileRef = 96ECD0A180EB18EF56F4CC6AFD57C5E1 /* YGValue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF3CFACF6B38AA492DAC48CE76A67BCA /* RCTKeyboardObserver.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0BAF1DFCDE772088DF7D56A0D6E08C67 /* RCTKeyboardObserver.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + CF650C1E9F8F078567CFFC07EA4AADAC /* RCTSurfaceHostingProxyRootView.mm in Sources */ = {isa = PBXBuildFile; fileRef = 28394156411C5367E01C794B6E6BB633 /* RCTSurfaceHostingProxyRootView.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CF754C7BBB2989A16E50067FEAA3D655 /* Codel.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EAD44CB1162630346828ED67E3B9563 /* Codel.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF9B2039A99FB9731738CDB3B9F97094 /* ReadMostlySharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 6280F423EB2A6C3D5DA540275297A248 /* ReadMostlySharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + CF9E0AABD92732B2A43ACEB5711CEB54 /* RCTAssert.m in Sources */ = {isa = PBXBuildFile; fileRef = 6E04D5E6F7758C911C78A8F2C9330991 /* RCTAssert.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + CFB24FCEA9D0A6DD956F726BC43316DC /* FileWriterFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A9C4E4C7CB5576887DADE868D1D35D3 /* FileWriterFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D028EE0C3C4A65F10E6B328549D427CB /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = C0EC01E3F3597DF35E68BAA835B2A06F /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D08D050335D65AACF500257E79B45702 /* SysMembarrier.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 05A9BFCDCC2084C2B48CA8D0B993281D /* SysMembarrier.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D09D82D263DF6E19F00BACB7941E56DE /* listener.c in Sources */ = {isa = PBXBuildFile; fileRef = 86A24DF12BC90DF6A3E4C8FE864C7D59 /* listener.c */; }; + D0EEBB7E39B3FBE3C15B6CA8F0E68D31 /* RCTModalHostView.m in Sources */ = {isa = PBXBuildFile; fileRef = F6617D7A49DFC407B3C8F345FBC92FBD /* RCTModalHostView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D12AF4860DD9592B02A46DD7A83DE8CC /* RCTMultilineTextInputView.h in Headers */ = {isa = PBXBuildFile; fileRef = BBD01FA640C377C6B02C307365AB6E46 /* RCTMultilineTextInputView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1315ACBA16CB8986F4DFAB8481DBCD0 /* CustomizationPoint.h in Headers */ = {isa = PBXBuildFile; fileRef = 001D20F3721EC1B428FAA6F27093FC80 /* CustomizationPoint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D14A2751D58CCD8EAE19F62B37E3E823 /* LogConfig.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D17B02BF2925E8DE871AABA721244873 /* Hash.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D105260F86EDBB85F565FFED1FA0CDF /* Hash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D17BF4901A801385B7FADB14B2D606BB /* IPAddressSource.h in Headers */ = {isa = PBXBuildFile; fileRef = D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1A11A68CA20D5C543D8900B9E4CBE0F /* RNCSafeAreaProvider.m in Sources */ = {isa = PBXBuildFile; fileRef = AB3DC035F4BD910382B1C5722D4574C4 /* RNCSafeAreaProvider.m */; }; + D1A54F0BC612E40DD838C44E8D25F5AE /* F14Map-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = A98BB9C1385C8EF9CC18EA1ED6646B0F /* F14Map-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1AAB769072E936CB8F8E654854AFCF2 /* Unistd.h in Headers */ = {isa = PBXBuildFile; fileRef = 8770D231E438CF5EB44FBABECD2FC4ED /* Unistd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D1BD67794921BCA4C4C48B9C87C3EA5E /* SKRequestInfo.m in Sources */ = {isa = PBXBuildFile; fileRef = A0A0BB33A3ED915AD91F44FA4BD0696C /* SKRequestInfo.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D1D8884881962812F531B07BF1640D3F /* Assume.h in Headers */ = {isa = PBXBuildFile; fileRef = 9B93F07E105D11EAE9A20F471635CABB /* Assume.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D249E8AB76C3B8214C002F99D3E8F142 /* Yoga-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E4C26C452AEC754F91C982DD760CECFE /* Yoga-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D249FA10A0A94B5805E3FAA906C03C15 /* Conv.h in Headers */ = {isa = PBXBuildFile; fileRef = 9A53C3E24DEA805C884FFF3805DE3D52 /* Conv.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D290F0B7D294D226B85E2B2E5D7E17A4 /* http-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C9F95C360C58814E7E7B7267BE77C99 /* http-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2AF917683C4AE3A28D3B38CE6E35C3E /* ClockGettimeWrappers.h in Headers */ = {isa = PBXBuildFile; fileRef = 6A7D2E725B15EE89DFC24D6F5765E3A0 /* ClockGettimeWrappers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2C76BC63BE6EF3E0D447399AC693EC8 /* RSocketTransport.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E4A3526C2ABD58547AFDCFB72E6733 /* RSocketTransport.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D2E9380C5790AF5E3E94130B26D14668 /* UIView+SKInvalidation.mm in Sources */ = {isa = PBXBuildFile; fileRef = F1A8685BEA6B43CE991972AF8AB4AB04 /* UIView+SKInvalidation.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D2F0613F911C4006EE24ED6D7BE4A705 /* FLEXNetworkTransaction.h in Headers */ = {isa = PBXBuildFile; fileRef = A7B220D61041FB9D225D3D9CDD130F1B /* FLEXNetworkTransaction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D33330BAF0DA0101AE69E2628776D837 /* RCTSettingsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D33C16F24031A340D8D35C24D01A9B63 /* Singleton.h in Headers */ = {isa = PBXBuildFile; fileRef = E1932535513730B312147D7069EC14C2 /* Singleton.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D34E0AB6F6B2FF55FABA2CE51E33C1A1 /* FlipperCertificateExchangeMedium.h in Headers */ = {isa = PBXBuildFile; fileRef = C347F404019100CC3CF9861AE1F8105B /* FlipperCertificateExchangeMedium.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D37F19F2605A8E2B1DFF83FE040BD0A6 /* SpookyHashV2.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EAA5886B12664A86E901F4ECF9F68C74 /* SpookyHashV2.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D3884A4B037998FDD1C846599FB655DF /* OpenSSLHash.h in Headers */ = {isa = PBXBuildFile; fileRef = BA02B3EC4347FF44C38570D089D32600 /* OpenSSLHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3AB51C7D23AE0191A118FAFBCA878F1 /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A878A3026E64339D4EBE2CAD436ABA97 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3CA9763D04A33C007B7899DC5D3DA2E /* Try.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F8955818EDB7A61DCAB3F1B0CF0EBD84 /* Try.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D3D0562C50AC60736DD59D6291FE10ED /* PasswordInFile.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1522C5E2B6B1F6C67DAB583E98DD14A2 /* PasswordInFile.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D3D8DA76C626ECF46C27038BA3A95D27 /* YGNodePrint.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D60924DFDEC5D2FB131F804E43DDB404 /* YGNodePrint.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + D3E3DE89583A70D9EFC69CDAFE239394 /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9835B0B1DD5445809B505BC07ECDA991 /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D3F560110391BC3B9DFE741B1FB3DF73 /* Fixture.h in Headers */ = {isa = PBXBuildFile; fileRef = E5CF4029BA130BCD265C8014CB2016F6 /* Fixture.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D41B303674484B3E305F95F7C2DE4050 /* evmap.c in Sources */ = {isa = PBXBuildFile; fileRef = 62D9B85BBC1CC4E991ABA857D3146DC5 /* evmap.c */; }; + D42BDA01F66E3B75CC94F8CD689721A0 /* Timeout.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D724B8924540B07B4D2E2F800202072 /* Timeout.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D43FB23A3D6E7DB336123BB6B3206CFE /* FixedString.h in Headers */ = {isa = PBXBuildFile; fileRef = BB8D64B064470BFF1DE300201E28B5BC /* FixedString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D44E95A28A30DE429CB20A14C1ECEF76 /* Merge.h in Headers */ = {isa = PBXBuildFile; fileRef = CFD388BF037F8BB244D81E7C7C2D30A1 /* Merge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D451CE3EB2266DAC012BF6F248404BA5 /* RNFS-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 79416A66096F7BABC8D90E6E496E9DED /* RNFS-dummy.m */; }; + D45E561B4C2963A1A82E9AF8FC43BD23 /* DeferObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = CE5B4FE3A6A3A770566B92D04C6613F2 /* DeferObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D46BFAA612221203E966BE714ECB3083 /* RSocketErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = 3562FBDD9BB63A2C894FC7E43B4DAC2D /* RSocketErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D48509CFF7033EB6ECC620A364185A06 /* Unit.h in Headers */ = {isa = PBXBuildFile; fileRef = D899DEB17DA96E9F4ADCDD0938C26562 /* Unit.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4989027B070272C3C49B4D8E9093127 /* Instance.h in Headers */ = {isa = PBXBuildFile; fileRef = 152BDC33DEC64DB0BC5D6E46F086886A /* Instance.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4A0306C3E6977C231FFEFA0AC70519B /* IPAddressV6.h in Headers */ = {isa = PBXBuildFile; fileRef = EFB9D211F99F3A3BC219CC3814A91C67 /* IPAddressV6.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4C97641D52D4AA89F490F2122A33946 /* HazptrObj.h in Headers */ = {isa = PBXBuildFile; fileRef = 23FB4E2F5A090CFE5F0AFB7503E15E7F /* HazptrObj.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D4D791F785C765CAB8851AAF63073B7F /* YGStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = 5E2D723BA95A586876E90A0FC1AFC194 /* YGStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D53BB728E04B78AE222453602033DEFE /* ChecksumDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = F6D6062671BBC5DCDEB8F7D0A8498B2F /* ChecksumDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5563084079F4FED33012517A31028D3 /* evbuffer-internal.h in Headers */ = {isa = PBXBuildFile; fileRef = AAEFB975DF39466F41BE2F5855D1278B /* evbuffer-internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D593C13B4CFC13328993041E048F3728 /* RCTPropsAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E32C94B79B203FF823FF01D6053472E /* RCTPropsAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5B18778D14A31EA0D3FF27E2003E5F6 /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = EACB6DD8FB576779FEF4B464A0E1757E /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5BDF0CA44885B8332602B0735D0D47F /* SharedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0ED3D3C5FBCAC752233D65D8CC5C8D45 /* SharedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D5BFEA90BC081FCF13F8BCDFDC6D64D5 /* AtomicUnorderedMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 18EFBF388FDBC119680E631058BFA6AB /* AtomicUnorderedMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D5C08B77130A2A792E018C189212B1FD /* RCTProfileTrampoline-x86_64.S in Sources */ = {isa = PBXBuildFile; fileRef = 5D2FA10B50E6CC8605FD573BBE27CA31 /* RCTProfileTrampoline-x86_64.S */; }; + D5EBB3E487066699AA6908067926EDD0 /* RCTImageLoader.h in Headers */ = {isa = PBXBuildFile; fileRef = 4906837A433E0301C3EFD343CCD79CBC /* RCTImageLoader.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D626ADCF06909EED2F1B0EC400680B0F /* StreamsWriter.h in Headers */ = {isa = PBXBuildFile; fileRef = CD02E45313EB5B57C1F0B60570E700C2 /* StreamsWriter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D66A7E099490AF42D21D54C50B60B4A2 /* Subscription.h in Headers */ = {isa = PBXBuildFile; fileRef = 420461A477A95E5272D68296EBE30AC6 /* Subscription.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6C89B79B08DAD1E3BE9B6D9057534AE /* RCTObjcExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = EC345DF21D6751E98BF14C5191DF83B8 /* RCTObjcExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D6D0DE126721C0DCA0D292EC3B18FF8F /* TcpConnectionFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 062C9C4F95A9A9259E70762F93B14B23 /* TcpConnectionFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D704A488C7592850CCE0BF742B234DDB /* Future-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 61A3A1E18859C00A225B7935D540F039 /* Future-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D72505624B1013CBEC6ED6D70A472577 /* log_severity.h in Headers */ = {isa = PBXBuildFile; fileRef = 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D72F9D696D7058E0EB432DEBEACE3F14 /* FlipperConnectionImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 86E914DCD7F182197791B30CC9FA2898 /* FlipperConnectionImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D731E00D9523A33253FF59C74BCAAEF7 /* bignum.h in Headers */ = {isa = PBXBuildFile; fileRef = 94C51A29C795ED28BF6F36FEAB53307E /* bignum.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D732A2CE7674E8DBA2650D8B509BBB09 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D737443BB95B4CCB42432DCEC7304C56 /* Keep.h in Headers */ = {isa = PBXBuildFile; fileRef = 76B50410CBB8A8644D8D7CD1273038C3 /* Keep.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74371E9F669CC4989482441E7CA1584 /* raw_logging.h in Headers */ = {isa = PBXBuildFile; fileRef = BE8B35E1DF1FF22E5A206C8814673B49 /* raw_logging.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D74B647D04ED87734795B61F2DA6ABA3 /* RCTMaskedViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 294108287609745AC0069A42B2DC9268 /* RCTMaskedViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D76BC55C25D7B4AE4E7BD8800C962198 /* RCTPickerManager.m in Sources */ = {isa = PBXBuildFile; fileRef = E4C66EB927486F6D97090190F362F2CC /* RCTPickerManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + D786010EFD23CBF43C1D2D25EBE6311C /* RCTNativeAnimatedNodesManager.m in Sources */ = {isa = PBXBuildFile; fileRef = A2D5ED2F40665DDC7957BC6B4DDB1673 /* RCTNativeAnimatedNodesManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D7CF8C9FAF6789A036501B8075CC9B85 /* RCTTrackingAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = 07D0F4B97E8BAB9616692A195ECC0874 /* RCTTrackingAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8291635D003EC1EFFB6BF46FBF6C730 /* dynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = C5056392FE62AA0ED91450DED60C0BF0 /* dynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D862E1DBA7681CB9F42A02EFF0250231 /* Log.h in Headers */ = {isa = PBXBuildFile; fileRef = 78D7FCA4A5DEBF53A48A7216F8075379 /* Log.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D87FF301D048187C5C8A69C3E6E8FAC4 /* String-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 9DAD7D81233AA19A116D956B1A90A28C /* String-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8A6C6181D0A29A273D01D67D07D8623 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 9762E2224A4FDA56F20EC482E7486361 /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8C8FD81B73D9061CECDA958BE3D2758 /* RCTLinkingManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 82B0C32505C9D7E7A9D4223433709C7A /* RCTLinkingManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + D8CDCA050C3E45EA6FB3830F73AAD9F8 /* CertificateIdentityVerifier.h in Headers */ = {isa = PBXBuildFile; fileRef = 694AD1A914BBDAFDECF265CED9DEDAC2 /* CertificateIdentityVerifier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D8D6B1A43EACD122C5E2FAAE5C88252B /* RCTWrapperViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 5F1583F9FF29CFDF0BFDE97263F027BD /* RCTWrapperViewController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9012A912C7CA62AB8E348D8C2D2CA96 /* FireAndForgetBasedFlipperResponder.h in Headers */ = {isa = PBXBuildFile; fileRef = 539684657BA19BE9F7D4E4E08DEC08D8 /* FireAndForgetBasedFlipperResponder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D942988416023A31427F8D8DE7E7E0DB /* HazptrObjLinked.h in Headers */ = {isa = PBXBuildFile; fileRef = 739A241F14116826BC893CDA54F3D1B6 /* HazptrObjLinked.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D95E055B09919DE6DB1C2A6717B8001A /* ConnectionAcceptor.h in Headers */ = {isa = PBXBuildFile; fileRef = 0C84B0227E27C0732FBB177EBD7B8105 /* ConnectionAcceptor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D973977664E011D58EF9BE5F2B063C4C /* LifoSem.h in Headers */ = {isa = PBXBuildFile; fileRef = 57C93C94ED35CCEC4EFA61CC5FCEE129 /* LifoSem.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9A8353D5FE5EF3CD75CB7898F7324F0 /* RCTProfileTrampoline-i386.S in Sources */ = {isa = PBXBuildFile; fileRef = 2EA9C1E6592BEE69744094F9DCD43628 /* RCTProfileTrampoline-i386.S */; }; + D9B332B8B627777A3A7CA11480097558 /* FKUserDefaultsPlugin.m in Sources */ = {isa = PBXBuildFile; fileRef = 24A30800745D5642E8EFF4377E07A6F0 /* FKUserDefaultsPlugin.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + D9D0E14F66D36C30E0FF808133DBD8CC /* YGLayout+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C832A55D8682D12B62F89CCFCBFBB46 /* YGLayout+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9D4B69242974AD64901D337066CE054 /* Format.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4F3037721D5075E235F07CD1CF6F3DDA /* Format.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D9DE996C6AB73C92AEA3F5878D081948 /* AsyncStack.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04B88D1C743D994F31A79AE586024654 /* AsyncStack.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + D9E86F217923B5D88916EC3B938793A2 /* SKTapListenerImpl.h in Headers */ = {isa = PBXBuildFile; fileRef = 74A9A78E72C3E6CCB4C59F47CB1ABA2C /* SKTapListenerImpl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + D9F9B608135EB4191C97872359052FB0 /* RCTWeakProxy.m in Sources */ = {isa = PBXBuildFile; fileRef = DF91021FC1940466142D9D1163CBDF84 /* RCTWeakProxy.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA02050558D6518893290640697F6FFE /* RCTBundleURLProvider.mm in Sources */ = {isa = PBXBuildFile; fileRef = 185A2520B26F04661D44199A47A748AD /* RCTBundleURLProvider.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA0FA14B6FB9B013EBEC04D6BF4E6EC9 /* BitIterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 8C2DF209CF3D181C70F446B265A9E7EC /* BitIterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA27D241839C6C46F93CE4882CF30E7D /* ScheduledRSocketResponder.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 2F01E3AE3E28646D681B39BB05563E14 /* ScheduledRSocketResponder.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA3740794E11F9D0D3841F4ADDD303E6 /* SetupResumeAcceptor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA39E154F355FC7F47C45DA5C9695DBA /* UIView+React.m in Sources */ = {isa = PBXBuildFile; fileRef = 7D848D69E66CA8A3A4857D3A1EF9BE8F /* UIView+React.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DA3D54447FE47B8398AC907244DA69D8 /* EventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B552D1EFEF541575E228D151202E644 /* EventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA666A37B486E8FB77EFA8F82FDE1748 /* Arena-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 2DF4E4AF8B63079B5069A02F79F7F662 /* Arena-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DA6EE15CF46D27EECFE50EE3AA5A9E2D /* RNCSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 78EBB7067D88C31C6A67F0F16E86C487 /* RNCSafeAreaViewManager.m */; }; + DA934DAB3A690F2E5457C5B8B28135EB /* SysResource.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 08EAFE269F43895BEECC1DE8776E5566 /* SysResource.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DA9E7D813BEBDBE79A8D27942BE1CB1E /* RCTTextViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 068437E30A68E9738C8D7365755B8DCE /* RCTTextViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DACB2558960C3CB1E953790EC8CA619E /* RCTEventAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = CD677F9267A1492AB7F18CE5EA71024F /* RCTEventAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAD798C9565E03649FE24286CDE083B3 /* ThreadName.h in Headers */ = {isa = PBXBuildFile; fileRef = F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DAF074B6151155BC58545E5BFCF380EA /* RCTSurface.h in Headers */ = {isa = PBXBuildFile; fileRef = 55F10AFC3AC62199A6D15C445B137929 /* RCTSurface.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB099C3694489F687E36E16576C398FA /* RCTBlobPlugins.mm in Sources */ = {isa = PBXBuildFile; fileRef = 72AEF06239DAC9A4A3BB41865C18B8A8 /* RCTBlobPlugins.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + DB0F4593E96E1B32297ADA06915998E9 /* format-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7DF385C005BC4E8A245EF838FD03C7DF /* format-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB2725747837987D46A72D608F239753 /* Transform-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 6C0502CE378AED26C2414EE33002AB6C /* Transform-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB307CA4AF03B9D5A00843EAAFFF93E9 /* ForEach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 11BFF6247936A15CAF4AD08522509ECA /* ForEach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB5677BFBEE8478A67229BAC58ABAFCD /* CxxNativeModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 01D9E5C765053A7552922EA5B8486693 /* CxxNativeModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB659185C05AB3C170BA5722E6AB6640 /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = FACEB6076300CA9679DF7FE305B64C7B /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB68AED3B18A64F754BEACBB6587E88A /* RCT-Folly-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 70DE67A59E7BBAE90663DEC3EBA391C7 /* RCT-Folly-dummy.m */; }; + DB6D523EDC380251865436EC94BE7FB1 /* GFlags.h in Headers */ = {isa = PBXBuildFile; fileRef = B77A15A61A8C50C9CB7FCA084A53B325 /* GFlags.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB78A1772D4A3572BD2AFE4C331E59DC /* AsyncLogWriter.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3D81D4A2D73BD31FBAC25CE7778414C7 /* AsyncLogWriter.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DB7C3EDB69CF6AB123F3FDD14AA0206B /* SingletonStackTrace.h in Headers */ = {isa = PBXBuildFile; fileRef = DC1DDAF4046F2A8BC86EEF2CDC91A567 /* SingletonStackTrace.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB7FF856F1E8BCBF68339A39918337C7 /* SpookyHashV2.h in Headers */ = {isa = PBXBuildFile; fileRef = 43F850A0CBB180F17B6F63BC327EE54C /* SpookyHashV2.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DB9EB96E31FBE932DDB2E154D26A20E4 /* ReactMarker.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 124AF7726E32FB0488BB4BAF12D81D43 /* ReactMarker.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DBDF7151C10FC75980566A100E8CFD92 /* SimpleLoopController.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 610E2115AA17D56D047A4A2A6955F4D5 /* SimpleLoopController.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DBE7001D102726062434F1038270E8C8 /* RCTMessageThread.h in Headers */ = {isa = PBXBuildFile; fileRef = F69F78C49A046622FBB7EF1319FF6271 /* RCTMessageThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC178C8A47DB0703A61ED2E7B1F78A44 /* F14Set-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = BF1D55AECAF0E017F6B0514F5227FCB9 /* F14Set-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC1970B5B73A4C4A4E766F686802AC2D /* RCTActivityIndicatorView.m in Sources */ = {isa = PBXBuildFile; fileRef = 4E5F1D10831009F5A4131300CB38B67C /* RCTActivityIndicatorView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DC1CDD1C3D75B1145B7F2AF0B2BF21F1 /* DelayedDestruction.h in Headers */ = {isa = PBXBuildFile; fileRef = 97066889E6264F98AF2B000F17E84C95 /* DelayedDestruction.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC374B34B92D3E8DB3EB9DBF146766F0 /* UIView+Private.h in Headers */ = {isa = PBXBuildFile; fileRef = C57DCB3477E5011DF915A8934C2BE3CF /* UIView+Private.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC540763BD91271038E4A242E500E6DA /* VirtualEventBase.h in Headers */ = {isa = PBXBuildFile; fileRef = C21131CE83FF0002866082B5E0DC7411 /* VirtualEventBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC673E929168706AD0E68E3DB6DE26AF /* UIView+SKInvalidation.h in Headers */ = {isa = PBXBuildFile; fileRef = B83DA7354475737493C4DA3E59E5428F /* UIView+SKInvalidation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DC7CC664E2BB280A9651FB1948EA510D /* HazptrThreadPoolExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = 836978870E64F9D8F2C2140A45FB91B1 /* HazptrThreadPoolExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCA83A65D0746967700CB25CD81C20BF /* IPAddressV4.h in Headers */ = {isa = PBXBuildFile; fileRef = 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCB21360E0F6EB4AAA0CB49F690CD64B /* UninitializedMemoryHacks.h in Headers */ = {isa = PBXBuildFile; fileRef = DEDC12689B9B69B43D8097102DDF3E73 /* UninitializedMemoryHacks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCBDF24740AA3C95378A38E2B393C694 /* symbolize.cc in Sources */ = {isa = PBXBuildFile; fileRef = 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + DCC5B38AF5539CCB20EFD5EA09847CFD /* MacAddress.h in Headers */ = {isa = PBXBuildFile; fileRef = 4A307BA56EF7AA0A855180DF8534F8B1 /* MacAddress.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCC9AFDA67817D32EC799A788B1A5C1C /* SynchronizedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCCAE4B9E4DCEE6B6672B71107EBEF17 /* Frame.h in Headers */ = {isa = PBXBuildFile; fileRef = D6091C69F6B592A187DFE080DE1AED95 /* Frame.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCDBF1227CC141B2E4AA377577404ED1 /* SocketFileDescriptorMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AE9942AA6669A2991F0769E429A3643 /* SocketFileDescriptorMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE29B019764A545E5DC8F372F6A6632 /* Padded.h in Headers */ = {isa = PBXBuildFile; fileRef = 39486DD676D4D3A172AE2D468899851A /* Padded.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCE849CF04D63D57D5E5DC071739BDC9 /* DiscriminatedPtrDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 27F691C589C346AE5CF3DC4D65FE0B9D /* DiscriminatedPtrDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DCEAAB228E7BE517B8B0DD33FADBC790 /* Exception.h in Headers */ = {isa = PBXBuildFile; fileRef = A0333CD6D7BAA40A84517F0F6170F7FF /* Exception.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD1BE17372E5E1E2BFD87621164F30EE /* FlipperState.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + DD2EE2973807521A6F680C822CC4BB24 /* Expected.h in Headers */ = {isa = PBXBuildFile; fileRef = E83A6EB123E0DBDA7D8B7369350D2E0B /* Expected.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD32FB5C2ACD85E2256E14914CA92597 /* fast-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F62E33F0F51D8BC5E4951330FE3DA38 /* fast-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD44B2DE131C49AA0E0AC56ABEEB3AF8 /* SysUio.h in Headers */ = {isa = PBXBuildFile; fileRef = B95DC7772680B9AE470B6562921004C3 /* SysUio.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7AEF5769485C5BE973C842A5E019C2 /* RCTInterpolationAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = D2EBE0CE1EF0F386ED2B197CE3273640 /* RCTInterpolationAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD7EC2301CAE157E9533EC35663F89CF /* EventBaseLoopController-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = B5199DEB57F329595B833E0FB7D4F6E4 /* EventBaseLoopController-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD80E4118FF7FA6B56100AD4367467C1 /* TimedWait.h in Headers */ = {isa = PBXBuildFile; fileRef = 41071FC06AF3B0D27F48BA33E0427478 /* TimedWait.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD84A29D4032F0941426E7278B4CFC21 /* FrameTransportImpl.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DD85E509D6FCAEDC2F3211A793F253F5 /* RCTInspectorPackagerConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = BB1FC8AF1CE917589719B731AF773A52 /* RCTInspectorPackagerConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DD8CDB0B99D6F35E113DE85370A5D27C /* CArray.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C0D6518052598F8F5EC966342AE6907 /* CArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDC91B0EE097E7C9F57A2D40094F0FF1 /* RCTBorderStyle.h in Headers */ = {isa = PBXBuildFile; fileRef = EDE2D188010F67558A6BFD895A35215A /* RCTBorderStyle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDD88B3F7B543DD6B191BE1E0F96E2CE /* PicoSpinLock.h in Headers */ = {isa = PBXBuildFile; fileRef = 609776BC87D29B596E8C1774BC90D0F1 /* PicoSpinLock.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDDE6425057FAC799910E6F28668FF03 /* Flowable_FromObservable.h in Headers */ = {isa = PBXBuildFile; fileRef = 4ED3B2151A66DF65CB4A03C8B0B96130 /* Flowable_FromObservable.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DDFBE62D63D71BB089C7505F3C1A5E8D /* RCTShadowView+Layout.m in Sources */ = {isa = PBXBuildFile; fileRef = 3301DBE01170B251F85420B4E17C7191 /* RCTShadowView+Layout.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DE00E8CAE6A70E76D59D5C4172E997D2 /* ScopeGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE0254AE018DB2F7C1E8F6A86F56F2D6 /* ProtocolVersion.h in Headers */ = {isa = PBXBuildFile; fileRef = F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE102452073D9861716B0D8C5782085C /* RCTSegmentedControlManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 29939472145D242E113B31915FE185BD /* RCTSegmentedControlManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + DE1B4C5218D12655CBEE3A9DD88CF5C7 /* ConnectionContextStore.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CA6BCB333553B1E18298475B9A4570A1 /* ConnectionContextStore.cpp */; settings = {COMPILER_FLAGS = "-DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0 -Wall\n -std=c++14\n -Wno-global-constructors"; }; }; + DE2D52B73F4CE4D6FC1C704977F6E458 /* Spin.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0CA48A334DBAE7209A362102D020C /* Spin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4050C587D702F97786049336CCF2E6 /* RCTInputAccessoryViewContent.h in Headers */ = {isa = PBXBuildFile; fileRef = DDFE1D4A7AA95BEA08634A5C7C31E3E9 /* RCTInputAccessoryViewContent.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4479BEB8BFC0B2BA1E0E8C0CCB212C /* RCTBridgeDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 6356E1DC5F2211F6241D0BB69C722E89 /* RCTBridgeDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE4D2F3F355782A8500A4D72E4697DE8 /* HazptrDomain.h in Headers */ = {isa = PBXBuildFile; fileRef = 985B1BEEEB3523A69ECBF24B851DAB89 /* HazptrDomain.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE6191AC728F762DBD42DED4E09E1860 /* FlipperDiagnosticsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 42B87D5B524A46114E157887AA8116DE /* FlipperDiagnosticsViewController.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + DE764715EC147829C02995367916A44B /* RCTJSIExecutorRuntimeInstaller.h in Headers */ = {isa = PBXBuildFile; fileRef = 7D31B165339A73EF37CA2EFAC05E0F1A /* RCTJSIExecutorRuntimeInstaller.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DE7B408574435706A00F73EB2DC6B366 /* RCTAdditionAnimatedNode.h in Headers */ = {isa = PBXBuildFile; fileRef = C84A847C7A96B70D1A2BFB102673C87A /* RCTAdditionAnimatedNode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DEB15D98A013B9ACAD3E71F4A002B902 /* ScopedEventBaseThread.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 59737DEF9411E245B384F02F1712080D /* ScopedEventBaseThread.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DF393BC05CEC67BE9840070982BD57D6 /* OpenSSLSession.h in Headers */ = {isa = PBXBuildFile; fileRef = F3D76FEE6EC7C4A0AE70BA38A891EEAD /* OpenSSLSession.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF5174F76103701FD4E40C37117363D0 /* MemoryMapping.cpp in Sources */ = {isa = PBXBuildFile; fileRef = DB9C03D0B2EAA7A650F9E8344D59EEFD /* MemoryMapping.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DF5989A977E37E90C8EC5153F2F01110 /* BenchmarkUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 0CA7563F180DB9F920136C354CADF783 /* BenchmarkUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DF91D20FE91DCC73E643F7EA777B845E /* SysFile.h in Headers */ = {isa = PBXBuildFile; fileRef = B64F9FB54A719D80FCA75E09904BEF7C /* SysFile.h */; settings = {ATTRIBUTES = (Project, ); }; }; + DFA33CEC95BE172575EB5DF69B4A0641 /* SKTapListenerImpl.m in Sources */ = {isa = PBXBuildFile; fileRef = F617EB88974F7A9F8B1E81336CE97CBA /* SKTapListenerImpl.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + DFA44AC4DFD5BB07DFA412CDFAF52E45 /* RCTView+SafeAreaCompat.m in Sources */ = {isa = PBXBuildFile; fileRef = 1F184D229D829C6E7552F72ED1D44116 /* RCTView+SafeAreaCompat.m */; }; + DFC2BA4FE375B0408D5185CD187F5379 /* Shell.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 22A5D93DB3AAAF2F19A5DD78463692AA /* Shell.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + DFC8B8656868772B9DF8ABA105096FBF /* RCTCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = B660B236C0E34D8A98DFB7000E5CB8FF /* RCTCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0670E0983FB5589E1D3DE20D8D8407F /* IPAddress.cpp in Sources */ = {isa = PBXBuildFile; fileRef = D1DA2D1B2927D4E5F64C7BB107602B6A /* IPAddress.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E06DE0457ABB9CDDD50612F2744AC4BC /* PropagateConst.h in Headers */ = {isa = PBXBuildFile; fileRef = D1AB1EFFD1DF18724BEC712F430E9F09 /* PropagateConst.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E070400E25E4A888A310BE57E505C51F /* evutil_rand.c in Sources */ = {isa = PBXBuildFile; fileRef = 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */; }; + E0737903C18A9D70DEB48F436973CD28 /* AtomicBatchDispatcher-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 23AA3D66FE1B5A5DAC5E8244E4E9DC0D /* AtomicBatchDispatcher-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0769BD05D1A68568E9F84BC1FC0D878 /* F14Mask.h in Headers */ = {isa = PBXBuildFile; fileRef = 0A805F07DD8E98D2C32666F6F775238B /* F14Mask.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E09C11544E4DF8F24E7F920945FD8881 /* BitIteratorDetail.h in Headers */ = {isa = PBXBuildFile; fileRef = 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E09F4E88E59EAC510C9EBB6AE9C65DF4 /* RequestResponseRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C721A10E64145D004D0D291BE860A84 /* RequestResponseRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0F9A00577BBCE83D16825A5D0C9AC23 /* LockTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 14E28F084A1410C08F80D97DAA769B85 /* LockTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E0FD55FC59B57354BC7103BD396FDE1D /* StreamHandlerFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = C4ABA7C1626E0F7404A708583764F96B /* StreamHandlerFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E12C49292D1B0E019225A21B9BAD9026 /* RSocketRequester.h in Headers */ = {isa = PBXBuildFile; fileRef = EC6FAA84B063FA2238DC4AF68F1CADC0 /* RSocketRequester.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E145832A3DB0DE44D17BB75995F8A8C5 /* JSBundleType.h in Headers */ = {isa = PBXBuildFile; fileRef = 2008E3B78762B92B8084A7E1AC60C3BB /* JSBundleType.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E15F362BCC3A6BA9074200ACDD8FBF95 /* IntrusiveList.h in Headers */ = {isa = PBXBuildFile; fileRef = DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1765C7DC30018AE26A3CBED972B0C14 /* AsyncStack.h in Headers */ = {isa = PBXBuildFile; fileRef = B3FC70249E74F930D4851FE4975964AF /* AsyncStack.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1ADA3C6CB889DC387B8191DF5271342 /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 9E3B0833BC25B5974FFEF64864DC7B82 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E1B0F54C7AF065A730B8C48E6AA6CF94 /* RCTUIManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 6EF18BEC10855F4ED5279AD3CF5A4111 /* RCTUIManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1DD18134260AF34686555C178143375 /* RCTAutoInsetsProtocol.h in Headers */ = {isa = PBXBuildFile; fileRef = 2B40B497CE977150A26FD1DC8AB1C9A4 /* RCTAutoInsetsProtocol.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1DFC607691CB8AD88B7E3162397F642 /* GLog.h in Headers */ = {isa = PBXBuildFile; fileRef = A44987F80CD7936D4065EFBA3F6ABA33 /* GLog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E1F4596177E9B4B14878311E0A844B17 /* FileWriterFactory.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CFCA4305D3BE9A2459D532C3F0B4DCEE /* FileWriterFactory.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E1F909951CF50C02E275F6F06354A19E /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = 143C6C24FB1524AFC71AAA0DA1B73001 /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E21F4AD29BCCA2DB0A30FB0C1849F3CE /* xlog.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 76E6F1367737E793F4BDA2C075676FDD /* xlog.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E23FE0A624F8FBC6B7D80864D222406B /* ChannelRequester.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E25C5389BA24DFD1FE7B52727BD9C085 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = C868966CD5FC02AF75644F93E944317C /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E25D4ADBC4BB05BBEA7DC502D05A3F54 /* YGConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 6424A98A69AEC430CA1C3A2108AC2F7C /* YGConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2745E2060A8A334455A71ABCEB67AC6 /* jsilib-posix.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E29578D7D22DE7DC398C50065D6CEB8B /* FKPortForwardingServer.h in Headers */ = {isa = PBXBuildFile; fileRef = 748E30D42871A455229C408C89397788 /* FKPortForwardingServer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2970C9A12F747E7E7DBF096ACE2DFDE /* RSocketParameters.h in Headers */ = {isa = PBXBuildFile; fileRef = 3C21639310CF4354C53FC396DAAC6824 /* RSocketParameters.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E29F5379B3B7BDDFF040B2988017E0CD /* FlipperState.h in Headers */ = {isa = PBXBuildFile; fileRef = AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2B38DEE05798F088228D193AD7A59BC /* SignalHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BC6E32796D6FFD82258102EB8F4D87 /* SignalHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E2B6492A29BB2BFC73F516C124923D69 /* InitThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = 53F6117E7CE991E89721B0F79289DDFC /* InitThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2C129234DD9DC8F18D4C3B468685487 /* Config.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EF4FE2E0543280CAE66CD5B24B90829 /* Config.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E2F214D20D0385076E9D17113B9B0BB9 /* RCTTypedModuleConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 86887B295E195B4823ED2094604452C5 /* RCTTypedModuleConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3369DB5BC7AECEE281AF7C6E99A9A4F /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = B03F7065C09F384BE16050CB9E9AF532 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E339B646FF1C07C1842A9FBF32B8BFEF /* locale.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E83E3A0491885A15E982F40BAEA7AA8 /* locale.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E342148932A93EA7E52FA8F842F88512 /* AsyncSSLSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C134BB772A4E696A45B29C5DF3CED80 /* AsyncSSLSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E356D83AFB3F02DB28360B4CAF0D13A2 /* ParallelMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 4D2BF9FFA669FABF7BB176459531EAF3 /* ParallelMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36A61807591ADAB7B538ECF2D5B2074 /* Iterator.h in Headers */ = {isa = PBXBuildFile; fileRef = 33A0CF04756A50743B89A7AD22B35563 /* Iterator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E36D653798509D4AD9505F670A39D40F /* RCTScrollContentViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 3EF2AB7574153B535913C59AD7C58072 /* RCTScrollContentViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E37A3114F320F22F269D472A7680C053 /* Core.h in Headers */ = {isa = PBXBuildFile; fileRef = 11E3E498C6A1AF2353A0C08B06FB3860 /* Core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E37E5439CF7131527595FB89E1F95DF6 /* RNGestureHandlerManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C914C001A70C6D0213EDB03AA7F5DB1 /* RNGestureHandlerManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3815F74C569798A28C53847B0A4B9DE /* RCTBlockGuard.h in Headers */ = {isa = PBXBuildFile; fileRef = ECD49D3319B5BB60C9B4FF8EAC3A5666 /* RCTBlockGuard.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E39B8F16BF0021A110AF7B9EFC8B391A /* evhttp.h in Headers */ = {isa = PBXBuildFile; fileRef = 2C0DB101DC32C831CCAA12AA5C8C498D /* evhttp.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E3A80B1F69BBD83AC98AF4488E6CEEDB /* RNSScreenContainer.h in Headers */ = {isa = PBXBuildFile; fileRef = CD7C77CA417908065DDFD485417C2112 /* RNSScreenContainer.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E445A5A4D258BFA7DABB849FB97603B5 /* Logger.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFC10F9843E9EA7551DCE6B556C9FEC /* Logger.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E48EE7041C1821D6316BB1D7B4E908A1 /* Unicode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C770179BCD0084D20DB918109851FDD /* Unicode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4AAD7AECAF2E41BCDEA2624B7FB6EB4 /* ConcurrentSkipList.h in Headers */ = {isa = PBXBuildFile; fileRef = 355A1F4908E1306B5091A161BE722E2E /* ConcurrentSkipList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4AE1A7AE79B246F76A30AE8A6CBBACB /* SharedProxyCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 03B223F39B8852A43883E130596331A5 /* SharedProxyCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E4B72AC82F37F4AD0793DAB5B4844DFC /* strtod.cc in Sources */ = {isa = PBXBuildFile; fileRef = C2ECF64FD678D817D0CA64E88D3BE910 /* strtod.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + E4EBE65868A4DB7207367C5D69FA7390 /* RCTTextAttributes.h in Headers */ = {isa = PBXBuildFile; fileRef = 1839E15009A8B1C4A7C0CC27B6B831F2 /* RCTTextAttributes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E51CE40A1F0E52A0EA6D4F09197CE1E3 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = DFAE3372899549E5F99D2567017DFFD0 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54EAF9409E1EE13DE2EA622CB682557 /* SKEnvironmentVariables.h in Headers */ = {isa = PBXBuildFile; fileRef = BF7D068829CCD4803409200D37EC78F1 /* SKEnvironmentVariables.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E54F5B4AC449842FB653289C74BB734E /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E563BE02A383E1017A652712BC59F8D1 /* vlog_is_on.cc in Sources */ = {isa = PBXBuildFile; fileRef = 7DAB357B01B45BC3FA9863FEC50D161B /* vlog_is_on.cc */; settings = {COMPILER_FLAGS = "-Wno-shorten-64-to-32"; }; }; + E580EDCCBEDB9AFAC93544AFC83E2819 /* RCTCxxConvert.h in Headers */ = {isa = PBXBuildFile; fileRef = D3A05C7FC9300F94160D614FA7CCF250 /* RCTCxxConvert.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E58F9DCB2BF63F914EB8186C6851544C /* RCTDisplayWeakRefreshable.m in Sources */ = {isa = PBXBuildFile; fileRef = 8B20CF0D11C773AA2E5C28B5794B36D5 /* RCTDisplayWeakRefreshable.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E59EDF5C6A9DD5F7425DEF513BF10B0E /* signal.c in Sources */ = {isa = PBXBuildFile; fileRef = 83E0596DECF5F390564DFEFF032A7791 /* signal.c */; }; + E5A9212C24E77FDDF19CC0E3C3656BB4 /* AtomicLinkedList.h in Headers */ = {isa = PBXBuildFile; fileRef = 7E1C967CF035869B7882A6F64B1F077E /* AtomicLinkedList.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5E3C73FC8929C49D510D55D3A52D64C /* Iterators.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C25D22DDF15B5FC6F756A4A654F2BF1 /* Iterators.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E5FEFA7F53FFD9C147CCF115F803A634 /* FBDefines.h in Headers */ = {isa = PBXBuildFile; fileRef = C580B97F36D58B9BC212C9F46DF6F87F /* FBDefines.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E612C4B53DED9D5E5C164D82FB819E94 /* RCTAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F5F32ED5DFCFB86A8C891E7FB88D4D37 /* RCTAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E68A325A11A307C011AF6D4E438C2EE2 /* RCTRootShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6A5C978C5B3DF380D14CEC476633600 /* Optional.h in Headers */ = {isa = PBXBuildFile; fileRef = C9F1F2E4B9C79C072284F7FB4D8D1482 /* Optional.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6B3F91EF7F9B83F1D7E25958D179CCA /* RCTBackedTextInputDelegateAdapter.h in Headers */ = {isa = PBXBuildFile; fileRef = 39E8201CB77A93436324DA76E5FF4D19 /* RCTBackedTextInputDelegateAdapter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6CC61669EB8A8421255241DBD738FA8 /* Access.h in Headers */ = {isa = PBXBuildFile; fileRef = 3926F3BE35E594AC65D9048174CCB295 /* Access.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6E73650BEA190CE7EDE129B1421EFA5 /* Init.h in Headers */ = {isa = PBXBuildFile; fileRef = 95355AE2B185AA69CEB2212FDF6A0C5E /* Init.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E6FD14FA4D3EEB925ABB0FA0881F3EDA /* RNRotationHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = 20397A4540455F0F51356F60106441D0 /* RNRotationHandler.m */; }; + E701DFB9A05EFF696F88C92E04822A98 /* IOVec.h in Headers */ = {isa = PBXBuildFile; fileRef = BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E703C355F675EC80D5B2116CAABB9C3B /* RCTLogBox.mm in Sources */ = {isa = PBXBuildFile; fileRef = 97D27CE0290DB7F2AC5D00DE81C3B4F4 /* RCTLogBox.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + E74BA1F1D4B198C3A728DAD8AEDF4EBB /* IPAddressV4.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E75C2DCF924B0984C972512CBFDA012E /* F14Defaults.h in Headers */ = {isa = PBXBuildFile; fileRef = D0BFAA2A03FE4362A4D8A4348117B75D /* F14Defaults.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E76CAAEBA98CCD153E603DA87474CE55 /* Flipper-Fmt-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = D362115F5D1DFCD8AC54D241B690C17E /* Flipper-Fmt-dummy.m */; }; + E774DC5926D0B4C77D1394FB73A54FD9 /* Extern.h in Headers */ = {isa = PBXBuildFile; fileRef = 9E2B6F4D6F5F9BCBC6815FCC124E3508 /* Extern.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E77D5761F68802E8E721CAFDD4BE0263 /* Flipper-Glog-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = B33D3B720FED836F30DEF46A97B52425 /* Flipper-Glog-dummy.m */; }; + E7894014AD5EB482F6DD5150DBEF5E22 /* RCTSwitchManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 32AE600242A61E4CB2BD1D4F39D964DB /* RCTSwitchManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E793A4282A8BA9ADD1056A6C145805C4 /* SKIOSNetworkAdapter.mm in Sources */ = {isa = PBXBuildFile; fileRef = 0E64EF469BD0F836BCF6F932C81C89A0 /* SKIOSNetworkAdapter.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + E7AA48387F36E67635F73A1CCDC26E36 /* Fiber.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 0AB0BEA70A1745722B585DC5EB21EBBC /* Fiber.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E7C74FB2DD95D1B0F8BD98F5F93BC80E /* GraphCycleDetector.h in Headers */ = {isa = PBXBuildFile; fileRef = D1093D96BEEEF431374C1ECD4C8D1E1C /* GraphCycleDetector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7E0F887E99D0C5B29A5334DCB3F8D31 /* WithJitter-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 90565A84B56C447368ADFADB3942E6ED /* WithJitter-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E7F7EF2D1F371788D39099C101D328DB /* RNFSManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 7FBA3C14D6E9B6D29C1B31D72D89282E /* RNFSManager.m */; }; + E828D386EF6DE4E624F776B875D8F8EA /* Foreach.h in Headers */ = {isa = PBXBuildFile; fileRef = 9EA0858D0336CEF51207E1DCB42954BB /* Foreach.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E82A3115FABE28C632074BBC1F4715CF /* SmallLocks.h in Headers */ = {isa = PBXBuildFile; fileRef = 1B654B0502E64D8D388E089653828E38 /* SmallLocks.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E85316ED8B2A51BC3AA423B1692B14E1 /* AsyncSocketBase.h in Headers */ = {isa = PBXBuildFile; fileRef = FD849FA66BF00355B6058FC5A42F4A09 /* AsyncSocketBase.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E861A268EA30FA74C9D81762CE6D9C9B /* SKHighlightOverlay.h in Headers */ = {isa = PBXBuildFile; fileRef = 83B1FA3C78EFCB90DEBBB99F8BD59249 /* SKHighlightOverlay.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E86AD48F7830872092D78B119C11571C /* MeteredExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = CD3C1BC5A627FA1E856A14BD25A8B3AE /* MeteredExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8ACA2A6899B8A56436697CB429C72FD /* RCTRedBoxSetEnabled.m in Sources */ = {isa = PBXBuildFile; fileRef = E481D28C154EF3890946004BBC4AA0FE /* RCTRedBoxSetEnabled.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + E8F3FD32C86E948043CDE1CF4FB36194 /* F14Map.h in Headers */ = {isa = PBXBuildFile; fileRef = E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E8F9A6118F20FF339ED19AAC16262738 /* AsyncServerSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 97B64FEEDDA1C83E21D35B2DAFBCE5E3 /* AsyncServerSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E919C9B0D1C4C4EDF3C86CC03DF9FE0D /* RCTConstants.h in Headers */ = {isa = PBXBuildFile; fileRef = 49EA15F9CF8862F3570AF4914DC754C5 /* RCTConstants.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E941F8D4422571EA5154273A2C638F76 /* AtomicHashArray.h in Headers */ = {isa = PBXBuildFile; fileRef = A48D9F33C1B078CA89F5C81F3F879F10 /* AtomicHashArray.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9640F9BFE2C0BB3C5CD5C62C8F56F98 /* RCTExceptionsManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 9C9A8F15F553EDF43432DF7D8B7A88C2 /* RCTExceptionsManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E991045F1CC1DA3CB68AC3BA8243CAC3 /* ConsumerBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 537B35EB5C0E956BF983F2CC2CD7BCE6 /* ConsumerBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + E993AF452C9ABCF52BE86BDAC503C282 /* Sleep-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DE4FBEFDD3959CD8584F32D6626C2591 /* Sleep-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9A95CF1E75DF72DFACF49D868E356AE /* SysSyscall.h in Headers */ = {isa = PBXBuildFile; fileRef = 11238CAF93CA6B458918C476B16EC9D1 /* SysSyscall.h */; settings = {ATTRIBUTES = (Project, ); }; }; + E9BACCA897C583C5E90CF4FA12F2E72F /* SKEnvironmentVariables.m in Sources */ = {isa = PBXBuildFile; fileRef = 28B6B26EB976F325D1374042C647225F /* SKEnvironmentVariables.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + E9F4C9B27185E2FCF8E1FA65BF920583 /* RCTInputAccessoryShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 132CFB1156BEBE2F93B909EAC300DC75 /* RCTInputAccessoryShadowView.m */; }; + E9FB5F77F9C5E2A42CA2526B77F08DC6 /* xlog.h in Headers */ = {isa = PBXBuildFile; fileRef = D45184467CBEC83CD5A938375357381B /* xlog.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA33233D916F42F9DB353241BE8F09B5 /* Async.h in Headers */ = {isa = PBXBuildFile; fileRef = 1BCAE9098DF52F2D00B2ECE68AEC9F21 /* Async.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA5AD7EB9C610B9BAC3904DB8943D31A /* SafeAssert.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 578B71C299EB923AFACC49A3D7637BCC /* SafeAssert.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EA772F0BC498D8A8F6197F8B72F808B3 /* CallstackHelper.h in Headers */ = {isa = PBXBuildFile; fileRef = D3F85441076215438C688EF422623C79 /* CallstackHelper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA93714720B6E373DA03BE25086BC17E /* NetOps.h in Headers */ = {isa = PBXBuildFile; fileRef = D05621DBC7EED33BE891FA356F13D4D5 /* NetOps.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EA9F42C426F0A139A44948C14D8FD620 /* RCTSafeAreaViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = 4A21568802433A4F94E4A6497C56F003 /* RCTSafeAreaViewManager.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB168DDB5F52F721C7260236E2A1EB84 /* LongLivedObject.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 07B619A6CBDF5542A9D3E27F1584F9F2 /* LongLivedObject.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EB412AC89DBA4CD29F73C6011D87ECA3 /* RCTConvertHelpers.h in Headers */ = {isa = PBXBuildFile; fileRef = 9229D038D92DEDBD3CABB8C00D5553E5 /* RCTConvertHelpers.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB45301A9CD0EEAD34849DF3E11A49BE /* jsi.h in Headers */ = {isa = PBXBuildFile; fileRef = 8467A96F5E3DC2DDF88FC4607E2D0D77 /* jsi.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EB75512EEE4FA7DD23EDBB13D73A5110 /* View.h in Headers */ = {isa = PBXBuildFile; fileRef = 3F6F95884C6F9C210C284F640C34995B /* View.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBA8D50EEEA5E3E8446AD4D1F56F4B87 /* UIView+React.h in Headers */ = {isa = PBXBuildFile; fileRef = 723071926A9D4A47FFF592235B9BE349 /* UIView+React.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBAAF8536FCB233D3B58D5EC5904E2A2 /* F14MapFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = 95195942758D876BA106A6603AB4CD9E /* F14MapFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBBC1FCA8445774AB61049C399FAEB88 /* Result.h in Headers */ = {isa = PBXBuildFile; fileRef = 9253E47942126D94991D7FC3EB7BE96B /* Result.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EBCF99FB2130A992F91C760DFD35E76F /* Promise-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 06EFD83AD7ADEA32030E69984B48B427 /* Promise-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC2A110AAA404FD1CB9473EE6C24BA27 /* SerialExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8CF708B2D03A4F50527AFD67DFC4C862 /* SerialExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EC4EAC53B7EFB21409BB93CE39460A35 /* FramedDuplexConnection.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 8A1B2BBEA594E4332D0398182C9E05F8 /* FramedDuplexConnection.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EC694EDA5CFB4D5E8F73C47088221511 /* LogCategoryConfig.h in Headers */ = {isa = PBXBuildFile; fileRef = 5CE872751A23184E29358AF6141B2901 /* LogCategoryConfig.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC69C467E56E296F6C909E621595E043 /* RCTTextSelection.h in Headers */ = {isa = PBXBuildFile; fileRef = E791FCA031648CDA57F99C92F43C6DE9 /* RCTTextSelection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EC99DFC8E531869F5C787485052F3D69 /* WithJitter.h in Headers */ = {isa = PBXBuildFile; fileRef = 5C374DFD923D150A94A486E66BCB46B0 /* WithJitter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECBB12816B821CFA6856554EC19B0481 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 3BFFDF748F50AB686609EC5987F9E6FA /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECD5F40D823A69957FB9246B1AABEAFB /* Checksum.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4CFC27BBE71CF896A473E9442705F5C9 /* Checksum.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ECE5CA7EB33F36B99D0A492766290179 /* TcpDuplexConnection.h in Headers */ = {isa = PBXBuildFile; fileRef = C9C2714A5B8B4D0860A0FFEA4455451E /* TcpDuplexConnection.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ECEE3E8FF82B11C417A711B37966D53B /* AtomicHashMap.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FF527636F53ACE55B46472FB323568D /* AtomicHashMap.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED362D192806BE026D072194497A8CDA /* ThreadFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = FCFF825EDDB380002C55AFF2CF1BE39E /* ThreadFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED6ADC069495018F9AB8CC4D0EF0B531 /* DistributedMutex.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 13467F6D4216ED976B525DE166A0C34B /* DistributedMutex.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + ED7303A6BA0B1B631350136CF0D9A94A /* core.h in Headers */ = {isa = PBXBuildFile; fileRef = FAB0D1B6895FE6921EA07896EE9FDEB4 /* core.h */; settings = {ATTRIBUTES = (Project, ); }; }; + ED738A6B8A042EF00C80A701B011B5A2 /* RCTManagedPointer.mm in Sources */ = {isa = PBXBuildFile; fileRef = D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + ED9BCD6D2A828B10E434AFA1AE4C1844 /* RCTImageViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 47197A1AAA0CF0D7B22F3ADF2917F800 /* RCTImageViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EDB557079D6C1409A8D2C15FD899FAEA /* RCTShadowView+Internal.h in Headers */ = {isa = PBXBuildFile; fileRef = E28E368B9F605E05D96B9157EAC98E3E /* RCTShadowView+Internal.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE1E0AF2E5D2A47B85E6C040A4F66819 /* RCTDivisionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = EA4A6EBE1FAE6A0D748B7D340F859633 /* RCTDivisionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + EE5FF791D53838C6A9587604FAF100E8 /* QueueObserver.h in Headers */ = {isa = PBXBuildFile; fileRef = 6B479041D03CBE0889ACF9CF705FA63A /* QueueObserver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EE7302E6B112499291D9173A27F9FFE8 /* Logger.cpp in Sources */ = {isa = PBXBuildFile; fileRef = EC2C408CD0DD40BB60C335CC6A86BFBC /* Logger.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EEBC126D0D85BA466F300C37CE21C56F /* JSIDynamic.h in Headers */ = {isa = PBXBuildFile; fileRef = 7935B83BC24DF19D7956C52B5F0FD9AD /* JSIDynamic.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EEC71FFE8233165621FF93AEFEE0199B /* Hazptr.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FA942BF4C323C1EC0D603AF8B66862E9 /* Hazptr.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + EEE714202F63B9DF8D0341AAAE1D0442 /* RCTVirtualTextViewManager.m in Sources */ = {isa = PBXBuildFile; fileRef = F2C315F2F84201EBC6B01FE94C5DB5B7 /* RCTVirtualTextViewManager.m */; }; + EF4EB8B6C096193BF8B5D4AB25B202AB /* RCTFrameUpdate.m in Sources */ = {isa = PBXBuildFile; fileRef = BA06FBC259F0562620B9DC617FE7EA7C /* RCTFrameUpdate.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + EF90B946F7146540A742191D78274EAC /* ExecutorWithPriority-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 7765DE553AA96A930B2B993A3A9BE9CE /* ExecutorWithPriority-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EF9BCFD0850943FC6153F38D88A9BD34 /* RCTLinkingPlugins.h in Headers */ = {isa = PBXBuildFile; fileRef = 3E00A6309ED3A3884828635571023A08 /* RCTLinkingPlugins.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFDD576BFBB0CC3F2F3C38FD1C59F0B1 /* FlipperCppBridgingResponder.mm in Sources */ = {isa = PBXBuildFile; fileRef = 6FC51DCC33865E389A68F9FB1AD9E429 /* FlipperCppBridgingResponder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + EFE489A7A6B6E8B0B40630E01AF906C4 /* HeterogeneousAccess-fwd.h in Headers */ = {isa = PBXBuildFile; fileRef = 6AED06AC298E4EE63E63C3BD6A16CB15 /* HeterogeneousAccess-fwd.h */; settings = {ATTRIBUTES = (Project, ); }; }; + EFE77732E11411E15BD1551D5A6D6E13 /* Latch.h in Headers */ = {isa = PBXBuildFile; fileRef = B417D4D087B4E916C9512A0BFF8771DD /* Latch.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F018322E31BCA1B1358CAF085ECA9EF0 /* SSLSessionManager.cpp in Sources */ = {isa = PBXBuildFile; fileRef = B5ADFB605B8C8A7D3EFAE771A31EA317 /* SSLSessionManager.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F0431FC90A5DDBA6B8B6B5A2B084863A /* ResumeManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 41AE773D321878B89B9DD52036DABB8E /* ResumeManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F04E832989186DFD581DE69290625F4B /* TimerFD.h in Headers */ = {isa = PBXBuildFile; fileRef = 4593FA2F35B448B1369AEFE86B203D5D /* TimerFD.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F05920239A9B0BBEC36200D5316ED200 /* GuardPageAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = B8A72A66152E8DD2210B61F2B4C7A780 /* GuardPageAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F07A96E370AD43248CB511EEF0E7CBAC /* CancellationToken.h in Headers */ = {isa = PBXBuildFile; fileRef = 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F082D3F94421EE63329CF91AFD69F1C8 /* http.c in Sources */ = {isa = PBXBuildFile; fileRef = CB4456A958761B3AC70D23A5FDD299DC /* http.c */; }; + F095430E2145C941A3620A8DF735D9C3 /* OpenSSLUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = CE05144F41F28057A870BC5B8659E23D /* OpenSSLUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F0E5C71CAB0DDB54796D502CF30AB4D0 /* FingerprintPolynomial.h in Headers */ = {isa = PBXBuildFile; fileRef = F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F140FF031002D5C073D39E83F646F328 /* format.cc in Sources */ = {isa = PBXBuildFile; fileRef = 65C6BC961861AAAE14F506F525154305 /* format.cc */; }; + F14B68B35D7010E42BC409FF9EFE3508 /* SSLErrors.h in Headers */ = {isa = PBXBuildFile; fileRef = A8B64C9F5118481B733B20D5B173E8E5 /* SSLErrors.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F151229C1A0A06F034907BADD2F27E85 /* color.h in Headers */ = {isa = PBXBuildFile; fileRef = 5A535D13DF2B6A16C6E11351DDD4F14D /* color.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F15840BCEBF00D44494417F4EDD9A12C /* RCTWebSocketModule.mm in Sources */ = {isa = PBXBuildFile; fileRef = 7F7FEF93D1B768E833A9DAF5D1997DEB /* RCTWebSocketModule.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + F1771F83DFF7FC542A32CEDEBA57E0A3 /* RCTAccessibilityManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 20816CB2D86C9A3A6160A10A7BDC43E5 /* RCTAccessibilityManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F17A2A2DFDFBB89C9D3FB3046A7AF8B0 /* InspectorInterfaces.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FB1041769552B0B23D758E5EFD3915CE /* InspectorInterfaces.cpp */; }; + F1921C482AA9E1FC1C4A410DA2096982 /* ThreadId.h in Headers */ = {isa = PBXBuildFile; fileRef = 08319D8926787065308E3CF23A13F49B /* ThreadId.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F19553493B29204B54EB1F8E3C43F944 /* RCTFrameUpdate.h in Headers */ = {isa = PBXBuildFile; fileRef = 486FBE52207E52465649F3D35DBB2832 /* RCTFrameUpdate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2018C29AB3B1BF10C024D3C10148370 /* RCTRootContentView.m in Sources */ = {isa = PBXBuildFile; fileRef = 6DE846EF1DD9DD88BB8C4E52C3F03FB1 /* RCTRootContentView.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F25C2ECDE2F33A95079BC54D5EC2CAAB /* Singleton-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F27D4E80DE5162C5B06EBF7753746297 /* RCTSpringAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = B69C4B62F42A4AE2692142252BECE95D /* RCTSpringAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2B6C1FA0D70D41B34618639F5AD7910 /* Elf.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 972AF50397FBB6D391559B7BD62A6B13 /* Elf.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F2BB581AAB6061A45799942E9F98AAEA /* TimekeeperScheduledExecutor.h in Headers */ = {isa = PBXBuildFile; fileRef = BED150EA79C7AF762BB00B50D1B1A2BC /* TimekeeperScheduledExecutor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2DAE23D361668F412E3209912E9A2E2 /* Filter.h in Headers */ = {isa = PBXBuildFile; fileRef = C11C93100305406F07A35C81C46BAC35 /* Filter.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F2E3CAD526FA4EA059D6FE0346046493 /* F14SetFallback.h in Headers */ = {isa = PBXBuildFile; fileRef = DE52D04A4D2C98286B4DF4AB71B28A8D /* F14SetFallback.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F322FC26BD4F3EA491C980AA949E3FBE /* RecordIO.cpp in Sources */ = {isa = PBXBuildFile; fileRef = E7BEC8E9F3F363146BEA0CF91262073B /* RecordIO.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F367A028825A3014796CDAB05B6F6DDB /* Subprocess.h in Headers */ = {isa = PBXBuildFile; fileRef = 2D843C6B3633B0F34F5C88CA4C483714 /* Subprocess.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F37F0D63C3E67C6C8CFFE0BD20C9BE5C /* ManualTimekeeper.h in Headers */ = {isa = PBXBuildFile; fileRef = 55133247894F502C2E944B4CE4088D2A /* ManualTimekeeper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F384EBB835C99555DBB4F303451B7048 /* AsyncSocketException.h in Headers */ = {isa = PBXBuildFile; fileRef = 42E49AF705399890E10FD1E0B997F47B /* AsyncSocketException.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F389399D7FB516A5028B8AB07153764E /* RValueReferenceWrapper.h in Headers */ = {isa = PBXBuildFile; fileRef = CDB703BF1700EE2C37C9A6619993BF6F /* RValueReferenceWrapper.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F394EE692690DEDB01E7D6B9FD0FF22E /* SysStat.h in Headers */ = {isa = PBXBuildFile; fileRef = F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F3AA168F758FA4272CBFD90BE8D4071A /* diy-fp.cc in Sources */ = {isa = PBXBuildFile; fileRef = BF32E472F0A02F2DF444DC71FDC358C3 /* diy-fp.cc */; settings = {COMPILER_FLAGS = "-Wno-unreachable-code"; }; }; + F3F0365E78C502A1E3265C8472103471 /* ReentrantAllocator.h in Headers */ = {isa = PBXBuildFile; fileRef = 24C7205E1D5E202376B71C254222D18B /* ReentrantAllocator.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F401EBC85A865B5DB0748789AB8640EF /* RCTBaseTextInputShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = C02CDFE19C2466A12C9C5C91925A8794 /* RCTBaseTextInputShadowView.m */; }; + F41AAA374CC3655DA11F15500FD05F17 /* PriorityLifoSemMPMCQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = FEA178199BCBE725C293D552930B1CE8 /* PriorityLifoSemMPMCQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F44367E83125BD80A6D90F1BEEC12F45 /* json_pointer.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F0EB8C9DAF78F0BAE340499D45B3030B /* json_pointer.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F445EB5A0FE7DCF98F7A4CCAF3BB76A2 /* bufferevent_sock.c in Sources */ = {isa = PBXBuildFile; fileRef = 95CB5E2CC4EEB8D454938FDDCF8F4534 /* bufferevent_sock.c */; }; + F4488E2E15ABF8C359011F594CECC9ED /* Uri.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 74018F1C21EE82B69B5FDDFCFDA721F6 /* Uri.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F45E85925C8B36D1EF0A39886BDEFFBD /* JSIndexedRAMBundle.h in Headers */ = {isa = PBXBuildFile; fileRef = 69583B7887BC7B4CBFB0CF834AE1CEC8 /* JSIndexedRAMBundle.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47ACA229CEB6DEBB82195E9E07D8936 /* ThreadCachedInt.h in Headers */ = {isa = PBXBuildFile; fileRef = 7879BF85A2370D7D2345CC4DDA98C145 /* ThreadCachedInt.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F47EBCEAA1B606D35045770A0DDCDBAC /* FLEXNetworkRecorder.h in Headers */ = {isa = PBXBuildFile; fileRef = 31B6DFF190986547C1DAF15DA91AE97E /* FLEXNetworkRecorder.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F483B892993EDE7F82E4ECDD010634FF /* EliasFanoCoding.h in Headers */ = {isa = PBXBuildFile; fileRef = FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A270295B643FED3E043984A7221CE1 /* FlipperKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 17A4457BEE040DD83522B8BCB0FCA4FE /* FlipperKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4A6CE2EB5809C8EE32590DA9E6C8D0C /* GCDAsyncSocket.m in Sources */ = {isa = PBXBuildFile; fileRef = 5D766D03D3666E27CC7B590A172259D1 /* GCDAsyncSocket.m */; }; + F4B25F43CD59433A958CE84D76AA5990 /* OpenSSLPtrTypes.h in Headers */ = {isa = PBXBuildFile; fileRef = C4D0EE59EE353D2BBE364A6C22BCB508 /* OpenSSLPtrTypes.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4D4074A3544F2873746172C28F3ACD7 /* LogHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = BA1C8345901D13386123595034784A65 /* LogHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4E6EC3E880747E9B451BF5A58CB5482 /* RCTRootViewDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 9BDD5699D6498184080F84F83B69BB77 /* RCTRootViewDelegate.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4EA7EBFED735F676E7AD497603CA93F /* RCTSurfaceSizeMeasureMode.mm in Sources */ = {isa = PBXBuildFile; fileRef = 37EAEF1F8F45A170F180691126924AD8 /* RCTSurfaceSizeMeasureMode.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F4EC6D514EBB9FA2665D1B02E5544B3A /* Uri-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 232A922D2DBFFACE84798E53FCE13117 /* Uri-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4F0F6098ABC0946B4F91155ACD56FBA /* TimeoutQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 13DEF24C795E0BC84EDC5A8E7A6D9BB0 /* TimeoutQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F4FAEE7480DF8C0E0361A3532F483404 /* RCTCxxMethod.h in Headers */ = {isa = PBXBuildFile; fileRef = 537C2E6878CC1C7D1500B538674334AD /* RCTCxxMethod.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F505AEE3D5ECA20EEF2BF81A1903FD4C /* LogMessage.h in Headers */ = {isa = PBXBuildFile; fileRef = AB9A93A19D32D1081C325F076109E172 /* LogMessage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F564F26EC6EFE66994D6A6FDF4781766 /* Addr2Line.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4849ECDFCC31C7EB5090D4E177F5CEB1 /* Addr2Line.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F586FB7A4FD42E179FC6D06A7B847EFB /* AtomicNotification-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F58F4DE786E05703E184A0F6A69F69C8 /* CoreCachedSharedPtr.h in Headers */ = {isa = PBXBuildFile; fileRef = 1FECA7202BB34315AC679A52E994E29C /* CoreCachedSharedPtr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5EE07F7B3E047B20045D3AD8A3A6D30 /* RCTBundleURLProvider.h in Headers */ = {isa = PBXBuildFile; fileRef = A319434D6D8B3CE21F6B5463960E0E99 /* RCTBundleURLProvider.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F5F46A3B1E8C166175447F0BBB1C19E0 /* RNGestureHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = C34CF249410C053F61A0BC9BCB0D7AFA /* RNGestureHandler.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F61B78B95B5055A24EC83FD5D4F9778C /* Likely.h in Headers */ = {isa = PBXBuildFile; fileRef = 8EFD4DE708F6E88E73103F036EE9A99E /* Likely.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F63626FF17EBF7535205E68C957CA5B4 /* AtomicNotificationQueue-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = F68AA11BD25010453413B085D402F636 /* AtomicNotificationQueue-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F63D22F1BA930536FA9F2C71256462D6 /* SysUio.cpp in Sources */ = {isa = PBXBuildFile; fileRef = F79229D3C4CE6746DB4EA1E469259633 /* SysUio.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F64D24407759BD8A26EF178BB9B60AB1 /* FBString.h in Headers */ = {isa = PBXBuildFile; fileRef = 10EFA3ABB77ADE780BBB0CB7E791921F /* FBString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F664763C17F84E5DB8F2FF89DF20E40B /* FLEXNetworkRecorder.mm in Sources */ = {isa = PBXBuildFile; fileRef = D822B24D75585724F32397070E810D7A /* FLEXNetworkRecorder.mm */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + F664F8410F1D143920754F0187293FD9 /* RCTDecayAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = D72AD290B7F1305411B9F0AB9301A99E /* RCTDecayAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6729F474A796DAC637F3EBDE23A740A /* ConcurrentBitSet.h in Headers */ = {isa = PBXBuildFile; fileRef = AF6E21C516096440394B4FE6F6C87DCD /* ConcurrentBitSet.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F67A6EA914A264DDA4005B78C6571523 /* FarmHash.h in Headers */ = {isa = PBXBuildFile; fileRef = DA077B18475E1915605A0E41B031F042 /* FarmHash.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F68ACF43E26A52CA3A197081DFBA5F92 /* RCTMultilineTextInputViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = 756A295FE901328053AB2176181D16F6 /* RCTMultilineTextInputViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6AE5975CA6A8F729C95579708A2B8C5 /* RCTTextShadowView.h in Headers */ = {isa = PBXBuildFile; fileRef = AA8C420D14EC76F9F3AE92A7F5C02708 /* RCTTextShadowView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6B5995220BCBEAF8E747CA5F7695255 /* Sched.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 35EF6865CEAD08A9DCCA82597C824433 /* Sched.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F6CE3B2011C2C20B14733A1A665A15FD /* RNGestureHandlerModule.h in Headers */ = {isa = PBXBuildFile; fileRef = DBECF5FF2D87CB35AFB67B4EB80D0BDF /* RNGestureHandlerModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F6D1C7BD02667D3CEB917DEB4C049868 /* ModuleRegistry.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 09B84401E7363B850813E0B7E7060CBD /* ModuleRegistry.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + F6DD81226F3525EDA7362E3313F4E16B /* EnvUtil.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F06AFB3EF8C41AADDD5624388AED2F1 /* EnvUtil.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F703FAAF1BFCDD778A141DCB3F4E37AA /* log.c in Sources */ = {isa = PBXBuildFile; fileRef = 3610FB2ABC0F193F05860135DC9ADB20 /* log.c */; }; + F726D01BCE7280404F7B4F7784C17D09 /* double-conversion.h in Headers */ = {isa = PBXBuildFile; fileRef = 4352CB013C058F4B4885BADC231B0BA9 /* double-conversion.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F73E51733418C736D8237894B3E9E333 /* YogaKit-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 14A44908722D33976D21C1AE7AE7EA60 /* YogaKit-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F74B3CC2FEEC446494A8171F091DDCEA /* Windows.h in Headers */ = {isa = PBXBuildFile; fileRef = 63462335D68E71CE4F23FC49EBF908A9 /* Windows.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F765D6AB3C029BDD06FBF8E54E0E3218 /* RCTResizeMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 3FC983533D93206237E17DD0A730445A /* RCTResizeMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F77156D30B8E39B9B2C02B037E86141C /* YGNode.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 694C10A80529882CB01503D51F57BD41 /* YGNode.cpp */; settings = {COMPILER_FLAGS = "-fno-omit-frame-pointer -fexceptions -Wall -Werror -std=c++1y -fPIC -fno-objc-arc"; }; }; + F7A553184CC25BF987B14A0E3E0C7BFC /* ThreadCachedInts.h in Headers */ = {isa = PBXBuildFile; fileRef = 222389CF1784F763E9954F5A96C7471D /* ThreadCachedInts.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7E5B6E4B1E3FBA6D1213D9C66261E27 /* RCTLayoutAnimation.h in Headers */ = {isa = PBXBuildFile; fileRef = 03D42044BE7FB95D5486ED5E944B7A63 /* RCTLayoutAnimation.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F7EBB3319DFDD65ABBA5BA056E46413F /* FlipperKitNetworkPlugin.h in Headers */ = {isa = PBXBuildFile; fileRef = 13835FDD97758D2FC12518E68308E94A /* FlipperKitNetworkPlugin.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F8593B753E0E299933A9305692A1B29C /* RCTNetworking.h in Headers */ = {isa = PBXBuildFile; fileRef = 55C284F6230F276B009930072A0DEAB8 /* RCTNetworking.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F860FEB7ACF66BE7D2855AC60320A068 /* strlcpy.c in Sources */ = {isa = PBXBuildFile; fileRef = 248DFAA960C19A98CCB4DD50DBC1CC55 /* strlcpy.c */; }; + F8D09757CA18D76A89BD9D32153A85B0 /* Core.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 149024AC816B2DB463D0FC39FF024AE3 /* Core.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + F8EA7A998104999C7A19011BD8494551 /* Promise.h in Headers */ = {isa = PBXBuildFile; fileRef = 023931DE156E179D2AFF6BF42B90EEDF /* Promise.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F94A8C34685E873666F3CC5D8C84AB56 /* Observer-pre.h in Headers */ = {isa = PBXBuildFile; fileRef = E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F94C380AB45FE7B4C7982FC16D39EB7F /* LoopController.h in Headers */ = {isa = PBXBuildFile; fileRef = 8A39C9F197AD9D374B6BEF1E938F224F /* LoopController.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9776DFF0527DC100DDEA937B6B78383 /* RNGestureHandler.m in Sources */ = {isa = PBXBuildFile; fileRef = BE1EA40D6E673702B48D2483852A5FB4 /* RNGestureHandler.m */; }; + F97F61CE8D07DA9EC8B6C5A8B22BB545 /* Sse.h in Headers */ = {isa = PBXBuildFile; fileRef = ECE171EFC461D42E4B62B356FC15E69B /* Sse.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9BFD14441FB2757B00E6D62F535A70D /* RCTErrorInfo.h in Headers */ = {isa = PBXBuildFile; fileRef = AF9F5DD897F0D44D4A35154E41534594 /* RCTErrorInfo.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9C821C43B3019EC4CD441DEB7A23D89 /* RCTSurfaceStage.h in Headers */ = {isa = PBXBuildFile; fileRef = BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9CA17F36E4255B329F21D7B3505ACEB /* RCTAnimationDriver.h in Headers */ = {isa = PBXBuildFile; fileRef = E9F781FBDF647F215982CC397B874472 /* RCTAnimationDriver.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9EF005AE6AEE2760658D987A69CA251 /* Malloc.h in Headers */ = {isa = PBXBuildFile; fileRef = C5839C2D97AE45A6ADA49D56E1ECAC7E /* Malloc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9F6D6441F863688C6CA6D1E7C8F227F /* Foreach-inl.h in Headers */ = {isa = PBXBuildFile; fileRef = DF474746FD313D8E8496FDE44A98010D /* Foreach-inl.h */; settings = {ATTRIBUTES = (Project, ); }; }; + F9FA5411DDA80F671746B26FFB7AE1FF /* small_vector.h in Headers */ = {isa = PBXBuildFile; fileRef = 8E251B1C668CFDCCC0AB74DD2FEC65E9 /* small_vector.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA14F0F7D7EE5EA74316AB20659A0D6A /* ManualExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 58BF368C4AE5399145D7DB97A3C56C63 /* ManualExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FA4B0CFF12BBA958F9A17E166E619D1E /* ScheduledSubscriber.h in Headers */ = {isa = PBXBuildFile; fileRef = 463A0625EF5539121BB4B7BA5D74B9FF /* ScheduledSubscriber.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FA6FC34F515C18F62646A3186EF76152 /* JSBigString.h in Headers */ = {isa = PBXBuildFile; fileRef = 2CD461841D515FB414F7D7EA662F21AD /* JSBigString.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAB315B306CFEA0FB192E951AF55DE0F /* LogLevel.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 440CA227BE2EE5FAF05B5FCF00DE3ABB /* LogLevel.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FADF43EC210E8D9FADC1DBE967BCC339 /* NetworkSocket.h in Headers */ = {isa = PBXBuildFile; fileRef = 433D1DCBA0693D7CF49D5F6508652810 /* NetworkSocket.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FAEB5A3E29565DB23C52E6757D16016D /* SharedMutex.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AA821AF452BCA0DF297118D5C08D190 /* SharedMutex.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB20357D091D40AB6BBD5428593D2CD1 /* TurboCxxModule.h in Headers */ = {isa = PBXBuildFile; fileRef = 1C9FDB6AD7D684B0DD23F222E270EC62 /* TurboCxxModule.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB36E69549D0FFC5239649C59C647A48 /* EventHandler.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 4554F52622C8AF0D7D3BBB8D7D0BE6C4 /* EventHandler.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FB3A6915AC82EE948EACEBCE4E3A0708 /* Constexpr.h in Headers */ = {isa = PBXBuildFile; fileRef = E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB754AC4531DD5FD6372F8C9B23CA96B /* PThread.h in Headers */ = {isa = PBXBuildFile; fileRef = 4E1FFCDB58043B264035E10E1551B96B /* PThread.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB7DAAED57A165DD674B37BA297907AE /* ScheduledFrameProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 59D299ABC2A6DB245E64DC08DB1D2E10 /* ScheduledFrameProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FB8805D3885DED28F8C9388A708603C3 /* RCTLayoutAnimationGroup.m in Sources */ = {isa = PBXBuildFile; fileRef = 3FC84AC02D21D0EF5400118587C1EE82 /* RCTLayoutAnimationGroup.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FB8D397A29F0C6A557544FD001A4A0FA /* RCTParserUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = C4E5F5FAD8618EF1E97712E1145B17EF /* RCTParserUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBA3F8CB825487AE7E79617B6430CADF /* Aligned.h in Headers */ = {isa = PBXBuildFile; fileRef = A284B21F5FAED59FA8A35F863AB4FCA7 /* Aligned.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD55425B2E5EDA017340C539117469E /* evrpc.h in Headers */ = {isa = PBXBuildFile; fileRef = F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FBD75A809B2212EB7961AC135A956984 /* bufferevent.c in Sources */ = {isa = PBXBuildFile; fileRef = 74551B784505A6FA9C0D0AC04BD3A2C5 /* bufferevent.c */; }; + FBFDC5A0FE0C07C7E6658BCBB3695F15 /* RCTRawTextShadowView.m in Sources */ = {isa = PBXBuildFile; fileRef = 2C69354C203ABC4F487BD2A5F9B79A81 /* RCTRawTextShadowView.m */; }; + FC3D7A96175FD1CCE19C32E02D629547 /* Random.h in Headers */ = {isa = PBXBuildFile; fileRef = 885AF5C76547E28D942A8322024EAF93 /* Random.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC3F8FCF8D52A497E041D29D60BAA2E4 /* RCTViewManager.h in Headers */ = {isa = PBXBuildFile; fileRef = D465747E33C9EAA2C10CCD4C7F655D42 /* RCTViewManager.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC42C1D9A95A03C695563F5624B2EAD4 /* SlowFingerprint.h in Headers */ = {isa = PBXBuildFile; fileRef = 585A16DDD7AAEC8380A5ADCA2DE19BED /* SlowFingerprint.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC5DCE5739BEDFC3AAB3484D31159E01 /* RNCSafeAreaViewMode.h in Headers */ = {isa = PBXBuildFile; fileRef = 5FADE3C903A7E7F1489DC013F50F20D3 /* RNCSafeAreaViewMode.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FC7111867E5EF4B606A437E919C7E2CA /* UniqueInstance.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 481CC08F5ADA547F7DE48D6A890ED486 /* UniqueInstance.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_PTHREAD=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FC8261B99C85CCA8F5F38CD667070A40 /* RCTSurfaceView.h in Headers */ = {isa = PBXBuildFile; fileRef = B2E8CEA50F73B7AEF97AD26AF4956F15 /* RCTSurfaceView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCD29CC4B1F3734CDA8FA3C2955B48F1 /* FormatTraits.h in Headers */ = {isa = PBXBuildFile; fileRef = 762D2BB55BB4E8ECE50F1F50C0812126 /* FormatTraits.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FCF33DB896395F8176288102227D1398 /* FKUserDefaultsSwizzleUtility.m in Sources */ = {isa = PBXBuildFile; fileRef = C60695CEB7D05035E7C57DC3CC499976 /* FKUserDefaultsSwizzleUtility.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + FCF40670E500B5A707A02357526AFEF3 /* RCTNetworkTask.mm in Sources */ = {isa = PBXBuildFile; fileRef = 4484626AED358D181DDF77B9714BB92C /* RCTNetworkTask.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FD4E23732BDFFC61C3DB730C265CB9C1 /* FLEXNetworkTransaction.m in Sources */ = {isa = PBXBuildFile; fileRef = 327331FECC65A2DD61BD9D2E0F31DAA2 /* FLEXNetworkTransaction.m */; settings = {COMPILER_FLAGS = "-DDEBUG=1 -DFLIPPER_OSS=1 -DFB_SONARKIT_ENABLED=1 -DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0 -DFOLLY_USE_SYMBOLIZER=0"; }; }; + FD680B1D5E94831818B2895F51F793D2 /* InlineExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 197B98B4A1ED2D16B40D747CF181B8A3 /* InlineExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FD693B4F807FE6D55511A67EBE807ECE /* DynamicBoundedQueue.h in Headers */ = {isa = PBXBuildFile; fileRef = 7408F1DB02A0AA05FA89128C31892A0C /* DynamicBoundedQueue.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FD7DA8BC7ADDA2D7464BA87A56B187A9 /* RCTBorderDrawing.m in Sources */ = {isa = PBXBuildFile; fileRef = BA11BB2BE6862072AAAEDB0EAA6298CB /* RCTBorderDrawing.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FD848A9220EB5F56E39289338F353EB5 /* RCTSubtractionAnimatedNode.m in Sources */ = {isa = PBXBuildFile; fileRef = F65F8193EDE5A6BE6683701DB8CEAC2F /* RCTSubtractionAnimatedNode.m */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-nullability-completeness"; }; }; + FDA91A13A9CF45E8E42CE5FA0E838805 /* ApplyTuple.h in Headers */ = {isa = PBXBuildFile; fileRef = 88E588C5EB2AC14366ED603A297AE184 /* ApplyTuple.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FDC6FB2B11DAC7AE5C9857F8341A2627 /* JSCExecutorFactory.h in Headers */ = {isa = PBXBuildFile; fileRef = E5F63F2AED47C5751C71ACD38E5D715C /* JSCExecutorFactory.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE16EB6725152A48BEB89E15B2AB1F81 /* React-Core-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = D564D6EA1777610D343FF98BA9875568 /* React-Core-umbrella.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE2371127A455186CA2EBF8E1AC86708 /* bignum-dtoa.h in Headers */ = {isa = PBXBuildFile; fileRef = C7D8715B7E77BD30B534D554A19AE8F2 /* bignum-dtoa.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FE4937606F2BCCD6CE4D21A1CDA5C081 /* LogStreamProcessor.h in Headers */ = {isa = PBXBuildFile; fileRef = 41D0EA47C5B6A6A9034F17DABE68AA07 /* LogStreamProcessor.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEA81A29E69F2247B94DF85725A73816 /* SysMembarrier.h in Headers */ = {isa = PBXBuildFile; fileRef = 064156F5E6CBD9AFC6F123EB49C440AA /* SysMembarrier.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FEBB8277654CC02065F0BA73A9449C6B /* RCTTurboModuleManager.mm in Sources */ = {isa = PBXBuildFile; fileRef = 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */; settings = {COMPILER_FLAGS = "-DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -Wno-comma -Wno-shorten-64-to-32 -Wno-documentation"; }; }; + FED04FD11AECDF8DC604D3F548A39860 /* StringKeyedCommon.h in Headers */ = {isa = PBXBuildFile; fileRef = 04ACB218ACC3341EB3A0DD86FCD21B61 /* StringKeyedCommon.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF01CA238E458FDC9C8FC96291767AA1 /* EventBase.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 04EBE944EA032E62C09E05B28ADD9908 /* EventBase.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FF3DB4337F47577C8CD855C287D5F682 /* HazptrThreadPoolExecutor.cpp in Sources */ = {isa = PBXBuildFile; fileRef = FC814A6EF9F7C7FBE15BAED735CB9E91 /* HazptrThreadPoolExecutor.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FF5BE19832AC715324DB093AD1087A47 /* Util.h in Headers */ = {isa = PBXBuildFile; fileRef = AD96D492F5D2DDCB9ABBFC7CB11D5377 /* Util.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF7E2F6A8B2E137397FD86E7806E7F75 /* RCTUIManagerUtils.h in Headers */ = {isa = PBXBuildFile; fileRef = 244284323336068E0A39D1CD40D5B806 /* RCTUIManagerUtils.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF81C815F5FB318D6FEF2DCDE9CF2451 /* Shell.h in Headers */ = {isa = PBXBuildFile; fileRef = B150E0FA0B600CC90485F03AFFFA7077 /* Shell.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8AB5E5F75BE04BF41E01FEDB415F0D /* RCTBridge.h in Headers */ = {isa = PBXBuildFile; fileRef = 734EE32D3120AE7046B2B9828AC797A7 /* RCTBridge.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FF8FD7CB4B0518EB5124040E7ACD3E38 /* RNCSafeAreaView.h in Headers */ = {isa = PBXBuildFile; fileRef = 002785781A4491EA27742483F711611C /* RNCSafeAreaView.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFC8AE28E321BB361DD33D6706321588 /* Singleton.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 821623E26485D6B6BECEF967A2394009 /* Singleton.cpp */; settings = {COMPILER_FLAGS = "-DFOLLY_HAVE_BACKTRACE=1 -DFOLLY_HAVE_CLOCK_GETTIME=1 -DFOLLY_HAVE_PTHREAD=1 -DFOLLY_NO_CONFIG -DFOLLY_MOBILE=1 -DFOLLY_USE_LIBCPP=1 -DFOLLY_HAVE_LIBGFLAGS=0 -DFOLLY_HAVE_LIBJEMALLOC=0 -DFOLLY_HAVE_PREADV=0 -DFOLLY_HAVE_PWRITEV=0 -DFOLLY_HAVE_TFO=0\n -frtti\n -fexceptions\n -std=c++14\n -Wno-error\n -Wno-unused-local-typedefs\n -Wno-unused-variable\n -Wno-sign-compare\n -Wno-comment\n -Wno-return-type\n -Wno-global-constructors\n -Wno-comma"; }; }; + FFDE0D97751C85815FC7F7FB05A6E41F /* BatchDispatcher.h in Headers */ = {isa = PBXBuildFile; fileRef = 3845B94F4AA16FA00DE62B5E0FAD9D96 /* BatchDispatcher.h */; settings = {ATTRIBUTES = (Project, ); }; }; + FFEF9B8F3F074EEDDD57F4A883411782 /* Traits.h in Headers */ = {isa = PBXBuildFile; fileRef = 0D4D3EA3FB82971CF64D83879C8BD6CC /* Traits.h */; settings = {ATTRIBUTES = (Project, ); }; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ - 01013EA9A9EF8BC3F8C2DB428A2D020D /* PBXContainerItemProxy */ = { + 011C0EF1C51251A3E00CB3FDF29F8CB9 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; - }; - 010BE90713181A0767DE624943A35B1B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; - }; - 022EBC52642B25DE09B29F136052B700 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; - }; - 02F6CBE978E70450A8AFA539DD11AE5F /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; - }; - 0358AD2FC21EF6A7133931B061E880F2 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; - remoteInfo = RNSound; - }; - 03F7C5A3D199614DF8948AD244D2C66B /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 053EA60AFF5460B691180D1BF6716DBD /* PBXContainerItemProxy */ = { + 0121F6F71DB704B00359255EDE376909 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 073735A5F297938B5614FB078210900F /* PBXContainerItemProxy */ = { + 01CE980E8DFF9ECCEEB85D7C8F526F09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 07AB1A52609C50D97B616B58A4A79EAC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; - }; - 097CBF4E91F3DA6A7C3250A128AF9918 /* PBXContainerItemProxy */ = { + 0329EEC7E9AD99D808606E294DC3B521 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - 0A05674CE8287A7DD17515C7F89BEA98 /* PBXContainerItemProxy */ = { + 03D1638433A5800A553E5B0A301EAB09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 0B3C5C8FB6B20D2FF51731380F3786A3 /* PBXContainerItemProxy */ = { + 05597C987EE6563C8A873A677A3FF353 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 0C6159720F3B657B830F9253C22F544C /* PBXContainerItemProxy */ = { + 05A16D1635E06E440CB23D68D19F990C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 0C7910E56A978033FAF00B08F8349B32 /* PBXContainerItemProxy */ = { + 085B51F398D275993EF26B95EC4670F6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 0FECAFA5FDF8A97A73C471B51BCC4800 /* PBXContainerItemProxy */ = { + 095DE5C949FEE504B2B5EED6F2F0C2A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 109E9D297FF12AAC0F57B0514591B7FF /* PBXContainerItemProxy */ = { + 09FC5997494FB0179C676B406DAAB29C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 1549BA9DF5A63FDA8E6DC5A596700CA4 /* PBXContainerItemProxy */ = { + 0AB9C976FDBBD0E7C20EC0629627C525 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 157D55F80E95BD508C110F490FBDA02D /* PBXContainerItemProxy */ = { + 13B8F3501478B44D8CB0D5B65DB30A05 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 167CD90FAFE6C9AF8D34D18BAD0C2016 /* PBXContainerItemProxy */ = { + 13C84CD41409A15E95C3F09AC09B247C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 16BCB4DB5ACCCDF8A18B842EF3AC343D /* PBXContainerItemProxy */ = { + 1483BC89D04235F775770564C9982A71 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - 1779DD3F7A43D32188729D318DBEDAC2 /* PBXContainerItemProxy */ = { + 161570D169F8DB814273C31DA2F83046 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - 17AA01C33EC92DB81F63C005F99D82C0 /* PBXContainerItemProxy */ = { + 161E80A38F444B36B48DD4FD014E724F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 17B644B09F4397C1BBFD301FE32F631D /* PBXContainerItemProxy */ = { + 17FA62B9B9D81EA410D7B23015DA8D59 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 18DC0B13A08F648EE01DAEF091E9323E /* PBXContainerItemProxy */ = { + 18E66D130393A17C818288B0196B621F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - 1B81488F26904202FE664DF9BAC04E30 /* PBXContainerItemProxy */ = { + 1A60DEF84A1350D605D3327FABB457CB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1B81D71E3ECDE84B015026DAB4CE4980 /* PBXContainerItemProxy */ = { + 1C37E2AE6B45EA0005A96E39ABEE53F8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; - remoteInfo = CocoaAsyncSocket; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1C0BF228ADB8934CF47C0CE3C2B295B4 /* PBXContainerItemProxy */ = { + 1C404E3923B9D985C7AB46DFB22E270E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 1E619FB59D6EA26FDCEC6666CEB3703F /* PBXContainerItemProxy */ = { + 1F0D856E2286593E06425E0AFB377C09 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; }; - 1F7903C379AFBE3FA8711C3CD7561150 /* PBXContainerItemProxy */ = { + 20FC190B497425216CFD73ED46399307 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 1F94CB0FB8CEB90DB2F1523375C6AC56 /* PBXContainerItemProxy */ = { + 212E8F1A7EB24FE99D3B3D776DE5641A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 212997A76B225CB0B8A7DBF5EF58989C /* PBXContainerItemProxy */ = { + 21E9F6175926B2438CEDF473850E869A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 221A78A72F3EE99B47BDF9C67B25B9D1 /* PBXContainerItemProxy */ = { + 2308F13ACC018ACF2FE5D662522EDACC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 222CD842834FD5D378F894BBE2C281ED /* PBXContainerItemProxy */ = { + 23C67866A3EC3802730E1B4E1732CF1D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 23851778750EAEC8245B6A416FD45488 /* PBXContainerItemProxy */ = { + 23DE9E4AE885DE0B62A9BCDCADE12E91 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 24888C39EF216BFE6A09CECDD564CF84 /* PBXContainerItemProxy */ = { + 23EFD38234A45EA2821B8EE194DBDCC8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; + remoteInfo = RNSound; }; - 25AA3F513AD6152C29DF6ADDBF1210AE /* PBXContainerItemProxy */ = { + 2500508E04AE3379E6909DEA2CC7E742 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; - remoteInfo = "Flipper-Fmt"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 28CD4790660609C4C93C685CCEAB1A3D /* PBXContainerItemProxy */ = { + 26E1BED144E89B0AFC1E3231F0CC9641 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 2912689B4E4BA8DCE808391DD899C2E7 /* PBXContainerItemProxy */ = { + 2703F772C946904034C468241DDF468F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 2C6BB5FE476C6E4D7C59342DB4A138C5 /* PBXContainerItemProxy */ = { + 2765D50A2C30DD8DA84170EB0DDE4478 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 2DBC6C35E30EDF933CC522760D9E27EB /* PBXContainerItemProxy */ = { + 2D304C777E4E9BC953CC63B2FD2261A0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 2DD55A9A1AFEC1A2EF309B5A1C0086B9 /* PBXContainerItemProxy */ = { + 2E03C3EA9410BD9D5B7D36111D76BCCD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 2E4AE92977689247244F08292FEB43CF /* PBXContainerItemProxy */ = { + 2E07DF9B7B240FA1283520C84F3C5ED0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 324F9CB8D5F224973842E3C85F8C122B /* PBXContainerItemProxy */ = { + 2E356CC39CB8EF3E5DC17BF49D72807C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 32D2AD205A6D2F6B6E2E9AF584E8A7CD /* PBXContainerItemProxy */ = { + 2E5888E2FDF822B96D083A94D956CD6A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 3394565B1A1395F2CE789365BB65B9F6 /* PBXContainerItemProxy */ = { + 2E67937D1C1ECF43344FE14805E588CE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 34F65523AA59E44ABB001D58166E7F67 /* PBXContainerItemProxy */ = { + 2FA0E2C66E7C46F359192710FE1AF226 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; remoteInfo = "boost-for-react-native"; }; - 35305E381ADD5F21AB22F9ECB97A3EF6 /* PBXContainerItemProxy */ = { + 2FF0108C1CB722324207DCA02FCF4389 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 37FA7113B7D985688399877F7702386A /* PBXContainerItemProxy */ = { + 30D928032D7CB2454431DB852EFA8073 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 380841325347866B55212D3C6D1B5627 /* PBXContainerItemProxy */ = { + 33083C47A8C8D30C502FDA1B5B512853 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; + }; + 353E9A43F6C683E045F3B67FA4F6256D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; remoteInfo = "Flipper-DoubleConversion"; }; - 38B278CD528E26EAB944ABD4A9F53FF6 /* PBXContainerItemProxy */ = { + 35C7AD54112ABEB62F34801D05BBA7C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; }; - 3B1E1BE58933EA287D63D83979647F86 /* PBXContainerItemProxy */ = { + 364A4D5F84641448BB083765E7D2607D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 3D4962858E53612B26551D08C8064BD0 /* PBXContainerItemProxy */ = { + 36A1E236CB5FE5F4C2EB3F9810E91FFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 3E1A04DCAB0A9AF9206E204E981E184A /* PBXContainerItemProxy */ = { + 36E501CD81DCEF863DD7E8557FA22C36 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 3E1C58714C49ED15C8FBF8163487F415 /* PBXContainerItemProxy */ = { + 381EA87555D0EA115CDD1DD49FC4BB3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 3FE50B7A735B450AB7FA613B2450C925 /* PBXContainerItemProxy */ = { + 39EE1D8E0FC10934D98A126217940BA3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 4214877E41520184E89A6A3EFF0945C4 /* PBXContainerItemProxy */ = { + 3B3A3CB1E543C0A6BC85B58B912F9CDD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 45DB857DE0973A4D5E464CA648247FA9 /* PBXContainerItemProxy */ = { + 3B9FD5443ADB95A89E9A3002C866B8D8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; + remoteInfo = "Flipper-DoubleConversion"; }; - 487DF619444225F0D677AAB4A6FCDE96 /* PBXContainerItemProxy */ = { + 3BE1EE1D43A7BED221ECA131BD764DFF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; + }; + 41D33A6FF114C6D60F6697790865AF5F /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - 493AFFF3E97B75E5B9853E53ED9DC4DA /* PBXContainerItemProxy */ = { + 41EE89AC31029846D47B51642D38B838 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; remoteInfo = "Flipper-PeerTalk"; }; - 4A63FDF900FCDF18D337FAC240022EFA /* PBXContainerItemProxy */ = { + 4530ADCF5A69C71CF06DE8C147DF932B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - 4BB29375ACCF8087EF409ED814E648D2 /* PBXContainerItemProxy */ = { + 45E4546930A00C64F986FEE788AB45C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 4D902424453F70AED7C8F40562E287C1 /* PBXContainerItemProxy */ = { + 45F1CBD55C1450888530EDA4849DC5AB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - 4E58A87BB289082C4915EE72F32C6AB4 /* PBXContainerItemProxy */ = { + 468E82F6BEB873BFBC215CC969F3EE3D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 4EF3C9F96ABEF1BACEFC9A45E9DEDB2F /* PBXContainerItemProxy */ = { + 483391C1216B63BD3A7683D84A600D2B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 4F7303083516E9D1E3626EB9EA4605E7 /* PBXContainerItemProxy */ = { + 49A66A984615830DA7AD796D11F9E176 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - 4F75F2D7446510AAF75195624C42A2F3 /* PBXContainerItemProxy */ = { + 4B26F7C635146BCB7DE2ED45490D5496 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; - remoteInfo = libevent; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 51F795B3D924AB232A5A6B062442DEAD /* PBXContainerItemProxy */ = { + 4B83DF2ECB9D035917F81FE10E23D847 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; remoteInfo = "OpenSSL-Universal"; }; - 52C94C9331CCA3E3FC9D23E07C0E1774 /* PBXContainerItemProxy */ = { + 4B8649E5C6731FCBE42643819A6E77A4 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 556ACD95CC487E89FB5941EAB8319F1F /* PBXContainerItemProxy */ = { + 4D99688F47F466E127339E858E07DCBA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 557FC94D5033395DFE8D19B79DF27859 /* PBXContainerItemProxy */ = { + 4FD6D077070068E1608ACE3DB31F6651 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; + remoteInfo = RNSound; }; - 56A9DBD752B46F20A58CB3682B4FEC3F /* PBXContainerItemProxy */ = { + 5477143F60466A22EB233FC48A80F157 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - 57992AF871F2DB8A89403283AF876950 /* PBXContainerItemProxy */ = { + 54C99811C45F515B7C718D9C26327A51 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 57DA41DF9F9970800C59A6CE35F4D418 /* PBXContainerItemProxy */ = { + 559E28B992EDD340763A7030503C0F75 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; + }; + 55EC54726E7F0BB5A5B76C5BFB6ACE19 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - 58B9412E98656B680EB05852088320D1 /* PBXContainerItemProxy */ = { + 56A8414645D2769BEE633843E8F39902 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 59FD2C6310F27AF300AF424BE53B538B /* PBXContainerItemProxy */ = { + 587D01B8B9214724223CC947B43959A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - 5AC9C6C82E11CA4092B97FCC4FB584D0 /* PBXContainerItemProxy */ = { + 59B1F55287BAA9CEA4FBCB9470EE9C06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 5AE3E3587A9BF3B23081C9BF8351C847 /* PBXContainerItemProxy */ = { + 5AC428E21C08BF1FE059804E055BC92C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - 5BF2ACBA7A34F9BEF1B5662FCA7D9C7D /* PBXContainerItemProxy */ = { + 5B332714DAADF251B012805A423534AE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 5D842A42BC0D8AAB841B9FC034184C01 /* PBXContainerItemProxy */ = { + 5B3AFC18A459AC0BDEF68E60631756FB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 5E362C1E0C6501DCEDF722D3BE638E5F /* PBXContainerItemProxy */ = { + 5E02D0614A63FE475F49A6CA25F439BF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 5E72BAB86595A37E24EDB428D9740E08 /* PBXContainerItemProxy */ = { + 5E48BE6AB7B1A188F4DE41D2198A6197 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; + remoteInfo = "React-RCTImage"; }; - 5E9436722AE912F7AE1852C91D8071D7 /* PBXContainerItemProxy */ = { + 5F0F53C688588575C9CF0F5390D2FB81 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; remoteInfo = "React-runtimeexecutor"; }; - 5EF440DA523BEE7AD4E9F72B26FA7DE3 /* PBXContainerItemProxy */ = { + 5F373DEE2DF9B48475C4D4411D5869F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 5F066C280B577223BFE682BA91B0BF03 /* PBXContainerItemProxy */ = { + 62683B3D86D0275B815F4517714CA30E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 6016F0B236191D43BCA06B706D0B3F6D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; - remoteInfo = "React-runtimeexecutor"; - }; - 60BAF9DD5AA372551C87E5CE88CFE9BF /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; - }; - 615D6FB1F2FA26B80712CB6DDEEB87A9 /* PBXContainerItemProxy */ = { + 63B7C6B9089DB97F37BB54A2C31A337D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 214E42634D1E187D876346D36184B655; + remoteInfo = RNScreens; }; - 618C12226D41A4788F6DB94213E61923 /* PBXContainerItemProxy */ = { + 63C8A66AAD6A416B25C6E8D7F1D1E797 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - 61B7771D2CCC349A559AA8AA49154C45 /* PBXContainerItemProxy */ = { + 63FC6B0EA1CF59A98900612681C581CA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; - remoteInfo = "React-RCTBlob"; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 61C9FABBD6A7C728CB826BC8599038C5 /* PBXContainerItemProxy */ = { + 64439893A9E8DC4630412175985A6DBC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - 620F57E85C270C6E09246AB8806A87D2 /* PBXContainerItemProxy */ = { + 6459779DA59A4DE813F704DCAF9E7F3F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - 629E41117BFEAB0EA48D240F5FE2C259 /* PBXContainerItemProxy */ = { + 6564BA90887B1E702647932B99105FF2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D0EFEFB685D97280256C559792236873; remoteInfo = glog; }; - 6433FB741E8C5B3D0F9410ED5D4FB37A /* PBXContainerItemProxy */ = { + 6675246AEB1ADFE8037147B725EA7679 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; + remoteInfo = "React-Core-AccessibilityResources"; }; - 6507EB88C8A5ADF1933D66FC791E7358 /* PBXContainerItemProxy */ = { + 67C07E0AF8F69EBEDEE6974E0FD77719 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; + remoteInfo = React; }; - 651A561BA56AE5EA3DF7E21F4AF3523D /* PBXContainerItemProxy */ = { + 6A13DE1DAD7E0E91EE4B923339F32557 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - 6543F9FFB497E19DDF348C125991E1BC /* PBXContainerItemProxy */ = { + 6B1C3ACBBE72EA7E35A59D6A2EC3D7B3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - 661434B9BFF5DB764435091B796E8430 /* PBXContainerItemProxy */ = { + 6B21F253D8448B7CCF00FC2E27FEE71A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; }; - 67D1FCF8AADC8DFD5FE7161D425EB7A8 /* PBXContainerItemProxy */ = { + 6BC6206A9CC62C03B60EA851F43F9BEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 69EB5FB1D1E1795C372D3E80EC10F8E3 /* PBXContainerItemProxy */ = { + 6BCC76404FA2ED868DC6F9FC36005EEE /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; remoteInfo = libevent; }; - 6CCD4321DBB536EA89184406D3AD8238 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; - remoteInfo = RNFS; - }; - 6D4F448DE156150622C756122D82090C /* PBXContainerItemProxy */ = { + 6BF207EBCDC0CB8F691A31F61FB37C44 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 6D7B2253B48A2A981236064B2A20448E /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 6E47A4F654E0A35FBD0D074B2649FEB8 /* PBXContainerItemProxy */ = { + 6D5C346FFEAE77109F4AA706759E279D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; - remoteInfo = "Flipper-Folly"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 6ECB730056EB3AB53C7EE6C7D2F01209 /* PBXContainerItemProxy */ = { + 7181D858774BDE5456C4BB8A05825F99 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - 6F912A4FBB7B04E3BCD3E159194631AE /* PBXContainerItemProxy */ = { + 7195550E984F0CE05D2A8EE90AB9DF08 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - 6FCFEFF98B48B61FBEF4A6AE02B412FD /* PBXContainerItemProxy */ = { + 71B3D2ED4CCC115BE01A8C4FEA374E5C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = 6083682834ABE0AE7BD1CBF06CADD036; + remoteInfo = CocoaAsyncSocket; }; - 6FEBEA0983F333D823398C4FC1E5D4F1 /* PBXContainerItemProxy */ = { + 724674F983A0F2A904036ACB81E6E1CF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; remoteInfo = DoubleConversion; }; - 74BC3D0701B5184937B3A855C819EBD3 /* PBXContainerItemProxy */ = { + 7383577D8776EB3FD9299B93C4FA826D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; + remoteInfo = FlipperKit; }; - 77CB901E96C319CF6ECC1CBC345F1F85 /* PBXContainerItemProxy */ = { + 73892FCA71EB83D61A49AA958BEF5940 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 7A009AE9B82D3FD33A0783A92F9C1833 /* PBXContainerItemProxy */ = { + 75B75CAE19E4E6FD4E1D7077E7812450 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; - remoteInfo = "Flipper-Boost-iOSX"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 7A80A8E9400B3A60E1A55F832ECB2730 /* PBXContainerItemProxy */ = { + 7831B24A2CEAEE97440E652F3B82A71E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 7BF05030FCEC290AAF4BAF6F5A32B802 /* PBXContainerItemProxy */ = { + 78B3BFB4A70517077D0BC1E0056AF363 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 7C4D75C09C04F6C5A4886EB44B03B919 /* PBXContainerItemProxy */ = { + 78F258944DA7C52ECFBD5D9BD0E5B5CD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D9245543B79C09FAC40FC8B9F291536A; - remoteInfo = "Flipper-DoubleConversion"; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - 7E54716705BF39371F1FF4068C731DED /* PBXContainerItemProxy */ = { + 79967E51E8C17FAC69F030FCB814D140 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; - remoteInfo = "React-RCTActionSheet"; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - 7F43969C574BAD2B0D8786E18557B2F0 /* PBXContainerItemProxy */ = { + 7B20BCCDCCAC45EB7AD38F97AB04AFF7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 803C1501E194793779936E936ED9ECF5 /* PBXContainerItemProxy */ = { + 7BA3C84E9B444AB75FDC54F920F66441 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - 806A2ACF7B5569727D24476A2A8414F6 /* PBXContainerItemProxy */ = { + 7BAB613D428AC21062505AD2DD909761 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - 814080C2D3ABB1668E37717B97819399 /* PBXContainerItemProxy */ = { + 7BEE0B2D19474C9B2BAFBDA2C90BB45F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 54EB12219122432FA744088BC5A680D2; + remoteInfo = "React-runtimeexecutor"; }; - 81ECB6D9E74E777E8096D86DF226D2B8 /* PBXContainerItemProxy */ = { + 7CE1E0286B8E523652973F0DDDAF4800 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; + remoteInfo = "React-callinvoker"; }; - 82AA1A1B1B8CF8FDF3E7FE61B95DAA79 /* PBXContainerItemProxy */ = { + 7FC90E126691A15019F316589C0C884C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - 835DC1A41B856152A07E13415BF33ABB /* PBXContainerItemProxy */ = { + 80BAF27BCD8782090D72FE329DD5BF3B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - 8535B324E68BA53D370EF3D8E292FF3F /* PBXContainerItemProxy */ = { + 813D6F1670AAAAD6C42840DEA2EF7583 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - 86CE6628A05DFE33ADF0EE2C3C317624 /* PBXContainerItemProxy */ = { + 82B00643A757C13900F9BB80F7CF6B49 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - 872DD8311D5D6E8B5DA85A80E285155D /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 8823C087EC3FC47007C1F385CB78F4BA /* PBXContainerItemProxy */ = { + 84C45398F40F7C1A96261FFF6067DCEA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; - }; - 89938932351CB94896D3BB303007EE72 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - 8CE2FE0F9ADE2D68524EF31A426C3D43 /* PBXContainerItemProxy */ = { + 84EAD413F0FC22642C310CB22CAB4D46 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - 8D17B86D284E1409C649F996F36B0531 /* PBXContainerItemProxy */ = { + 86E1A119457408C12D7F427DAA7E2923 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - 8FD925A30C7B599457DD862FF556A39A /* PBXContainerItemProxy */ = { + 87A3972AC77106F3B284477B29472428 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; }; - 90D2CE00F407DB32FA64367C5DBB0441 /* PBXContainerItemProxy */ = { + 899014E174613EADD957DF6E7D36B9A6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 9268B2B185BD0267D39E72F772B08888 /* PBXContainerItemProxy */ = { + 8A82E387771D71C06CA14C189245A749 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E16E206437995280D349D4B67695C894; - remoteInfo = "React-CoreModules"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 93FE1FB13605D8228880E75116E535C9 /* PBXContainerItemProxy */ = { + 8D5DDA90C96BF349629C789CF4062DBD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; + remoteInfo = "Flipper-Fmt"; }; - 954A9940AE5FA893F03B11A6BC575F24 /* PBXContainerItemProxy */ = { + 9376CC167796C9F636DACC8F23F4DD56 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 9574891228D4E764F975671C7077D495 /* PBXContainerItemProxy */ = { + 93B0328896FAC5CE0B969F350B1BC182 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - 95C22A0E172166BDDFC973FD19AD6871 /* PBXContainerItemProxy */ = { + 953DE3D02500FDF8412FFD0FB1FDCE06 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; - remoteInfo = fmt; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - 963DFA004EFA39124244658CF43BEF9C /* PBXContainerItemProxy */ = { + 982C45327A5945A0DAF48B4CA1A67266 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - 9841DFAC26821D5B8BE90B7F47E93C7D /* PBXContainerItemProxy */ = { + 9856C62E29B509CC0313D237DD43BAC6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; remoteInfo = "React-RCTImage"; }; - 9964F14B842AC779CD748BA8B930EF2C /* PBXContainerItemProxy */ = { + 98E77146AEAD1EE7DD2C26FFD7EEE110 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; remoteInfo = FBReactNativeSpec; }; - 9BC27D0A2964B04854DA0761BF66C7F9 /* PBXContainerItemProxy */ = { + 9A498A9133450D15DBD98E8ED8DE7DA6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; - remoteInfo = "Flipper-PeerTalk"; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - 9E6BF45553EC5D2A962E25B42592ED4F /* PBXContainerItemProxy */ = { + 9B7EA28E2743B8A78C2E845A82C52883 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - 9ED017EFD2FA106C1804A2DD400897DC /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; - }; - 9EE515FB5FC154A6678D5CCB4DDCBF38 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - 9F5CE49FDF4A60EBC4DF27CEF64303AB /* PBXContainerItemProxy */ = { + 9B8730FF2A4189F1EFB95482F8A66C82 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - 9FEC5CFED384AB90DEC624AB163EC8D5 /* PBXContainerItemProxy */ = { + 9B8C5863251A05C66473CE30C7D36672 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - A10FD9AA4CDB27087CF41F97066F6E7A /* PBXContainerItemProxy */ = { + 9EDDF3C783229D23395EC6DC57B7755A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; + remoteInfo = "React-RCTText"; }; - A1AF65F96C673FFD8CA91A5928C0CBB6 /* PBXContainerItemProxy */ = { + A0BCAC788E9324FBAEF12957126C67C8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; - remoteInfo = Yoga; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - A23EABD21164A6175DD0BADFEC5CAD66 /* PBXContainerItemProxy */ = { + A11A4BE8B6E202CE6BE211F7D9822F5B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - A2E7228B9E6E6F8D719561DED9E87246 /* PBXContainerItemProxy */ = { + A2C54626938E84F29178B0981E8B9499 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; + remoteInfo = RCTRequired; }; - A3CF8925D7B6E9A0C3664579A8D89360 /* PBXContainerItemProxy */ = { + A2E8553532D6C627B133A5BA0711526E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; remoteInfo = RCTTypeSafety; }; - A3DFC0DE4DCB91CCEF55F4E01893B7AF /* PBXContainerItemProxy */ = { + A41BF66A9C3C586BD3BAE39F420DB7FF /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - A46987E52AAA3454488B7A8B715CF2D0 /* PBXContainerItemProxy */ = { + A6063C611F61CA14A5C9A840002D92C0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; + remoteInfo = "React-cxxreact"; }; - A791F241B218E16282756A41D52F4758 /* PBXContainerItemProxy */ = { + A611FCD763CA9A46C454FEB311ADFA3C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - A974F35DD8856B15752142F7F0D797FA /* PBXContainerItemProxy */ = { + A629471A0876881631991B4CA74E4472 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - ABB713D7D0A34A1F94C5E7E343BD5192 /* PBXContainerItemProxy */ = { + A64CDCBEE755A867C2733975BB354817 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - AD832A92CBC3AB8D9BCEED9E6DF291CE /* PBXContainerItemProxy */ = { + A68C78C82EA95EC18BD10E3F5FEB7B5D /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 5CCB99E63FCEF3B56DC0BD71DFEC4618; - remoteInfo = RNSound; + remoteGlobalIDString = 95D98F901D07557EF7CA38D3F03832C5; + remoteInfo = "React-RCTBlob"; }; - B045C24D74F782B90218B7840969F671 /* PBXContainerItemProxy */ = { + A6C9A5FD6199B114170FF327BE81B350 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - B05A5FA6EEB4EDB2315C45F3FA18EBAD /* PBXContainerItemProxy */ = { + A8F4EC4F68B57A1E187D8EC07BA4866F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - B2F00AEDFEBC41713CC3699E0C7AE394 /* PBXContainerItemProxy */ = { + A9F900EEB4FD3ED0C70A58CEFCE8B310 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; + remoteInfo = "React-perflogger"; }; - B64C31BD63FE9BA355DC1D2BBFE56BD1 /* PBXContainerItemProxy */ = { + A9FE6AC793021EE2D063CD6E16E044C7 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - B68F4AC08B8A97165C145DAAD1114A6F /* PBXContainerItemProxy */ = { + AA0D7F0706498C4A377574A6E910DB96 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - B7A687DCBF77BAE3B0A2FBD7CC148885 /* PBXContainerItemProxy */ = { + AA9DBD982762EFB22671CE976301552E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; + remoteInfo = YogaKit; }; - B8D52A8E983FD02C1378DB447BC4FF90 /* PBXContainerItemProxy */ = { + AB1FC58CCCA47A4E48BC1CAC2C539EEB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - BC20C5473744A58A9041CEA86C038F9C /* PBXContainerItemProxy */ = { + AB77811787B048FC82329282EF4AC9EB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - BC67CCD6B98225E5BC32147FC48F1C2F /* PBXContainerItemProxy */ = { + AEA8B8BD7B5D1B4E8F29AEAA455AFA1E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - BC8E4E189422BBC8310046E429AE3A98 /* PBXContainerItemProxy */ = { + AFE3FD5C2F75104920A262F5F3F66D41 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 4F265533AAB7C8985856EC78A33164BB; - remoteInfo = "React-RCTImage"; + remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; + remoteInfo = Flipper; }; - BF3A2478A871F1A437C637A46DE567CB /* PBXContainerItemProxy */ = { + B14960BE504245E68B88497AA7303510 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - C070BF25856AA06D4AEE0ABA752939E6 /* PBXContainerItemProxy */ = { + B3295CC3D9024D74DFCE42351AE2BF40 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; }; - C1728214A34DF9E5849269BCDDED6B48 /* PBXContainerItemProxy */ = { + B353B571F3911E886754868D8EFC79ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; - remoteInfo = "OpenSSL-Universal"; + remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; + remoteInfo = "boost-for-react-native"; }; - C22E164E65B419AE5861C4627AE1813A /* PBXContainerItemProxy */ = { + B70E32B41CBDE8DC88B88AB473C4B770 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; remoteInfo = "Flipper-Fmt"; }; - C25472A61B533EE9C8BAC5A38C38EC15 /* PBXContainerItemProxy */ = { + B8F380B9FB96CA3F78511B1E26D39E52 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C2735CC2CF8E9976DCD8E647BDE70E22 /* PBXContainerItemProxy */ = { + B993C98A48BA28600FB3488E11F1DED6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; - remoteInfo = "React-RCTLinking"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - C2A92F0D4F87C017BF5B16A5E84D6217 /* PBXContainerItemProxy */ = { + BB7BFD07707FA98C7224544B509FA386 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; - remoteInfo = "React-RCTAnimation"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - C4704BA7CBA14EE5332DFA9395012CEF /* PBXContainerItemProxy */ = { + BD19EDB993F6C86A12C2EC3CF574DA22 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = 04A30E186743192DFB26B0FD7DB8F250; + remoteInfo = libevent; }; - C4AF10B039E015142AC254C53ECEE164 /* PBXContainerItemProxy */ = { + BE23A1119F3DC10E8712633AD5835A00 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; + remoteInfo = "React-RCTVibration"; }; - C6B90A97B264E37532B283F97A116C82 /* PBXContainerItemProxy */ = { + BE963E3D1559F03DD480B6D2067970A2 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 982644B5B647690B2E4F5B3F54EB5717; - remoteInfo = FlipperKit; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - C713080066FE2B2C84A5383D51B9D000 /* PBXContainerItemProxy */ = { + BEFEF15614B2E006A67F472B76EEC8E8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 32CA4CBD6B28983076BD93DA221AD027; - remoteInfo = YogaKit; + remoteGlobalIDString = E16E206437995280D349D4B67695C894; + remoteInfo = "React-CoreModules"; }; - C71B5B6B6C955AE89BD6DA568E3B4501 /* PBXContainerItemProxy */ = { + BF7742B72166A42511717A8D43C709A5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E63939AA6EFD3D6A8C09E45929F11DBD; - remoteInfo = Flipper; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - C962994681FE613D24FAA00A427B980C /* PBXContainerItemProxy */ = { + C04948768735FCD3666EACD1E5BED735 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - C9C35CEAF53EE1B6985D22C9F198D47A /* PBXContainerItemProxy */ = { + C0FC281A47D9DD07F937CD96AD52827B /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - CC18A5489DF232C8C4297720423E58B6 /* PBXContainerItemProxy */ = { + C2386FEBEB4AD2632CE079DDF10387DB /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; - remoteInfo = "Flipper-Glog"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - CDE10D7297F56422DC078215D554E6BC /* PBXContainerItemProxy */ = { + C33C0D8300B7D5C95A8008094AB6D07A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - D01CD19268C02ED95A6DDFD74F80B637 /* PBXContainerItemProxy */ = { + C36292AE3ACB6A6DA78FA65006775920 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; + remoteInfo = RNFS; }; - D1735CE986B40FE939920694B7E58F90 /* PBXContainerItemProxy */ = { + C36D27C363F71736EF9F47FC257C6CF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; - remoteInfo = FBLazyVector; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; }; - D2786F928DFB1D14023AD36F42E5D4F4 /* PBXContainerItemProxy */ = { + C4E2090A12CE09D2B4E9069774551FE6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; - remoteInfo = "React-jsiexecutor"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - D4CDBD8F43BA9A2AFD45F96E5C60F6E1 /* PBXContainerItemProxy */ = { + C4E2A774734DDFAA97A32802FD0D3C9F /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D58BCFF02615797540AA8517FCAB4DFD /* PBXContainerItemProxy */ = { + C60CB397586D0B773D99F837F63C603E /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - D614B9B5B0BB701CC415CF961C5C19AB /* PBXContainerItemProxy */ = { + C60E58B7E0D11D33ADC5A34A2420D0DA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; remoteInfo = "Flipper-Folly"; }; - D7EAD64CE2ADFBC83B1C6CCF0A732322 /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; - proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; - }; - D8F388D80DF0C469256DBB16922BFE20 /* PBXContainerItemProxy */ = { + C84B485A703B0116F99F122E647198DC /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - DAFC866F4D0D6AF2E6FE29AA2B4BDA94 /* PBXContainerItemProxy */ = { + C930B877EA27782D7A7690227123F49C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; - remoteInfo = "React-jsinspector"; + remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; + remoteInfo = "React-RCTSettings"; }; - DCA38137F38EA8150A4ED62DAE9B74A1 /* PBXContainerItemProxy */ = { + C9F16B5BACEB9A084176DC6CB37C6FB8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; - remoteInfo = "react-native-safe-area-context"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - DCE4B64A2432472B939D53A88370DCDE /* PBXContainerItemProxy */ = { + CA6B143E1DA6455FD1A86FF4003EC503 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; - remoteInfo = FBReactNativeSpec; + remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; + remoteInfo = "React-jsinspector"; }; - DFBA824F01D6ADBF3BF3A1148E7033F1 /* PBXContainerItemProxy */ = { + CC42A6AB3DB851FE251A08502F6F9548 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 680299219D3A48D42A648AF6706275A9; - remoteInfo = "React-RCTSettings"; + remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; + remoteInfo = RNGestureHandler; }; - E044B96BBAB1657E79E8C9F7A0E8D9A0 /* PBXContainerItemProxy */ = { + CD8DD6DBD3F696B1AEE1FE78BF2DDAD3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; + remoteInfo = "React-RCTNetwork"; }; - E0CBAB09310F4B44C54B036C2D2BA984 /* PBXContainerItemProxy */ = { + CF1BB31E05C1DCE59BF3AE9143E7FAF8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = E7E7CE52C8C68B17224FF8C262D80ABF; - remoteInfo = RCTRequired; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - E0E501E93636888464602A331835064C /* PBXContainerItemProxy */ = { + D12B2ECE7728E7941E33BA805F4F58BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D0EFEFB685D97280256C559792236873; - remoteInfo = glog; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - E15017BCD1A00CB3586C6C7847C87D42 /* PBXContainerItemProxy */ = { + D13E8E772FEAA8276DB3080CD8858C18 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - E2D177267D2ECA99C3DDF19204F8D1E9 /* PBXContainerItemProxy */ = { + D50537759700D537DFE8010F68101C43 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; - remoteInfo = "RCT-Folly"; + remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; + remoteInfo = "Flipper-Fmt"; }; - E3551A15246BB63E9617FF974E5E232F /* PBXContainerItemProxy */ = { + D5CF33A35D197A13F8118F64F181D92A /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = DBD2D83E10F8B7D3F4E0E34E6A9FCFA6; - remoteInfo = "React-RCTText"; + remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; + remoteInfo = DoubleConversion; }; - E661618DB15B3798B3909D3553533D5F /* PBXContainerItemProxy */ = { + D6216BCA6BA2ACA7B51C0173CA6AF3BA /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = B6D39E083AE0FF45BA30D7CDF6198A03; + remoteInfo = "Flipper-Folly"; }; - E806CA227A0E08AC1FA9AAD3B42DDC92 /* PBXContainerItemProxy */ = { + DA692A482161F19B5C9574FF39600900 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; }; - E88661A12A5DA7F94A39B9FCBF182E90 /* PBXContainerItemProxy */ = { + DA7E4BE38C3A25B437228AF82DE1B782 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7A020DAB6F3F0BA0A6D9946E84B38B7F; - remoteInfo = "React-Core-AccessibilityResources"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E890431E9EA62605FBDB09B7733E5AC6 /* PBXContainerItemProxy */ = { + DAC91EF8725417959DDD4B9315DBD2BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2681CB7EF647E61F4F9A43029C235607; - remoteInfo = "React-callinvoker"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - E9D01B52815BC6021D939FB98E5C0F98 /* PBXContainerItemProxy */ = { + DB2EFAE4C16DE6EAE560C59EC19F1209 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 0A38628B0123A2EC8A0183D4A2B2747E; - remoteInfo = "Flipper-Fmt"; + remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; + remoteInfo = RNFS; }; - E9EE9DC7F2D5A4402C16581F69A15A39 /* PBXContainerItemProxy */ = { + DC0E95CA1D14A97D9E2B403EB855D3F1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 8CC4EAA817AA86310D1900F1DAB3580F; + remoteInfo = FBLazyVector; }; - EA04981762812A2D988C1EB02F41B24F /* PBXContainerItemProxy */ = { + DF3B65E601922C3FF05364B6C7A330B8 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; - remoteInfo = RCTTypeSafety; + remoteGlobalIDString = CD7E4799597971CE1F9F7BB394E8DDD7; + remoteInfo = "Flipper-Boost-iOSX"; }; - EA55220DED2AD83822CF238B4F944B65 /* PBXContainerItemProxy */ = { + E019D27ABF06D81B5B41A3DCC4F07998 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 463F41A7E8B252F8AC5024DA1F4AF6DA; - remoteInfo = "React-cxxreact"; + remoteGlobalIDString = 02B79DFED924FA19CA90EC69614733E1; + remoteInfo = fmt; }; - EB59D0D29389062C60C4B108731BD6D6 /* PBXContainerItemProxy */ = { + E3123C17E36A021C4D5779AEB71C6CF0 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; remoteInfo = "React-Core"; }; - F03BAA792CD146E1B2FC58BB32B753FF /* PBXContainerItemProxy */ = { + E489879F4576FE476A74A2BC75857212 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; - remoteInfo = "React-Core"; + remoteGlobalIDString = 2B25F90D819B9ADF2AF2D8733A890333; + remoteInfo = Yoga; }; - F202A14495967DBF0E2DBEB92DF0D90B /* PBXContainerItemProxy */ = { + E4A8290874BCE57EB5FB7FEF728E9DF1 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1BEE828C124E6416179B904A9F66D794; - remoteInfo = React; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - F2E11AF8F99D76F4ED8BE10670C60F55 /* PBXContainerItemProxy */ = { + E50BF37BC7F93ACFEE0E3F8A4FB549ED /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = 7ACAA9BE580DD31A5CB9D97C45D9492D; + remoteInfo = "React-Core"; }; - F545F6A1774FD87E2184007383D5F081 /* PBXContainerItemProxy */ = { + E67D83888D37BC12FC924538E8E054E6 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 430D7C4A9EC9AB29B0505AFA151AABBF; - remoteInfo = RNFS; + remoteGlobalIDString = BD9A27D8398DEB3205D3F8937B0672A0; + remoteInfo = "react-native-safe-area-context"; }; - F5B010D8C3FA98B170CD4EC380D3C2DD /* PBXContainerItemProxy */ = { + E75BC00C05925CFF69770064913E1441 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; remoteInfo = "RCT-Folly"; }; - F5BA1D97846399B0FD01A414909C50FF /* PBXContainerItemProxy */ = { + E80025F2288A660B91498FD2945BDC37 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 2AB2EF542954AB1C999E03BFEF8DE806; - remoteInfo = DoubleConversion; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F7212B37600BBF12400B1839AF49B606 /* PBXContainerItemProxy */ = { + E812C4B9E929871FB9F0E2E4AA0B77F3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F721C0234A3F81851877C6402AAF2500 /* PBXContainerItemProxy */ = { + E8689765AFF2AEB37521F1B56F2EC51C /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; - remoteInfo = "Flipper-RSocket"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - F7EBF9D94EB28BDD10EEFAA3208746A0 /* PBXContainerItemProxy */ = { + E89A18AF65ABBE76C90299EB476C6D63 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B9E8F4CA2A4A8599389FEB665A9B96FF; - remoteInfo = RNGestureHandler; + remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; + remoteInfo = "React-jsi"; }; - F94679A5A4B7713E8C160D25AA3BF923 /* PBXContainerItemProxy */ = { + E8DD25419CAEC8F1EB3B8EECB94D5832 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = F1E2583679398CB5F4D2B3272E9B198F; - remoteInfo = "React-perflogger"; + remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; + remoteInfo = ReactCommon; }; - F9486AADF69B09BCEE5F11FBC27938E8 /* PBXContainerItemProxy */ = { + E9813676ED00E13BE1CFA641244E0421 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; }; - F98D869F6C1C13E8AD16ABDDE8B5AF86 /* PBXContainerItemProxy */ = { + E9984F3B08505E779B4EB467BFC7C943 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 53D121F9F9BB0F8AC1C94A12C5A8572F; - remoteInfo = "React-RCTVibration"; + remoteGlobalIDString = 718DB7D0A7E90B531AD577B3356C4161; + remoteInfo = "Flipper-PeerTalk"; }; - FBA0E779BA1CF7B3F45066C23C24F8CA /* PBXContainerItemProxy */ = { + EE39006570A35D20320C5018C9EF8280 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; - remoteInfo = "React-jsi"; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - FBC22B3D06FCB79D2BB4470E05535F11 /* PBXContainerItemProxy */ = { + F027D206765B97048312EACAB1BAD45C /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 1FAAE067C1BFDEA17DFB657C3379AB56; + remoteInfo = "Flipper-RSocket"; + }; + F02E6BD4AB561A59D41CFB1113C026BD /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = FA877ADC442CB19CF61793D234C8B131; remoteInfo = "React-jsi"; }; - FBF0A4C6AA7FBA0E7FD517EF81C872BA /* PBXContainerItemProxy */ = { + F0890CD7FF41F9BA5A87922A98F84628 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = ED2506AE7DE35D654F61254441EA7155; - remoteInfo = "boost-for-react-native"; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; }; - FC19B9906A271E3AD6D76179076003F6 /* PBXContainerItemProxy */ = { + F342ACF43BADA947AEBCD720885E6B95 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 651511D7DA7F07F9FC9AA40A2E86270D; - remoteInfo = "React-RCTNetwork"; + remoteGlobalIDString = 938CCE22F6C4094B3FB6CF1478579E4B; + remoteInfo = "React-RCTAnimation"; }; - FCD28CB579C5201747EE441DD7EB6A66 /* PBXContainerItemProxy */ = { + F3EFC35B9D9A41DB8A39531A164F8ED5 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = B6D5DD49633DFF0657B8C3F08EB3ABA9; - remoteInfo = ReactCommon; + remoteGlobalIDString = D0EFEFB685D97280256C559792236873; + remoteInfo = glog; }; - FE8AF0AAEF20A8C6816A5C9C1D874D91 /* PBXContainerItemProxy */ = { + F58FE6092281DC892731251E0840B0E3 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; - remoteGlobalIDString = 214E42634D1E187D876346D36184B655; - remoteInfo = RNScreens; + remoteGlobalIDString = 6A9637F1BC8154F777335A6420579C05; + remoteInfo = "Flipper-Glog"; + }; + F630B6D0A1CA8E0191B42A82688915CF /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + F63D502EED66ABF5AFD95F7B0600B029 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = B9ED5194E665042005069EF06C82A050; + remoteInfo = "OpenSSL-Universal"; + }; + F6B383B5813920F66B17C9D929BAD154 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; }; - FED50BEE89BC52D04883C9DDC2EB855B /* PBXContainerItemProxy */ = { + F6DBB2C612D62813FE7B7073222DADB5 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = D20469A9A1E5CFB26045EAEBE3F88E5E; + remoteInfo = RCTTypeSafety; + }; + F7F4CFDEF0D1773ABD1CA6BB0F6EFB64 /* PBXContainerItemProxy */ = { isa = PBXContainerItemProxy; containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; proxyType = 1; remoteGlobalIDString = F7D033C4C128EECAA020990641FA985F; remoteInfo = "React-jsinspector"; }; + FAECE80E3DBC5BA7B28C7F53E293F28B /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FB6DF023D761198C5BAFD592DEEE5B33 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FBD2B31A6F2CD75E75600B1078E707B7 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = C3496D0495E700CF08A90C41EA8FA4BB; + remoteInfo = FBReactNativeSpec; + }; + FBD524D2D6EB4BA7174845855220507D /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 6FE9147F8AAA4DE676C190F680F47AE2; + remoteInfo = "React-RCTLinking"; + }; + FC192EEC99A887CDB4DF798203250DEB /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = EC55D52694092A9D0E6A78EB01207EB5; + remoteInfo = "RCT-Folly"; + }; + FCFD145F9D075452B405E0998952E928 /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = DA0709CAAD589C6E7963495210438021; + remoteInfo = "React-jsiexecutor"; + }; + FF7A023B567553B3DDA0AB617E31E9CA /* PBXContainerItemProxy */ = { + isa = PBXContainerItemProxy; + containerPortal = BFDFE7DC352907FC980B868725387E98 /* Project object */; + proxyType = 1; + remoteGlobalIDString = 11989A5E568B3B69655EE0C13DCDA3F9; + remoteInfo = "React-RCTActionSheet"; + }; /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ @@ -4280,7 +4280,7 @@ 190A71F9A00B51AD143525CD045E16E1 /* TimedMutex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "TimedMutex-inl.h"; path = "folly/fibers/TimedMutex-inl.h"; sourceTree = ""; }; 192B4CF706C6E452A3F5E5051EF3124C /* Time.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Time.h; path = folly/portability/Time.h; sourceTree = ""; }; 1930751E8F56270220216FB7E4CB78D0 /* GroupVarintDetail.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GroupVarintDetail.h; path = folly/detail/GroupVarintDetail.h; sourceTree = ""; }; - 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libRCT-Folly.a"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 1936453FF2A7E3A13063C4917C4D5598 /* RCT-Folly */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "RCT-Folly"; path = "libRCT-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 194E4F78F7DAFC4A59424EB8C7D08822 /* evutil_rand.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evutil_rand.c; sourceTree = ""; }; 196CE5BF55108CD54AD1753D19689E07 /* SKNetworkReporter.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKNetworkReporter.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKNetworkReporter.h; sourceTree = ""; }; 1974DCCD2DBEE72742E4C7ADF400F42A /* SimpleObservable-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "SimpleObservable-inl.h"; path = "folly/experimental/observer/SimpleObservable-inl.h"; sourceTree = ""; }; @@ -4399,7 +4399,7 @@ 24EC505833E2F428F7B41BD0540C1874 /* FlipperClient+Testing.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "FlipperClient+Testing.h"; path = "iOS/FlipperKit/FlipperClient+Testing.h"; sourceTree = ""; }; 256BF4D2C846582C854C40D82ED2FEA1 /* Sse.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Sse.cpp; path = folly/detail/Sse.cpp; sourceTree = ""; }; 257541AE1052EE69B8A4C8BCD148350D /* AsyncScope.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncScope.h; path = folly/experimental/coro/AsyncScope.h; sourceTree = ""; }; - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsinspector.a"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 2577F299FCB0A19824FE989BE77B8E8F /* React-jsinspector */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsinspector"; path = "libReact-jsinspector.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SharedMutex.h; path = folly/SharedMutex.h; sourceTree = ""; }; 25909BCB3C2BF91C9DE6930585C03570 /* EDFThreadPoolExecutor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EDFThreadPoolExecutor.cpp; path = folly/executors/EDFThreadPoolExecutor.cpp; sourceTree = ""; }; 259DD52954379CF383ECF22784D6A9FE /* RNGestureHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "RNGestureHandler-prefix.pch"; sourceTree = ""; }; @@ -4419,7 +4419,7 @@ 269408CBDB3AE7EA1A59CA310866EE75 /* StaticTracepoint.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StaticTracepoint.h; path = folly/tracing/StaticTracepoint.h; sourceTree = ""; }; 2698D6D038D4C4285DF73B8BE6A56BFF /* RCTAsyncLocalStorage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTAsyncLocalStorage.h; path = React/CoreModules/RCTAsyncLocalStorage.h; sourceTree = ""; }; 2698EC3DF0E8EC00077DA0B08CCCEEC3 /* PThread.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PThread.h; path = folly/portability/PThread.h; sourceTree = ""; }; - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTSettings.a"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 269BE773C9482484B70949A40F4EA525 /* React-RCTSettings */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTSettings"; path = "libReact-RCTSettings.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 26B2675F4F4520B353F61706F38CCD82 /* RCTRootShadowView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTRootShadowView.h; sourceTree = ""; }; 27082049DE8253709A79D1AAF3A1C839 /* EDFThreadPoolExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EDFThreadPoolExecutor.h; path = folly/executors/EDFThreadPoolExecutor.h; sourceTree = ""; }; 270D5759B51CE554C2FFBF615CE612BE /* RCTVibrationPlugins.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTVibrationPlugins.h; path = Libraries/Vibration/RCTVibrationPlugins.h; sourceTree = ""; }; @@ -4589,7 +4589,7 @@ 372DB38A136B38135D13BDD45BD4CCFC /* RCTLayoutAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTLayoutAnimation.m; sourceTree = ""; }; 375479DB0C6F138EE5CD03F38D523DF5 /* RCTComponentEvent.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentEvent.h; sourceTree = ""; }; 37581AB20C22FDDDC6D3E01BD0E811B1 /* VirtualEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = VirtualEventBase.cpp; path = folly/io/async/VirtualEventBase.cpp; sourceTree = ""; }; - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-cxxreact.a"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 37592FDAD45752511010F4B06AC57355 /* React-cxxreact */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-cxxreact"; path = "libReact-cxxreact.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 3769B0D8A8579FA9DA028F0106537CBA /* React-jsiexecutor.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-jsiexecutor.debug.xcconfig"; sourceTree = ""; }; 378619B1BE431BF86E101DAB9C21FF86 /* FLEXNetworkObserver.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = FLEXNetworkObserver.mm; path = iOS/Plugins/FlipperKitNetworkPlugin/SKIOSNetworkPlugin/FLEXNetworkLib/FLEXNetworkObserver.mm; sourceTree = ""; }; 379E49642A1E8BF62C364255F25E3920 /* RCTComponentData.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTComponentData.h; sourceTree = ""; }; @@ -4608,7 +4608,7 @@ 3926F3BE35E594AC65D9048174CCB295 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; 39486DD676D4D3A172AE2D468899851A /* Padded.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Padded.h; path = folly/Padded.h; sourceTree = ""; }; 3966E2F6212E69A424189B38E09D625E /* Instance.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = Instance.cpp; sourceTree = ""; }; - 396DAFDC3DCFBF31A37A3CC9488C0DDC /* libFlipper-Fmt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Fmt.a"; path = "libFlipper-Fmt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 396DAFDC3DCFBF31A37A3CC9488C0DDC /* Flipper-Fmt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Fmt"; path = "libFlipper-Fmt.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 396DE17772DE1303870B88ECE9D68B50 /* React-RCTText.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTText.release.xcconfig"; sourceTree = ""; }; 39875578839B751B6ED71F8E913701B1 /* RCTClipboard.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTClipboard.h; path = React/CoreModules/RCTClipboard.h; sourceTree = ""; }; 399CFA4C9A84D67629D7815F2262984F /* RSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RSocket.h; path = rsocket/RSocket.h; sourceTree = ""; }; @@ -4640,7 +4640,7 @@ 3C8114B4D06F333C431AA420650310D3 /* CacheLocality.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = CacheLocality.cpp; path = folly/concurrency/CacheLocality.cpp; sourceTree = ""; }; 3C95F48FE32B6EE1BFE7DA9933EA1F82 /* LogConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogConfig.cpp; path = folly/logging/LogConfig.cpp; sourceTree = ""; }; 3CA5E6F5D87A2512681B265B0288A7FF /* Select64.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Select64.h; path = folly/experimental/Select64.h; sourceTree = ""; }; - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libglog.a; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 3CA7A9404CCDD6BA22C97F8348CE3209 /* glog */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = glog; path = libglog.a; sourceTree = BUILT_PRODUCTS_DIR; }; 3CAAC5208B21CF4F48D49F2F3C2F62CB /* buffer.c */ = {isa = PBXFileReference; includeInIndex = 1; path = buffer.c; sourceTree = ""; }; 3CACAB521CF449B66E9165A68B1AF2AC /* SetupResumeAcceptor.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SetupResumeAcceptor.cpp; path = rsocket/internal/SetupResumeAcceptor.cpp; sourceTree = ""; }; 3CD5F72B336BCDF6983A5CC24759A81E /* ChannelRequester.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelRequester.cpp; path = rsocket/statemachine/ChannelRequester.cpp; sourceTree = ""; }; @@ -4850,7 +4850,7 @@ 50391D8740BB1DEFDAB13443DD59FBA2 /* RCTSettingsManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTSettingsManager.h; path = Libraries/Settings/RCTSettingsManager.h; sourceTree = ""; }; 508D1A3211069A2B75C9E9DEA9DB9CA1 /* RCTTurboModuleManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModuleManager.mm; sourceTree = ""; }; 50910160C904612CF4688214F1C4D3A1 /* SocketFastOpen.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketFastOpen.h; path = folly/detail/SocketFastOpen.h; sourceTree = ""; }; - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNScreens.a; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 50B5347C9A6E93B7D4CFC3673BA6FB7E /* RNScreens */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNScreens; path = libRNScreens.a; sourceTree = BUILT_PRODUCTS_DIR; }; 50FCA457ACA79A82E2425A30CA93DA7E /* React-jsi-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "React-jsi-dummy.m"; sourceTree = ""; }; 5194F3364234D82CA0C7FD3716877E1A /* AsyncSignalHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSignalHandler.h; path = folly/io/async/AsyncSignalHandler.h; sourceTree = ""; }; 51B2E7BAD161D693C5DC6B52F639E4E4 /* AsyncSocketException.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncSocketException.cpp; path = folly/io/async/AsyncSocketException.cpp; sourceTree = ""; }; @@ -4864,7 +4864,7 @@ 52D12AAC1BF36A2465112AF0B18F34B2 /* RCTModuloAnimatedNode.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTModuloAnimatedNode.h; sourceTree = ""; }; 52EAEF51874F1DA5B873AD834133B87D /* Flipper.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Flipper.release.xcconfig; sourceTree = ""; }; 52FCD5EE27524F5121E26C388D7832B5 /* Pods-PocketTorah-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-PocketTorah-acknowledgements.plist"; sourceTree = ""; }; - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libreact-native-safe-area-context.a"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 52FCF98CEFF94C742080B6965D537AD0 /* react-native-safe-area-context */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "react-native-safe-area-context"; path = "libreact-native-safe-area-context.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 5317804165168696C7457B959E790F42 /* FlipperKitLayoutDescriptorMapperProtocol.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperKitLayoutDescriptorMapperProtocol.h; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutHelpers/FlipperKitLayoutHelpers/FlipperKitLayoutDescriptorMapperProtocol.h; sourceTree = ""; }; 532B91993AC65B6E8C8FACE888C9816B /* os.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = os.h; path = include/fmt/os.h; sourceTree = ""; }; 535BC8E0E7C6E27D6DE272F8A7683D62 /* Unistd.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Unistd.cpp; path = folly/portability/Unistd.cpp; sourceTree = ""; }; @@ -4938,7 +4938,7 @@ 5ABD506B74508DBFCD6F0458AA0CF3E5 /* jsilib-posix.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = "jsilib-posix.cpp"; sourceTree = ""; }; 5ABDA86F106563777DC3A4A9C0730A7E /* StringKeyedSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StringKeyedSet.h; path = folly/experimental/StringKeyedSet.h; sourceTree = ""; }; 5B1A289011C9535179892EDAE08A66A2 /* evdns.c */ = {isa = PBXFileReference; includeInIndex = 1; path = evdns.c; sourceTree = ""; }; - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYogaKit.a; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 5B3357A1CE67C0BF4AE31936A1BE6888 /* YogaKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = YogaKit; path = libYogaKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 5B678F7F857E9BD0B70B2560D246DA03 /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 5B700502ADEE24E6ED07578EB17B6AB3 /* DiscriminatedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DiscriminatedPtr.h; path = folly/DiscriminatedPtr.h; sourceTree = ""; }; 5B712D804D2B8F717E33102E298F8693 /* experiments.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = experiments.cpp; sourceTree = ""; }; @@ -5046,7 +5046,7 @@ 64EEBFF60150BC15443F62D33D3198C5 /* IOExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IOExecutor.h; path = folly/executors/IOExecutor.h; sourceTree = ""; }; 64F2EA2026B025DD16680B223BDDE0E8 /* RCTSurfaceStage.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTSurfaceStage.m; sourceTree = ""; }; 64FA274158D9A1031ADAB55942AC5879 /* EventBaseManager.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = EventBaseManager.cpp; path = folly/io/async/EventBaseManager.cpp; sourceTree = ""; }; - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipperKit.a; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65234B3E668A42D9137B2C7AB051EE37 /* FlipperKit */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FlipperKit; path = libFlipperKit.a; sourceTree = BUILT_PRODUCTS_DIR; }; 65344B926F0A98D0D7F549C5D86210A1 /* Init.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Init.h; path = folly/ssl/Init.h; sourceTree = ""; }; 654208BB5A86A97E3D10AC1E92326FD5 /* symbolize.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = symbolize.cc; path = src/symbolize.cc; sourceTree = ""; }; 655B0962D763C447C7841B5DE7DE843F /* TcpConnectionFactory.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TcpConnectionFactory.h; path = rsocket/transports/tcp/TcpConnectionFactory.h; sourceTree = ""; }; @@ -5057,16 +5057,16 @@ 65C4B4A4B61C7079FC0BB87637156D75 /* IPAddressV4.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = IPAddressV4.cpp; path = folly/IPAddressV4.cpp; sourceTree = ""; }; 65C6BC961861AAAE14F506F525154305 /* format.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = format.cc; path = src/format.cc; sourceTree = ""; }; 65CB323B720831257405F96FD235D610 /* RCTPackagerClient.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPackagerClient.h; sourceTree = ""; }; - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libYoga.a; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 65D0A19C165FA1126B1360680FE6DB12 /* Yoga */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Yoga; path = libYoga.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6636D373C536B4DDCD3ACBE49AA3FF39 /* FmtCompile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FmtCompile.h; path = folly/portability/FmtCompile.h; sourceTree = ""; }; - 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-perflogger.a"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 666E72807891C591E025A75410CD2A26 /* React-perflogger */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-perflogger"; path = "libReact-perflogger.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 667A4C5F6A4970ADC35005E652F6AAD4 /* chrono.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = chrono.h; path = include/fmt/chrono.h; sourceTree = ""; }; 667E99D799B610E45B246E5028B9EA51 /* AsyncSocket.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AsyncSocket.h; path = folly/io/async/AsyncSocket.h; sourceTree = ""; }; 669B5966618B83972380F116A509E736 /* Pods-PocketTorah.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.module; path = "Pods-PocketTorah.modulemap"; sourceTree = ""; }; 66ACBABCC0FA7947AEACCA819CFBDA0C /* RCTCxxModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxModule.mm; sourceTree = ""; }; 67110DEEE6C2ADF312EA41B27480094E /* SocketAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SocketAddress.h; path = folly/SocketAddress.h; sourceTree = ""; }; 6732D464DF80A4F0B98E47F40A81E158 /* TurboModuleUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = TurboModuleUtils.h; sourceTree = ""; }; - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-CoreModules.a"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 6771D231F4C8C5976470A369C474B32E /* React-CoreModules */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-CoreModules"; path = "libReact-CoreModules.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 6782413251EDC2D7127207FC0015E649 /* RAMBundleRegistry.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = RAMBundleRegistry.cpp; sourceTree = ""; }; 67A67D824222724FDA4F56F43F0EAC50 /* RCTCxxBridge.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxBridge.mm; sourceTree = ""; }; 67E4E79C04E20B9B2FD6C7FB3BA69292 /* SwappableEventBase.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SwappableEventBase.cpp; path = rsocket/internal/SwappableEventBase.cpp; sourceTree = ""; }; @@ -5127,7 +5127,7 @@ 6C430BB47C6F5326F6909537C5C6BB89 /* RCTProfile.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProfile.h; sourceTree = ""; }; 6C7D3D84F68ADF1E896E3BDFFE3CC938 /* RCTTouchEvent.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTTouchEvent.m; sourceTree = ""; }; 6CA84189E7CE551CAB735A7A061F30B0 /* Enumerate.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Enumerate.h; path = folly/container/Enumerate.h; sourceTree = ""; }; - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libCocoaAsyncSocket.a; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6CBEFE4F9E22AFDC6347A739BB35FF8C /* CocoaAsyncSocket */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = CocoaAsyncSocket; path = libCocoaAsyncSocket.a; sourceTree = BUILT_PRODUCTS_DIR; }; 6D10F529786F6C4C766FC78E8E9B465A /* SanitizeAddress.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SanitizeAddress.h; path = folly/memory/SanitizeAddress.h; sourceTree = ""; }; 6D42116BE3B5B169723EEEF644EFDC02 /* Pods-PocketTorah-PocketTorahTests-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-PocketTorah-PocketTorahTests-resources.sh"; sourceTree = ""; }; 6D4B9D733BAC4DE073BCC633BBB9CB6E /* RCTShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTShadowView.m; sourceTree = ""; }; @@ -5161,7 +5161,7 @@ 6FC68AAE3B672645BF5A1D641AB61460 /* KeepaliveTimer.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = KeepaliveTimer.cpp; path = rsocket/internal/KeepaliveTimer.cpp; sourceTree = ""; }; 6FE124F7F45D67E6AE534BB5F86F8D46 /* NetOps.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = NetOps.cpp; path = folly/net/NetOps.cpp; sourceTree = ""; }; 6FE851197789B4A3435CF870D1C86CBA /* RCTLog.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTLog.mm; sourceTree = ""; }; - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libDoubleConversion.a; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 6FFB7B2992BB53405E6B771A5BA1E97D /* DoubleConversion */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = DoubleConversion; path = libDoubleConversion.a; sourceTree = BUILT_PRODUCTS_DIR; }; 701CBC235656B9C12E03C1C04C9AB74B /* Malloc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Malloc.h; path = folly/portability/Malloc.h; sourceTree = ""; }; 7021F46A3A2AE7F00B6E66B0FDA27D29 /* FlipperResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperResponder.h; path = iOS/FlipperKit/FlipperResponder.h; sourceTree = ""; }; 703B6E2F5E805CCAE4799B9D69A11AE6 /* RCTCxxUtils.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTCxxUtils.mm; sourceTree = ""; }; @@ -5314,7 +5314,7 @@ 7FD5F4F11C3B6B51AD4073BC151E1A3A /* Executor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Executor.h; path = folly/Executor.h; sourceTree = ""; }; 8002D2700C26B9E7ECD6B38A9D102FD4 /* log_severity.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = log_severity.h; path = src/glog/log_severity.h; sourceTree = ""; }; 80156F86EE5FAC99B25B2E0B46DA6B21 /* RCTPackagerClient.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPackagerClient.m; sourceTree = ""; }; - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTLinking.a"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 802121F5B756ACBFDD6D08C36246DADD /* React-RCTLinking */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTLinking"; path = "libReact-RCTLinking.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8023BE1807210CBD935C8825EC3D1BCD /* AtomicNotification-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "AtomicNotification-inl.h"; path = "folly/synchronization/AtomicNotification-inl.h"; sourceTree = ""; }; 802D19034683980D2F8441198350DA8C /* RCTDeviceInfo.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTDeviceInfo.h; path = React/CoreModules/RCTDeviceInfo.h; sourceTree = ""; }; 8042ADC2476033E50C186812416E5F13 /* RCTImageView.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTImageView.h; path = Libraries/Image/RCTImageView.h; sourceTree = ""; }; @@ -5483,12 +5483,12 @@ 8F37E32B9080C751DFD2BFBF583E3AFA /* F14IntrinsicsAvailability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14IntrinsicsAvailability.h; path = folly/container/detail/F14IntrinsicsAvailability.h; sourceTree = ""; }; 8F448F94E68CD21934B25C4B163C1CA1 /* AtomicUnorderedMapUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicUnorderedMapUtils.h; path = folly/detail/AtomicUnorderedMapUtils.h; sourceTree = ""; }; 8F50BC33B239BE28837DDAB5450F9547 /* RNSScreenStack.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNSScreenStack.m; path = ios/RNSScreenStack.m; sourceTree = ""; }; - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNGestureHandler.a; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 8F65F9361F2069CF9E9D751272968DE4 /* RNGestureHandler */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNGestureHandler; path = libRNGestureHandler.a; sourceTree = BUILT_PRODUCTS_DIR; }; 8F6AD3E2DFFA32915D636953B6EB21B7 /* HeterogeneousAccess-fwd.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "HeterogeneousAccess-fwd.h"; path = "folly/container/HeterogeneousAccess-fwd.h"; sourceTree = ""; }; 8F8130C429835CECFBCEE10AADB37362 /* SKViewControllerDescriptor.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = SKViewControllerDescriptor.m; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewControllerDescriptor.m; sourceTree = ""; }; 8F85C8C491BD2B91D45E6EE573358ED6 /* AtomicIntrusiveLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicIntrusiveLinkedList.h; path = folly/AtomicIntrusiveLinkedList.h; sourceTree = ""; }; 8F8E14B00BDCF94DA3F0116BE963DE4E /* SKStateUpdateCPPWrapper.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKStateUpdateCPPWrapper.h; path = iOS/FlipperKit/SKStateUpdateCPPWrapper.h; sourceTree = ""; }; - 8FD3DD8368ED4B6E773ABAA49C117D42 /* libFlipper-Boost-iOSX.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Boost-iOSX.a"; path = "libFlipper-Boost-iOSX.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 8FD3DD8368ED4B6E773ABAA49C117D42 /* Flipper-Boost-iOSX */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Boost-iOSX"; path = "libFlipper-Boost-iOSX.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 8FE4CA0C77C68628E9C9D013E92D42FF /* FlipperCppBridgingResponder.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperCppBridgingResponder.h; path = iOS/FlipperKit/CppBridge/FlipperCppBridgingResponder.h; sourceTree = ""; }; 900759D458FC69BCD34C36A8917FA5BE /* RCTMultipartDataTask.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTMultipartDataTask.m; sourceTree = ""; }; 903B50F4F48C7690B8E2AD815BA02158 /* bignum.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = bignum.cc; path = "double-conversion/bignum.cc"; sourceTree = ""; }; @@ -5580,7 +5580,7 @@ 99190ECF26305EC4342EB7E2EAAFBEF6 /* Ordering.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Ordering.h; path = folly/lang/Ordering.h; sourceTree = ""; }; 992E4056A939BF6D4B6D0D927D8311D0 /* ReactMarker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = ReactMarker.h; sourceTree = ""; }; 99A9937CC66149AE2F96E0A603F7EB46 /* RCTTurboModule.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTTurboModule.mm; sourceTree = ""; }; - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Folly.a"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + 99D5CD245388DC76AAEF6E1E351A90ED /* Flipper-Folly */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Folly"; path = "libFlipper-Folly.a"; sourceTree = BUILT_PRODUCTS_DIR; }; 99E59B9A24AC178352AA3756266278F9 /* Flipper-Glog.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "Flipper-Glog.debug.xcconfig"; sourceTree = ""; }; 99EE606931224209097EBD6BAAC3BB5A /* RCTDecayAnimation.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTDecayAnimation.m; sourceTree = ""; }; 9A18E3262351499F13935FD1C967F344 /* AsyncServerSocket.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsyncServerSocket.cpp; path = folly/io/async/AsyncServerSocket.cpp; sourceTree = ""; }; @@ -5590,7 +5590,7 @@ 9A5EA9489FE5940A064AAC320709E33C /* Core-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Core-inl.h"; path = "folly/gen/Core-inl.h"; sourceTree = ""; }; 9A62666AE1755DB7335BDEB40A8CBE80 /* RCTInputAccessoryViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTInputAccessoryViewManager.h; sourceTree = ""; }; 9A66F769D2B4852E11990A6E44286C2B /* F14Table.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Table.h; path = folly/container/detail/F14Table.h; sourceTree = ""; }; - 9A70011370B46387FBFE517906404002 /* libRNFS.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNFS.a; path = libRNFS.a; sourceTree = BUILT_PRODUCTS_DIR; }; + 9A70011370B46387FBFE517906404002 /* RNFS */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNFS; path = libRNFS.a; sourceTree = BUILT_PRODUCTS_DIR; }; 9AA33AB352748CC06739F9B3AF755B0F /* RCTValueAnimatedNode.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTValueAnimatedNode.m; sourceTree = ""; }; 9AB0EE274F627874DD9E49DEA92302FA /* jump_combined_all_macho_gas.S */ = {isa = PBXFileReference; includeInIndex = 1; name = jump_combined_all_macho_gas.S; path = asm/jump_combined_all_macho_gas.S; sourceTree = ""; }; 9AB5A1C3729538665937AB155AE13B99 /* RCTPerformanceLogger.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPerformanceLogger.h; sourceTree = ""; }; @@ -5705,7 +5705,7 @@ A634C1EC454F668FE99BA1773ED98865 /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; A662CC1CD539C07FDC0F72E802586581 /* Observer.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Observer.h; path = folly/experimental/observer/Observer.h; sourceTree = ""; }; A66FBEA4DDC6FA19D15DC2AF0726A64D /* SynchronizedPtr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SynchronizedPtr.h; path = folly/SynchronizedPtr.h; sourceTree = ""; }; - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTNetwork.a"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + A68E5A9B69A3BA0FD52CAF7A354EC93B /* React-RCTNetwork */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTNetwork"; path = "libReact-RCTNetwork.a"; sourceTree = BUILT_PRODUCTS_DIR; }; A69A1B3B9F6470B4CE22CF74D6EBBDF0 /* ostream.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ostream.h; path = include/fmt/ostream.h; sourceTree = ""; }; A6B932FC70A635DD5F0EE0620C0309B5 /* Timeout-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Timeout-inl.h"; path = "folly/experimental/coro/Timeout-inl.h"; sourceTree = ""; }; A6E0550220ED7F72CDAA09AE72233EBF /* RNPinchHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNPinchHandler.h; sourceTree = ""; }; @@ -5756,13 +5756,13 @@ ABD7840244EB9EA676AF99CE72DDFEBF /* Util.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Util.h; path = folly/container/detail/Util.h; sourceTree = ""; }; ABDC45EFA542FF17CC330086401BBE77 /* SKViewDescriptor.mm */ = {isa = PBXFileReference; includeInIndex = 1; name = SKViewDescriptor.mm; path = iOS/Plugins/FlipperKitPluginUtils/FlipperKitLayoutIOSDescriptors/FlipperKitLayoutIOSDescriptors/SKViewDescriptor.mm; sourceTree = ""; }; ABEC1F4FC91FA54A543F6DC2C74F371F /* demangle.cc */ = {isa = PBXFileReference; includeInIndex = 1; name = demangle.cc; path = src/demangle.cc; sourceTree = ""; }; - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFBReactNativeSpec.a; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; + ABFEEA82A6C346B22843FBE0B0582182 /* FBReactNativeSpec */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = FBReactNativeSpec; path = libFBReactNativeSpec.a; sourceTree = BUILT_PRODUCTS_DIR; }; AC3F7E448EC607E288DAA4610391FA42 /* color.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = color.h; path = include/fmt/color.h; sourceTree = ""; }; AC82B4616F9D2AA435204A3BC247ED22 /* FlipperState.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlipperState.h; path = xplat/Flipper/FlipperState.h; sourceTree = ""; }; AC91712E437F1510E382E9D078050C2E /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; AC9E9873778B990EFF2BC2CDD7E19E4B /* AtomicLinkedList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicLinkedList.h; path = folly/AtomicLinkedList.h; sourceTree = ""; }; ACA55D2ED79F34C1A5BE7998B6B254E4 /* RCTProgressViewManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTProgressViewManager.m; sourceTree = ""; }; - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-PeerTalk.a"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + ACBB7F62B267CC7C9BBBAE41DE94743B /* Flipper-PeerTalk */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-PeerTalk"; path = "libFlipper-PeerTalk.a"; sourceTree = BUILT_PRODUCTS_DIR; }; ACCD3F561B891F8B4814D7A1879804AD /* RNTapHandler.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RNTapHandler.m; sourceTree = ""; }; ACCFD0D8D92D1995E76431D053D6DAF6 /* Pretty.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Pretty.h; path = folly/lang/Pretty.h; sourceTree = ""; }; AD07E10682FE3149279D78C19FBDAFB1 /* FlowableConcatOperators.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FlowableConcatOperators.h; path = yarpl/flowable/FlowableConcatOperators.h; sourceTree = ""; }; @@ -5948,7 +5948,7 @@ BD5B2529DBAA75AAAA65BA05BE473011 /* InlineExecutor.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = InlineExecutor.h; path = folly/executors/InlineExecutor.h; sourceTree = ""; }; BD5B261F52718E8CB1BA3875EBA7C5B2 /* RCTDevSettings.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevSettings.mm; sourceTree = ""; }; BD5D2BDB6F672EE617E117EC069F7D97 /* Merge.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Merge.h; path = folly/experimental/coro/Merge.h; sourceTree = ""; }; - BD71E2539823621820F84384064C253A /* libReact-Core.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-Core.a"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + BD71E2539823621820F84384064C253A /* React-Core */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-Core"; path = "libReact-Core.a"; sourceTree = BUILT_PRODUCTS_DIR; }; BDA3B13F6BE8365E3EDFC2BF9590A9CD /* Benchmark.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Benchmark.h; path = folly/Benchmark.h; sourceTree = ""; }; BDDC69145EBE06E9F20992535287A8AE /* RCTSurfaceStage.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTSurfaceStage.h; sourceTree = ""; }; BDE40FE37348DD7FCF2AC8C172538B53 /* String.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = String.h; path = folly/portability/String.h; sourceTree = ""; }; @@ -5988,7 +5988,7 @@ C133D1C0A32C4FD9031ADCC2C31F8230 /* AsymmetricMemoryBarrier.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = AsymmetricMemoryBarrier.cpp; path = folly/synchronization/AsymmetricMemoryBarrier.cpp; sourceTree = ""; }; C1558C0A7B2A760B6B576E8E59EE93D2 /* SafeAssert.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SafeAssert.cpp; path = folly/lang/SafeAssert.cpp; sourceTree = ""; }; C181312FCA7A1382DE642A76CACC68D4 /* Portability.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Portability.h; path = folly/futures/Portability.h; sourceTree = ""; }; - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTVibration.a"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C1A919103EAC9813D236486C34FC0A21 /* React-RCTVibration */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTVibration"; path = "libReact-RCTVibration.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C1B5EC3926D8C752D359092E62D4F65F /* GMock.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = GMock.h; path = folly/portability/GMock.h; sourceTree = ""; }; C1B6A6396033AC18F8CA76616B5FCBDD /* RCTDevLoadingView.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTDevLoadingView.mm; sourceTree = ""; }; C1D04D9DB294E50BCABC90B48D3CE5F7 /* StandardLogHandler.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = StandardLogHandler.cpp; path = folly/logging/StandardLogHandler.cpp; sourceTree = ""; }; @@ -6056,7 +6056,7 @@ C8AABB45564FAD6F7D8D923D92F1E0B7 /* Subscription.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Subscription.cpp; path = yarpl/observable/Subscription.cpp; sourceTree = ""; }; C8B3B23411231AA38126807CD7C06FB0 /* RCTRootView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRootView.m; sourceTree = ""; }; C8CFACCE61BAE5DF0661A0825C68FBB6 /* README.md */ = {isa = PBXFileReference; includeInIndex = 1; path = README.md; sourceTree = ""; }; - C8D88C768B9A00B5E42A95E45ADF8EE7 /* libPods-PocketTorah.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PocketTorah.a"; path = "libPods-PocketTorah.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + C8D88C768B9A00B5E42A95E45ADF8EE7 /* Pods-PocketTorah */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-PocketTorah"; path = "libPods-PocketTorah.a"; sourceTree = BUILT_PRODUCTS_DIR; }; C8DA540F9754691B31D02B819AE428A0 /* Cleanup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Cleanup.h; path = folly/experimental/Cleanup.h; sourceTree = ""; }; C8EB10CD05CCFC6CE04CAA36A3BA426C /* RCTProgressViewManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTProgressViewManager.h; sourceTree = ""; }; C912B46CC2D1924512CAFBCF3C63E84D /* RCTUtils.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTUtils.m; sourceTree = ""; }; @@ -6182,7 +6182,7 @@ D59C86202EBBB9A41683AE023B553DE9 /* RCTManagedPointer.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTManagedPointer.mm; sourceTree = ""; }; D5AC1B1D0CC59A53EA25E7F2073FD2DA /* RCTRefreshControl.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTRefreshControl.m; sourceTree = ""; }; D5AC24DAAC4F40A3EF1F5B2D4BC89C9A /* Futex-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Futex-inl.h"; path = "folly/detail/Futex-inl.h"; sourceTree = ""; }; - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libReactCommon.a; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; + D5C775614AC76D44CECB6BE08B022F1F /* ReactCommon */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = ReactCommon; path = libReactCommon.a; sourceTree = BUILT_PRODUCTS_DIR; }; D5DD913E038C2CEFA98D3946AD2087AE /* RCTFPSGraph.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RCTFPSGraph.h; path = React/CoreModules/RCTFPSGraph.h; sourceTree = ""; }; D5EDA56E266725A22B211B53AB9AF0C6 /* RCTLayoutAnimationGroup.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTLayoutAnimationGroup.h; sourceTree = ""; }; D5F318767A8CDCC692929B7821190527 /* WTCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = WTCallback.h; path = folly/futures/WTCallback.h; sourceTree = ""; }; @@ -6224,7 +6224,7 @@ D993C7C727357D6B9BE5F4F3A4BC4DEC /* RNGestureHandlerButton.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNGestureHandlerButton.m; path = ios/RNGestureHandlerButton.m; sourceTree = ""; }; D9A49F07AB5FE15931466D30262AE2DD /* React-RCTBlob.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-RCTBlob.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; D9A6604730BBB6F9E29479A58D6186CF /* RNFlingHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RNFlingHandler.h; sourceTree = ""; }; - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsi.a"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + D9F334F2E90E3EE462FC4192AF5C03BD /* React-jsi */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsi"; path = "libReact-jsi.a"; sourceTree = BUILT_PRODUCTS_DIR; }; DA077B18475E1915605A0E41B031F042 /* FarmHash.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FarmHash.h; path = folly/hash/FarmHash.h; sourceTree = ""; }; DA2DD244795435C604FFC3B2AE1C413C /* SingletonThreadLocal.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SingletonThreadLocal.h; path = folly/SingletonThreadLocal.h; sourceTree = ""; }; DA81608A2112B996728D83C40B1E6144 /* RCTPickerManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPickerManager.h; sourceTree = ""; }; @@ -6272,13 +6272,13 @@ DFA483DE52D0DDD4C6D58415649770D6 /* NetOps.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = NetOps.h; path = folly/net/NetOps.h; sourceTree = ""; }; DFAE3372899549E5F99D2567017DFFD0 /* Access.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Access.h; path = folly/container/Access.h; sourceTree = ""; }; DFE3232BFE2F18E14C0DA6E72BCEEDB0 /* React-RCTActionSheet.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.debug.xcconfig"; sourceTree = ""; }; - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-Glog.a"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E00BE2A3146698E81A8F9D00E8F93A6C /* Flipper-Glog */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-Glog"; path = "libFlipper-Glog.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E02FA18268D7F2C8BA3594B2B0EF4B92 /* ThriftStreamShim.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThriftStreamShim.h; path = yarpl/flowable/ThriftStreamShim.h; sourceTree = ""; }; E04A81B9696E8BB355BD29C77E538ACF /* F14Map.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Map.h; path = folly/container/F14Map.h; sourceTree = ""; }; E06156AB9F90D4078A821F4DBCA78BCC /* React-RCTText-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "React-RCTText-prefix.pch"; sourceTree = ""; }; E08CBA15F01AA4DA67B1FE8C5AFCED9C /* RCTExceptionsManager.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTExceptionsManager.mm; sourceTree = ""; }; E0E2BF0747651778153B9372F478ABF1 /* F14Set.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = F14Set.h; path = folly/container/F14Set.h; sourceTree = ""; }; - E10026447591A19AA0C2032610FA3526 /* libPods-PocketTorah-PocketTorahTests.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libPods-PocketTorah-PocketTorahTests.a"; path = "libPods-PocketTorah-PocketTorahTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E10026447591A19AA0C2032610FA3526 /* Pods-PocketTorah-PocketTorahTests */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Pods-PocketTorah-PocketTorahTests"; path = "libPods-PocketTorah-PocketTorahTests.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E103620D83623E1EC72AE60AF001CF61 /* FileUtil.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FileUtil.h; path = folly/FileUtil.h; sourceTree = ""; }; E10E05836096425F841FBC73A8DFE24E /* FireForgetThroughputTcp.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FireForgetThroughputTcp.cpp; path = rsocket/benchmarks/FireForgetThroughputTcp.cpp; sourceTree = ""; }; E11668202A90500738C421568FB750E8 /* RangeCommon.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = RangeCommon.h; path = folly/detail/RangeCommon.h; sourceTree = ""; }; @@ -6330,7 +6330,7 @@ E66605BFB74E457515182C675AC3DB03 /* Constexpr.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Constexpr.h; path = folly/portability/Constexpr.h; sourceTree = ""; }; E671A740A6CB405A4D515272C2E75363 /* JsArgumentHelpers-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "JsArgumentHelpers-inl.h"; sourceTree = ""; }; E689405DEF396F31B77B6D9EF5DF47AE /* ConstructorCallback.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConstructorCallback.h; path = folly/ConstructorCallback.h; sourceTree = ""; }; - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTText.a"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + E6A16705C69FC7DE11C2469A4A0F8358 /* React-RCTText */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTText"; path = "libReact-RCTText.a"; sourceTree = BUILT_PRODUCTS_DIR; }; E6B4B3B76EE9F4466C81E66B63B5E8A6 /* React-jsiexecutor.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsiexecutor.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; E6C1A2AFFA41EC41FB26B457DB61D8C3 /* PolyException.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = PolyException.h; path = folly/PolyException.h; sourceTree = ""; }; E6C7CD3BB4A315BC8515590AD7D85AE5 /* Observer-pre.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Observer-pre.h"; path = "folly/experimental/observer/Observer-pre.h"; sourceTree = ""; }; @@ -6353,7 +6353,7 @@ E919DD8DD41C85A3E385E71E4ABE014C /* RNCSafeAreaProviderManager.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaProviderManager.m; path = ios/SafeAreaView/RNCSafeAreaProviderManager.m; sourceTree = ""; }; E91F5AE6924E8B99B2696AA97464EB49 /* TestSubscriber.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = TestSubscriber.h; path = yarpl/flowable/TestSubscriber.h; sourceTree = ""; }; E92FEAE0465C1CBE1AE638C4AB7763E6 /* CacheLocality.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = CacheLocality.h; path = folly/concurrency/CacheLocality.h; sourceTree = ""; }; - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libFlipper.a; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; + E93F701CA8EB196D77AE99E094D873E4 /* Flipper */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = Flipper; path = libFlipper.a; sourceTree = BUILT_PRODUCTS_DIR; }; E9695C85E01DF9E72DF449520E950C2F /* StackTraceUtils.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = StackTraceUtils.h; path = rsocket/internal/StackTraceUtils.h; sourceTree = ""; }; E96DCA70107258FF3BE11ECA234BA2EF /* DestructorCheck.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = DestructorCheck.h; path = folly/io/async/DestructorCheck.h; sourceTree = ""; }; E97758B57066B465B12FEBE8D508F9CA /* ConnectionSet.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ConnectionSet.h; path = rsocket/internal/ConnectionSet.h; sourceTree = ""; }; @@ -6405,7 +6405,7 @@ EEA83853BCDC1D83D73CD93853DE07F2 /* RCTPicker.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTPicker.h; sourceTree = ""; }; EEB9F65FC4650749EF8F4F37146000D8 /* ThreadCachedArena.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadCachedArena.h; path = folly/memory/ThreadCachedArena.h; sourceTree = ""; }; EEBF64862EB28BB2F6A37F6FE1B19388 /* MallocImpl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = MallocImpl.h; path = folly/memory/detail/MallocImpl.h; sourceTree = ""; }; - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTImage.a"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + EEDBF403E8E0B3885E65C2741B536BC5 /* React-RCTImage */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTImage"; path = "libReact-RCTImage.a"; sourceTree = BUILT_PRODUCTS_DIR; }; EEE8ABF7B103457B14842A6B81737CA1 /* FlipperKitReactPlugin.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = FlipperKitReactPlugin.m; path = iOS/Plugins/FlipperKitReactPlugin/FlipperKitReactPlugin/FlipperKitReactPlugin.m; sourceTree = ""; }; EF4ACD675162A144B06A654584E0922B /* MacAddress.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = MacAddress.cpp; path = folly/MacAddress.cpp; sourceTree = ""; }; EF5A5908767152B1171A3B69C37BDAEA /* FileHandlerFactory.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FileHandlerFactory.cpp; path = folly/logging/FileHandlerFactory.cpp; sourceTree = ""; }; @@ -6443,7 +6443,7 @@ F2CFE7032FED84DB44D8668A19500C12 /* SpookyHashV1.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = SpookyHashV1.cpp; path = folly/hash/SpookyHashV1.cpp; sourceTree = ""; }; F2DE45B2644C2BFF09D272C611D4B6CB /* ProtocolVersion.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ProtocolVersion.h; path = rsocket/framing/ProtocolVersion.h; sourceTree = ""; }; F2E7013F6503738884FEEC3285C9BB44 /* GlobalThreadPoolList.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = GlobalThreadPoolList.cpp; path = folly/executors/GlobalThreadPoolList.cpp; sourceTree = ""; }; - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-jsiexecutor.a"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F2E7C88DFCD460A4B46B913ADEB8A641 /* React-jsiexecutor */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-jsiexecutor"; path = "libReact-jsiexecutor.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F2EFC5ED8179BEF96685998AE0D68E03 /* stl_logging.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = stl_logging.h; path = src/glog/stl_logging.h; sourceTree = ""; }; F2FC40563D1914FC1DDA7BFE3629FC93 /* RCTObjcExecutor.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTObjcExecutor.mm; sourceTree = ""; }; F30DE6048E3096965E7D9B6F0C94383D /* React-perflogger.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-perflogger.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; @@ -6459,8 +6459,8 @@ F41E9A216B6C433C573428D06E191F38 /* LogCategoryConfig.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = LogCategoryConfig.cpp; path = folly/logging/LogCategoryConfig.cpp; sourceTree = ""; }; F45C6D1B314133B6EB8CD53063F56EB0 /* JSIDynamic.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIDynamic.cpp; sourceTree = ""; }; F48945E993F2144306151E8426C88528 /* fmt-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "fmt-prefix.pch"; sourceTree = ""; }; - F4BDA69E3BCB0166D49FB679ABADCA00 /* libfmt.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libfmt.a; path = libfmt.a; sourceTree = BUILT_PRODUCTS_DIR; }; - F4C55DC590A399974FB9EC4D06596AB0 /* libRNSound.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRNSound.a; path = libRNSound.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F4BDA69E3BCB0166D49FB679ABADCA00 /* fmt */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = fmt; path = libfmt.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F4C55DC590A399974FB9EC4D06596AB0 /* RNSound */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RNSound; path = libRNSound.a; sourceTree = BUILT_PRODUCTS_DIR; }; F5535C0C3877BEFD3253181B6E643886 /* RSocketClient.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = RSocketClient.cpp; path = rsocket/RSocketClient.cpp; sourceTree = ""; }; F594E33985BF98588DE4C9947ABA6C64 /* RCTSurface.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTSurface.mm; sourceTree = ""; }; F5A4ACCBA76DB6E82614D55EC5EF7904 /* evrpc.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = evrpc.h; path = include/evrpc.h; sourceTree = ""; }; @@ -6486,7 +6486,7 @@ F6FCBA5DFDBCD62A039E7A04DE108AE0 /* React-RCTActionSheet.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = "React-RCTActionSheet.release.xcconfig"; sourceTree = ""; }; F70A8690C0867CC4864259708F225ECF /* Frame.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = Frame.cpp; path = rsocket/framing/Frame.cpp; sourceTree = ""; }; F71A94F64C0F734551BFCF77DD4507EA /* SaturatingSemaphore.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SaturatingSemaphore.h; path = folly/synchronization/SaturatingSemaphore.h; sourceTree = ""; }; - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTBlob.a"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + F71EBF73F354B475D465FF6DE9A66707 /* React-RCTBlob */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTBlob"; path = "libReact-RCTBlob.a"; sourceTree = BUILT_PRODUCTS_DIR; }; F72219E64929664545BF680232A36328 /* RCTConvert+Transform.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTConvert+Transform.m"; sourceTree = ""; }; F764B36A753F28362CFE898379FCA1B1 /* SSLSessionManager.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SSLSessionManager.h; path = folly/ssl/SSLSessionManager.h; sourceTree = ""; }; F76D16A3A0E2F1D0468543ADE7418B33 /* ThreadName.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = ThreadName.h; path = folly/system/ThreadName.h; sourceTree = ""; }; @@ -6504,7 +6504,7 @@ F901F45F445E5F31C0B7DF484848D36F /* FingerprintPolynomial.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = FingerprintPolynomial.h; path = folly/detail/FingerprintPolynomial.h; sourceTree = ""; }; F931B2806B0D20B54C1BD26BF474C78C /* RCTUITextField.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = RCTUITextField.h; sourceTree = ""; }; F94AC80029AE8DB7FF9B30C655AB2770 /* SKDispatchQueue.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SKDispatchQueue.h; path = iOS/Plugins/FlipperKitNetworkPlugin/FlipperKitNetworkPlugin/SKDispatchQueue.h; sourceTree = ""; }; - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libRCTTypeSafety.a; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; + F958876A082BF810B342435CE3FB5AF6 /* RCTTypeSafety */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = RCTTypeSafety; path = libRCTTypeSafety.a; sourceTree = BUILT_PRODUCTS_DIR; }; F959386925CF0032F40A9EA694437A8C /* RCTImageLoader.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = RCTImageLoader.mm; sourceTree = ""; }; F9662D2F5EC61D1D91C2973228C8B372 /* SysStat.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = SysStat.h; path = folly/portability/SysStat.h; sourceTree = ""; }; F98CB1F9F0C5678ED36BAC90B4D9C6B2 /* ChannelResponder.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = ChannelResponder.cpp; path = rsocket/statemachine/ChannelResponder.cpp; sourceTree = ""; }; @@ -6530,7 +6530,7 @@ FB12A61584DCE6B007C4E32872B2D37A /* RCTPerformanceLogger.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTPerformanceLogger.m; sourceTree = ""; }; FB324E8574EC0D97D064EC1922D1DB3B /* JSIndexedRAMBundle.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; path = JSIndexedRAMBundle.cpp; sourceTree = ""; }; FB5028F163CBDFAFE4ECF17A7C52732C /* RNCSafeAreaShadowView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; name = RNCSafeAreaShadowView.m; path = ios/SafeAreaView/RNCSafeAreaShadowView.m; sourceTree = ""; }; - FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = liblibevent.a; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; + FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* libevent */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = libevent; path = liblibevent.a; sourceTree = BUILT_PRODUCTS_DIR; }; FB9079E945F94992AB6E2A4A709B4665 /* RCTScrollContentView.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = RCTScrollContentView.m; sourceTree = ""; }; FBA5B94A9C9A02689B88D45851FF0357 /* FlipperState.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FlipperState.cpp; path = xplat/Flipper/FlipperState.cpp; sourceTree = ""; }; FBAA8920EEBAB4DCB933BE8F5594D0A1 /* NSTextStorage+FontScaling.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "NSTextStorage+FontScaling.h"; sourceTree = ""; }; @@ -6561,9 +6561,9 @@ FE4E43C873A954E6B5C912AFFA767D69 /* AtomicHashMap.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = AtomicHashMap.h; path = folly/AtomicHashMap.h; sourceTree = ""; }; FE54BD30C65D3931F1E6692FF795ADF2 /* CoreModulesPlugins.mm */ = {isa = PBXFileReference; includeInIndex = 1; path = CoreModulesPlugins.mm; sourceTree = ""; }; FE62ADE1F5423277607C079FD1A55F7B /* FrameTransportImpl.cpp */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.cpp.cpp; name = FrameTransportImpl.cpp; path = rsocket/framing/FrameTransportImpl.cpp; sourceTree = ""; }; - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = AccessibilityResources.bundle; path = "React-Core-AccessibilityResources.bundle"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE6D792B6328AAF68E46924D7F466631 /* React-Core-AccessibilityResources */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; name = "React-Core-AccessibilityResources"; path = AccessibilityResources.bundle; sourceTree = BUILT_PRODUCTS_DIR; }; FE7AFD0430909142721151DD04A3B50D /* Retrying.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = Retrying.h; path = folly/futures/Retrying.h; sourceTree = ""; }; - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libReact-RCTAnimation.a"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FE7B9294FF05AAFD1653E2104E10844A /* React-RCTAnimation */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "React-RCTAnimation"; path = "libReact-RCTAnimation.a"; sourceTree = BUILT_PRODUCTS_DIR; }; FE7CBAF2B25BF1B959C965117224CD44 /* EliasFanoCoding.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = EliasFanoCoding.h; path = folly/experimental/EliasFanoCoding.h; sourceTree = ""; }; FE85C301D78C5220CB5D3DBEA5943D21 /* IntrusiveList.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = IntrusiveList.h; path = folly/IntrusiveList.h; sourceTree = ""; }; FE8EF9E52E0E24FDA6C40C2A0B5630EB /* React-jsinspector.podspec */ = {isa = PBXFileReference; explicitFileType = text.script.ruby; includeInIndex = 1; indentWidth = 2; lastKnownFileType = text; path = "React-jsinspector.podspec"; sourceTree = ""; tabWidth = 2; xcLanguageSpecificationIdentifier = xcode.lang.ruby; }; @@ -6580,298 +6580,298 @@ FF8AEC6F688FA91D072137FDA83D6D5A /* RCTShadowView+Internal.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "RCTShadowView+Internal.m"; sourceTree = ""; }; FFC2D08F94BB33D97C041DE7C1C235AF /* Uri-inl.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; name = "Uri-inl.h"; path = "folly/Uri-inl.h"; sourceTree = ""; }; FFD2B50A1A445A87CDF5E2597F0AA2FE /* RCTRequired.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = RCTRequired.debug.xcconfig; sourceTree = ""; }; - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libFlipper-RSocket.a"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; + FFDC7746794AB17CFB7150820479DF40 /* Flipper-RSocket */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "Flipper-RSocket"; path = "libFlipper-RSocket.a"; sourceTree = BUILT_PRODUCTS_DIR; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ - 18F23342CE0C00F1925904E9DC2EE294 /* Frameworks */ = { + 02E29EFA496305C4DC062BA76629B2CB /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1A17792396422005AAB121AAFC9E25C1 /* Frameworks */ = { + 04F465FF2BCBFED7A7D5406CBE4663B8 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1A6751061AF1E30F5DE0BA4EC3F74552 /* Frameworks */ = { + 0AED14C891F3774ADDB22F7F20984650 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1C17790C3CD8E4F11F968FFEA469BF2E /* Frameworks */ = { + 0DD97F907B2BE453B055AFA347C480A2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1D91544BCD3EC1476873FAD0DA7DC2B5 /* Frameworks */ = { + 13AE81B038F4830B22EEA7BC5981AE08 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 1DDC87AE74C7D5E74C277C8F01229E3B /* Frameworks */ = { + 15A62227F5C4FBD0EAC72084317AB303 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 20BA100C85EA53F9E47A90738553B93B /* Frameworks */ = { + 1D52D52B6A74F41BD57BB1F2A6CA8716 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 28595E6A0B5C6ACABF86B6E277FA083F /* Frameworks */ = { + 26848D3B873B294484052C0745E2D546 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 2B5D0B2CE49E29FD9514186E329F5EDC /* Frameworks */ = { + 300A8E3D1D6D3B0834EF5880382E0162 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 32C9A2D825699E0F06A9D8B730B6C706 /* Frameworks */ = { + 3391273B6FFD22F3C560D814C6B7C102 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 368EA38699A6A38F42BB201DD628FB94 /* Frameworks */ = { + 33CD893EB0FADD7FB92DB260B271DD08 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 3B634DFA44193ED6D4649980A7DC565B /* Frameworks */ = { + 4341A7C3149A83B7966D4D1AEA14D6B3 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4379CAF1DB03818BA27AF9C46364DEAC /* Frameworks */ = { + 44D137D5E6EDEE0A0D4073E97DB35852 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 43B45DF5736734BB241D89C59AB6B063 /* Frameworks */ = { + 596DA136541327866A348DE89B29FB7B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 45DE0E46676F8DA0160E0E8BC44846A7 /* Frameworks */ = { + 5BE79316AF724DA3E2BEB71213763782 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4848D17158026B3A935D23CDCE963B48 /* Frameworks */ = { + 63CB3BD98A594CECCEE7F399839AC180 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 4C3B1036B34A5811D7EF2194555F619F /* Frameworks */ = { + 6732A1F3452D4F3B8674C207EE7B7D80 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 550A6DE0CE7CE468A6BC3B6AC7AB06CB /* Frameworks */ = { + 673381158C671B137FC040900C0A32A1 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 609A7CBF5C70EE8E6CEF4EB198AB464E /* Frameworks */ = { + 6B6BF135B1831E21747DC25CF5162808 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6189DCDAA8C6BBBC339336755DB1C749 /* Frameworks */ = { + 8A7630B2BAF78CA186001EF968B469C4 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 67F99AC60DC5C6012976CE01E7335320 /* Frameworks */ = { + 8E500E26A9D60B43A7B722A5C787B967 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 68E4DC721715B13364B7CFA56B002488 /* Frameworks */ = { + 9015F40B0B4657A8111DEC82F9EBEB33 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 68F32031FF55642CB5544BF52F1798B1 /* Frameworks */ = { + 934717939D80223DBD83FEE9F7BEA08A /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6A516DDC76DC7B84B055A0690B7A98CB /* Frameworks */ = { + A4733A17DB59A6F590FE8082EBFCF503 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 6A8BD8A07C403D0C392C06E9FABFCBA7 /* Frameworks */ = { + A866884155139477EFA8A6313ABDF527 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 7B92D5EBD2956C16DFC73683122CE982 /* Frameworks */ = { + AA0B713D286FCA6BFD74C5F624BEF51C /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 818425A526601B7251698070986792CB /* Frameworks */ = { + AD3429FD68C344DB26B43DF756EB6A15 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 975D4540158AFE630EB9223AAF8C7B65 /* Frameworks */ = { + B023F73BEEB96152996C90C69BD5215D /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9AA40A3EC4C8707B9E5F50AFC2A07A04 /* Frameworks */ = { + B384AD2A3EEB516EB818AE80479A3DB2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9BC1A96491ED6159ACCC4F40E4472FE3 /* Frameworks */ = { + B52C746CAF5B059F32DA3026596B5A28 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - 9D4F1691C2FA529B1F6AB92314453E5D /* Frameworks */ = { + B8857DFE1E7C3870D67E72961917D7BD /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A3765ED6966B9C0F27EDCDDBE349E8E0 /* Frameworks */ = { + BBA254767BC5E5D8758718A3C3D72F3B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A3AFF25E8F3709177BC60958DC176B50 /* Frameworks */ = { + C2692B7353E075528E31B5E639247A55 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - A8C319088C621F415AECA7C9FCDFB123 /* Frameworks */ = { + C2731375FECE9C66105B919EC69407D9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - AEC50A43C7CC8565A8CC7E310C768904 /* Frameworks */ = { + C412BF6B09C03F4C8AFF878DFE08E4B2 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - B5FCFD6FE76F35C6B3276F88D677A442 /* Frameworks */ = { + CEC38F0634DD0F78E3AAA25E956A0E91 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - C8856B8BB27508E2192DC879157DAABF /* Frameworks */ = { + D0C22CABA35109A74D421A88B250ADC9 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DA8EA8F494BE85BA85FE1722166570FB /* Frameworks */ = { + D86A77DFCE5334A6BC4ECD33EF8D636B /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - DFA4CA8A81FF3C6C3C55BB3B10D7762C /* Frameworks */ = { + E8E148D6250F2E49985A15B5087B9CAA /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - E2C0E4526A1D28A9D231C3A7BEDFE5CA /* Frameworks */ = { + ED600C0E6596FB246023B36364C88E96 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - F9379B67243E034DB38AA34AC55AB1A8 /* Frameworks */ = { + F16D47E455EA05F7173E03C27DBB2BA7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( ); runOnlyForDeploymentPostprocessing = 0; }; - FA2E6D635462AB16C9F0B5445FD1E070 /* Frameworks */ = { + F4E0CE0A9B54BF4081A80860AE4094D7 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( @@ -8308,8 +8308,8 @@ F6D168825E154779BC9D6FC73F6A9006 /* BenchmarkUtil.h */, E727FD2AAAA1BE54F69C55C2EC39F82B /* BitIterator.h */, 4F7358D1664055BA8F04A0C2F6D49468 /* BitIteratorDetail.h */, - B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */, 6DB68D666DB329572E746C8E51908C2E /* Bits.h */, + B0CE93C0638E45CAD6158E668D31AC92 /* Bits.h */, 9F68B2011EC761EB88A29244E4F3CB02 /* Builtins.h */, 3AE158726CF2D20DB0581DDC87981DCC /* Byte.h */, 9ABACCF772C2FFE82D0DB1D1E28144A0 /* CancellationToken.h */, @@ -8409,8 +8409,8 @@ DCB23E92A8FB73316C052D8C6A336DD3 /* IntrusiveList.h */, 3051CBF2BF92BDFDD11DC7662532A8BA /* Invoke.h */, BDE6A6BDB2D8387E087F265D0F55BA1B /* IOVec.h */, - 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */, F3D0E120BFCBC4A623F7101CD5597390 /* IPAddress.h */, + 65A673CB676EBE0C3AFA2B700CE11E1A /* IPAddress.h */, F611BC9FB496BF93C615316BC7817DE6 /* IPAddressException.h */, D474EE3604E5EEDE25D36E8FF7DE76D6 /* IPAddressSource.h */, 3AD752C00DF5F203A923EFE6134EE807 /* IPAddressV4.h */, @@ -8436,8 +8436,8 @@ C46CD56B44B6066C746BBC3EFF14E86F /* MallocImpl.cpp */, 2CE3ACDACD630049DF7D3390BD15A40A /* MallocImpl.h */, D3A1FD3E01AE7CF36076673E21BEA4E9 /* MapUtil.h */, - ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */, 8A618BF973C43B4A1385BFBC9CB41612 /* Math.h */, + ECAF57582AC8F2A119BADE8ABDAC910A /* Math.h */, 0E474290CADBECC6B55ED7A14B7511CD /* Memory.h */, 325707970240FB975CE1DAA9DE525C8B /* Memory.h */, 68DB932A46474E9C3B048E3E9070375E /* MemoryIdler.h */, @@ -8489,8 +8489,8 @@ D77CBD8E7896A56FEBECF700FDAC6EB7 /* ScopeGuard.cpp */, 83DA7157BF620B9B92AC4FD279711CB1 /* ScopeGuard.h */, 2584CECAC0F976FAEC18E0CD0337CBCF /* SharedMutex.h */, - 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */, E1932535513730B312147D7069EC14C2 /* Singleton.h */, + 0A6D753FD86B9D5D6C6248C1B1244A9F /* Singleton.h */, E9B5C6199391D8C66AACF9CDBC72E3EC /* Singleton-inl.h */, 6B7D3D5939D5A5646E47D1E7C52D83E4 /* SingletonStackTrace.h */, D85724CA327F9DC30B9931FE1C1680C8 /* SingletonThreadLocal.h */, @@ -8999,55 +8999,6 @@ path = "../../node_modules/react-native/Libraries/LinkingIOS"; sourceTree = ""; }; - A22C440004815AE326A05D264C9B7E27 /* Products */ = { - isa = PBXGroup; - children = ( - FE6D792B6328AAF68E46924D7F466631 /* AccessibilityResources.bundle */, - 6CBEFE4F9E22AFDC6347A739BB35FF8C /* libCocoaAsyncSocket.a */, - 6FFB7B2992BB53405E6B771A5BA1E97D /* libDoubleConversion.a */, - ABFEEA82A6C346B22843FBE0B0582182 /* libFBReactNativeSpec.a */, - E93F701CA8EB196D77AE99E094D873E4 /* libFlipper.a */, - 8FD3DD8368ED4B6E773ABAA49C117D42 /* libFlipper-Boost-iOSX.a */, - 396DAFDC3DCFBF31A37A3CC9488C0DDC /* libFlipper-Fmt.a */, - 99D5CD245388DC76AAEF6E1E351A90ED /* libFlipper-Folly.a */, - E00BE2A3146698E81A8F9D00E8F93A6C /* libFlipper-Glog.a */, - ACBB7F62B267CC7C9BBBAE41DE94743B /* libFlipper-PeerTalk.a */, - FFDC7746794AB17CFB7150820479DF40 /* libFlipper-RSocket.a */, - 65234B3E668A42D9137B2C7AB051EE37 /* libFlipperKit.a */, - F4BDA69E3BCB0166D49FB679ABADCA00 /* libfmt.a */, - 3CA7A9404CCDD6BA22C97F8348CE3209 /* libglog.a */, - FB6FAD8F0183E86ACBFBD8A81BA7BF3A /* liblibevent.a */, - C8D88C768B9A00B5E42A95E45ADF8EE7 /* libPods-PocketTorah.a */, - E10026447591A19AA0C2032610FA3526 /* libPods-PocketTorah-PocketTorahTests.a */, - 1936453FF2A7E3A13063C4917C4D5598 /* libRCT-Folly.a */, - F958876A082BF810B342435CE3FB5AF6 /* libRCTTypeSafety.a */, - BD71E2539823621820F84384064C253A /* libReact-Core.a */, - 6771D231F4C8C5976470A369C474B32E /* libReact-CoreModules.a */, - 37592FDAD45752511010F4B06AC57355 /* libReact-cxxreact.a */, - D9F334F2E90E3EE462FC4192AF5C03BD /* libReact-jsi.a */, - F2E7C88DFCD460A4B46B913ADEB8A641 /* libReact-jsiexecutor.a */, - 2577F299FCB0A19824FE989BE77B8E8F /* libReact-jsinspector.a */, - 52FCF98CEFF94C742080B6965D537AD0 /* libreact-native-safe-area-context.a */, - 666E72807891C591E025A75410CD2A26 /* libReact-perflogger.a */, - FE7B9294FF05AAFD1653E2104E10844A /* libReact-RCTAnimation.a */, - F71EBF73F354B475D465FF6DE9A66707 /* libReact-RCTBlob.a */, - EEDBF403E8E0B3885E65C2741B536BC5 /* libReact-RCTImage.a */, - 802121F5B756ACBFDD6D08C36246DADD /* libReact-RCTLinking.a */, - A68E5A9B69A3BA0FD52CAF7A354EC93B /* libReact-RCTNetwork.a */, - 269BE773C9482484B70949A40F4EA525 /* libReact-RCTSettings.a */, - E6A16705C69FC7DE11C2469A4A0F8358 /* libReact-RCTText.a */, - C1A919103EAC9813D236486C34FC0A21 /* libReact-RCTVibration.a */, - D5C775614AC76D44CECB6BE08B022F1F /* libReactCommon.a */, - 9A70011370B46387FBFE517906404002 /* libRNFS.a */, - 8F65F9361F2069CF9E9D751272968DE4 /* libRNGestureHandler.a */, - 50B5347C9A6E93B7D4CFC3673BA6FB7E /* libRNScreens.a */, - F4C55DC590A399974FB9EC4D06596AB0 /* libRNSound.a */, - 65D0A19C165FA1126B1360680FE6DB12 /* libYoga.a */, - 5B3357A1CE67C0BF4AE31936A1BE6888 /* libYogaKit.a */, - ); - name = Products; - sourceTree = ""; - }; A46474BE3248055E25E3D6E4198F1D62 /* SKIOSNetworkPlugin */ = { isa = PBXGroup; children = ( @@ -9261,6 +9212,55 @@ name = FlipperKitUserDefaultsPlugin; sourceTree = "